mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
5c9044a007
API Introduce HTMLFragment as casting helper for HTMLText with shortcodes disabled API Introduce DBField::CDATA for XML file value encoding API RSSFeed now casts from the underlying model rather than by override API Introduce CustomMethods::getExtraMethodConfig() to allow metadata to be queried BUG Remove _call hack from VirtualPage API Remove FormField::$dontEscape API Introduce HTMLReadonlyField for non-editable readonly HTML API FormField::Field() now returns string in many cases rather than DBField instance. API Remove redundant *_val methods from ViewableData API ViewableData::obj() no longer has a $forceReturnObject parameter as it always returns an object BUG Fix issue with ViewableData caching incorrect field values after being modified. API Remove deprecated DB class methods API Enforce plain text left/right formfield titles
118 lines
3.5 KiB
PHP
118 lines
3.5 KiB
PHP
<?php
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
/**
|
|
* @package framework
|
|
* @subpackage tests
|
|
*/
|
|
|
|
class LookupFieldTest extends SapphireTest {
|
|
|
|
protected static $fixture_file = 'LookupFieldTest.yml';
|
|
|
|
public function testNullValueWithNumericArraySource() {
|
|
$source = array(1 => 'one', 2 => 'two', 3 => 'three');
|
|
$f = new LookupField('test', 'test', $source);
|
|
$f->setValue(null);
|
|
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test"><i>(none)</i></span><input type="hidden" name="test" value="" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testStringValueWithNumericArraySource() {
|
|
$source = array(1 => 'one', 2 => 'two', 3 => 'three');
|
|
$f = new LookupField('test', 'test', $source);
|
|
$f->setValue(1);
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test">one</span><input type="hidden" name="test" value="1" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testUnknownStringValueWithNumericArraySource() {
|
|
$source = array(1 => 'one', 2 => 'two', 3 => 'three');
|
|
$f = new LookupField('test', 'test', $source);
|
|
$f->setValue('w00t');
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test">w00t</span><input type="hidden" name="test" value="" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testArrayValueWithAssociativeArraySource() {
|
|
// Array values (= multiple selections) might be set e.g. from ListboxField
|
|
$source = array('one' => 'one val', 'two' => 'two val', 'three' => 'three val');
|
|
$f = new LookupField('test', 'test', $source);
|
|
$f->setValue(array('one','two'));
|
|
$this->assertEquals('<span class="readonly" id="test">one val, two val</span>'
|
|
. '<input type="hidden" name="test" value="one, two" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testArrayValueWithNumericArraySource() {
|
|
// Array values (= multiple selections) might be set e.g. from ListboxField
|
|
$source = array(1 => 'one', 2 => 'two', 3 => 'three');
|
|
$f = new LookupField('test', 'test', $source);
|
|
$f->setValue(array(1,2));
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test">one, two</span><input type="hidden" name="test" value="1, 2" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testArrayValueWithSqlMapSource() {
|
|
$member1 = $this->objFromFixture('SilverStripe\\Security\\Member', 'member1');
|
|
$member2 = $this->objFromFixture('SilverStripe\\Security\\Member', 'member2');
|
|
$member3 = $this->objFromFixture('SilverStripe\\Security\\Member', 'member3');
|
|
|
|
$source = DataObject::get('SilverStripe\\Security\\Member');
|
|
$f = new LookupField('test', 'test', $source->map('ID', 'FirstName'));
|
|
$f->setValue(array($member1->ID, $member2->ID));
|
|
|
|
$this->assertEquals(
|
|
sprintf(
|
|
'<span class="readonly" id="test">member1, member2</span>'
|
|
. '<input type="hidden" name="test" value="%s, %s" />',
|
|
$member1->ID,
|
|
$member2->ID
|
|
),
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
|
|
public function testWithMultiDimensionalSource() {
|
|
$choices = array(
|
|
"Non-vegetarian" => array(
|
|
0 => 'Carnivore',
|
|
),
|
|
"Vegetarian" => array(
|
|
3 => 'Carrots',
|
|
),
|
|
"Other" => array(
|
|
9 => 'Vegan'
|
|
)
|
|
);
|
|
|
|
$f = new LookupField('test', 'test', $choices);
|
|
$f->setValue(3);
|
|
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test">Carrots</span><input type="hidden" name="test" value="3" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
|
|
$f->setValue(array(
|
|
3, 9
|
|
));
|
|
|
|
$this->assertEquals(
|
|
'<span class="readonly" id="test">Carrots, Vegan</span><input type="hidden" name="test" value="3, 9" />',
|
|
trim($f->Field()->getValue())
|
|
);
|
|
}
|
|
}
|