magic-test / magic-test-laravel by mateusjatenee

Use Magic Test with Laravel
25,887
445
14
Package Data
Maintainer Username: mateusjatenee
Maintainer Contact: mateus.jatene@gmail.com (Mateus Guimarães)
Package Create Date: 2021-03-01
Package Last Update: 2024-02-27
Language: PHP
License: MIT
Last Refreshed: 2024-04-15 15:10:13
Package Statistics
Total Downloads: 25,887
Monthly Downloads: 283
Daily Downloads: 4
Total Stars: 445
Total Watchers: 14
Total Forks: 18
Total Open Issues: 3

Magic Test for Laravel

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Magic Test allows you to write browser tests by simply clicking around on the application being tested, all without the slowness of constantly restarting the testing environment.
It inverts the test-writing experience and avoids all the back and forth between tests, your terminal and your template files. See it in action here.
The easiest way to explain Magic Test is through a video. Check it out here.

Magic Test was originally created by Andrew Culver and Adam Pallozi for Ruby on Rails.
Laravel Magic Test was created by Mateus Guimarães.

Magic Test is still in early development, and that includes the documentation. Any questions you have that aren't already address in the documentation should be opened as issues so they can be appropriately addressed in the documentation.

Installation

You can install the package via composer:

composer require magic-test/magic-test-laravel --dev

Then, add the following line to your $middleware array under app/Http/Kernel.php:

\MagicTest\MagicTest\Middleware\MagicTestMiddleware::class

Usage

On your Laravel Dusk tests, simply add magic() at the end of your method chain. For example:

    public function testBasicExample()
    {
        $this->browse(function (Browser $browser) {
            $browser->visit('/')
                    ->magic();
        });
    }

To run Magic Test, you must simply run the command php artisan magic. Behind the scenes, it is the same as running php artisan dusk, but it will maintain the browser window open.

This will leave you with two or three windows:

  • The browser
  • An interactive Shell
  • Your text editor if you had it open

For the Magic Experience™️, we suggest you organize the three windows to fit your screen. That way, you can see tests being generated in real-time.

Recording Actions

Once the browser is open, Magic Test will already be capturing all of your actions. You can click around, fill inputs, checkboxes, selects and radios just like you would do manually testing an application.

Generating Assertions

Additionally, you can generate text assertions by selecting a given text and then pressing ControlShift + A. You'll see a dialog box confirming the assertion has been recorded.

Saving the new actions to the test file

To save the actions that were recorded, simply go to the Shell and type ok. You are free to close it and come back to your Magic Sessiona any time, or just keep recording more actions.
If you're satisfied with your test, you can type finish on the Shell and it'll remove the magic() call from your test, leaving you with a clean, working test.

See how it works on this video

Magic Test is still in it's early days, so you might find that the output is not exactly what you wanted. In that case, feel free to submit an issue and we'll try to improve it ASAP.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

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.