Download the PHP package paksuco/dusk-time-travel without Composer

On this page you can find all versions of the php package paksuco/dusk-time-travel. 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 dusk-time-travel



## A dusk browser extension package for time traveling

Latest Version on Packagist Total Downloads

This package feeds the hunger for Dusk test cases having time modified requests. All PR's are welcome.

Supported versions:

Beyond this the package may continue to work, but is untested. Please raise an issue if you run into problems, so it can be fixed.

Installation

You can install the package via composer:

There is a crucial step to do after installing the package to let the browser have time travel methods, you need to extend your browser class from Paksuco/DuskTimeTravel/Browser class instead of the stock Laravel/Dusk/Browser. This class acts like a middle man between your test cases and the Laravel Dusk browser.

To do this, add this code to your DuskTestCase.php file:

Usage

Since you've changed your browser class, you've gained access to two new Dusk browser methods:

The traveled time is delivered via a cookie, which has two consequences:

  1. The browser must already be on a page of your app when you call travelTo() or travelBack(), so visit() something first or you'll get an invalid cookie domain error.
  2. The time change (both server-side and browser-side JavaScript) only applies from the next page load; the current page is unaffected.

For example:

Both of them will use tomorrows date as the next request (AJAX or Redirect, doesn't matter).

Other usage examples:

After you've recreated the instance, or manually reset with travelBack(), the server will revert to the normal date.

Browser-side (JavaScript) time travel

In addition to faking server-side time, travelTo() also fakes time for JavaScript running in the browser. new Date(), Date.now() and plain Date() calls in page scripts will return the traveled time. This works by registering a small Date shim through the Chrome DevTools Protocol (Page.addScriptToEvaluateOnNewDocument), so it:

Note that each page load starts exactly at the traveled instant and then ticks forward naturally (time is shifted, not frozen — freezing would break polling and animation code).

Since the server re-freezes to the traveled time at the start of each request, browser and server agree at page-load time and the browser then drifts forward by the age of the page.

To fake only server-side time, pass false as the second argument:

Limitations:

Registering the ModifyDuskBrowserTime middleware

By default, the package registers its middleware globally, so every request your application's HTTP kernel handles is covered — web, api, any custom middleware group, and even routes that don't belong to any group at all.

The middleware is inert unless the browser has actually traveled through time (with travelTo()), so this is safe even if your application has no api route group, or doesn't use one at all.

If you'd like more control, publish the config file:

This creates config/dusk-time-travel.php:

The middleware option accepts:

Note on Laravel 7.x: Defining an array of middleware group names is only supported on Laravel 8 onwards. If an array is defined in the config file on Laravel 7, it will instead be silently handled as if you'd set it to boolean true instead and the middleware will be registered globally.

Testing

A test case is included in this respository, but since it's a Dusk extension the tests are run on a Laravel instance having Dusk installed. You can test the plugin the same way the .github/workflows/run-tests.yml workflow does.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of dusk-time-travel with dependencies

PHP Build Version
Package Version
Requires illuminate/http Version ^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/routing Version ^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/support Version ^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
laravel/dusk Version ^6.0|^7.0|^8.0
symfony/http-foundation Version ^5.1.3|^6.0|^7.0|^8.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 paksuco/dusk-time-travel contains the following files

Loading the files please wait ...