mirror of
https://github.com/silverstripe/silverstripe-tagfield
synced 2024-10-22 11:05:32 +02:00
270 lines
5.7 KiB
PHP
Executable File
270 lines
5.7 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @mixin PHPUnit_Framework_TestCase
|
|
*/
|
|
class TagFieldTest extends SapphireTest {
|
|
/**
|
|
* @var string
|
|
*/
|
|
public static $fixture_file = 'tagfield/tests/TagFieldTest.yml';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $extraDataObjects = array(
|
|
'TagFieldTestBlogTag',
|
|
'TagFieldTestBlogPost',
|
|
);
|
|
|
|
function testItSavesLinksToNewTagsOnNewRecords() {
|
|
$record = $this->getNewTagFieldTestBlogPost('BlogPost1');
|
|
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'));
|
|
$field->setValue(array('Tag3', 'Tag4'));
|
|
$field->saveInto($record);
|
|
|
|
$record->write();
|
|
|
|
$this->compareExpectedAndActualTags(
|
|
array('Tag3', 'Tag4'),
|
|
$record
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
*
|
|
* @return TagFieldTestBlogPost
|
|
*/
|
|
protected function getNewTagFieldTestBlogPost($name) {
|
|
return $this->objFromFixture(
|
|
'TagFieldTestBlogPost',
|
|
$name
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param array $expected
|
|
* @param TagFieldTestBlogPost $record
|
|
*/
|
|
protected function compareExpectedAndActualTags(array $expected, TagFieldTestBlogPost $record) {
|
|
$actual = array_values($record->Tags()->map('ID', 'Title')->toArray());
|
|
|
|
sort($expected);
|
|
sort($actual);
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
$actual
|
|
);
|
|
}
|
|
|
|
public function testItSavesLinksToNewTagsOnExistingRecords() {
|
|
$record = $this->getNewTagFieldTestBlogPost('BlogPost1');
|
|
$record->write();
|
|
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'));
|
|
$field->setValue(array('Tag3', 'Tag4'));
|
|
$field->saveInto($record);
|
|
|
|
$this->compareExpectedAndActualTags(
|
|
array('Tag3', 'Tag4'),
|
|
$record
|
|
);
|
|
}
|
|
|
|
public function testItSavesLinksToExistingTagsOnNewRecords() {
|
|
$record = $this->getNewTagFieldTestBlogPost('BlogPost1');
|
|
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'));
|
|
$field->setValue(array('Tag1', 'Tag2'));
|
|
$field->saveInto($record);
|
|
|
|
$record->write();
|
|
|
|
$this->compareExpectedAndActualTags(
|
|
array('Tag1', 'Tag2'),
|
|
$record
|
|
);
|
|
}
|
|
|
|
public function testItSavesLinksToExistingTagsOnExistingRecords() {
|
|
$record = $this->getNewTagFieldTestBlogPost('BlogPost1');
|
|
$record->write();
|
|
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'));
|
|
$field->setValue(array('Tag1', 'Tag2'));
|
|
$field->saveInto($record);
|
|
|
|
$this->compareExpectedAndActualTags(
|
|
array('Tag1', 'Tag2'),
|
|
$record
|
|
);
|
|
}
|
|
|
|
function testItSuggestsTags() {
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'));
|
|
|
|
/**
|
|
* Partial tag title match.
|
|
*/
|
|
$request = $this->getNewRequest(array('term' => 'Tag'));
|
|
|
|
$this->assertEquals(
|
|
'{"items":[{"id":1,"text":"Tag1"},{"id":2,"text":"Tag2"}]}',
|
|
$field->suggest($request)->getBody()
|
|
);
|
|
|
|
/**
|
|
* Exact tag title match.
|
|
*/
|
|
$request = $this->getNewRequest(array('term' => 'Tag1'));
|
|
|
|
$this->assertEquals(
|
|
'{"items":[{"id":1,"text":"Tag1"}]}',
|
|
$field->suggest($request)->getBody()
|
|
);
|
|
|
|
/**
|
|
* Case-insensitive tag title match.
|
|
*/
|
|
$request = $this->getNewRequest(array('term' => 'TAG1'));
|
|
|
|
$this->assertEquals(
|
|
'{"items":[{"id":1,"text":"Tag1"}]}',
|
|
$field->suggest($request)->getBody()
|
|
);
|
|
|
|
/**
|
|
* No tag title match.
|
|
*/
|
|
$request = $this->getNewRequest(array('term' => 'unknown'));
|
|
|
|
$this->assertEquals(
|
|
'{"items":[]}',
|
|
$field->suggest($request)->getBody()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param array $parameters
|
|
*
|
|
* @return SS_HTTPRequest
|
|
*/
|
|
protected function getNewRequest(array $parameters) {
|
|
return new SS_HTTPRequest(
|
|
'get',
|
|
'TagFieldTestController/TagFieldTestForm/fields/Tags/suggest',
|
|
$parameters
|
|
);
|
|
}
|
|
|
|
function testItDisplaysValuesFromRelations() {
|
|
$record = $this->getNewTagFieldTestBlogPost('BlogPost1');
|
|
$record->write();
|
|
|
|
$form = new Form(
|
|
new TagFieldTestController($record),
|
|
'Form',
|
|
new FieldList(
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'))
|
|
),
|
|
new FieldList()
|
|
);
|
|
|
|
$form->loadDataFrom(
|
|
$this->objFromFixture('TagFieldTestBlogPost', 'BlogPost2')
|
|
);
|
|
|
|
$this->assertEquals($field->Value(), array(1 => 1, 2 => 2));
|
|
}
|
|
|
|
function testItIgnoresNewTagsIfCannotCreate() {
|
|
$record = new TagFieldTestBlogPost();
|
|
$record->write();
|
|
|
|
$tag = TagFieldTestBlogTag::get()->filter('Title', 'Tag1')->first();
|
|
|
|
$field = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'), array($tag->ID, 'Tag3'));
|
|
$field->setCanCreate(false);
|
|
$field->saveInto($record);
|
|
|
|
/**
|
|
* @var TagFieldTestBlogPost $record
|
|
*/
|
|
$record = DataObject::get_by_id('TagFieldTestBlogPost', $record->ID);
|
|
|
|
$this->compareExpectedAndActualTags(
|
|
array('Tag1'),
|
|
$record
|
|
);
|
|
}
|
|
}
|
|
|
|
class TagFieldTestBlogTag extends DataObject implements TestOnly {
|
|
/**
|
|
* @var string
|
|
*/
|
|
private static $default_sort = '"TagFieldTestBlogTag"."ID" ASC';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $db = array(
|
|
'Title' => 'Varchar(200)',
|
|
);
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $belongs_many_many = array(
|
|
'BlogPosts' => 'TagFieldTestBlogPost',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @method ManyManyList Tags()
|
|
*/
|
|
class TagFieldTestBlogPost extends DataObject implements TestOnly {
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $db = array(
|
|
'Title' => 'Text',
|
|
'Content' => 'Text',
|
|
);
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $many_many = array(
|
|
'Tags' => 'TagFieldTestBlogTag',
|
|
);
|
|
}
|
|
|
|
class TagFieldTestController extends Controller implements TestOnly {
|
|
/**
|
|
* @return Form
|
|
*/
|
|
public function TagFieldTestForm() {
|
|
$fields = new FieldList(
|
|
$tagField = new TagField('Tags', '', new DataList('TagFieldTestBlogTag'))
|
|
);
|
|
|
|
$actions = new FieldList(
|
|
new FormAction('TagFieldTestFormSubmit')
|
|
);
|
|
|
|
return new Form($this, 'TagFieldTestForm', $fields, $actions);
|
|
}
|
|
|
|
/**
|
|
* @param DataObject $dataObject
|
|
* @param Form $form
|
|
*/
|
|
public function TagFieldTestFormSubmit(DataObject $dataObject, Form $form) {
|
|
$form->saveInto($dataObject);
|
|
}
|
|
}
|