123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?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\Component\Intl\Tests\NumberFormatter;
- use Symfony\Component\Intl\Globals\IntlGlobals;
- use Symfony\Component\Intl\NumberFormatter\NumberFormatter;
- /**
- * 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 NumberFormatterTest extends AbstractNumberFormatterTest
- {
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testConstructorWithUnsupportedLocale()
- {
- new NumberFormatter('pt_BR');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testConstructorWithUnsupportedStyle()
- {
- new NumberFormatter('en', NumberFormatter::PATTERN_DECIMAL);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentNotImplementedException
- */
- public function testConstructorWithPatternDifferentThanNull()
- {
- new NumberFormatter('en', NumberFormatter::DECIMAL, '');
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testSetAttributeWithUnsupportedAttribute()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->setAttribute(NumberFormatter::LENIENT_PARSE, null);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testSetAttributeInvalidRoundingMode()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->setAttribute(NumberFormatter::ROUNDING_MODE, null);
- }
- public function testConstructWithoutLocale()
- {
- $this->assertInstanceOf(
- '\Symfony\Component\Intl\NumberFormatter\NumberFormatter',
- $this->getNumberFormatter(null, NumberFormatter::DECIMAL)
- );
- }
- public function testCreate()
- {
- $this->assertInstanceOf(
- '\Symfony\Component\Intl\NumberFormatter\NumberFormatter',
- NumberFormatter::create('en', NumberFormatter::DECIMAL)
- );
- }
- /**
- * @expectedException \RuntimeException
- */
- public function testFormatWithCurrencyStyle()
- {
- parent::testFormatWithCurrencyStyle();
- }
- /**
- * @dataProvider formatTypeInt32Provider
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeInt32($formatter, $value, $expected, $message = '')
- {
- parent::testFormatTypeInt32($formatter, $value, $expected, $message);
- }
- /**
- * @dataProvider formatTypeInt32WithCurrencyStyleProvider
- * @expectedException \Symfony\Component\Intl\Exception\NotImplementedException
- */
- public function testFormatTypeInt32WithCurrencyStyle($formatter, $value, $expected, $message = '')
- {
- parent::testFormatTypeInt32WithCurrencyStyle($formatter, $value, $expected, $message);
- }
- /**
- * @dataProvider formatTypeInt64Provider
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeInt64($formatter, $value, $expected)
- {
- parent::testFormatTypeInt64($formatter, $value, $expected);
- }
- /**
- * @dataProvider formatTypeInt64WithCurrencyStyleProvider
- * @expectedException \Symfony\Component\Intl\Exception\NotImplementedException
- */
- public function testFormatTypeInt64WithCurrencyStyle($formatter, $value, $expected)
- {
- parent::testFormatTypeInt64WithCurrencyStyle($formatter, $value, $expected);
- }
- /**
- * @dataProvider formatTypeDoubleProvider
- * @expectedException \Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException
- */
- public function testFormatTypeDouble($formatter, $value, $expected)
- {
- parent::testFormatTypeDouble($formatter, $value, $expected);
- }
- /**
- * @dataProvider formatTypeDoubleWithCurrencyStyleProvider
- * @expectedException \Symfony\Component\Intl\Exception\NotImplementedException
- */
- public function testFormatTypeDoubleWithCurrencyStyle($formatter, $value, $expected)
- {
- parent::testFormatTypeDoubleWithCurrencyStyle($formatter, $value, $expected);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodNotImplementedException
- */
- public function testGetPattern()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->getPattern();
- }
- public function testGetErrorCode()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $this->assertEquals(IntlGlobals::U_ZERO_ERROR, $formatter->getErrorCode());
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodNotImplementedException
- */
- public function testParseCurrency()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->parseCurrency(null, $currency);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodNotImplementedException
- */
- public function testSetPattern()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->setPattern(null);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodNotImplementedException
- */
- public function testSetSymbol()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->setSymbol(null, null);
- }
- /**
- * @expectedException \Symfony\Component\Intl\Exception\MethodNotImplementedException
- */
- public function testSetTextAttribute()
- {
- $formatter = $this->getNumberFormatter('en', NumberFormatter::DECIMAL);
- $formatter->setTextAttribute(null, null);
- }
- protected function getNumberFormatter($locale = 'en', $style = null, $pattern = null)
- {
- return new NumberFormatter($locale, $style, $pattern);
- }
- protected function getIntlErrorMessage()
- {
- return IntlGlobals::getErrorMessage();
- }
- protected function getIntlErrorCode()
- {
- return IntlGlobals::getErrorCode();
- }
- protected function isIntlFailure($errorCode)
- {
- return IntlGlobals::isFailure($errorCode);
- }
- }
|