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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

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 entry to phpunit.xml(.dist)

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

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

PHP Build Version
Package Version
Requires php Version >=7.2
symfony/phpunit-bridge Version ^5.1
symfony/framework-bundle Version ^5.1
symfony/browser-kit Version ^5.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mano/autotest-bundle contains the following files

Loading the files please wait ....