mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 15:42:48 +08:00
增加inputTest方法
This commit is contained in:
@@ -127,6 +127,15 @@ class inputTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals(true, Input::post('d/b'));
|
$this->assertEquals(true, Input::post('d/b'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testHasValue()
|
||||||
|
{
|
||||||
|
$_GET['name'] = 'value';
|
||||||
|
$this->assertEquals(true, Input::get('?name'));
|
||||||
|
$this->assertEquals(false, Input::get('?id'));
|
||||||
|
$this->assertEquals(true, Input::get('?get.name'));
|
||||||
|
$this->assertEquals(false, Input::get('?get.id'));
|
||||||
|
}
|
||||||
|
|
||||||
public function testSuperglobals()
|
public function testSuperglobals()
|
||||||
{
|
{
|
||||||
Input::setFilter('trim');
|
Input::setFilter('trim');
|
||||||
@@ -165,7 +174,7 @@ class inputTest extends \PHPUnit_Framework_TestCase
|
|||||||
//$path = $_SERVER['PATH_INFO'] ? explode('/', $_SERVER['PATH_INFO'])[0] : '';
|
//$path = $_SERVER['PATH_INFO'] ? explode('/', $_SERVER['PATH_INFO'])[0] : '';
|
||||||
//$this->assertEquals($path, Input::path('0', ''));
|
//$this->assertEquals($path, Input::path('0', ''));
|
||||||
|
|
||||||
$_FILES = ['file'=>['name'=>'test.png', 'type'=>'image/png', 'tmp_name'=>'/tmp/php5Wx0aJ', 'error'=>0, size=>15726]];
|
$_FILES = ['file' => ['name' => 'test.png', 'type' => 'image/png', 'tmp_name' => '/tmp/php5Wx0aJ', 'error' => 0, size => 15726]];
|
||||||
$this->assertEquals('image/png', Input::file('file.type'));
|
$this->assertEquals('image/png', Input::file('file.type'));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user