| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | $HOME = realpath(dirname(__FILE__)) . "/../../../.."; |
|---|
| 4 | require_once($HOME . "/tests/class/Common_TestCase.php"); |
|---|
| 5 | /* |
|---|
| 6 | * This file is part of EC-CUBE |
|---|
| 7 | * |
|---|
| 8 | * Copyright(c) 2000-2014 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 9 | * |
|---|
| 10 | * http://www.lockon.co.jp/ |
|---|
| 11 | * |
|---|
| 12 | * This program is free software; you can redistribute it and/or |
|---|
| 13 | * modify it under the terms of the GNU General Public License |
|---|
| 14 | * as published by the Free Software Foundation; either version 2 |
|---|
| 15 | * of the License, or (at your option) any later version. |
|---|
| 16 | * |
|---|
| 17 | * This program is distributed in the hope that it will be useful, |
|---|
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 20 | * GNU General Public License for more details. |
|---|
| 21 | * |
|---|
| 22 | * You should have received a copy of the GNU General Public License |
|---|
| 23 | * along with this program; if not, write to the Free Software |
|---|
| 24 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 25 | */ |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * SC_Utils::isAbsoluteRealPath()のテストクラス. |
|---|
| 29 | * テスト用にOSの環境変数を定義することができないため、テストコード内で分岐します. |
|---|
| 30 | * |
|---|
| 31 | * @author Hiroko Tamagawa |
|---|
| 32 | * @version $Id$ |
|---|
| 33 | */ |
|---|
| 34 | class SC_Utils_Test extends Common_TestCase |
|---|
| 35 | { |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | protected function setUp() |
|---|
| 39 | { |
|---|
| 40 | // parent::setUp(); |
|---|
| 41 | } |
|---|
| 42 | |
|---|
| 43 | protected function tearDown() |
|---|
| 44 | { |
|---|
| 45 | // parent::tearDown(); |
|---|
| 46 | } |
|---|
| 47 | |
|---|
| 48 | ///////////////////////////////////////// |
|---|
| 49 | public function testIsAbsoluteRealPath_絶対パスの場合_trueが返る() |
|---|
| 50 | { |
|---|
| 51 | |
|---|
| 52 | if (strpos(PHP_OS, 'WIN')) { |
|---|
| 53 | $input = 'C:/Program Files/username/hoge/hoge.txt'; |
|---|
| 54 | } else { |
|---|
| 55 | $input = '/etc/php.ini'; |
|---|
| 56 | } |
|---|
| 57 | $this->expected = true; |
|---|
| 58 | $this->actual = SC_Utils::isAbsoluteRealPath($input); |
|---|
| 59 | |
|---|
| 60 | $this->verify(); |
|---|
| 61 | } |
|---|
| 62 | |
|---|
| 63 | public function testIsAbsoluteRealPath_相対パスの場合_trueが返る() |
|---|
| 64 | { |
|---|
| 65 | |
|---|
| 66 | if (strpos(PHP_OS, 'WIN')) { |
|---|
| 67 | $input = './system32/hoge/hoge.txt'; |
|---|
| 68 | } else { |
|---|
| 69 | $input = '../etc/php.ini'; |
|---|
| 70 | } |
|---|
| 71 | $this->expected = false; |
|---|
| 72 | $this->actual = SC_Utils::isAbsoluteRealPath($input); |
|---|
| 73 | |
|---|
| 74 | $this->verify(); |
|---|
| 75 | } |
|---|
| 76 | |
|---|
| 77 | |
|---|
| 78 | public function testIsAbsoluteRealPath_絶対パスに相対パスが混じっている場合_falseが返る() |
|---|
| 79 | { |
|---|
| 80 | if (strpos(PHP_OS, 'WIN')) { |
|---|
| 81 | $input = 'C:/path/to/eccube/html/../data/hoge.txt'; |
|---|
| 82 | } else { |
|---|
| 83 | $input = '/path/to/eccube/html/../data/hoge.txt'; |
|---|
| 84 | } |
|---|
| 85 | $this->expected = false; |
|---|
| 86 | $this->actual = SC_Utils::isAbsoluteRealPath($input); |
|---|
| 87 | |
|---|
| 88 | $this->verify(); |
|---|
| 89 | } |
|---|
| 90 | |
|---|
| 91 | ////////////////////////////////////////// |
|---|
| 92 | } |
|---|