2008-09-11 08:22:33 +02:00
|
|
|
<?php
|
|
|
|
|
2016-06-15 06:03:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use SilverStripe\ORM\DB;
|
|
|
|
use SilverStripe\ORM\FieldType\DBVarchar;
|
|
|
|
use SilverStripe\ORM\FieldType\DBText;
|
|
|
|
use SilverStripe\ORM\FieldType\DBField;
|
|
|
|
|
2015-08-30 07:02:55 +02:00
|
|
|
|
2009-10-23 03:29:55 +02:00
|
|
|
/**
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2009-10-23 03:29:55 +02:00
|
|
|
* Tests for DBField objects.
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2009-10-23 03:29:55 +02:00
|
|
|
* @subpackage tests
|
|
|
|
*
|
|
|
|
*/
|
2008-09-11 08:22:33 +02:00
|
|
|
class DBFieldTest extends SapphireTest {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-10-13 03:43:58 +02:00
|
|
|
/**
|
|
|
|
* Test the nullValue() method on DBField.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testNullValue() {
|
2010-10-13 03:43:58 +02:00
|
|
|
/* Float and Double use 0 for "null" value representation */
|
|
|
|
$this->assertEquals(0, singleton('Float')->nullValue());
|
|
|
|
$this->assertEquals(0, singleton('Double')->nullValue());
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/**
|
|
|
|
* Test the prepValueForDB() method on DBField.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testPrepValueForDB() {
|
2013-06-21 00:32:08 +02:00
|
|
|
$db = DB::get_conn();
|
2012-03-20 09:20:35 +01:00
|
|
|
|
2010-10-13 03:43:58 +02:00
|
|
|
/* Float behaviour, asserting we have 0 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Float')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(0, singleton('Float')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(0, singleton('Float')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(0, singleton('Float')->prepValueForDB(''));
|
2010-10-13 03:43:58 +02:00
|
|
|
$this->assertEquals('0', singleton('Float')->prepValueForDB('0'));
|
|
|
|
|
|
|
|
/* Double behaviour, asserting we have 0 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Double')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(0, singleton('Double')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(0, singleton('Double')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(0, singleton('Double')->prepValueForDB(''));
|
2010-10-13 03:43:58 +02:00
|
|
|
$this->assertEquals('0', singleton('Double')->prepValueForDB('0'));
|
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/* Integer behaviour, asserting we have 0 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Int')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(0, singleton('Int')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(0, singleton('Int')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(0, singleton('Int')->prepValueForDB(''));
|
2008-09-11 08:22:33 +02:00
|
|
|
$this->assertEquals('0', singleton('Int')->prepValueForDB('0'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/* Integer behaviour, asserting we have 1 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(1, singleton('Int')->prepValueForDB(true));
|
|
|
|
$this->assertEquals(1, singleton('Int')->prepValueForDB(1));
|
2008-09-11 08:22:33 +02:00
|
|
|
$this->assertEquals('1', singleton('Int')->prepValueForDB('1'));
|
|
|
|
|
|
|
|
/* Decimal behaviour, asserting we have 0 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Decimal')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(0, singleton('Decimal')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(0, singleton('Decimal')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(0, singleton('Decimal')->prepValueForDB(''));
|
2008-09-11 08:22:33 +02:00
|
|
|
$this->assertEquals('0', singleton('Decimal')->prepValueForDB('0'));
|
|
|
|
|
|
|
|
/* Decimal behaviour, asserting we have 1 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(1, singleton('Decimal')->prepValueForDB(true));
|
|
|
|
$this->assertEquals(1, singleton('Decimal')->prepValueForDB(1));
|
2008-09-11 08:22:33 +02:00
|
|
|
$this->assertEquals('1', singleton('Decimal')->prepValueForDB('1'));
|
|
|
|
|
|
|
|
/* Boolean behaviour, asserting we have 0 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB('false'));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB('f'));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB(''));
|
|
|
|
$this->assertEquals(false, singleton('Boolean')->prepValueForDB('0'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/* Boolean behaviour, asserting we have 1 */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(true, singleton('Boolean')->prepValueForDB(true));
|
|
|
|
$this->assertEquals(true, singleton('Boolean')->prepValueForDB('true'));
|
|
|
|
$this->assertEquals(true, singleton('Boolean')->prepValueForDB('t'));
|
|
|
|
$this->assertEquals(true, singleton('Boolean')->prepValueForDB(1));
|
|
|
|
$this->assertEquals(true, singleton('Boolean')->prepValueForDB('1'));
|
|
|
|
|
|
|
|
// @todo - Revisit Varchar to evaluate correct behaviour of nullifyEmpty
|
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/* Varchar behaviour */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Varchar')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(null, singleton('Varchar')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(null, singleton('Varchar')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(null, singleton('Varchar')->prepValueForDB(''));
|
|
|
|
$this->assertEquals('0', singleton('Varchar')->prepValueForDB('0'));
|
|
|
|
$this->assertEquals(1, singleton('Varchar')->prepValueForDB(1));
|
|
|
|
$this->assertEquals(true, singleton('Varchar')->prepValueForDB(true));
|
|
|
|
$this->assertEquals('1', singleton('Varchar')->prepValueForDB('1'));
|
|
|
|
$this->assertEquals('00000', singleton('Varchar')->prepValueForDB('00000'));
|
|
|
|
$this->assertEquals(0, singleton('Varchar')->prepValueForDB(0000));
|
|
|
|
$this->assertEquals('test', singleton('Varchar')->prepValueForDB('test'));
|
|
|
|
$this->assertEquals(123, singleton('Varchar')->prepValueForDB(123));
|
2008-09-11 08:22:33 +02:00
|
|
|
|
2009-10-23 03:29:55 +02:00
|
|
|
/* AllowEmpty Varchar behaviour */
|
2015-08-30 07:02:55 +02:00
|
|
|
$varcharField = new DBVarchar("testfield", 50, array("nullifyEmpty"=>false));
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertSame(0, $varcharField->prepValueForDB(0));
|
|
|
|
$this->assertSame(null, $varcharField->prepValueForDB(null));
|
|
|
|
$this->assertSame(null, $varcharField->prepValueForDB(false));
|
|
|
|
$this->assertSame('', $varcharField->prepValueForDB(''));
|
|
|
|
$this->assertSame('0', $varcharField->prepValueForDB('0'));
|
|
|
|
$this->assertSame(1, $varcharField->prepValueForDB(1));
|
|
|
|
$this->assertSame(true, $varcharField->prepValueForDB(true));
|
|
|
|
$this->assertSame('1', $varcharField->prepValueForDB('1'));
|
|
|
|
$this->assertSame('00000', $varcharField->prepValueForDB('00000'));
|
|
|
|
$this->assertSame(0, $varcharField->prepValueForDB(0000));
|
|
|
|
$this->assertSame('test', $varcharField->prepValueForDB('test'));
|
|
|
|
$this->assertSame(123, $varcharField->prepValueForDB(123));
|
2009-10-23 03:29:55 +02:00
|
|
|
unset($varcharField);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
/* Text behaviour */
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertEquals(0, singleton('Text')->prepValueForDB(0));
|
|
|
|
$this->assertEquals(null, singleton('Text')->prepValueForDB(null));
|
|
|
|
$this->assertEquals(null, singleton('Text')->prepValueForDB(false));
|
|
|
|
$this->assertEquals(null, singleton('Text')->prepValueForDB(''));
|
|
|
|
$this->assertEquals('0', singleton('Text')->prepValueForDB('0'));
|
|
|
|
$this->assertEquals(1, singleton('Text')->prepValueForDB(1));
|
|
|
|
$this->assertEquals(true, singleton('Text')->prepValueForDB(true));
|
|
|
|
$this->assertEquals('1', singleton('Text')->prepValueForDB('1'));
|
|
|
|
$this->assertEquals('00000', singleton('Text')->prepValueForDB('00000'));
|
|
|
|
$this->assertEquals(0, singleton('Text')->prepValueForDB(0000));
|
|
|
|
$this->assertEquals('test', singleton('Text')->prepValueForDB('test'));
|
|
|
|
$this->assertEquals(123, singleton('Text')->prepValueForDB(123));
|
2009-10-23 03:29:55 +02:00
|
|
|
|
|
|
|
/* AllowEmpty Text behaviour */
|
2015-08-30 07:02:55 +02:00
|
|
|
$textField = new DBText("testfield", array("nullifyEmpty"=>false));
|
2013-06-21 00:32:08 +02:00
|
|
|
$this->assertSame(0, $textField->prepValueForDB(0));
|
|
|
|
$this->assertSame(null, $textField->prepValueForDB(null));
|
|
|
|
$this->assertSame(null, $textField->prepValueForDB(false));
|
|
|
|
$this->assertSame('', $textField->prepValueForDB(''));
|
|
|
|
$this->assertSame('0', $textField->prepValueForDB('0'));
|
|
|
|
$this->assertSame(1, $textField->prepValueForDB(1));
|
|
|
|
$this->assertSame(true, $textField->prepValueForDB(true));
|
|
|
|
$this->assertSame('1', $textField->prepValueForDB('1'));
|
|
|
|
$this->assertSame('00000', $textField->prepValueForDB('00000'));
|
|
|
|
$this->assertSame(0, $textField->prepValueForDB(0000));
|
|
|
|
$this->assertSame('test', $textField->prepValueForDB('test'));
|
|
|
|
$this->assertSame(123, $textField->prepValueForDB(123));
|
2009-10-23 03:29:55 +02:00
|
|
|
unset($textField);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-08-10 05:56:59 +02:00
|
|
|
/* Time behaviour */
|
|
|
|
$time = singleton('Time');
|
|
|
|
$time->setValue('00:01am');
|
|
|
|
$this->assertEquals("00:01:00", $time->getValue());
|
|
|
|
$time->setValue('00:59am');
|
|
|
|
$this->assertEquals("00:59:00", $time->getValue());
|
|
|
|
$time->setValue('11:59am');
|
|
|
|
$this->assertEquals("11:59:00", $time->getValue());
|
|
|
|
$time->setValue('12:00pm');
|
|
|
|
$this->assertEquals("12:00:00", $time->getValue());
|
|
|
|
$time->setValue('12:59am');
|
|
|
|
$this->assertEquals("12:59:00", $time->getValue());
|
|
|
|
$time->setValue('1:00pm');
|
|
|
|
$this->assertEquals("13:00:00", $time->getValue());
|
|
|
|
$time->setValue('11:59pm');
|
|
|
|
$this->assertEquals("23:59:00", $time->getValue());
|
|
|
|
$time->setValue('00:00am');
|
|
|
|
$this->assertEquals("00:00:00", $time->getValue());
|
|
|
|
$time->setValue('00:00:00');
|
|
|
|
$this->assertEquals("00:00:00", $time->getValue());
|
2008-09-11 08:22:33 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testExists() {
|
2015-08-30 07:02:55 +02:00
|
|
|
$varcharField = new DBVarchar("testfield");
|
2009-10-23 03:29:55 +02:00
|
|
|
$this->assertTrue($varcharField->getNullifyEmpty());
|
|
|
|
$varcharField->setValue('abc');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($varcharField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$varcharField->setValue('');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($varcharField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$varcharField->setValue(null);
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($varcharField->exists());
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-08-30 07:02:55 +02:00
|
|
|
$varcharField = new DBVarchar("testfield", 50, array('nullifyEmpty'=>false));
|
2009-10-23 03:29:55 +02:00
|
|
|
$this->assertFalse($varcharField->getNullifyEmpty());
|
|
|
|
$varcharField->setValue('abc');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($varcharField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$varcharField->setValue('');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($varcharField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$varcharField->setValue(null);
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($varcharField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
|
2015-08-30 07:02:55 +02:00
|
|
|
$textField = new DBText("testfield");
|
2009-10-23 03:29:55 +02:00
|
|
|
$this->assertTrue($textField->getNullifyEmpty());
|
|
|
|
$textField->setValue('abc');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($textField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$textField->setValue('');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($textField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$textField->setValue(null);
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($textField->exists());
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-08-30 07:02:55 +02:00
|
|
|
$textField = new DBText("testfield", array('nullifyEmpty'=>false));
|
2009-10-23 03:29:55 +02:00
|
|
|
$this->assertFalse($textField->getNullifyEmpty());
|
|
|
|
$textField->setValue('abc');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($textField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$textField->setValue('');
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertTrue($textField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
$textField->setValue(null);
|
2012-04-11 04:48:06 +02:00
|
|
|
$this->assertFalse($textField->exists());
|
2009-10-23 03:29:55 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStringFieldsWithMultibyteData() {
|
2011-12-17 00:27:14 +01:00
|
|
|
$plainFields = array('Varchar', 'Text');
|
2016-06-03 10:51:02 +02:00
|
|
|
$htmlFields = array('HTMLVarchar', 'HTMLText', 'HTMLFragment');
|
2011-12-17 00:27:14 +01:00
|
|
|
$allFields = array_merge($plainFields, $htmlFields);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-17 00:27:14 +01:00
|
|
|
$value = 'üåäöÜÅÄÖ';
|
|
|
|
foreach ($allFields as $stringField) {
|
2012-03-27 06:57:42 +02:00
|
|
|
$stringField = DBField::create_field($stringField, $value);
|
2011-12-17 00:27:14 +01:00
|
|
|
for ($i = 1; $i < mb_strlen($value); $i++) {
|
|
|
|
$expected = mb_substr($value, 0, $i) . '...';
|
|
|
|
$this->assertEquals($expected, $stringField->LimitCharacters($i));
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2011-12-17 00:27:14 +01:00
|
|
|
$value = '<p>üåäö&ÜÅÄÖ</p>';
|
|
|
|
foreach ($htmlFields as $stringField) {
|
2016-06-17 08:49:23 +02:00
|
|
|
$stringObj = DBField::create_field($stringField, $value);
|
|
|
|
|
|
|
|
// Converted to plain text
|
|
|
|
$this->assertEquals('üåäö&ÜÅÄ...', $stringObj->LimitCharacters(8));
|
|
|
|
|
|
|
|
// But which will be safely cast in templates
|
|
|
|
$this->assertEquals('üåäö&ÜÅÄ...', $stringObj->obj('LimitCharacters', [8])->forTemplate());
|
2011-12-17 00:27:14 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-03-27 06:57:42 +02:00
|
|
|
$this->assertEquals('ÅÄÖ', DBField::create_field('Text', 'åäö')->UpperCase());
|
|
|
|
$this->assertEquals('åäö', DBField::create_field('Text', 'ÅÄÖ')->LowerCase());
|
2016-06-17 08:49:23 +02:00
|
|
|
$this->assertEquals('<P>ÅÄÖ</P>', DBField::create_field('HTMLFragment', '<p>åäö</p>')->UpperCase());
|
|
|
|
$this->assertEquals('<p>åäö</p>', DBField::create_field('HTMLFragment', '<p>ÅÄÖ</p>')->LowerCase());
|
2011-12-17 00:27:14 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-09-11 08:22:33 +02:00
|
|
|
}
|
|
|
|
|
2012-02-12 21:22:11 +01:00
|
|
|
|