mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
114 lines
2.8 KiB
PHP
114 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* TimeHelperTest file
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice
|
|
*
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://book.cakephp.org/view/1196/Testing 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('TimeHelper', 'View/Helper');
|
|
App::uses('View', 'View');
|
|
App::uses('CakeTime', 'Utility');
|
|
|
|
/**
|
|
* TimeHelperTestObject class
|
|
*/
|
|
class TimeHelperTestObject extends TimeHelper {
|
|
|
|
public function attach(CakeTimeMock $cakeTime) {
|
|
$this->_engine = $cakeTime;
|
|
}
|
|
|
|
public function engine() {
|
|
return $this->_engine;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* CakeTimeMock class
|
|
*/
|
|
class CakeTimeMock {
|
|
}
|
|
|
|
/**
|
|
* TimeHelperTest class
|
|
*
|
|
* @package Cake.Test.Case.View.Helper
|
|
*/
|
|
class TimeHelperTest extends CakeTestCase {
|
|
|
|
public $Time = null;
|
|
|
|
public $CakeTime = null;
|
|
|
|
/**
|
|
* setUp method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$this->View = new View(null);
|
|
}
|
|
|
|
/**
|
|
* tearDown method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function tearDown() {
|
|
unset($this->View);
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* test CakeTime class methods are called correctly
|
|
*/
|
|
public function testTimeHelperProxyMethodCalls() {
|
|
$methods = array(
|
|
'convertSpecifiers', 'convert', 'serverOffset', 'fromString',
|
|
'nice', 'niceShort', 'daysAsSql', 'dayAsSql',
|
|
'isToday', 'isThisMonth', 'isThisYear', 'wasYesterday',
|
|
'isTomorrow', 'toQuarter', 'toUnix', 'toAtom', 'toRSS',
|
|
'timeAgoInWords', 'wasWithinLast', 'gmt', 'format', 'i18nFormat',
|
|
);
|
|
$CakeTime = $this->getMock('CakeTimeMock', $methods);
|
|
$Time = new TimeHelperTestObject($this->View, array('engine' => 'CakeTimeMock'));
|
|
$Time->attach($CakeTime);
|
|
foreach ($methods as $method) {
|
|
$CakeTime->expects($this->at(0))->method($method);
|
|
$Time->{$method}('who', 'what', 'when', 'where', 'how');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* test engine override
|
|
*/
|
|
public function testEngineOverride() {
|
|
App::build(array(
|
|
'Utility' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Utility' . DS)
|
|
), APP::REGISTER);
|
|
$Time = new TimeHelperTestObject($this->View, array('engine' => 'TestAppEngine'));
|
|
$this->assertInstanceOf('TestAppEngine', $Time->engine());
|
|
|
|
App::build(array(
|
|
'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
|
|
));
|
|
CakePlugin::load('TestPlugin');
|
|
$Time = new TimeHelperTestObject($this->View, array('engine' => 'TestPlugin.TestPluginEngine'));
|
|
$this->assertInstanceOf('TestPluginEngine', $Time->engine());
|
|
CakePlugin::unload('TestPlugin');
|
|
}
|
|
|
|
}
|