colly
2017-08-07 78981c784ebe0fda3d1ff20cabe4e21bed2e6549
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
 * PhpUnderControl_PhalApiRequestFormatterDate_Test
 *
 * 针对 ../../../PhalApi/Request/Formatter/Date.php PhalApi_Request_Formatter_Date 类的PHPUnit单元测试
 *
 * @author: dogstar 20151107
 */
 
require_once dirname(__FILE__) . '/../../test_env.php';
 
if (!class_exists('PhalApi_Request_Formatter_Date')) {
    require dirname(__FILE__) . '/../../../PhalApi/Request/Formatter/Date.php';
}
 
class PhpUnderControl_PhalApiRequestFormatterDate_Test extends PHPUnit_Framework_TestCase
{
    public $phalApiRequestFormatterDate;
 
    protected function setUp()
    {
        parent::setUp();
 
        $this->phalApiRequestFormatterDate = new PhalApi_Request_Formatter_Date();
    }
 
    protected function tearDown()
    {
    }
 
 
    /**
     * @group testParse
     */ 
    public function testParse()
    {
        $value = '2014-10-01 12:00:00';
        $rule = array('name' => 'testKey', 'type' => 'date', 'format' => 'timestamp');
 
        $rs = $this->phalApiRequestFormatterDate->parse($value, $rule);
 
        $this->assertTrue(is_numeric($rs));
        $this->assertSame(1412136000, $rs);
    }
 
    public function testParseWithMinAndMax()
    {
        $value = '2014-10-01 12:00:00';
        $rule = array('name' => 'testKey', 'type' => 'date', 'format' => 'timestamp', 'min' => strtotime('2014-10-01 00:00:00'), 'max' => strtotime('2014-10-01 23:59:59'));
 
        $rs = $this->phalApiRequestFormatterDate->parse($value, $rule);
 
        $this->assertTrue(is_numeric($rs));
        $this->assertSame(1412136000, $rs);
    }
 
    public function testParseWithMinAndMaxForString()
    {
        $value = '2014-10-01 12:00:00';
        $rule = array('name' => 'testKey', 'type' => 'date', 'format' => 'timestamp', 'min' => '2014-10-01 00:00:00', 'max' => '2014-10-01 23:59:59');
 
        $rs = $this->phalApiRequestFormatterDate->parse($value, $rule);
 
        $this->assertTrue(is_numeric($rs));
        $this->assertSame(1412136000, $rs);
    }
}