Silex アプリのいくつかのテストを作成しようとしていますが、問題が発生しました。
次のphpunit.xmlファイルがあります
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Management Test Suite">
<directory>./</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>../src/</directory>
</whitelist>
</filter>
</phpunit>
ブートストラップコードは
<?php
use Symfony\Component\HttpKernel\Client;
function getJSONResponse($app, Client $client, $url, $params = array())
{
$params['test_key'] = $app['test_key'];
$client->request('GET', $url, $params);
$response = $client->getResponse();
$data = json_decode($response->getContent(), true);
return $data;
}
私の最初のテストファイルは次のとおりです
<?php
require_once $_SERVER['frog_docroot'] . '/www/vendor/autoload.php';
class DefaultTest extends Silex\WebTestCase
{
public function createApplication()
{
return require $_SERVER['frog_docroot'] . '/www/src/app.php';
}
public function testInvalidUrlThrowsException()
{
$client = $this->createClient();
$data = getJSONResponse($this->app, $client, '/some/url/that/does/not/exist');
$this->assertContains('No route found for "GET /some/url/that/does/not/exist"', $data['message']);
}
}
そして、私の2番目は
<?php
require_once $_SERVER['frog_docroot'] . '/www/vendor/autoload.php';
class AnotherTest extends Silex\WebTestCase
{
public function createApplication()
{
return require $_SERVER['frog_docroot'] . '/www/src/app.php';
}
public function testSearchReturnsResults()
{
$client = $this->createClient();
$data = getJSONResponse($this->app, $client, '/packages/search', array(
'search' => 'something',
'offset' => 0,
'limit' => 10,
));
$this->assertSame(array(
'data' => array(
'1' => 'Some Package',
),
'offset' => 0,
'limit' => 10,
), $data);
}
}
問題は、テストを個別に実行すると、両方とも合格することです。
それらをテストスイートの一部として実行すると、例外がスローされます
There was 1 failure:
1) AnotherTest::testSearchReturnsResults
Failed asserting that Array (
'message' => 'No route found for "GET /packages/search"'
'code' => 0
) is identical to Array (
'data' => Array (
'1' => 'Some Package'
)
'offset' => 0
'limit' => 10
'more' => false
).
テストを作成しようとしている方法に明らかな問題はありますか?
乾杯