Allowed memory exhausted pour le test 3.6 jour 11
bonjour à tous, quand j'execute le test fonctionnel de la journée 11, arrive au test 3.6, j'ai un message d'erreur de memoire dépassé.
Quelqu'un a une idée comment je peut debugger ce test ?
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 8192 bytes) in /home/mu8639/web/sfprojects/jobeet/apps/frontend/modules/job/templates/showSuccess.php on line 1
Call Stack:
0.0002 60052 1. {main}() /home/mu8639/web/sfprojects/jobeet/symfony:0
0.0040 321692 2. include('/lib/vendor/symfony/lib/command/cli.php') /home/mu8639/web/sfprojects/jobeet/symfony:14
0.1744 6316816 3. sfSymfonyCommandApplication->run() /lib/vendor/symfony/lib/command/cli.php:20
0.1784 6337188 4. sfTask->runFromCLI() /lib/vendor/symfony/lib/command/sfSymfonyCommandApplication.class.php:76
0.1786 6337188 5. sfBaseTask->doRun() /lib/vendor/symfony/lib/task/sfTask.class.php:97
0.1946 6916732 6. sfTestFunctionalTask->execute() /lib/vendor/symfony/lib/task/sfBaseTask.class.php:68
0.1974 7002424 7. include('/home/mu8639/web/sfprojects/jobeet/test/functional/frontend/jobActionsTest.php') /lib/vendor/symfony/lib/task/test/sfTestFunctionalTask.class.php:89
4.4488 31890348 8. JobeetTestFunctional->createJob() /home/mu8639/web/sfprojects/jobeet/test/functional/frontend/jobActionsTest.php:156
4.7191 33221292 9. JobeetTestFunctional->followRedirect() /home/mu8639/web/sfprojects/jobeet/lib/test/JobeetTestFunctional.class.php:52
4.7191 33221292 10. sfTestFunctionalBase->__call() /lib/vendor/symfony/lib/test/sfTestFunctionalBase.class.php:0
4.7191 33221292 11. call_user_func_array() /lib/vendor/symfony/lib/test/sfTestFunctionalBase.class.php:433
4.7192 33221292 12. sfBrowserBase->followRedirect() /lib/vendor/symfony/lib/test/sfTestFunctionalBase.class.php:0
4.7192 33221292 13. sfBrowserBase->get() /lib/vendor/symfony/lib/util/sfBrowserBase.class.php:543
4.7192 33221292 14. sfBrowserBase->call() /lib/vendor/symfony/lib/util/sfBrowserBase.class.php:189
4.7195 33221312 15. sfBrowser->doCall() /lib/vendor/symfony/lib/util/sfBrowserBase.class.php:323
4.7315 33444408 16. sfFrontWebController->dispatch() /lib/vendor/symfony/lib/util/sfBrowser.class.php:43
4.7316 33444408 17. sfController->forward() /lib/vendor/symfony/lib/controller/sfFrontWebController.class.php:48
4.7347 33456276 18. sfFilterChain->execute() /lib/vendor/symfony/lib/controller/sfController.class.php:233
4.7350 33456444 19. sfFakeRenderingFilter->execute() /lib/vendor/symfony/lib/filter/sfFilterChain.class.php:53
4.7350 33456444 20. sfFilterChain->execute() /lib/vendor/symfony/lib/util/sfBrowser.class.php:165
4.7352 33456460 21. sfExecutionFilter->execute() /lib/vendor/symfony/lib/filter/sfFilterChain.class.php:53
4.7643 33503644 22. sfExecutionFilter->handleView() /lib/vendor/symfony/lib/filter/sfExecutionFilter.class.php:47
4.7643 33503644 23. sfExecutionFilter->executeView() /lib/vendor/symfony/lib/filter/sfExecutionFilter.class.php:116
4.7661 33503644 24. sfPHPView->render() /lib/vendor/symfony/lib/filter/sfExecutionFilter.class.php:155
4.7662 33503644 25. sfPHPView->renderFile() /lib/vendor/symfony/lib/view/sfPHPView.class.php:185 |
le test en question:
Code:
1 2 3 4 5 6 7
| $browser->info(' 3.6 - A job validity cannot be extended before the job expires soon')->
createJob(array('position' => 'FOO4'), true)->
call(sprintf('/job/%s/extend', $browser->getJobByPosition('FOO4')->getToken()), 'put', array('_with_csrf' => true))->
with('response')->begin()->
isStatusCode(404)->
end()
; |