12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Locale\Stub;
- require_once __DIR__.'/../TestCase.php';
- use Symfony\Component\Locale\Locale;
- use Symfony\Component\Locale\Stub\StubNumberFormatter;
- use Symfony\Tests\Component\Locale\TestCase as LocaleTestCase;
- /**
- * Note that there are some values written like -2147483647 - 1. This is the lower 32bit int max and is a known
- * behavior of PHP.
- */
- class StubNumberFormatterTest extends LocaleTestCase
- {
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testConstructorWithUnsupportedLocale()
- {
- $formatter = new StubNumberFormatter('pt_BR');
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testConstructorWithUnsupportedStyle()
- {
- $formatter = new StubNumberFormatter('en', StubNumberFormatter::PATTERN_DECIMAL);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentNotImplementedException
- */
- public function testConstructorWithPatternDifferentThanNull()
- {
- $formatter = new StubNumberFormatter('en', StubNumberFormatter::DECIMAL, '');
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testSetAttributeWithUnsupportedAttribute()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setAttribute(StubNumberFormatter::LENIENT_PARSE, null);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testSetAttributeInvalidRoundingMode()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $ret = $formatter->setAttribute(StubNumberFormatter::ROUNDING_MODE, null);
- }
- public function testCreateStub()
- {
- $this->assertInstanceOf(
- 'Symfony\Component\Locale\Stub\StubNumberFormatter',
- StubNumberFormatter::create('en', StubNumberFormatter::DECIMAL)
- );
- }
- public function testCreateIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->assertInstanceOf('\NumberFormatter', \NumberFormatter::create('en', \NumberFormatter::DECIMAL));
- }
- /**
- * @dataProvider formatCurrencyWithDecimalStyleProvider
- */
- public function testFormatCurrencyWithDecimalStyleStub($value, $currency, $expected)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $this->assertEquals($expected, $formatter->formatCurrency($value, $currency));
- }
- /**
- * @dataProvider formatCurrencyWithDecimalStyleProvider
- */
- public function testFormatCurrencyWithDecimalStyleIntl($value, $currency, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $this->assertEquals($expected, $formatter->formatCurrency($value, $currency));
- }
- public function formatCurrencyWithDecimalStyleProvider()
- {
- return array(
- array(100, 'ALL', '100'),
- array(100, 'BRL', '100.00'),
- array(100, 'CRC', '100'),
- array(100, 'JPY', '100'),
- array(100, 'CHF', '100'),
- array(-100, 'ALL', '-100'),
- array(-100, 'BRL', '-100'),
- array(-100, 'CRC', '-100'),
- array(-100, 'JPY', '-100'),
- array(-100, 'CHF', '-100'),
- array(1000.12, 'ALL', '1,000.12'),
- array(1000.12, 'BRL', '1,000.12'),
- array(1000.12, 'CRC', '1,000.12'),
- array(1000.12, 'JPY', '1,000.12'),
- array(1000.12, 'CHF', '1,000.12')
- );
- }
- /**
- * @dataProvider formatCurrencyWithCurrencyStyleProvider
- */
- public function testFormatCurrencyWithCurrencyStyleStub($value, $currency, $expected)
- {
- $formatter = $this->getStubFormatterWithCurrencyStyle();
- $this->assertEquals($expected, $formatter->formatCurrency($value, $currency));
- }
- /**
- * @dataProvider formatCurrencyWithCurrencyStyleProvider
- */
- public function testFormatCurrencyWithCurrencyStyleIntl($value, $currency, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfICUVersionIsTooOld();
- $formatter = $this->getIntlFormatterWithCurrencyStyle();
- $this->assertEquals($expected, $formatter->formatCurrency($value, $currency));
- }
- public function formatCurrencyWithCurrencyStyleProvider()
- {
- return array(
- array(100, 'ALL', 'ALL100'),
- array(-100, 'ALL', '(ALL100)'),
- array(1000.12, 'ALL', 'ALL1,000'),
- array(100, 'BRL', 'R$100.00'),
- array(-100, 'BRL', '(R$100.00)'),
- array(1000.12, 'BRL', 'R$1,000.12'),
- array(100, 'CRC', '₡100'),
- array(-100, 'CRC', '(₡100)'),
- array(1000.12, 'CRC', '₡1,000'),
- array(100, 'JPY', '¥100'),
- array(-100, 'JPY', '(¥100)'),
- array(1000.12, 'JPY', '¥1,000'),
- array(100, 'EUR', '€100.00'),
- array(-100, 'EUR', '(€100.00)'),
- array(1000.12, 'EUR', '€1,000.12'),
- // Rounding checks
- array(1000.121, 'BRL', 'R$1,000.12'),
- array(1000.123, 'BRL', 'R$1,000.12'),
- array(1000.125, 'BRL', 'R$1,000.12'),
- array(1000.127, 'BRL', 'R$1,000.13'),
- array(1000.129, 'BRL', 'R$1,000.13'),
- array(11.50999, 'BRL', 'R$11.51'),
- array(11.9999464, 'BRL', 'R$12.00')
- );
- }
- /**
- * @dataProvider formatCurrencyWithCurrencyStyleSwissRoundingProvider
- */
- public function testFormatCurrencyWithCurrencyStyleSwissRoundingStub($value, $currency, $symbol, $expected)
- {
- $formatter = $this->getStubFormatterWithCurrencyStyle();
- $this->assertEquals(sprintf($expected, 'CHF'), $formatter->formatCurrency($value, $currency));
- }
- /**
- * @dataProvider formatCurrencyWithCurrencyStyleSwissRoundingProvider
- */
- public function testFormatCurrencyWithCurrencyStyleSwissRoundingIntl($value, $currency, $symbol, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfICUVersionIsTooOld();
- $formatter = $this->getIntlFormatterWithCurrencyStyle();
- $this->assertEquals(sprintf($expected, $symbol), $formatter->formatCurrency($value, $currency));
- }
- public function formatCurrencyWithCurrencyStyleSwissRoundingProvider()
- {
- // The currency symbol was updated from 4.2 to the 4.4 version. The ICU CLDR data was updated in 2010-03-03,
- // the 4.2 release is from 2009-05-08 and the 4.4 from 2010-03-17. It's ugly we want to compare if the
- // stub implementation is behaving like the intl one
- // http://bugs.icu-project.org/trac/changeset/27776/icu/trunk/source/data/curr/en.txt
- $chf = $this->isIntlExtensionLoaded() && $this->isLowerThanIcuVersion('4.4') ? 'Fr.' : 'CHF';
- return array(
- array(100, 'CHF', $chf, '%s100.00'),
- array(-100, 'CHF', $chf, '(%s100.00)'),
- array(1000.12, 'CHF', $chf, '%s1,000.10'),
- array('1000.12', 'CHF', $chf, '%s1,000.10'),
- // Rounding checks
- array(1000.121, 'CHF', $chf, '%s1,000.10'),
- array(1000.123, 'CHF', $chf, '%s1,000.10'),
- array(1000.125, 'CHF', $chf, '%s1,000.10'),
- array(1000.127, 'CHF', $chf, '%s1,000.15'),
- array(1000.129, 'CHF', $chf, '%s1,000.15'),
- array(1200000.00, 'CHF', $chf, '%s1,200,000.00'),
- array(1200000.1, 'CHF', $chf, '%s1,200,000.10'),
- array(1200000.10, 'CHF', $chf, '%s1,200,000.10'),
- array(1200000.101, 'CHF', $chf, '%s1,200,000.10')
- );
- }
- public function testFormatStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $this->assertSame('9.555', $formatter->format(9.555));
- }
- public function testFormatIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $this->assertSame('9.555', $formatter->format(9.555));
- }
- /**
- * @expectedException RuntimeException
- */
- public function testFormatWithCurrencyStyleStub()
- {
- $formatter = $this->getStubFormatterWithCurrencyStyle();
- $formatter->format(1);
- }
- public function testFormatWithCurrencyStyleIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithCurrencyStyle();
- $formatter->setSymbol(\NumberFormatter::CURRENCY_SYMBOL, 'SFD');
- $this->assertEquals('SFD1.00', $formatter->format(1));
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeInt32Stub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->format(1, StubNumberFormatter::TYPE_INT32);
- }
- /**
- * @dataProvider formatTypeInt32Provider
- */
- public function testFormatTypeInt32Intl($formatter, $value, $expected, $message = '')
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formattedValue = $formatter->format($value, \NumberFormatter::TYPE_INT32);
- $this->assertEquals($expected, $formattedValue, $message);
- }
- public function formatTypeInt32Provider()
- {
- $df = $this->getIntlFormatterWithDecimalStyle();
- $cf = $this->getIntlFormatterWithCurrencyStyle();
- $message = '->format() TYPE_INT32 formats inconsistently an integer if out of the 32 bit range.';
- return array(
- array($df, 1, '1'),
- array($df, 1.1, '1'),
- array($df, 2147483648, '-2,147,483,648', $message),
- array($df, -2147483649, '2,147,483,647', $message),
- array($cf, 1, 'SFD1.00'),
- array($cf, 1.1, 'SFD1.00'),
- array($cf, 2147483648, '(SFD2,147,483,648.00)', $message),
- array($cf, -2147483649, 'SFD2,147,483,647.00', $message)
- );
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeInt64Stub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->format(1, StubNumberFormatter::TYPE_INT64);
- }
- /**
- * The parse() method works differently with integer out of the 32 bit range. format() works fine.
- * @dataProvider formatTypeInt64Provider
- */
- public function testFormatTypeInt64Intl($formatter, $value, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formattedValue = $formatter->format($value, \NumberFormatter::TYPE_INT64);
- $this->assertEquals($expected, $formattedValue);
- }
- public function formatTypeInt64Provider()
- {
- $df = $this->getIntlFormatterWithDecimalStyle();
- $cf = $this->getIntlFormatterWithCurrencyStyle();
- return array(
- array($df, 1, '1'),
- array($df, 1.1, '1'),
- array($df, 2147483648, '2,147,483,648'),
- array($df, -2147483649, '-2,147,483,649'),
- array($cf, 1, 'SFD1.00'),
- array($cf, 1.1, 'SFD1.00'),
- array($cf, 2147483648, 'SFD2,147,483,648.00'),
- array($cf, -2147483649, '(SFD2,147,483,649.00)')
- );
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeDoubleStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->format(1, StubNumberFormatter::TYPE_DOUBLE);
- }
- /**
- * @dataProvider formatTypeDoubleProvider
- */
- public function testFormatTypeDoubleIntl($formatter, $value, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formattedValue = $formatter->format($value, \NumberFormatter::TYPE_DOUBLE);
- $this->assertEquals($expected, $formattedValue);
- }
- public function formatTypeDoubleProvider()
- {
- $df = $this->getIntlFormatterWithDecimalStyle();
- $cf = $this->getIntlFormatterWithCurrencyStyle();
- return array(
- array($df, 1, '1'),
- array($df, 1.1, '1.1'),
- array($cf, 1, 'SFD1.00'),
- array($cf, 1.1, 'SFD1.10'),
- );
- }
- /**
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testFormatTypeCurrencyStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->format(1, StubNumberFormatter::TYPE_CURRENCY);
- }
- public function testFormatTypeCurrencyReturnStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $this->assertFalse(@$formatter->format(1, StubNumberFormatter::TYPE_CURRENCY));
- }
- /**
- * @dataProvider formatTypeCurrencyProvider
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testFormatTypeCurrencyIntl($formatter, $value)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formattedValue = $formatter->format($value, \NumberFormatter::TYPE_CURRENCY);
- }
- public function formatTypeCurrencyProvider()
- {
- $df = $this->getIntlFormatterWithDecimalStyle();
- $cf = $this->getIntlFormatterWithCurrencyStyle();
- return array(
- array($df, 1),
- array($df, 1),
- );
- }
- /**
- * @dataProvider formatFractionDigitsProvider
- */
- public function testFormatFractionDigitsStub($value, $expected, $fractionDigits = null, $expectedFractionDigits = 1)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- if (null !== $fractionDigits) {
- $attributeRet = $formatter->setAttribute(StubNumberFormatter::FRACTION_DIGITS, $fractionDigits);
- }
- $formattedValue = $formatter->format($value);
- $this->assertSame($expected, $formattedValue);
- $this->assertSame($expectedFractionDigits, $formatter->getAttribute(StubNumberFormatter::FRACTION_DIGITS));
- if (isset($attributeRet)) {
- $this->assertTrue($attributeRet);
- }
- }
- /**
- * @dataProvider formatFractionDigitsProvider
- */
- public function testFormatFractionDigitsIntl($value, $expected, $fractionDigits = null, $expectedFractionDigits = 1)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- if (null !== $fractionDigits) {
- $attributeRet = $formatter->setAttribute(\NumberFormatter::FRACTION_DIGITS, $fractionDigits);
- }
- $formattedValue = $formatter->format($value);
- $this->assertSame($expected, $formattedValue);
- $this->assertSame($expectedFractionDigits, $formatter->getAttribute(\NumberFormatter::FRACTION_DIGITS));
- if (isset($attributeRet)) {
- $this->assertTrue($attributeRet);
- }
- }
- public function formatFractionDigitsProvider()
- {
- return array(
- array(1.123, '1.123', null, 0),
- array(1.123, '1', 0, 0),
- array(1.123, '1.1', 1, 1),
- array(1.123, '1.12', 2, 2),
- array(1.123, '1', -1, 0),
- array(1.123, '1', 'abc', 0)
- );
- }
- /**
- * @dataProvider formatGroupingUsedProvider
- */
- public function testFormatGroupingUsedStub($value, $expected, $groupingUsed = null, $expectedGroupingUsed = 1)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- if (null !== $groupingUsed) {
- $attributeRet = $formatter->setAttribute(StubNumberFormatter::GROUPING_USED, $groupingUsed);
- }
- $formattedValue = $formatter->format($value);
- $this->assertSame($expected, $formattedValue);
- $this->assertSame($expectedGroupingUsed, $formatter->getAttribute(StubNumberFormatter::GROUPING_USED));
- if (isset($attributeRet)) {
- $this->assertTrue($attributeRet);
- }
- }
- /**
- * @dataProvider formatGroupingUsedProvider
- */
- public function testFormatGroupingUsedIntl($value, $expected, $groupingUsed = null, $expectedGroupingUsed = 1)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- if (null !== $groupingUsed) {
- $attributeRet = $formatter->setAttribute(\NumberFormatter::GROUPING_USED, $groupingUsed);
- }
- $formattedValue = $formatter->format($value);
- $this->assertSame($expected, $formattedValue);
- $this->assertSame($expectedGroupingUsed, $formatter->getAttribute(\NumberFormatter::GROUPING_USED));
- if (isset($attributeRet)) {
- $this->assertTrue($attributeRet);
- }
- }
- public function formatGroupingUsedProvider()
- {
- return array(
- array(1000, '1,000', null, 1),
- array(1000, '1000', 0, 0),
- array(1000, '1,000', 1, 1),
- array(1000, '1,000', 2, 1),
- array(1000, '1000', 'abc', 0),
- array(1000, '1,000', -1, 1),
- );
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfUpProvider
- */
- public function testFormatRoundingModeStubRoundHalfUp($value, $expected)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setAttribute(StubNumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(StubNumberFormatter::ROUNDING_MODE, StubNumberFormatter::ROUND_HALFUP);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFUP rounding mode.');
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfUpProvider
- */
- public function testFormatRoundingModeHalfUpIntl($value, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $formatter->setAttribute(\NumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(\NumberFormatter::ROUNDING_MODE, \NumberFormatter::ROUND_HALFUP);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFUP rounding mode.');
- }
- public function formatRoundingModeRoundHalfUpProvider()
- {
- // The commented value is differently rounded by intl's NumberFormatter in 32 and 64 bit architectures
- return array(
- array(1.121, '1.12'),
- array(1.123, '1.12'),
- // array(1.125, '1.13'),
- array(1.127, '1.13'),
- array(1.129, '1.13'),
- );
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfDownProvider
- */
- public function testFormatRoundingModeStubRoundHalfDown($value, $expected)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setAttribute(StubNumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(StubNumberFormatter::ROUNDING_MODE, StubNumberFormatter::ROUND_HALFDOWN);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFDOWN rounding mode.');
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfDownProvider
- */
- public function testFormatRoundingModeHalfDownIntl($value, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $formatter->setAttribute(\NumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(\NumberFormatter::ROUNDING_MODE, \NumberFormatter::ROUND_HALFDOWN);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFDOWN rounding mode.');
- }
- public function formatRoundingModeRoundHalfDownProvider()
- {
- return array(
- array(1.121, '1.12'),
- array(1.123, '1.12'),
- array(1.125, '1.12'),
- array(1.127, '1.13'),
- array(1.129, '1.13'),
- );
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfEvenProvider
- */
- public function testFormatRoundingModeStubRoundHalfEven($value, $expected)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setAttribute(StubNumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(StubNumberFormatter::ROUNDING_MODE, StubNumberFormatter::ROUND_HALFEVEN);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFEVEN rounding mode.');
- }
- /**
- * @dataProvider formatRoundingModeRoundHalfEvenProvider
- */
- public function testFormatRoundingModeHalfEvenIntl($value, $expected)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $formatter->setAttribute(\NumberFormatter::FRACTION_DIGITS, 2);
- $formatter->setAttribute(\NumberFormatter::ROUNDING_MODE, \NumberFormatter::ROUND_HALFEVEN);
- $this->assertSame($expected, $formatter->format($value), '->format() with ROUND_HALFEVEN rounding mode.');
- }
- public function formatRoundingModeRoundHalfEvenProvider()
- {
- return array(
- array(1.121, '1.12'),
- array(1.123, '1.12'),
- array(1.125, '1.12'),
- array(1.127, '1.13'),
- array(1.129, '1.13'),
- );
- }
- public function testGetErrorCode()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $this->assertEquals(StubNumberFormatter::U_ZERO_ERROR, $formatter->getErrorCode());
- }
- public function testGetLocale()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $this->assertEquals('en', $formatter->getLocale());
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testGetPattern()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->getPattern();
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testGetSymbol()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->getSymbol(null);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testGetTextAttribute()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->getTextAttribute(null);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testParseCurrency()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->parseCurrency(null, $currency);
- }
- /**
- * @dataProvider parseProvider
- */
- public function testParseStub($value, $expected, $message = '')
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, StubNumberFormatter::TYPE_DOUBLE);
- $this->assertSame($expected, $parsedValue, $message);
- if ($expected === false) {
- $this->assertSame($formatter::U_PARSE_ERROR, $formatter->getErrorCode());
- } else {
- $this->assertEquals($formatter::U_ZERO_ERROR, $formatter->getErrorCode());
- }
- }
- /**
- * @dataProvider parseProvider
- */
- public function testParseIntl($value, $expected, $message = '')
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfICUVersionIsTooOld();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, \NumberFormatter::TYPE_DOUBLE);
- $this->assertSame($expected, $parsedValue, $message);
- if ($expected === false) {
- $this->assertSame(U_PARSE_ERROR, $formatter->getErrorCode());
- } else {
- $this->assertEquals(U_ZERO_ERROR, $formatter->getErrorCode());
- }
- }
- public function parseProvider()
- {
- return array(
- array('prefix1', false, '->parse() does not parse a number with a string prefix.'),
- array('1suffix', (float) 1, '->parse() parses a number with a string suffix.'),
- );
- }
- /**
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testParseTypeDefaultStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->parse('1', StubNumberFormatter::TYPE_DEFAULT);
- }
- /**
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testParseTypeDefaultIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $formatter->parse('1', \NumberFormatter::TYPE_DEFAULT);
- }
- /**
- * @dataProvider parseTypeInt32Provider
- */
- public function testParseTypeInt32Stub($value, $expected, $message = '')
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, StubNumberFormatter::TYPE_INT32);
- $this->assertSame($expected, $parsedValue);
- }
- /**
- * @dataProvider parseTypeInt32Provider
- */
- public function testParseTypeInt32Intl($value, $expected, $message = '')
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, \NumberFormatter::TYPE_INT32);
- $this->assertSame($expected, $parsedValue);
- }
- public function parseTypeInt32Provider()
- {
- return array(
- array('1', 1),
- array('1.1', 1),
- array('2,147,483,647', 2147483647),
- array('-2,147,483,648', -2147483647 - 1),
- array('2,147,483,648', false, '->parse() TYPE_INT32 returns false when the number is greater than the integer positive range.'),
- array('-2,147,483,649', false, '->parse() TYPE_INT32 returns false when the number is greater than the integer negative range.')
- );
- }
- // Stub Tests
- public function testParseTypeInt64StubWith32BitIntegerInPhp32Bit()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfNot32Bit();
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,647', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue);
- // Look that the parsing of '-2,147,483,648' results in a float like the literal -2147483648
- $parsedValue = $formatter->parse('-2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(((float) -2147483647 - 1), $parsedValue);
- }
- public function testParseTypeInt64StubWith32BitIntegerInPhp64Bit()
- {
- $this->skipIfNot64Bit();
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,647', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue);
- $parsedValue = $formatter->parse('-2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(-2147483647 - 1, $parsedValue);
- }
- /**
- * If PHP is compiled in 32bit mode, the returned value for a 64bit integer are float numbers.
- */
- public function testParseTypeInt64StubWith64BitIntegerInPhp32Bit()
- {
- $this->skipIfNot32Bit();
- $formatter = $this->getStubFormatterWithDecimalStyle();
- // int 64 using only 32 bit range strangeness
- $parsedValue = $formatter->parse('2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(2147483648, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- $parsedValue = $formatter->parse('-2,147,483,649', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(-2147483649, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- }
- /**
- * If PHP is compiled in 64bit mode, the returned value for a 64bit integer are 32bit integer numbers.
- */
- public function testParseTypeInt64StubWith64BitIntegerInPhp64Bit()
- {
- $this->skipIfNot64Bit();
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(-2147483647 - 1, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- $parsedValue = $formatter->parse('-2,147,483,649', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- }
- // Intl Tests
- public function testParseTypeInt64IntlWith32BitIntegerInPhp32Bit()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfNot32Bit();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,647', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue);
- // Look that the parsing of '-2,147,483,648' results in a float like the literal -2147483648
- $parsedValue = $formatter->parse('-2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(((float) -2147483647 - 1), $parsedValue);
- }
- public function testParseTypeInt64IntlWith32BitIntegerInPhp64Bit()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfNot64Bit();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,647', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue);
- $parsedValue = $formatter->parse('-2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(-2147483647 - 1, $parsedValue);
- }
- /**
- * If PHP is compiled in 32bit mode, the returned value for a 64bit integer are float numbers.
- */
- public function testParseTypeInt64IntlWith64BitIntegerInPhp32Bit()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfNot32Bit();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- // int 64 using only 32 bit range strangeness
- $parsedValue = $formatter->parse('2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(2147483648, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- $parsedValue = $formatter->parse('-2,147,483,649', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('float', $parsedValue);
- $this->assertEquals(-2147483649, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- }
- /**
- * If PHP is compiled in 64bit mode, the returned value for a 64bit integer are 32bit integer numbers.
- */
- public function testParseTypeInt64IntlWith64BitIntegerInPhp64Bit()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $this->skipIfNot64Bit();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('2,147,483,648', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(-2147483647 - 1, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- $parsedValue = $formatter->parse('-2,147,483,649', \NumberFormatter::TYPE_INT64);
- $this->assertInternalType('integer', $parsedValue);
- $this->assertEquals(2147483647, $parsedValue, '->parse() TYPE_INT64 does not use true 64 bit integers, using only the 32 bit range.');
- }
- /**
- * @dataProvider parseTypeDoubleProvider
- */
- public function testParseTypeDoubleStub($value, $expectedValue)
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, StubNumberFormatter::TYPE_DOUBLE);
- $this->assertSame($expectedValue, $parsedValue);
- }
- /**
- * @dataProvider parseTypeDoubleProvider
- */
- public function testParseTypeDoubleIntl($value, $expectedValue)
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse($value, \NumberFormatter::TYPE_DOUBLE);
- $this->assertSame($expectedValue, $parsedValue);
- }
- public function parseTypeDoubleProvider()
- {
- return array(
- array('1', (float) 1),
- array('1.1', 1.1),
- array('9,223,372,036,854,775,808', 9223372036854775808),
- array('-9,223,372,036,854,775,809', -9223372036854775809),
- );
- }
- /**
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testParseTypeCurrencyStub()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->parse('1', StubNumberFormatter::TYPE_CURRENCY);
- }
- /**
- * @expectedException PHPUnit_Framework_Error_Warning
- */
- public function testParseTypeCurrencyIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $formatter->parse('1', \NumberFormatter::TYPE_CURRENCY);
- }
- public function testParseWithNullPositionValueStub()
- {
- $position = null;
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->parse('123', StubNumberFormatter::TYPE_INT32, $position);
- $this->assertNull($position);
- }
- public function testParseWithNullPositionValueIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $position = 0;
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('123', \NumberFormatter::TYPE_DOUBLE, $position);
- $this->assertEquals(3, $position);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodArgumentNotImplementedException
- */
- public function testParseWithNotNullPositionValueStub()
- {
- $position = 1;
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->parse('123', StubNumberFormatter::TYPE_INT32, $position);
- }
- public function testParseWithNotNullPositionValueIntl()
- {
- $this->skipIfIntlExtensionIsNotLoaded();
- $position = 1;
- $formatter = $this->getIntlFormatterWithDecimalStyle();
- $parsedValue = $formatter->parse('123', \NumberFormatter::TYPE_DOUBLE, $position);
- $this->assertEquals(3, $position);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testSetPattern()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setPattern(null);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testSetSymbol()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setSymbol(null, null);
- }
- /**
- * @expectedException Symfony\Component\Locale\Exception\MethodNotImplementedException
- */
- public function testSetTextAttribute()
- {
- $formatter = $this->getStubFormatterWithDecimalStyle();
- $formatter->setTextAttribute(null, null);
- }
- protected function getStubFormatterWithDecimalStyle()
- {
- return new StubNumberFormatter('en', StubNumberFormatter::DECIMAL);
- }
- protected function getStubFormatterWithCurrencyStyle()
- {
- return new StubNumberFormatter('en', StubNumberFormatter::CURRENCY);
- }
- protected function getIntlFormatterWithDecimalStyle()
- {
- if (!$this->isIntlExtensionLoaded()) {
- return null;
- }
- return new \NumberFormatter('en', \NumberFormatter::DECIMAL);
- }
- protected function getIntlFormatterWithCurrencyStyle()
- {
- if (!$this->isIntlExtensionLoaded()) {
- return null;
- }
- $formatter = new \NumberFormatter('en', \NumberFormatter::CURRENCY);
- $formatter->setSymbol(\NumberFormatter::CURRENCY_SYMBOL, 'SFD');
- return $formatter;
- }
- }
|