colly_wyx
2018-04-27 74adf3a72663f151dc2c1b87ecb4ea4b0e080a50
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
68
69
<?php
/**
 * PhpUnderControl_PhalApiHelperApiDesc_Test
 *
 * 针对 ../../PhalApi/Helper/ApiDesc.php PhalApi_Helper_ApiDesc 类的PHPUnit单元测试
 *
 * @author: dogstar 20150530
 */
 
require_once dirname(__FILE__) . '/../test_env.php';
DI()->loader->addDirs(dirname(__FILE__) . '/../../../Demo');
 
if (!class_exists('PhalApi_Helper_ApiDesc')) {
    require dirname(__FILE__) . '/../../PhalApi/Helper/ApiDesc.php';
}
 
class PhpUnderControl_PhalApiHelperApiDesc_Test extends PHPUnit_Framework_TestCase
{
    public $phalApiHelperApiDesc;
 
    protected function setUp()
    {
        parent::setUp();
 
        $this->phalApiHelperApiDesc = new PhalApi_Helper_ApiDesc();
    }
 
    protected function tearDown()
    {
    }
 
 
    /**
     * @group testRender
     */ 
    public function testRenderDefault()
    {
        DI()->request = new PhalApi_Request(array());
        $rs = $this->phalApiHelperApiDesc->render();
 
        $this->expectOutputRegex("/Default.Index/");
    }
 
    public function testRenderError()
    {
        DI()->request = new PhalApi_Request(array('service' => 'NoThisClass.NoThisMethod'));
        $rs = $this->phalApiHelperApiDesc->render();
 
        $this->expectOutputRegex("/NoThisClass.NoThisMethod/");
    }
 
    public function testRenderNormal()
    {
        DI()->request = new PhalApi_Request(array('service' => 'Helper_User_Mock.GetBaseInfo'));
        $rs = $this->phalApiHelperApiDesc->render();
 
        $this->expectOutputRegex("/Helper_User_Mock.GetBaseInfo/");
    }
}
 
class Api_Helper_User_Mock extends PhalApi_Api {
 
    /**
     * @param int user_id ID
     * @return int code sth...
     */
    public function getBaseInfo() {
    }
}