Функциональный тест Symfony JSON - PullRequest
0 голосов
/ 06 июня 2011

Как проверить ответ в функциональном тесте Symfony, если действие возвращает объект json?

У меня есть код

with('response')->begin()->
   isHeader('content-type','application/json')->
end()
;

Но тестирование всегда заканчивается неудачей.

1 Ответ

1 голос
/ 05 августа 2011

Следующий URL может показать вам, как его протестировать: Практическое Symfony День 15: Веб-сервисы

Вот соответствующий код с этой страницы:

$browser->
info('1 - Web service security')->

info('    1.1 - A token is needed to access the service')->
get('/api/foo/jobs.xml')->
with('response')->isStatusCode(404)->

info('    1.2 - An inactive account cannot access the web service')->
get('/api/symfony/jobs.xml')->
with('response')->isStatusCode(404)->

info('2 - The jobs returned are limited to the categories configured for the affiliate')->
get('/api/sensio_labs/jobs.xml')->
with('request')->isFormat('xml')->
with('response')->begin()->
    isValid()->
    checkElement('job', 32)->
end()->

info('3 - The web service supports the JSON format')->
get('/api/sensio_labs/jobs.json')->
with('request')->isFormat('json')->
with('response')->matches('/"category"\: "Programming"/')->

info('4 - The web service supports the YAML format')->
get('/api/sensio_labs/jobs.yaml')->
with('response')->begin()->
    isHeader('content-type', 'text/yaml; charset=utf-8')->
    matches('/category\: Programming/')->
end()
;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...