silverstripe-framework/tests/forms/CurrencyFieldTest.php
Sam Minnee aeccb8b8e0 API: Move DBField subclasses into SilverStripe\Model\FieldType namespace
API: Deprecate SS_Datetime.

The DBField subclasses are have all been renamed to start with “DB” and
be in the SilverStripe\Model\FieldType namespace. To keep DataObject
definitions concise, the original short variations of their names are
preserved as service definitions. Most of the field generation code
doesn’t need to change, but where field classes are referenced directly,
changes will be needed.

SS_Datetime, which is commonly referenced outside the model system
itself, has been preserved as a subclass of DBDatetime. This has been
marked as deprecated and can be removed in SilverStripe 5.

A few places that referred to $db and $casting values weren’t using
the Injector to instantiate the relevant classes. This meant that the
remapping we have created as part of moving classes into a namespace
didn’t work.
2016-03-22 18:09:30 +13:00

256 lines
5.8 KiB
PHP

<?php
/**
* @package framework
* @subpackage tests
*/
class CurrencyFieldTest extends SapphireTest {
public function testValidate() {
$f = new CurrencyField('TestField');
$validator = new RequiredFields();
//tests with default currency symbol setting
$f->setValue('123.45');
$this->assertTrue(
$f->validate($validator),
'Validates positive decimals'
);
$f->setValue('-123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals'
);
$f->setValue('$123.45');
$this->assertTrue(
$f->validate($validator),
'Validates positive decimals with sign'
);
$f->setValue('-$123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals with sign'
);
$f->setValue('$-123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals with sign'
);
$f->setValue('324511434634');
$this->assertTrue(
$f->validate($validator),
'Validates large integers'
);
$f->setValue('test$1.23test');
$this->assertTrue(
$f->validate($validator),
'Alphanumeric is valid'
);
$f->setValue('$test');
$this->assertTrue(
$f->validate($validator),
'Words are valid'
);
//tests with updated currency symbol setting
Config::inst()->update('SilverStripe\Model\FieldType\DBCurrency', 'currency_symbol', '€');
$f->setValue('123.45');
$this->assertTrue(
$f->validate($validator),
'Validates positive decimals'
);
$f->setValue('-123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals'
);
$f->setValue('€123.45');
$this->assertTrue(
$f->validate($validator),
'Validates positive decimals with sign'
);
$f->setValue('-€123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals with sign'
);
$f->setValue('€-123.45');
$this->assertTrue(
$f->validate($validator),
'Validates negative decimals with sign'
);
$f->setValue('324511434634');
$this->assertTrue(
$f->validate($validator),
'Validates large integers'
);
$f->setValue('test€1.23test');
$this->assertTrue(
$f->validate($validator),
'Alphanumeric is valid'
);
$f->setValue('€test');
$this->assertTrue(
$f->validate($validator),
'Words are valid'
);
}
public function testSetValue() {
$f = new CurrencyField('TestField');
//tests with default currency symbol setting
$f->setValue('123.45');
$this->assertEquals(
$f->value, '$123.45',
'Prepends dollar sign to positive decimal'
);
$f->setValue('-123.45');
$this->assertEquals(
$f->value, '$-123.45',
'Prepends dollar sign to negative decimal'
);
$f->setValue('$1');
$this->assertEquals(
$f->value, '$1.00',
'Formats small value'
);
$f->setValue('$2.5');
$this->assertEquals(
$f->value, '$2.50',
'Formats small value'
);
$f->setValue('$2500000.13');
$this->assertEquals(
$f->value, '$2,500,000.13',
'Formats large value'
);
$f->setValue('$2.50000013');
$this->assertEquals(
$f->value, '$2.50',
'Truncates long decimal portions'
);
$f->setValue('test123.00test');
$this->assertEquals(
$f->value, '$123.00',
'Strips alpha values'
);
$f->setValue('test');
$this->assertEquals(
$f->value, '$0.00',
'Does not set alpha values'
);
//update currency symbol via config
Config::inst()->update('SilverStripe\Model\FieldType\DBCurrency', 'currency_symbol', '€');
$f->setValue('123.45');
$this->assertEquals(
$f->value, '€123.45',
'Prepends dollar sign to positive decimal'
);
$f->setValue('-123.45');
$this->assertEquals(
$f->value, '€-123.45',
'Prepends dollar sign to negative decimal'
);
$f->setValue('€1');
$this->assertEquals(
$f->value, '€1.00',
'Formats small value'
);
$f->setValue('€2.5');
$this->assertEquals(
$f->value, '€2.50',
'Formats small value'
);
$f->setValue('€2500000.13');
$this->assertEquals(
$f->value, '€2,500,000.13',
'Formats large value'
);
$f->setValue('€2.50000013');
$this->assertEquals(
$f->value, '€2.50',
'Truncates long decimal portions'
);
$f->setValue('test123.00test');
$this->assertEquals(
$f->value, '€123.00',
'Strips alpha values'
);
$f->setValue('test');
$this->assertEquals(
$f->value, '€0.00',
'Does not set alpha values'
);
}
public function testDataValue() {
$f = new CurrencyField('TestField');
//tests with default currency symbol settings
$f->setValue('$123.45');
$this->assertEquals(
$f->dataValue(), 123.45
);
$f->setValue('-$123.45');
$this->assertEquals(
$f->dataValue(), -123.45
);
$f->setValue('$-123.45');
$this->assertEquals(
$f->dataValue(), -123.45
);
//tests with updated currency symbol setting
Config::inst()->update('SilverStripe\Model\FieldType\DBCurrency', 'currency_symbol', '€');
$f->setValue('€123.45');
$this->assertEquals(
$f->dataValue(), 123.45
);
$f->setValue('-€123.45');
$this->assertEquals(
$f->dataValue(), -123.45
);
$f->setValue('€-123.45');
$this->assertEquals(
$f->dataValue(), -123.45
);
}
}