123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace EasySwoole\HttpAnnotation\Tests;
- use EasySwoole\HttpAnnotation\Tests\TestController\Normal;
- use PHPUnit\Framework\TestCase;
- class NormalControllerTest extends TestCase
- {
- use ControllerBase;
- protected $controller;
- protected function setUp():void
- {
- parent::setUp();
- $this->controller = new Normal();
- }
- function testIndex()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('index',$this->fakeRequest('/',null),$response);
- $this->assertEquals('index',$response->getBody()->__tostring());
- }
- function testOnRequest()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('testOnRequest',$this->fakeRequest('/',null),$response);
- $this->assertEquals('testOnRequest',$response->getBody()->__tostring());
- }
- function testProtectFunc()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('noneAction',$this->fakeRequest('/',null),$response);
- $this->assertEquals('404',$response->getBody()->__tostring());
- }
- function test404()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('xxxxxxx',$this->fakeRequest('/',null),$response);
- $this->assertEquals('404',$response->getBody()->__tostring());
- }
- function testException()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('exception',$this->fakeRequest('/',null),$response);
- $this->assertEquals('exception',$response->getBody()->__tostring());
- }
- function testGc()
- {
- $response = $this->fakeResponse();
- $this->controller->__hook('index',$this->fakeRequest('/',null),$response);
- $this->assertEquals('index',$response->getBody()->__tostring());
- $this->assertEquals(1,$this->controller->gc);
- $response = $this->fakeResponse();
- $this->controller->__hook('exception',$this->fakeRequest('/',null),$response);
- $this->assertEquals('exception',$response->getBody()->__tostring());
- $this->assertEquals(1,$this->controller->gc);
- }
- function testAfterAction()
- {
- \EasySwoole\Component\Di::getInstance()->set('afterAction',null);
- $response = $this->fakeResponse();
- $this->controller->__hook('index',$this->fakeRequest('/',null),$response);
- $this->assertEquals('afterAction',\EasySwoole\Component\Di::getInstance()->get('afterAction'));
- \EasySwoole\Component\Di::getInstance()->set('afterAction',null);
- \EasySwoole\Component\Di::getInstance()->set('afterAction',null);
- $response = $this->fakeResponse();
- $this->controller->__hook('exception',$this->fakeRequest('/',null),$response);
- $this->assertEquals('afterAction',\EasySwoole\Component\Di::getInstance()->get('afterAction'));
- \EasySwoole\Component\Di::getInstance()->set('afterAction',null);
- }
- }
|