Download the PHP package ride/test without Composer

On this page you can find all versions of the php package ride/test. 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 test

Ride testing

This library bridges the gap between PHPUnit, Selenium and Ride.

Installation

This module doesn't trigger a composer post-install script yet. So you should manually copy the dist/ folder to your project root. You should also modify the parameters.php file to let Ride know when to use the test environment. More about that later.

Test environment configuration

You can use application/config/test/ for test-specific parameters, routes and dependencies.

The test environment uses a SQLite database. This database is copied from a master template for each test, ensuring every test case has a clean database instance. You can use an SQLite browser to add data to the clean test database: application/test/clean.test.db. You could also make other databases and use those as a template for individual test cases. This is done by extending RideTestCase and calling $this->cleanDatabase('path/to/my/clean/test.db'). The current database used for a test case can be found in application/test/test.db.

Creating a clean database

This library enables the testdb generate command. When run, the command will take the MySQL connection and generate an SQLite database from it. Specific model data can be copied per model, and a file can be specified in which to save the SQLite database.

Running this command is very useful in early development, when you're still updating models.xml.

PHPUnit tests

Your test classes should be saved in the application/test folder. They can either extend the normal PHPUnit TestCase, or extend ride\testing\RideTestCase. Doing this makes the Ride System and DependecyInjector available in your tests. Note that you should always call parent::setUp() and parent::tearDown() when you're overriding these methods.

Tests can be run with the following command.

Selenium tests

Like PHPUnit tests, there is a class available which you can extend Selenium test classes from: ride\testing\SeleniumRideTestCase

Prerequisites

Selenium requires Java and a JDK to run; you can find download links to the current JDK here: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html.

Furthermore, you'll need a specific browser to run tests on. Certain versions of Firefox work out of the box, but some don't. If you're on Mac and want to play safe, a working Chrome driver is included in the dist/bin of this library. If you want to use another driver, you can look around here: http://www.seleniumhq.org/about/platforms.jsp.

To tell Ride it has to use the test environment when running Selenium tests, you should add the following lines in application/config/parameters.php, after the environment detection.

Running tests

The Selenium server should always run in the background when running tests. The server also logs a lot of useful information while testing.


All versions of test with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
facebook/webdriver Version ^1.3
fzaninotto/faker Version ^1.6
larapack/dd Version ^1.1
phpunit/phpunit Version ^5.0
phpunit/phpunit-selenium Version ^3.0
se/selenium-server-standalone Version ^3.0
ride/lib-cli Version ^1.0
ride/lib-orm Version ^1.0
ride/lib-system Version ^1.1
ride/app Version ^1.0
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 ride/test contains the following files

Loading the files please wait ....