Changeset 18758 for trunk/test


Ignore:
Timestamp:
2010/07/20 13:25:33 (14 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.4 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=223

Location:
trunk/test
Files:
13 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/TestSuite.php

    r16582 r18758  
    1 #!/usr/local/bin/php 
    21<?php 
    32/* 
    43 * This file is part of EC-CUBE 
    54 * 
    6  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    76 * 
    87 * http://www.lockon.co.jp/ 
     
    2322 */ 
    2423 
    25 ini_set("include_path", ".:/usr/local/share/pear"); 
    2624// {{{ requires 
    2725require_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"); 
     26require_once("class/page/Page_AllTests.php"); 
     27require_once("class/db/DB_AllTests.php"); 
     28require_once("class/helper/Helper_AllTests.php"); 
     29require_once("class/util/Util_AllTests.php"); 
     30require_once("PHPUnit/Framework.php"); 
    3331 
    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"); 
     32/** 
     33 * EC-CUBE のテストスイート 
     34 * 
     35 * @author Kentaro Ohkouchi 
     36 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 
     37 */ 
    3938 
    40 foreach ($suites as $suite) { 
    41     $result = PHPUnit::run($suite); 
    42     print $result->toString(); 
     39class TestSuite { 
     40    public static function suite() { 
     41        $suite = new PHPUnit_Framework_TestSuite('ECCUBE'); 
     42        $suite->addTest(Page_AllTests::suite()); 
     43        $suite->addTest(DB_AllTests::suite()); 
     44        $suite->addTest(Helper_AllTests::suite()); 
     45        $suite->addTest(Util_AllTests::suite()); 
     46        return $suite; 
     47    } 
    4348} 
    4449?> 
  • trunk/test/class/db/SC_DB_DBFactory_Test.php

    r16582 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    2323 
    2424// {{{ requires 
    25 require_once($include_dir . "/../data/class/db_extends/SC_DB_DBFactory_Ex.php"); // FIXME 
    26 require_once("PHPUnit/TestCase.php"); 
     25require_once("../html/require.php"); 
     26require_once("../data/class_extends/db_extends/SC_DB_DBFactory_Ex.php"); 
     27require_once("PHPUnit/Framework.php"); 
    2728 
    2829/** 
     
    3334 * @version $Id:SC_DB_DBFactory_Test.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3435 */ 
    35 class SC_DB_DBFactory_Test extends PHPUnit_TestCase { 
     36class SC_DB_DBFactory_Test extends PHPUnit_Framework_TestCase { 
    3637 
    3738    // }}} 
  • trunk/test/class/db/SC_DB_MasterData_Test.php

    r16582 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    2323 
    2424// {{{ requires 
    25 require_once(CLASS_EX_PATH . "db_extends/SC_DB_MasterData_Ex.php"); 
    26 require_once("PHPUnit/TestCase.php"); 
     25require_once("../html/require.php"); 
     26require_once("../data/class_extends/db_extends/SC_DB_MasterData_Ex.php"); 
     27require_once("PHPUnit/Framework.php"); 
    2728 
    2829/** 
     
    3334 * @version $Id:SC_DB_MasterData_Test.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3435 */ 
    35 class SC_DB_MasterData_Test extends PHPUnit_TestCase { 
     36class SC_DB_MasterData_Test extends PHPUnit_Framework_TestCase { 
    3637 
    3738    // }}} 
     
    8889    function testCreateCache() { 
    8990        $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");  
    9394        $masterData->createCache("mtb_constants", $datas, true, 
    94                                          array("id", "remarks", "rank")); 
     95                                 array("id", "remarks", "rank")); 
    9596        $this->assertEquals(true, defined("ECCUBE_VERSION")); 
    9697    } 
  • trunk/test/class/helper/SC_Helper_DB_Test.php

    r16582 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    2323 
    2424// {{{ 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  
     25require_once("../html/require.php"); 
     26require_once("../data/class_extends/helper_extends/SC_Helper_DB_Ex.php"); 
     27require_once("PHPUnit/Framework.php"); 
    2928 
    3029/** 
     
    3534 * @version $Id$ 
    3635 */ 
    37 class SC_Helper_DB_Test extends PHPUnit_TestCase { 
     36class SC_Helper_DB_Test extends PHPUnit_Framework_TestCase { 
    3837 
    3938    /** 
     
    5352    } 
    5453 
     54    /** 
     55     * sfIndexExists() のテストケース. 
     56     * 
     57     * XXX MySQL では動作しない 
     58     */ 
    5559    function testSfIndexExists() { 
    5660        $objDb = new SC_Helper_DB_Ex(); 
    57         $this->assertEquals(true, $objDb->sfIndexExists("dtb_products", "category_id", 
    58                 "dtb_products_category_id_key")); 
     61        if (DB_TYPE == "pgsql") { 
     62            $this->assertEquals(true, $objDb->sfIndexExists("dtb_products", 
     63                                                            "product_id", 
     64                                                            "dtb_products_product_id_key")); 
     65        } 
    5966    } 
    6067} 
  • trunk/test/class/page/LC_Page_Test.php

    r16582 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    2323 
    2424// {{{ requires 
    25 require_once(CLASS_PATH . "pages/LC_Page.php"); 
    26 require_once("PHPUnit/TestCase.php"); 
     25require_once("../html/require.php"); 
     26require_once("../data/class/pages/LC_Page.php"); 
     27require_once("PHPUnit/Framework.php"); 
    2728 
    2829/** 
     
    3334 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 
    3435 */ 
    35 class LC_Page_Test extends PHPUnit_TestCase { 
     36class LC_Page_Test extends PHPUnit_Framework_TestCase { 
    3637 
    3738    // }}} 
    3839    // {{{ functions 
    3940 
     41    /* 
     42     * FIXME LC_Page::sendRedirect() は, リダイレクトしてしまうため, 
     43     *       PHPUnit3 ではテストできない... 
     44     */ 
     45 
    4046    /** 
    4147     * LC_Page::sendRedirect() のテストケース(エラー). 
    4248     */ 
     49    /* 
    4350    function testSendRedirect() { 
    4451        $objPage = new LC_Page(); 
     
    4754        $this->assertEquals(true, empty($result)); 
    4855    } 
    49  
     56    */ 
    5057    /** 
    5158     * LC_Page::sendRedirect() のテストケース(エラー). 
    5259     */ 
     60    /* 
    5361    function testSendRedirectIsFailed() { 
    5462        $objPage = new LC_Page(); 
     
    5765        $this->assertEquals(false, $result); 
    5866    } 
     67    */ 
    5968 
    6069    /** 
     
    132141    function testGetLocation() { 
    133142        $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"); 
    136145 
    137146        $this->assertEquals(SITE_URL . "abouts/index.php", $url); 
     
    147156        $objPage = new LC_Page(); 
    148157        $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 
    149         $url = $objPage->getLocation("/abouts/index.php"); 
     158        $url = $objPage->getLocation(URL_DIR . 'abouts/index.php'); 
    150159 
    151160        $this->assertEquals(SITE_URL . "abouts/index.php", $url); 
     
    160169    function testGetLocationWithQueryString() { 
    161170        $objPage = new LC_Page(); 
    162         $_SERVER['DOCUMENT_ROOT'] = realpath("../../../html"); 
     171        $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 
    163172 
    164173        $queryString = array("mode" => "update", "type" => "text"); 
    165         $url = $objPage->getLocation("../../../html/abouts/index.php", $queryString); 
     174        $url = $objPage->getLocation("../html/abouts/index.php", $queryString); 
    166175 
    167176        $this->assertEquals(SITE_URL . "abouts/index.php?mode=update&type=text", $url); 
     
    176185    function testGetLocationUseSSL() { 
    177186        $objPage = new LC_Page(); 
    178         $_SERVER['DOCUMENT_ROOT'] = realpath("../../../html"); 
     187        $_SERVER['DOCUMENT_ROOT'] = realpath("../html"); 
    179188 
    180189        $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); 
    182191 
    183192        $this->assertEquals(SSL_URL . "abouts/index.php?mode=update&type=text", $url); 
     
    192201    function testGetLocationWithDocumentRoot() { 
    193202        $objPage = new LC_Page(); 
    194         $documentRoot = realpath("../../../html"); 
     203        $documentRoot = realpath("../html"); 
    195204 
    196205        $queryString = array("mode" => "update", "type" => "text"); 
    197         $url = $objPage->getLocation("../../../html/abouts/index.php", array(), 
     206        $url = $objPage->getLocation("../html/abouts/index.php", array(), 
    198207                                     false, $documentRoot); 
    199208 
Note: See TracChangeset for help on using the changeset viewer.