Download the PHP package mano/autotest-bundle without Composer
On this page you can find all versions of the php package mano/autotest-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package autotest-bundle
Autotest bundle
Symfony bundle for automatic routes testing - check the response code of all static routes defined in the framework. It supports both PHPUnit and Codeception testing. The module lists all the available routes with GET method, add default values and filter just those that does not contain wildcards. The routes that were not matched can be added manually though - see config. Then the response is checked just for the successful code.
In order to access authorised routes, set admin email in the config (or any user that has super privilege). There must be 'email' property on the user entity (or at least getter). Some routes might need to be excluded though (ex. '/logout','/login') as they are redirected.
Installation
-
use Composer to install the bundle
- enable the bundle in config/test/bundles.php by pasting new array item
Config
create file config/packages/test/autotest.yaml and override the defaults if necessary.
exclude paths
Some routes might need to be excluded though (ex. '/logout','/login') as they are redirected. It is advisable to declare allowed methods in the route annotation, so that you do not need to exclude POST only routes here. Regex can be used here to match multiple routes at once.
include paths
All the routes that could not be automatically resolved (contain wildcard that can not be filled from defaults) can be listed here to be included in the test.
The full list of unresolved paths is outputted at the beginning of the test. A route listed in included paths is removed from the output.
Usage
Cache needs to be cleared after modifications in the project before running the test.
PHPUnit
Add
run
Alternatively you can skip editing phpunit.xml and just extend any test.
If you come across the exception "User repository 'App\Repository\UserRepository' not found" and you are sure it exists, register the service as public.
Codeception
-
add the module to a suite (functional.suite.yml)
- add module method autotest to any cest
Codeception is stricter with login - different authenticators (api keys) will not work out of the box.
Extension
The used path resolver is simple - it just adds defaults to the path and takes only GET method that does not contain wildcards (after completing defaults).
Custom resolver can be used and referenced from config. The resolver must implement Mano\AutotestBundle\PathResolverInterface.
All versions of autotest-bundle with dependencies
symfony/phpunit-bridge Version ^5.1
symfony/framework-bundle Version ^5.1
symfony/browser-kit Version ^5.1