123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- <?php
- /**
- * CakeNumberTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @package Cake.Test.Case.View.Helper
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('View', 'View');
- App::uses('CakeNumber', 'Utility');
- /**
- * CakeNumberTest class
- *
- * @package Cake.Test.Case.Utility
- */
- class CakeNumberTest extends CakeTestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->Number = new CakeNumber();
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- unset($this->Number);
- }
- /**
- * testFormatAndCurrency method
- *
- * @return void
- */
- public function testFormat() {
- $value = '100100100';
- $result = $this->Number->format($value, '#');
- $expected = '#100,100,100';
- $this->assertEquals($expected, $result);
- $result = $this->Number->format($value, 3);
- $expected = '100,100,100.000';
- $this->assertEquals($expected, $result);
- $result = $this->Number->format($value);
- $expected = '100,100,100';
- $this->assertEquals($expected, $result);
- $result = $this->Number->format($value, '-');
- $expected = '100-100-100';
- $this->assertEquals($expected, $result);
- $value = 0.00001;
- $result = $this->Number->format($value, array('places' => 1));
- $expected = '$0.0';
- $this->assertEquals($expected, $result);
- $value = -0.00001;
- $result = $this->Number->format($value, array('places' => 1));
- $expected = '$0.0';
- $this->assertEquals($expected, $result);
- }
- /**
- * testFormatDelta method
- *
- * @return void
- */
- public function testFormatDelta() {
- $value = '100100100';
- $result = $this->Number->formatDelta($value);
- $expected = '+100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->formatDelta($value, array('before' => '', 'after' => ''));
- $expected = '+100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->formatDelta($value, array('before' => '[', 'after' => ']'));
- $expected = '[+100,100,100.00]';
- $this->assertEquals($expected, $result);
- $result = $this->Number->formatDelta(-$value, array('before' => '[', 'after' => ']'));
- $expected = '[-100,100,100.00]';
- $this->assertEquals($expected, $result);
- $value = 0;
- $result = $this->Number->formatDelta($value, array('places' => 1, 'before' => '[', 'after' => ']'));
- $expected = '[0.0]';
- $this->assertEquals($expected, $result);
- $value = 0.0001;
- $result = $this->Number->formatDelta($value, array('places' => 1, 'before' => '[', 'after' => ']'));
- $expected = '[0.0]';
- $this->assertEquals($expected, $result);
- $value = 9876.1234;
- $result = $this->Number->formatDelta($value, array('places' => 1, 'decimals' => ',', 'thousands' => '.'));
- $expected = '+9.876,1';
- $this->assertEquals($expected, $result);
- }
- /**
- * testMultibyteFormat
- *
- * @return void
- */
- public function testMultibyteFormat() {
- $value = '5199100.0006';
- $result = $this->Number->format($value, array(
- 'thousands' => ' ',
- 'decimals' => '&',
- 'places' => 3,
- 'escape' => false,
- 'before' => '',
- ));
- $expected = '5 199 100&001';
- $this->assertEquals($expected, $result);
- $value = 1000.45;
- $result = $this->Number->format($value, array(
- 'thousands' => ',,',
- 'decimals' => '.a',
- 'escape' => false,
- ));
- $expected = '$1,,000.a45';
- $this->assertEquals($expected, $result);
- $value = 519919827593784.00;
- $this->Number->addFormat('RUR', array(
- 'thousands' => 'ø€ƒ‡™',
- 'decimals' => '(§.§)',
- 'escape' => false,
- 'wholeSymbol' => '€',
- 'wholePosition' => 'after',
- ));
- $result = $this->Number->currency($value, 'RUR');
- $expected = '519ø€ƒ‡™919ø€ƒ‡™827ø€ƒ‡™593ø€ƒ‡™784(§.§)00€';
- $this->assertEquals($expected, $result);
- $value = '13371337.1337';
- $result = CakeNumber::format($value, array(
- 'thousands' => '- |-| /-\ >< () |2 -',
- 'decimals' => '- £€€† -',
- 'before' => ''
- ));
- $expected = '13- |-| /-\ >< () |2 -371- |-| /-\ >< () |2 -337- £€€† -13';
- $this->assertEquals($expected, $result);
- }
- /**
- * Test currency method.
- *
- * @return void
- */
- public function testCurrency() {
- $value = '100100100';
- $result = $this->Number->currency($value);
- $expected = '$100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, '#');
- $expected = '#100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, false);
- $expected = '100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'USD');
- $expected = '$100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '€100.100.100,00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '£100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, '', array('thousands' => ' ', 'wholeSymbol' => '€', 'wholePosition' => 'after', 'decimals' => ',', 'zero' => 'Gratuit'));
- $expected = '100 100 100,00€';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(1000.45, null, array('after' => 'øre', 'before' => 'Kr. ', 'decimals' => ',', 'thousands' => '.'));
- $expected = 'Kr. 1.000,45';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.5, 'USD');
- $expected = '50c';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.5, null, array('after' => 'øre'));
- $expected = '50øre';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(1, null, array('wholeSymbol' => '$ '));
- $expected = '$ 1.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(1, null, array('wholeSymbol' => ' $', 'wholePosition' => 'after'));
- $expected = '1.00 $';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.2, null, array('wholeSymbol' => ' $', 'wholePosition' => 'after', 'fractionSymbol' => 'cents'));
- $expected = '20cents';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.2, null, array('wholeSymbol' => ' $', 'wholePosition' => 'after', 'fractionSymbol' => 'cents', 'fractionPosition' => 'before'));
- $expected = 'cents20';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(311, 'USD', array('wholePosition' => 'after'));
- $expected = '311.00$';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.2, 'EUR');
- $expected = '€0,20';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(12, null, array('wholeSymbol' => ' dollars', 'wholePosition' => 'after', 'fractionSymbol' => ' cents', 'fractionPosition' => 'after'));
- $expected = '12.00 dollars';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.12, null, array('wholeSymbol' => ' dollars', 'wholePosition' => 'after', 'fractionSymbol' => ' cents', 'fractionPosition' => 'after'));
- $expected = '12 cents';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.5, null, array('fractionSymbol' => false, 'fractionPosition' => 'before', 'wholeSymbol' => '$'));
- $expected = '$0.50';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0, 'GBP');
- $expected = '£0.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(0.00000, 'GBP');
- $expected = '£0.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('0.00000', 'GBP');
- $expected = '£0.00';
- $this->assertEquals($expected, $result);
- }
- /**
- * Test adding currency format options to the number helper
- *
- * @return void
- */
- public function testCurrencyAddFormat() {
- $this->Number->addFormat('NOK', array('before' => 'Kr. '));
- $result = $this->Number->currency(1000, 'NOK');
- $expected = 'Kr. 1,000.00';
- $this->assertEquals($expected, $result);
- $this->Number->addFormat('Other', array('before' => '$$ ', 'after' => 'c!'));
- $result = $this->Number->currency(0.22, 'Other');
- $expected = '22c!';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(-10, 'Other');
- $expected = '($$ 10.00)';
- $this->assertEquals($expected, $result);
- $this->Number->addFormat('Other2', array('before' => '$ ', 'after' => false));
- $result = $this->Number->currency(0.22, 'Other2');
- $expected = '$ 0.22';
- $this->assertEquals($expected, $result);
- }
- /**
- * Test default currency
- *
- * @return void
- */
- public function testDefaultCurrency() {
- $result = $this->Number->defaultCurrency();
- $this->assertEquals('USD', $result);
- $this->Number->addFormat('NOK', array('before' => 'Kr. '));
- $this->Number->defaultCurrency('NOK');
- $result = $this->Number->defaultCurrency();
- $this->assertEquals('NOK', $result);
- $result = $this->Number->currency(1000);
- $expected = 'Kr. 1,000.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(2000);
- $expected = 'Kr. 2,000.00';
- $this->assertEquals($expected, $result);
- $this->Number->defaultCurrency('EUR');
- $result = $this->Number->currency(1000);
- $expected = '€1.000,00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency(2000);
- $expected = '€2.000,00';
- $this->assertEquals($expected, $result);
- $this->Number->defaultCurrency('USD');
- }
- /**
- * testCurrencyPositive method
- *
- * @return void
- */
- public function testCurrencyPositive() {
- $value = '100100100';
- $result = $this->Number->currency($value);
- $expected = '$100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'USD', array('before' => '#'));
- $expected = '#100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, false);
- $expected = '100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'USD');
- $expected = '$100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '€100.100.100,00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '£100,100,100.00';
- $this->assertEquals($expected, $result);
- }
- /**
- * testCurrencyNegative method
- *
- * @return void
- */
- public function testCurrencyNegative() {
- $value = '-100100100';
- $result = $this->Number->currency($value);
- $expected = '($100,100,100.00)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '(€100.100.100,00)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '(£100,100,100.00)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'USD', array('negative' => '-'));
- $expected = '-$100,100,100.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR', array('negative' => '-'));
- $expected = '-€100.100.100,00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP', array('negative' => '-'));
- $expected = '-£100,100,100.00';
- $this->assertEquals($expected, $result);
- }
- /**
- * testCurrencyCentsPositive method
- *
- * @return void
- */
- public function testCurrencyCentsPositive() {
- $value = '0.99';
- $result = $this->Number->currency($value, 'USD');
- $expected = '99c';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '€0,99';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '99p';
- $this->assertEquals($expected, $result);
- }
- /**
- * testCurrencyCentsNegative method
- *
- * @return void
- */
- public function testCurrencyCentsNegative() {
- $value = '-0.99';
- $result = $this->Number->currency($value, 'USD');
- $expected = '(99c)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '(€0,99)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '(99p)';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'USD', array('negative' => '-'));
- $expected = '-99c';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR', array('negative' => '-'));
- $expected = '-€0,99';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP', array('negative' => '-'));
- $expected = '-99p';
- $this->assertEquals($expected, $result);
- }
- /**
- * testCurrencyZero method
- *
- * @return void
- */
- public function testCurrencyZero() {
- $value = '0';
- $result = $this->Number->currency($value, 'USD');
- $expected = '$0.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'EUR');
- $expected = '€0,00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP');
- $expected = '£0.00';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP', array('zero' => 'FREE!'));
- $expected = 'FREE!';
- $this->assertEquals($expected, $result);
- }
- /**
- * testCurrencyOptions method
- *
- * @return void
- */
- public function testCurrencyOptions() {
- $value = '1234567.89';
- $result = $this->Number->currency($value, null, array('before' => 'GBP'));
- $expected = 'GBP1,234,567.89';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP', array('places' => 0));
- $expected = '£1,234,568';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('1234567.8912345', null, array('before' => 'GBP', 'places' => 3));
- $expected = 'GBP1,234,567.891';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('650.120001', null, array('before' => 'GBP', 'places' => 4));
- $expected = 'GBP650.1200';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency($value, 'GBP', array('escape' => true));
- $expected = '&#163;1,234,567.89';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('0.35', 'USD', array('after' => false));
- $expected = '$0.35';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('0.35', 'GBP', array('after' => false));
- $expected = '£0.35';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('0.35', 'GBP');
- $expected = '35p';
- $this->assertEquals($expected, $result);
- $result = $this->Number->currency('0.35', 'EUR');
- $expected = '€0,35';
- $this->assertEquals($expected, $result);
- }
- /**
- * testToReadableSize method
- *
- * @return void
- */
- public function testToReadableSize() {
- $result = $this->Number->toReadableSize(0);
- $expected = '0 Bytes';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1);
- $expected = '1 Byte';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(45);
- $expected = '45 Bytes';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1023);
- $expected = '1023 Bytes';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024);
- $expected = '1 KB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 512);
- $expected = '512 KB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 - 1);
- $expected = '1.00 MB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 512);
- $expected = '512.00 MB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 - 1);
- $expected = '1.00 GB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 512);
- $expected = '512.00 GB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 1024 - 1);
- $expected = '1.00 TB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 1024 * 512);
- $expected = '512.00 TB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 1024 * 1024 - 1);
- $expected = '1024.00 TB';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 1024 * 1024 * 1024);
- $expected = (1024 * 1024) . '.00 TB';
- $this->assertEquals($expected, $result);
- }
- /**
- * test toReadableSize() with locales
- *
- * @return void
- */
- public function testReadableSizeLocalized() {
- $restore = setlocale(LC_NUMERIC, 0);
- setlocale(LC_NUMERIC, 'de_DE');
- $result = $this->Number->toReadableSize(1321205);
- $this->assertRegExp('/1[,.]26 MB/', $result);
- $result = $this->Number->toReadableSize(1024 * 1024 * 1024 * 512);
- $this->assertRegExp('/512[,.]00 GB/', $result);
- setlocale(LC_NUMERIC, $restore);
- }
- /**
- * testToPercentage method
- *
- * @return void
- */
- public function testToPercentage() {
- $result = $this->Number->toPercentage(45, 0);
- $expected = '45%';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toPercentage(45, 2);
- $expected = '45.00%';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toPercentage(0, 0);
- $expected = '0%';
- $this->assertEquals($expected, $result);
- $result = $this->Number->toPercentage(0, 4);
- $expected = '0.0000%';
- $this->assertEquals($expected, $result);
- }
- /**
- * testFromReadableSize
- *
- * @dataProvider filesizes
- * @return void
- */
- public function testFromReadableSize($params, $expected) {
- $result = $this->Number->fromReadableSize($params['size'], $params['default']);
- $this->assertEquals($expected, $result);
- }
- /**
- * testFromReadableSize
- *
- * @expectedException CakeException
- * @return void
- */
- public function testFromReadableSizeException() {
- $this->Number->fromReadableSize('bogus', false);
- }
- /**
- * filesizes dataprovider
- *
- * @return array
- */
- public function filesizes() {
- return array(
- array(array('size' => '512B', 'default' => false), 512),
- array(array('size' => '1KB', 'default' => false), 1024),
- array(array('size' => '1.5KB', 'default' => false), 1536),
- array(array('size' => '1MB', 'default' => false), 1048576),
- array(array('size' => '1mb', 'default' => false), 1048576),
- array(array('size' => '1.5MB', 'default' => false), 1572864),
- array(array('size' => '1GB', 'default' => false), 1073741824),
- array(array('size' => '1.5GB', 'default' => false), 1610612736),
- array(array('size' => '1K', 'default' => false), 1024),
- array(array('size' => '1.5K', 'default' => false), 1536),
- array(array('size' => '1M', 'default' => false), 1048576),
- array(array('size' => '1m', 'default' => false), 1048576),
- array(array('size' => '1.5M', 'default' => false), 1572864),
- array(array('size' => '1G', 'default' => false), 1073741824),
- array(array('size' => '1.5G', 'default' => false), 1610612736),
- array(array('size' => '512', 'default' => 'Unknown type'), 512),
- array(array('size' => '2VB', 'default' => 'Unknown type'), 'Unknown type')
- );
- }
- }
|