Go to file
helpfulrobot 3feceb1629 Added standard code of conduct file 2016-02-16 11:43:36 +13:00
_config Tie test session files to browser session 2014-03-02 11:44:58 +13:00
code clean up team db after test session run 2016-01-12 14:56:31 +13:00
css Better default styles, made form extensible 2013-12-10 19:34:35 +01:00
javascript Load test data from database dumps 2013-12-12 14:18:18 +01:00
templates API State setting within session, make tmpdb optional 2013-12-10 19:34:37 +01:00
tests/unit Converted to PSR-2 2015-12-18 07:17:16 +13:00
.editorconfig Added standard .editorconfig file 2015-12-17 10:09:08 +13:00
.gitattributes Added standard .gitattributes file 2016-01-16 19:34:37 +13:00
.travis.yml BUG Fix test dependencies for master branch 2016-01-18 15:51:42 +13:00
LICENSE Create LICENSE 2013-09-02 21:14:48 +12:00
README.md MINOR: readme typo 2015-10-19 15:04:14 +13:00
_config.php Add Resque_Event::listen() call to register the testsession state switcher 2014-02-12 13:47:40 +13:00
code-of-conduct.md Added standard code of conduct file 2016-02-16 11:43:36 +13:00
composer.json Enable support for framework 4.0.x 2015-01-29 13:00:55 +13:00

README.md

Browser Test Session Module

Build Status

Overview

IMPORTANT: This module is intended for development and testing, it poses a security risk if used on production servers. It's completely possible to allow any user to become an admin, or do other nefarious things, if this is installed on a live site.

This module starts a testing session in a browser, in order to test a SilverStripe application in a clean state. Usually the session is started on a fresh database with only default records loaded. Further data can be loaded from YAML fixtures or database dumps.

The session is persisted in a file which is generated upon starting the session. As long as this file exists, the test session is considered in progress, both in web browsers and command-line execution. By default, the file is stored in the webroot under assets/TESTS_RUNNING-<id>.json. The <id> value is a random token stored in the browser session, in order to make the test session specific to the executing browser, and allow multiple people using their own test session in the same webroot.

The module also serves as an initializer for the SilverStripe Behat Extension. It is required for Behat because the Behat CLI test runner needs to persist test configuration just for the tested browser connection, available on arbitary URL endpoints. For example, we're setting up a test mailer which writes every email into a temporary database table for inspection by the CLI-based process.

Setup

Simply require the module in a SilverStripe webroot (3.0 or newer):

composer require --dev silverstripe/behat-extension

Usage

You start a test session by manually requesting a certain URL, and interact with it through other URL endpoints.

Commands:

  • dev/testsession: Shows options for starting a test session
  • dev/testsession/start: Sets up test state, most commonly a test database will be constructed, and your browser session will be amended to use this database. See "Parameters" documentation below.
  • dev/testsession/end: Removes the test state, and resets to the original database.
  • dev/testsession/loadfixture?fixture=<path>: Loads a fixture into an existing test state.
  • dev/testsession/clear: Empties the test state.
  • dev/testsession/browsersessionstate: Set or unset browser session state (different from test session state). Use query parameters to define states.

While you can use the interface to set the test session state, it can be useful to set them programmatically through query parameters on "dev/testsession/start":

  • fixture: Loads a YAML fixture in the format generally accepted by SapphireTest (see fixture format docs). The path should be relative to the webroot.
  • createDatabase: Create a temporary database.
  • importDatabasePath: Absolute path to a database dump to load into a newly created temporary database.
  • importDatabaseFilename: File name for a database dump to load, relative to TestSessionController.database_templates_path
  • requireDefaultRecords: Include default records as defined on the model classes (in PHP)
  • database: Set an alternative database name in the current browser session as a cookie. Does not actually create the database, that's usually handled by SapphireTest::create_temp_db(). Note: The database names are limited to a specific naming convention as a security measure: The "ss_tmpdb" prefix and a random sequence of seven digits. This avoids the user gaining access to other production databases available on the same connection.
  • mailer: Subclass of Mailer, typically used to record emails instead of actually sending them.
  • datetime: Sets a simulated date used for all framework operations. Format as "yyyy-MM-dd HH:mm:ss" (Example: "2012-12-31 18:40:59").
  • globalTestSession: Activate test session independently of the current browser session, effectively setting the site into test session mode for all users across different browsers. Only available in "dev" mode. For example, create a global test session in Chrome, then you can share the session data in Firefox. But if you have started a non-global session in a browser before starting a global session somewhere else, that non-global session will take priority in that browser.

Example usage with parameters:

dev/testsession/start?database=ss_tmpdb_1234567&fixture=cms/tests/controller/CMSMainTest.yml