Changeset 18736
- Timestamp:
- 2010/06/22 18:40:10 (13 years ago)
- bzr:base-revision:
- ohkouchi@loop-az.jp-20100622085323-j5ygw8nt52f395cw
- bzr:committer:
- Kentaro Ohkouchi <ohkouchi@loop-az.jp>
- bzr:file-ids:
test/README.txt readme.txt-20100602082419-nsx4qv1cfndowwzx-1
test/TestSuite.php 15114@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Ftest%2FTestSuite.php
test/class/SC_DbConn_Test.php sc_dbconn_test.php-20100602082419-nsx4qv1cfndowwzx-2
test/class/db/DB_AllTests.php db_alltests.php-20100602082441-xww9qc01x54i611r-1
test/class/db/SC_DB_DBFactory_Test.php 15242@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Ftest%2Fclass%2Fdb%2FSC_DB_DBFactory_Test.php
test/class/db/SC_DB_MasterData_Test.php 15134@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Ftest%2Fclass%2Fdb%2FSC_DB_MasterData_Test.php
test/class/helper/Helper_AllTests.php helper_alltests.php-20100602082441-xww9qc01x54i611r-2
test/class/helper/SC_Helper_DB_Test.php 15242@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Ftest%2Fclass%2Fhelper%2FSC_Helper_DB_Test.php
test/class/logger logger-20100602082424-nz4465gncvn0f2ew-1
test/class/logger/GC_Log_Log4php_Test.php gc_log_log4php_test.-20100602082441-xww9qc01x54i611r-3
test/class/logger/GC_Logger_Test.php gc_logger_test.php-20100602082441-xww9qc01x54i611r-4
test/class/logger/conf conf-20100602082431-t9dv6n5sv9g4o3ap-1
test/class/logger/conf/log4php.properties log4php.properties-20100602082441-xww9qc01x54i611r-5
test/class/page/LC_Page_Test.php 15114@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Ftest%2Fclass%2Fpage%2FLC_Page_Test.php
test/class/page/Page_AllTests.php page_alltests.php-20100602082441-xww9qc01x54i611r-6- bzr:mapping-version:
- v4
- bzr:repository-uuid:
- 1e3b908f-19a9-db11-a64c-001125224ba8
- bzr:revision-id:
- ohkouchi@loop-az.jp-20100622094006-6fixjcfgfnisjj86
- bzr:revno:
- 1943
- bzr:revprop:branch-nick:
- branches/version-2_4
- bzr:root:
- branches/version-2_4
- bzr:text-parents:
test/TestSuite.php ohkouchi@loop-az.jp-20100622084403-entzq52cpgi048b3
test/class/db/SC_DB_DBFactory_Test.php ohkouchi@loop-az.jp-20100622084403-entzq52cpgi048b3
test/class/db/SC_DB_MasterData_Test.php ohkouchi@loop-az.jp-20100622084403-entzq52cpgi048b3
test/class/helper/SC_Helper_DB_Test.php ohkouchi@loop-az.jp-20100622084403-entzq52cpgi048b3
test/class/page/LC_Page_Test.php ohkouchi@loop-az.jp-20100622084403-entzq52cpgi048b3- bzr:timestamp:
- 2010-06-22 18:40:06.348000050 +0900
- bzr:user-agent:
- bzr2.1.1+bzr-svn1.0.2
- svn:original-date:
- 2010-06-22T09:40:06.348000Z
- Location:
- branches/version-2_4/test
- Files:
-
- 10 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_4/test/TestSuite.php
r18734 r18736 1 #!/usr/local/bin/php2 1 <?php 3 2 /* … … 23 22 */ 24 23 25 ini_set("include_path", ".:/usr/local/share/pear");26 24 // {{{ requires 27 25 require_once("../html/require.php"); 28 require_once("class/page/LC_Page_Test.php"); 29 require_once("class/db/SC_DB_DBFactory_Test.php"); 30 require_once("class/db/SC_DB_MasterData_Test.php"); 31 require_once("class/helper/SC_Helper_DB_Test.php"); 32 require_once("PHPUnit.php"); 26 require_once("class/page/Page_AllTests.php"); 27 require_once("class/db/DB_AllTests.php"); 28 require_once("class/helper/Helper_AllTests.php"); 29 require_once("PHPUnit/Framework.php"); 33 30 34 $suites = array(); 35 $suites[0] = new PHPUnit_TestSuite("LC_Page_Test"); 36 $suites[1] = new PHPUnit_TestSuite("SC_DB_DBFactory_Test"); 37 $suites[2] = new PHPUnit_TestSuite("SC_DB_MasterData_Test"); 38 $suites[3] = new PHPUnit_TestSuite("SC_Helper_DB_Test"); 31 /** 32 * EC-CUBE のテストスイート 33 * 34 * @author Kentaro Ohkouchi 35 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 36 */ 39 37 40 foreach ($suites as $suite) { 41 $result = PHPUnit::run($suite); 42 print $result->toString(); 38 class TestSuite { 39 public static function suite() { 40 $suite = new PHPUnit_Framework_TestSuite('ECCUBE'); 41 $suite->addTest(Page_AllTests::suite()); 42 $suite->addTest(DB_AllTests::suite()); 43 $suite->addTest(Helper_AllTests::suite()); 44 return $suite; 45 } 43 46 } 44 47 ?> -
branches/version-2_4/test/class/db/SC_DB_DBFactory_Test.php
r18734 r18736 23 23 24 24 // {{{ requires 25 require_once($include_dir . "/../data/class/db_extends/SC_DB_DBFactory_Ex.php"); // FIXME 26 require_once("PHPUnit/TestCase.php"); 25 require_once("../html/require.php"); 26 require_once("../data/class_extends/db_extends/SC_DB_DBFactory_Ex.php"); 27 require_once("PHPUnit/Framework.php"); 27 28 28 29 /** … … 33 34 * @version $Id:SC_DB_DBFactory_Test.php 15532 2007-08-31 14:39:46Z nanasess $ 34 35 */ 35 class SC_DB_DBFactory_Test extends PHPUnit_ TestCase {36 class SC_DB_DBFactory_Test extends PHPUnit_Framework_TestCase { 36 37 37 38 // }}} -
branches/version-2_4/test/class/db/SC_DB_MasterData_Test.php
r18734 r18736 23 23 24 24 // {{{ requires 25 require_once(CLASS_EX_PATH . "db_extends/SC_DB_MasterData_Ex.php"); 26 require_once("PHPUnit/TestCase.php"); 25 require_once("../html/require.php"); 26 require_once("../data/class_extends/db_extends/SC_DB_MasterData_Ex.php"); 27 require_once("PHPUnit/Framework.php"); 27 28 28 29 /** … … 33 34 * @version $Id:SC_DB_MasterData_Test.php 15532 2007-08-31 14:39:46Z nanasess $ 34 35 */ 35 class SC_DB_MasterData_Test extends PHPUnit_ TestCase {36 class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase { 36 37 37 38 // }}} … … 88 89 function testCreateCache() { 89 90 $masterData = new SC_DB_MasterData_Ex(); 90 $datas = $masterData->getDBMasterData("mtb_constants"); 91 $commentColumn = array("id", "remarks", "rank"); 92 $masterData->clearCache("mtb_constants"); 91 $datas = $masterData->getDBMasterData("mtb_constants"); 92 $commentColumn = array("id", "remarks", "rank"); 93 $masterData->clearCache("mtb_constants"); 93 94 $masterData->createCache("mtb_constants", $datas, true, 94 95 array("id", "remarks", "rank")); 95 96 $this->assertEquals(true, defined("ECCUBE_VERSION")); 96 97 } -
branches/version-2_4/test/class/helper/SC_Helper_DB_Test.php
r18734 r18736 23 23 24 24 // {{{ requires 25 // {{{ requires 26 require_once($include_dir . "/../data/class/helper_extends/SC_Helper_DB_Ex.php"); // FIXME 27 require_once("PHPUnit/TestCase.php"); 28 25 require_once("../html/require.php"); 26 require_once("../data/class_extends/helper_extends/SC_Helper_DB_Ex.php"); 27 require_once("PHPUnit/Framework.php"); 29 28 30 29 /** … … 35 34 * @version $Id$ 36 35 */ 37 class SC_Helper_DB_Test extends PHPUnit_ TestCase {36 class SC_Helper_DB_Test extends PHPUnit_Framework_TestCase { 38 37 39 38 /** … … 55 54 function testSfIndexExists() { 56 55 $objDb = new SC_Helper_DB_Ex(); 57 $this->assertEquals(true, $objDb->sfIndexExists("dtb_products", "category_id", 58 "dtb_products_category_id_key")); 56 $this->assertEquals(true, $objDb->sfIndexExists("dtb_products", 57 "product_id", 58 "dtb_products_product_id_key")); 59 59 } 60 60 } -
branches/version-2_4/test/class/page/LC_Page_Test.php
r18734 r18736 23 23 24 24 // {{{ requires 25 require_once(CLASS_PATH . "pages/LC_Page.php"); 26 require_once("PHPUnit/TestCase.php"); 25 require_once("../html/require.php"); 26 require_once("../data/class/pages/LC_Page.php"); 27 require_once("PHPUnit/Framework.php"); 27 28 28 29 /** … … 33 34 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 34 35 */ 35 class LC_Page_Test extends PHPUnit_ TestCase {36 class LC_Page_Test extends PHPUnit_Framework_TestCase { 36 37 37 38 // }}} 38 39 // {{{ functions 39 40 41 /* 42 * FIXME LC_Page::sendRedirect() は, リダイレクトしてしまうため, 43 * PHPUnit3 ではテストできない... 44 */ 45 40 46 /** 41 47 * LC_Page::sendRedirect() のテストケース(エラー). 42 48 */ 49 /* 43 50 function testSendRedirect() { 44 51 $objPage = new LC_Page(); … … 47 54 $this->assertEquals(true, empty($result)); 48 55 } 49 56 */ 50 57 /** 51 58 * LC_Page::sendRedirect() のテストケース(エラー). 52 59 */ 60 /* 53 61 function testSendRedirectIsFailed() { 54 62 $objPage = new LC_Page(); … … 57 65 $this->assertEquals(false, $result); 58 66 } 67 */ 59 68 60 69 /** … … 132 141 function testGetLocation() { 133 142 $objPage = new LC_Page(); 134 $_SERVER['DOCUMENT_ROOT'] = realpath("../ ../../html");135 $url = $objPage->getLocation("../ ../../html/abouts/index.php");143 $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 144 $url = $objPage->getLocation("../html/abouts/index.php"); 136 145 137 146 $this->assertEquals(SITE_URL . "abouts/index.php", $url); … … 147 156 $objPage = new LC_Page(); 148 157 $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 149 $url = $objPage->getLocation( "/abouts/index.php");158 $url = $objPage->getLocation(URL_DIR . 'abouts/index.php'); 150 159 151 160 $this->assertEquals(SITE_URL . "abouts/index.php", $url); … … 160 169 function testGetLocationWithQueryString() { 161 170 $objPage = new LC_Page(); 162 $_SERVER['DOCUMENT_ROOT'] = realpath("../ ../../html");171 $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 163 172 164 173 $queryString = array("mode" => "update", "type" => "text"); 165 $url = $objPage->getLocation("../ ../../html/abouts/index.php", $queryString);174 $url = $objPage->getLocation("../html/abouts/index.php", $queryString); 166 175 167 176 $this->assertEquals(SITE_URL . "abouts/index.php?mode=update&type=text", $url); … … 176 185 function testGetLocationUseSSL() { 177 186 $objPage = new LC_Page(); 178 $_SERVER['DOCUMENT_ROOT'] = realpath("../ ../../html");187 $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 179 188 180 189 $queryString = array("mode" => "update", "type" => "text"); 181 $url = $objPage->getLocation("../ ../../html/abouts/index.php", $queryString, true);190 $url = $objPage->getLocation("../html/abouts/index.php", $queryString, true); 182 191 183 192 $this->assertEquals(SSL_URL . "abouts/index.php?mode=update&type=text", $url); … … 192 201 function testGetLocationWithDocumentRoot() { 193 202 $objPage = new LC_Page(); 194 $documentRoot = realpath("../ ../../html");203 $documentRoot = realpath("../html"); 195 204 196 205 $queryString = array("mode" => "update", "type" => "text"); 197 $url = $objPage->getLocation("../ ../../html/abouts/index.php", array(),206 $url = $objPage->getLocation("../html/abouts/index.php", array(), 198 207 false, $documentRoot); 199 208
Note: See TracChangeset
for help on using the changeset viewer.