2008-08-14 01:56:27 +02:00
|
|
|
<?php
|
2014-01-12 05:28:09 +01:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Forms\Tests;
|
|
|
|
|
|
|
|
use SilverStripe\Forms\Tests\CheckboxSetFieldTest\Article;
|
|
|
|
use SilverStripe\Forms\Tests\CheckboxSetFieldTest\Tag;
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\ArrayList;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\ORM\DB;
|
2016-08-22 17:39:11 +02:00
|
|
|
use SilverStripe\Security\Member;
|
|
|
|
use SilverStripe\ORM\FieldType\DBField;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Dev\CSSContentParser;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
use SilverStripe\Control\Controller;
|
|
|
|
use SilverStripe\Forms\CheckboxSetField;
|
|
|
|
use SilverStripe\Forms\FieldList;
|
|
|
|
use SilverStripe\Forms\Form;
|
|
|
|
use SilverStripe\Forms\RequiredFields;
|
|
|
|
use SilverStripe\View\ArrayData;
|
|
|
|
|
2008-08-14 01:56:27 +02:00
|
|
|
class CheckboxSetFieldTest extends SapphireTest {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
protected static $fixture_file = 'CheckboxSetFieldTest.yml';
|
2010-04-12 04:03:16 +02:00
|
|
|
|
|
|
|
protected $extraDataObjects = array(
|
2016-10-14 03:30:05 +02:00
|
|
|
Article::class,
|
|
|
|
Tag::class,
|
2010-04-12 04:03:16 +02:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testSetDefaultItems() {
|
2010-02-22 07:11:58 +01:00
|
|
|
$f = new CheckboxSetField(
|
2014-08-15 08:53:05 +02:00
|
|
|
'Test',
|
|
|
|
false,
|
2010-02-22 07:11:58 +01:00
|
|
|
array(0 => 'Zero', 1 => 'One', 2 => 'Two', 3 => 'Three')
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-02-22 07:11:58 +01:00
|
|
|
$f->setValue(array(0,1));
|
|
|
|
$f->setDefaultItems(array(2));
|
|
|
|
$p = new CSSContentParser($f->Field());
|
|
|
|
$item0 = $p->getBySelector('#Test_0');
|
|
|
|
$item1 = $p->getBySelector('#Test_1');
|
|
|
|
$item2 = $p->getBySelector('#Test_2');
|
|
|
|
$item3 = $p->getBySelector('#Test_3');
|
|
|
|
$this->assertEquals(
|
|
|
|
(string)$item0[0]['checked'],
|
|
|
|
'checked',
|
|
|
|
'Selected through value'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
(string)$item1[0]['checked'],
|
|
|
|
'checked',
|
|
|
|
'Selected through value'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
(string)$item2[0]['checked'],
|
|
|
|
'checked',
|
|
|
|
'Selected through default items'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
(string)$item3[0]['checked'],
|
|
|
|
'',
|
|
|
|
'Not selected by either value or default items'
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-02-13 05:35:39 +01:00
|
|
|
/**
|
|
|
|
* Test different data sources
|
|
|
|
*/
|
|
|
|
public function testSources() {
|
|
|
|
// Array
|
|
|
|
$items = array('a' => 'Apple', 'b' => 'Banana', 'c' => 'Cranberry');
|
|
|
|
$field = new CheckboxSetField('Field', null, $items);
|
|
|
|
$this->assertEquals($items, $field->getSource());
|
|
|
|
|
|
|
|
// SS_List
|
|
|
|
$list = new ArrayList(array(
|
|
|
|
new ArrayData(array(
|
|
|
|
'ID' => 'a',
|
|
|
|
'Title' => 'Apple'
|
|
|
|
)),
|
|
|
|
new ArrayData(array(
|
|
|
|
'ID' => 'b',
|
|
|
|
'Title' => 'Banana'
|
|
|
|
)),
|
|
|
|
new ArrayData(array(
|
|
|
|
'ID' => 'c',
|
|
|
|
'Title' => 'Cranberry'
|
|
|
|
))
|
|
|
|
));
|
|
|
|
$field2 = new CheckboxSetField('Field', null, $list);
|
|
|
|
$this->assertEquals($items, $field2->getSource());
|
|
|
|
|
|
|
|
$field3 = new CheckboxSetField('Field', null, $list->map());
|
|
|
|
$this->assertEquals($items, $field3->getSource());
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testSaveWithNothingSelected() {
|
2016-10-14 03:30:05 +02:00
|
|
|
$article = $this->objFromFixture(Article::class, 'articlewithouttags');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-08-14 01:56:27 +02:00
|
|
|
/* Create a CheckboxSetField with nothing selected */
|
2016-10-14 03:30:05 +02:00
|
|
|
$field = new CheckboxSetField("Tags", "Test field", DataObject::get(Tag::class)->map());
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-08-14 01:56:27 +02:00
|
|
|
/* Saving should work */
|
2008-10-09 16:29:48 +02:00
|
|
|
$field->saveInto($article);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-09 16:29:48 +02:00
|
|
|
$this->assertNull(
|
2014-08-15 08:53:05 +02:00
|
|
|
DB::prepared_query("SELECT *
|
2008-11-24 10:31:14 +01:00
|
|
|
FROM \"CheckboxSetFieldTest_Article_Tags\"
|
2013-06-21 00:32:08 +02:00
|
|
|
WHERE \"CheckboxSetFieldTest_Article_Tags\".\"CheckboxSetFieldTest_ArticleID\" = ?", array($article->ID)
|
|
|
|
)->value(),
|
2008-10-09 16:29:48 +02:00
|
|
|
'Nothing should go into manymany join table for a saved field without any ticked boxes'
|
2014-08-15 08:53:05 +02:00
|
|
|
);
|
2008-08-14 01:56:27 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testSaveWithArrayValueSet() {
|
2016-10-14 03:30:05 +02:00
|
|
|
$article = $this->objFromFixture(Article::class, 'articlewithouttags');
|
|
|
|
$articleWithTags = $this->objFromFixture(Article::class, 'articlewithtags');
|
|
|
|
$tag1 = $this->objFromFixture(Tag::class, 'tag1');
|
|
|
|
$tag2 = $this->objFromFixture(Tag::class, 'tag2');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-02-13 05:35:39 +01:00
|
|
|
/* Create a CheckboxSetField with 2 items selected. Note that the array is a list of values */
|
2016-10-14 03:30:05 +02:00
|
|
|
$field = new CheckboxSetField("Tags", "Test field", DataObject::get(Tag::class)->map());
|
2008-08-14 01:56:27 +02:00
|
|
|
$field->setValue(array(
|
2015-02-13 05:35:39 +01:00
|
|
|
$tag1->ID,
|
|
|
|
$tag2->ID
|
2008-10-09 16:29:48 +02:00
|
|
|
));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-08-14 01:56:27 +02:00
|
|
|
/* Saving should work */
|
2008-10-09 16:29:48 +02:00
|
|
|
$field->saveInto($article);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-09 16:29:48 +02:00
|
|
|
$this->assertEquals(
|
2014-08-15 08:53:05 +02:00
|
|
|
array($tag1->ID,$tag2->ID),
|
2013-06-21 00:32:08 +02:00
|
|
|
DB::prepared_query("SELECT \"CheckboxSetFieldTest_TagID\"
|
2008-11-24 10:31:14 +01:00
|
|
|
FROM \"CheckboxSetFieldTest_Article_Tags\"
|
2013-06-21 00:32:08 +02:00
|
|
|
WHERE \"CheckboxSetFieldTest_Article_Tags\".\"CheckboxSetFieldTest_ArticleID\" = ?", array($article->ID)
|
|
|
|
)->column(),
|
2008-10-09 16:29:48 +02:00
|
|
|
'Data shold be saved into CheckboxSetField manymany relation table on the "right end"'
|
2014-08-15 08:53:05 +02:00
|
|
|
);
|
2008-10-09 16:29:48 +02:00
|
|
|
$this->assertEquals(
|
2014-08-15 08:53:05 +02:00
|
|
|
array($articleWithTags->ID,$article->ID),
|
2008-11-24 10:31:14 +01:00
|
|
|
DB::query("SELECT \"CheckboxSetFieldTest_ArticleID\"
|
|
|
|
FROM \"CheckboxSetFieldTest_Article_Tags\"
|
|
|
|
WHERE \"CheckboxSetFieldTest_Article_Tags\".\"CheckboxSetFieldTest_TagID\" = $tag1->ID
|
2008-10-09 16:29:48 +02:00
|
|
|
")->column(),
|
|
|
|
'Data shold be saved into CheckboxSetField manymany relation table on the "left end"'
|
2014-08-15 08:53:05 +02:00
|
|
|
);
|
2008-08-14 01:56:27 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testLoadDataFromObject() {
|
2016-10-14 03:30:05 +02:00
|
|
|
$article = $this->objFromFixture(Article::class, 'articlewithouttags');
|
|
|
|
$articleWithTags = $this->objFromFixture(Article::class, 'articlewithtags');
|
|
|
|
$tag1 = $this->objFromFixture(Tag::class, 'tag1');
|
|
|
|
$tag2 = $this->objFromFixture(Tag::class, 'tag2');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
$field = new CheckboxSetField("Tags", "Test field", DataObject::get(Tag::class)->map());
|
2016-08-19 00:51:35 +02:00
|
|
|
/** @skipUpgrade */
|
2008-10-09 16:32:47 +02:00
|
|
|
$form = new Form(
|
2014-08-15 08:53:05 +02:00
|
|
|
new Controller(),
|
2008-10-09 16:32:47 +02:00
|
|
|
'Form',
|
2011-05-11 09:51:54 +02:00
|
|
|
new FieldList($field),
|
|
|
|
new FieldList()
|
2008-10-09 16:32:47 +02:00
|
|
|
);
|
|
|
|
$form->loadDataFrom($articleWithTags);
|
2015-02-13 05:35:39 +01:00
|
|
|
$value = $field->Value();
|
|
|
|
sort($value);
|
2008-10-09 16:32:47 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
2015-02-13 05:35:39 +01:00
|
|
|
$tag1->ID,
|
|
|
|
$tag2->ID
|
2008-10-09 16:32:47 +02:00
|
|
|
),
|
2015-02-13 05:35:39 +01:00
|
|
|
$value,
|
2012-09-26 23:34:00 +02:00
|
|
|
'CheckboxSetField loads data from a manymany relationship in an object through Form->loadDataFrom()'
|
2008-10-09 16:32:47 +02:00
|
|
|
);
|
2008-10-09 16:29:48 +02:00
|
|
|
}
|
2013-11-28 02:13:56 +01:00
|
|
|
|
|
|
|
public function testSavingIntoTextField() {
|
|
|
|
$field = new CheckboxSetField('Content', 'Content', array(
|
|
|
|
'Test' => 'Test',
|
|
|
|
'Another' => 'Another',
|
|
|
|
'Something' => 'Something'
|
|
|
|
));
|
2016-10-14 03:30:05 +02:00
|
|
|
$article = new CheckboxSetFieldTest\Article();
|
2013-11-28 02:13:56 +01:00
|
|
|
$field->setValue(array('Test' => 'Test', 'Another' => 'Another'));
|
|
|
|
$field->saveInto($article);
|
|
|
|
$article->write();
|
|
|
|
|
|
|
|
$dbValue = DB::query(sprintf(
|
|
|
|
'SELECT "Content" FROM "CheckboxSetFieldTest_Article" WHERE "ID" = %s',
|
|
|
|
$article->ID
|
|
|
|
))->value();
|
|
|
|
|
2015-02-13 05:35:39 +01:00
|
|
|
// JSON encoded values
|
|
|
|
$this->assertEquals('["Test","Another"]', $dbValue);
|
2013-11-28 02:13:56 +01:00
|
|
|
}
|
|
|
|
|
2014-11-12 03:19:12 +01:00
|
|
|
public function testValidationWithArray() {
|
2015-02-13 05:35:39 +01:00
|
|
|
// Test with array input
|
2014-11-12 03:19:12 +01:00
|
|
|
$field = CheckboxSetField::create('Test', 'Testing', array(
|
|
|
|
"One" => "One",
|
|
|
|
"Two" => "Two",
|
|
|
|
"Three" => "Three"
|
|
|
|
));
|
|
|
|
$validator = new RequiredFields();
|
2015-02-13 05:35:39 +01:00
|
|
|
$field->setValue(array("One", "Two"));
|
2014-11-12 03:19:12 +01:00
|
|
|
$this->assertTrue(
|
|
|
|
$field->validate($validator),
|
|
|
|
'Field validates values within source array'
|
|
|
|
);
|
2016-03-08 21:50:18 +01:00
|
|
|
|
2015-02-13 05:35:39 +01:00
|
|
|
// Non valid value should fail
|
2014-11-12 03:19:12 +01:00
|
|
|
$field->setValue(array("Four" => "Four"));
|
|
|
|
$this->assertFalse(
|
|
|
|
$field->validate($validator),
|
|
|
|
'Field does not validate values outside of source array'
|
|
|
|
);
|
2016-03-08 21:50:18 +01:00
|
|
|
|
2015-02-13 05:35:39 +01:00
|
|
|
// Non valid value, even if included with valid options, should fail
|
|
|
|
$field->setValue(array("One", "Two", "Four"));
|
|
|
|
$this->assertFalse(
|
2014-11-12 03:19:12 +01:00
|
|
|
$field->validate($validator),
|
2015-02-13 05:35:39 +01:00
|
|
|
'Field does not validate when presented with mixed valid and invalid values'
|
2014-11-12 03:19:12 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidationWithDataList() {
|
|
|
|
//test with datalist input
|
2016-10-14 03:30:05 +02:00
|
|
|
$checkboxTestArticle = $this->objFromFixture(Article::class, 'articlewithtags');
|
|
|
|
$tag1 = $this->objFromFixture(Tag::class, 'tag1');
|
|
|
|
$tag2 = $this->objFromFixture(Tag::class, 'tag2');
|
|
|
|
$tag3 = $this->objFromFixture(Tag::class, 'tag3');
|
2016-10-11 03:56:32 +02:00
|
|
|
$field = CheckboxSetField::create('Test', 'Testing', $checkboxTestArticle->Tags());
|
2014-11-12 03:19:12 +01:00
|
|
|
$validator = new RequiredFields();
|
2016-10-11 03:56:32 +02:00
|
|
|
$field->setValue(array( $tag1->ID, $tag2->ID ));
|
|
|
|
$isValid = $field->validate($validator);
|
2014-11-12 03:19:12 +01:00
|
|
|
$this->assertTrue(
|
2016-10-11 03:56:32 +02:00
|
|
|
$isValid,
|
2014-11-12 03:19:12 +01:00
|
|
|
'Validates values in source map'
|
|
|
|
);
|
2016-10-11 03:56:32 +02:00
|
|
|
|
|
|
|
// Invalid value should fail
|
|
|
|
$validator = new RequiredFields();
|
2016-11-13 08:35:43 +01:00
|
|
|
$fakeID = CheckboxSetFieldTest\Tag::get()->max('ID') + 1;
|
2016-10-11 03:56:32 +02:00
|
|
|
$field->setValue(array($fakeID));
|
2014-11-12 03:19:12 +01:00
|
|
|
$this->assertFalse(
|
|
|
|
$field->validate($validator),
|
|
|
|
'Field does not valid values outside of source map'
|
|
|
|
);
|
2016-10-11 03:56:32 +02:00
|
|
|
$errors = $validator->getErrors();
|
|
|
|
$error = reset($errors);
|
|
|
|
$this->assertEquals(
|
2016-11-09 23:54:33 +01:00
|
|
|
_t(
|
|
|
|
'MultiSelectField.SOURCE_VALIDATION',
|
|
|
|
"Please select values within the list provided. Invalid option(s) {value} given",
|
|
|
|
array('value' => $fakeID)
|
|
|
|
),
|
2016-10-11 03:56:32 +02:00
|
|
|
$error['message']
|
|
|
|
);
|
|
|
|
|
|
|
|
// Multiple invalid values should fail
|
|
|
|
$validator = new RequiredFields();
|
2016-10-14 03:30:05 +02:00
|
|
|
$fakeID = Tag::get()->max('ID') + 1;
|
2016-10-11 03:56:32 +02:00
|
|
|
$field->setValue(array($fakeID, $tag3->ID));
|
2014-11-12 03:19:12 +01:00
|
|
|
$this->assertFalse(
|
|
|
|
$field->validate($validator),
|
|
|
|
'Field does not valid values outside of source map'
|
|
|
|
);
|
2016-10-11 03:56:32 +02:00
|
|
|
$errors = $validator->getErrors();
|
|
|
|
$error = reset($errors);
|
|
|
|
$this->assertEquals(
|
2016-11-09 23:54:33 +01:00
|
|
|
_t(
|
|
|
|
'MultiSelectField.SOURCE_VALIDATION',
|
|
|
|
"Please select values within the list provided. Invalid option(s) {value} given",
|
|
|
|
array('value' => implode(',', [$fakeID, $tag3->ID]))
|
|
|
|
),
|
2016-10-11 03:56:32 +02:00
|
|
|
$error['message']
|
|
|
|
);
|
|
|
|
|
|
|
|
// Invalid value with non-array value
|
|
|
|
$validator = new RequiredFields();
|
|
|
|
$field->setValue($fakeID);
|
|
|
|
$this->assertFalse(
|
|
|
|
$field->validate($validator),
|
|
|
|
'Field does not valid values outside of source map'
|
|
|
|
);
|
|
|
|
$errors = $validator->getErrors();
|
|
|
|
$error = reset($errors);
|
|
|
|
$this->assertEquals(
|
2016-11-09 23:54:33 +01:00
|
|
|
_t(
|
|
|
|
'MultiSelectField.SOURCE_VALIDATION',
|
|
|
|
"Please select values within the list provided. Invalid option(s) {value} given",
|
|
|
|
array('value' => $fakeID)
|
|
|
|
),
|
2016-10-11 03:56:32 +02:00
|
|
|
$error['message']
|
|
|
|
);
|
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
//non valid value included with valid options should succeed
|
2016-10-11 03:56:32 +02:00
|
|
|
$validator = new RequiredFields();
|
2014-11-12 03:19:12 +01:00
|
|
|
$field->setValue(array(
|
2016-10-11 03:56:32 +02:00
|
|
|
$tag1->ID,
|
|
|
|
$tag2->ID,
|
|
|
|
$tag3->ID
|
2014-11-12 03:19:12 +01:00
|
|
|
));
|
2015-02-13 05:35:39 +01:00
|
|
|
$this->assertFalse(
|
2014-11-12 03:19:12 +01:00
|
|
|
$field->validate($validator),
|
2015-02-13 05:35:39 +01:00
|
|
|
'Field does not validate when presented with mixed valid and invalid values'
|
2014-11-12 03:19:12 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-03 01:23:17 +02:00
|
|
|
public function testSafelyCast() {
|
|
|
|
$member = new Member();
|
|
|
|
$member->FirstName = '<firstname>';
|
|
|
|
$member->Surname = '<surname>';
|
|
|
|
$member->write();
|
|
|
|
$field1 = new CheckboxSetField('Options', 'Options', array(
|
|
|
|
'one' => 'One',
|
|
|
|
'two' => 'Two & Three',
|
|
|
|
'three' => DBField::create_field('HTMLText', 'Four & Five & Six'),
|
2016-08-22 17:39:11 +02:00
|
|
|
'four' => $member->FirstName,
|
2016-08-03 01:23:17 +02:00
|
|
|
));
|
|
|
|
$fieldHTML = (string)$field1->Field();
|
|
|
|
$this->assertContains('One', $fieldHTML);
|
|
|
|
$this->assertContains('Two & Three', $fieldHTML);
|
|
|
|
$this->assertNotContains('Two & Three', $fieldHTML);
|
|
|
|
$this->assertContains('Four & Five & Six', $fieldHTML);
|
|
|
|
$this->assertNotContains('Four & Five & Six', $fieldHTML);
|
|
|
|
$this->assertContains('<firstname>', $fieldHTML);
|
|
|
|
$this->assertNotContains('<firstname>', $fieldHTML);
|
|
|
|
}
|
|
|
|
|
2008-08-14 01:56:27 +02:00
|
|
|
}
|