2008-08-23 17:28:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* CakeTestCaseTest file
|
2008-08-23 17:28:08 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* Test Case for CakeTestCase class
|
2008-08-23 17:28:08 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
2010-01-14 04:47:14 +00:00
|
|
|
* Copyright 2006-2010, Cake Software Foundation, Inc.
|
2008-08-23 17:28:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-14 04:47:14 +00:00
|
|
|
* @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.
|
|
|
|
* @since CakePHP v 1.2.0.4487
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-08-23 17:28:08 +00:00
|
|
|
*/
|
2009-03-21 23:55:39 +00:00
|
|
|
|
|
|
|
if (!class_exists('AppController')) {
|
|
|
|
require_once LIBS . 'controller' . DS . 'app_controller.php';
|
|
|
|
} elseif (!defined('APP_CONTROLLER_EXISTS')) {
|
|
|
|
define('APP_CONTROLLER_EXISTS', true);
|
|
|
|
}
|
2008-08-23 17:28:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CakeTestCaseTest
|
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs
|
2009-03-18 17:55:58 +00:00
|
|
|
*/
|
2008-08-23 17:28:08 +00:00
|
|
|
class CakeTestCaseTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-05-08 05:49:45 +00:00
|
|
|
public static function setUpBeforeClass() {
|
|
|
|
require_once TEST_CAKE_CORE_INCLUDE_PATH . DS . 'tests' . DS . 'fixtures' . DS . 'assert_tags_test_case.php';
|
|
|
|
require_once TEST_CAKE_CORE_INCLUDE_PATH . DS . 'tests' . DS . 'fixtures' . DS . 'fixturized_test_case.php';
|
|
|
|
}
|
|
|
|
|
2008-08-23 17:28:08 +00:00
|
|
|
/**
|
|
|
|
* setUp
|
2008-10-15 19:14:11 +00:00
|
|
|
*
|
2008-08-23 17:28:08 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
2008-10-15 19:14:11 +00:00
|
|
|
*/
|
2008-08-23 17:28:08 +00:00
|
|
|
function setUp() {
|
2009-10-21 02:19:32 +00:00
|
|
|
$this->_debug = Configure::read('debug');
|
2010-05-06 03:12:56 +00:00
|
|
|
$this->Reporter = $this->getMock('CakeHtmlReporter');
|
2008-08-23 17:28:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-18 17:55:58 +00:00
|
|
|
/**
|
|
|
|
* tearDown
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function tearDown() {
|
2009-10-21 02:19:32 +00:00
|
|
|
Configure::write('debug', $this->_debug);
|
2009-03-18 17:55:58 +00:00
|
|
|
unset($this->Case);
|
2010-05-06 03:12:56 +00:00
|
|
|
unset($this->Result);
|
2009-03-18 17:55:58 +00:00
|
|
|
unset($this->Reporter);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-08-23 17:28:08 +00:00
|
|
|
/**
|
2008-10-15 19:14:11 +00:00
|
|
|
* testAssertGoodTags
|
2008-08-23 17:28:08 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
2010-04-05 01:43:29 +00:00
|
|
|
*/
|
|
|
|
function testAssertTagsQuotes() {
|
2010-05-08 05:49:45 +00:00
|
|
|
$test = new AssertTagsTestCase('testAssertTagsQuotes');
|
|
|
|
$result = $test->run();
|
|
|
|
$this->assertEquals(0, $result->errorCount());
|
|
|
|
$this->assertTrue($result->wasSuccessful());
|
|
|
|
$this->assertEquals(0, $result->failureCount());
|
2010-04-05 01:43:29 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 17:28:08 +00:00
|
|
|
/**
|
2009-10-28 18:14:50 +00:00
|
|
|
* testNumericValuesInExpectationForAssertTags
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testNumericValuesInExpectationForAssertTags() {
|
2010-05-08 05:49:45 +00:00
|
|
|
$test = new AssertTagsTestCase('testNumericValuesInExpectationForAssertTags');
|
|
|
|
$result = $test->run();
|
|
|
|
$this->assertEquals(0, $result->errorCount());
|
|
|
|
$this->assertTrue($result->wasSuccessful());
|
|
|
|
$this->assertEquals(0, $result->failureCount());
|
2009-10-28 18:14:50 +00:00
|
|
|
}
|
2009-12-02 16:37:43 +00:00
|
|
|
|
2010-05-08 05:49:45 +00:00
|
|
|
/**
|
2008-08-23 17:28:08 +00:00
|
|
|
* testBadAssertTags
|
2008-10-15 19:14:11 +00:00
|
|
|
*
|
2008-08-23 17:28:08 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testBadAssertTags() {
|
2010-05-08 05:49:45 +00:00
|
|
|
$test = new AssertTagsTestCase('testBadAssertTags');
|
|
|
|
$result = $test->run();
|
|
|
|
$this->assertEquals(0, $result->errorCount());
|
|
|
|
$this->assertFalse($result->wasSuccessful());
|
|
|
|
$this->assertEquals(1, $result->failureCount());
|
|
|
|
|
|
|
|
$test = new AssertTagsTestCase('testBadAssertTags2');
|
|
|
|
$result = $test->run();
|
|
|
|
$this->assertEquals(0, $result->errorCount());
|
|
|
|
$this->assertFalse($result->wasSuccessful());
|
|
|
|
$this->assertEquals(1, $result->failureCount());
|
2008-08-23 17:28:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-08-23 17:28:08 +00:00
|
|
|
/**
|
|
|
|
* testLoadFixtures
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testLoadFixtures() {
|
2010-05-08 05:49:45 +00:00
|
|
|
$test = new FixturizedTestCase('testFixturePresent');
|
|
|
|
$result = $test->run();
|
|
|
|
//$this->Case->fixtures = array('core.post');
|
|
|
|
//$this->Case->autoFixtures = false;
|
|
|
|
//$this->Case->before('start');
|
|
|
|
//$this->expectError();
|
|
|
|
//$this->Case->loadFixtures('Wrong!');
|
|
|
|
//$this->Case->end();
|
2008-08-23 17:28:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-08-23 17:28:08 +00:00
|
|
|
/**
|
|
|
|
* testSkipIf
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2008-08-23 17:28:08 +00:00
|
|
|
function testSkipIf() {
|
2010-05-08 05:49:45 +00:00
|
|
|
//$this->Case = new SubjectCakeTestCase;
|
|
|
|
//$this->assertTrue($this->Case->skipIf(true));
|
|
|
|
//$this->assertFalse($this->Case->skipIf(false));
|
2008-08-23 17:28:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|