我有一个控制器,我正在尝试对它进行功能测试。
控制器:
<?php
namespace Zanox\AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Annotation\Route;
use Exception;
/**
*
* @author Mohamed Ragab Dahab <eng.mohamed.dahab@gmail.com>
*
* @Route("merchant")
*
*/
class ReportController extends Controller {
/**
* Show transaction report regarding to the given merchant ID
* @author Mohamed Ragab Dahab <eng.mohamed.dahab@gmail.com>
* @access public
*
* @Route("/{id}/report", name="merchant-report")
*
* @param int $id Merchant ID
*/
public function showAction($id) {
try {
//Order Service
$orderService = $this->get('zanox_app.orderService');
//merchant Orders
$orders = $orderService->getMerchantOrders($id);
//render view and pass orders array
return $this->render('ZanoxAppBundle:Report:show.html.twig', ['orders' => $orders]);
} catch (Exception $e) {
//log errors
}
}
}
我创建了一个功能测试如下:
namespace Zanox\AppBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ReportControllerTest extends WebTestCase {
/**
*
*/
public function testShow() {
//Client instance
$client = static::createClient();
//Act like browsing the merchant listing page, via GET method
$crawler = $client->request('GET', '/merchant/{id}/report', ['id'=> 1]);
//Getting the response of the requested URL
$crawlerResponse = $client->getResponse();
//Assert that Page is loaded ok
$this->assertEquals(200, $crawlerResponse->getStatusCode());
//Assert that the response content contains 'Merchant Listing' text
$this->assertTrue($crawler->filter('html:contains("Merchant Report")')->count() > 0);
}
}
然而,当第一个断言返回状态500而不是200
时,此测试失败测试日志显示: [2015-07-06 21:00:24] request.INFO:匹配的路线“商家报告”。 { “route_parameters”:{ “_控制器”: “zanox的\的appbundle \控制器\ ReportController ::的showAction”, “ID”: “(编号)”, “_路线”: “商人报”}, “REQUEST_URI”:“{ {3}} {id} / report?id = 1“} []
告诉您['id'=&gt; 1]存在于DB。
第一个问题:为什么会失败?
第二个问题:我是否以适当的方式进行功能测试?
答案 0 :(得分:1)
如果查看日志,您会看到{id}
参数未正确替换,但会添加到您的Uri的查询字符串中。所以尝试:
$crawler = $client->request('GET', sprintf('/merchant/%d/report', 1));
使用GET
时,第三个参数会为URI添加查询参数,使用POST
时,这些数据将会发布。
答案 1 :(得分:0)
至于它失败的原因 - 您可以通过使用调试器在测试中执行控制器代码时逐步执行控制器代码来解决问题。对于你的第二个问题,是的,你正在做一个简单的功能测试。