source: branches/version-2_13-dev/tests/class/SC_CheckError/SC_CheckError_FILE_NAME_CHECK_BY_NOUPLOADTest.php @ 23347

Revision 23347, 3.3 KB checked in by kimoto, 10 years ago (diff)

#2509
 http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=14241&forum=9&post_id=63860#forumpost63860

RevLine 
[23347]1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24$HOME = realpath(dirname(__FILE__)) . "/../../..";
25require_once($HOME . "/tests/class/Common_TestCase.php");
26
27class SC_CheckError_FILE_NAME_CHECK_BY_NOUPLOADTest extends Common_TestCase
28{
29
30    /**
31     * @expectedException PHPUnit_Framework_Error_Warning
32    */
33    public function testFILE_NAME_CHECK_BY_NOUPLOAD_空文字列の場合_エラーをセットしない()
34    {
35        $arrForm = array('file' => '');
36        $objErr = new SC_CheckError_Ex($arrForm);
37        $objErr->doFunc(array('label', 'file') ,array('FILE_NAME_CHECK_BY_NOUPLOAD'));
38
39        $this->expected = false;
40        $this->actual = isset($objErr->arrErr['file']);
41        $this->verify();
42    }
43
44    /**
45     * @expectedException PHPUnit_Framework_Error_Warning
46    */
47    public function testFILE_NAME_CHECK_BY_NOUPLOAD_使用できない文字が含まれていない場合_エラーをセットしない()
48    {
49        $arrForm = array('file' => 'a_b-c.Z');
50        $objErr = new SC_CheckError_Ex($arrForm);
51        $objErr->doFunc(array('label', 'file') ,array('FILE_NAME_CHECK_BY_NOUPLOAD'));
52
53        $this->expected = false;
54        $this->actual = isset($objErr->arrErr['file']);
55        $this->verify();
56    }
57
58    /**
59     * @expectedException PHPUnit_Framework_Error_Warning
60    */
61    public function testFILE_NAME_CHECK_BY_NOUPLOAD_使用できない文字が含まれている場合_エラーをセットする()
62    {
63        $arrForm = array('file' => 'a/b');
64        $objErr = new SC_CheckError_Ex($arrForm);
65        $objErr->doFunc(array('label', 'file') ,array('FILE_NAME_CHECK_BY_NOUPLOAD'));
66
67        $this->expected = '※ labelのファイル名に日本語やスペースは使用しないで下さい。<br />';
68        $this->actual = $objErr->arrErr['file'];
69        $this->verify();
70    }
71
72    /**
73     * @expectedException PHPUnit_Framework_Error_Warning
74     * @depends testFILE_NAME_CHECK_BY_NOUPLOAD_使用できない文字が含まれている場合_エラーをセットする
75     */
76    public function testFILE_NAME_CHECK_BY_NOUPLOAD_他のエラーが既にセットされている場合_エラーを上書きしない()
77    {
78        $arrForm = array('file' => 'a/b');
79        $objErr = new SC_CheckError_Ex($arrForm);
80        $objErr->arrErr['file'] = $other_error = 'Unknown error.';
81        $objErr->doFunc(array('label', 'file') ,array('FILE_NAME_CHECK_BY_NOUPLOAD'));
82
83        $this->expected = $other_error;
84        $this->actual = $objErr->arrErr['file'];
85        $this->verify();
86    }
87}
Note: See TracBrowser for help on using the repository browser.