详解Yaf框架PHPUnit集成测试方法
php  /  管理员 发布于 7年前   223
本文介绍了详解Yaf框架PHPUnit集成测试方法,分享给大家,具体如下: 测试目录 phpunit.xml bootstrap.php 测试框架入口文件 TestCase.php 测试文件基础类 TokenServiceTest.php service类例子 BaseControllerTest.php controller类例子 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。test├── TestCase.php├── bootstrap.php├── controller│ ├── BaseControllerTest.php│ └── IndexControllerTest.php├── model├── phpunit.xml└── service └── TokenServiceTest.php
define("APP_PATH", realpath(dirname(__FILE__) . '/../'));date_default_timezone_set("Asia/Shanghai");define("TEST_DIR", __DIR__);
namespace test;use PHPUnit\Framework\TestCase as Test;use Yaf\Application;class TestCase extends Test{ protected static $_application = null; protected function setUp() { self::$_application = $this->getApplication(); parent::setUp(); } public function testAppPath() { $this->assertEquals('/Users/xiong/Sites/kyYaf', APP_PATH); } public function testApp() { $this->assertEquals(Application::app(), self::$_application); } public function testApplication() { $this->assertNotNull(self::$_application); } public function getApplication() { if (self::$_application == null) { $this->setApplication(); } return self::$_application; } public function setApplication() { $application = new Application(APP_PATH . '/conf/application.ini'); $application->bootstrap(); self::$_application = $application; }}
namespace Service;use test\TestCase;include TEST_DIR . '/TestCase.php';include APP_PATH . '/application/library/Service/BaseService.php';include APP_PATH . '/application/library/Service/TokenService.php';class TokenServiceTest extends TestCase{ /** * @var TokenService */ protected static $tokenService; public function setUp() { self::$tokenService = TokenService::getInstance(); parent::setUp(); } public function testCreateToken() { $token = self::$tokenService->createToken('22'); $this->assertInternalType('array', $token); $this->assertInternalType('string', $token['token']); }}
namespace test\controller;include TEST_DIR .'/TestCase.php';use test\TestCase;class BaseControllerTest extends TestCase{ public function testGetConfigAction() { $request = new Simple('CLI', '', 'Index', 'getConfig'); $response = self::$_application->getDispatcher()->returnResponse(true)->dispatch($request); $contents = $response->getBody(); $data = json_decode($contents, true); $this->assertInternalType('array', $data); }}
您可能感兴趣的文章:
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号