Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Create visual diffs in your Laravel application tests.

License

NotificationsYou must be signed in to change notification settings

dwarfhq/laravel-visual-diff

 
 

Repository files navigation

Latest Version on PackagistBuild StatusQuality ScoreTotal Downloads

This package can create a visual diff of two screenshots of your Laravel application. It works for both - regular HTTP tests, as well as tests using Laravel Dusk.Behind the scenes, it usesPixelmatch to diff the two images.

Here are two basic examples of how the package works:

Using Laravel Dusk:

class ExampleTestextends DuskTestCase{/**     * A basic browser test example.     *     * @return void     */publicfunctiontestBasicExample()    {$this->browse(function (Browser$browser) {$browser->visit('/')                    ->visualDiff();        });    }}

Using Laravel HTTP Testing:

class ExampleTestextends TestCase{/**     * A basic test example.     *     * @return void     */publicfunctiontestBasicExample()    {$this->get('/')             ->visualDiff();    }}

Requirements

This package requires node 7.6.0 or higher and the Pixelmatch Node library.

You can install the Pixelmatch on MacOS via NPM:

npm install pixelmatch

Or you could install it globally

npm install pixelmatch --global

Custom node and npm binaries

Depending on your setup, node or npm might be not directly available to VisualDiff.If you need to manually set these binary paths, you can do this by setting thenpm_binary andnode_binary config settings in thevisualdiff.php configuration file.

Installation

This package can be installed through Composer.

composer require beyondcode/laravel-visual-diff

Usage

The package will automatically register theVisualDiffServiceProvider with your Laravel application.

The package adds a new method to either theTestResponse or theBrowser class which is calledvisualDiff.Depending on how you want to create visual diffs, follow the usage guidelines for the Laravel Dusk integration or the HTTP testing integration.

ThevisualDiff method accepts a name, that will be used for the screenshot generation. If you do not provide a name, the package will try and guess the test name. If this does not work for you, please provide a name manually instead.

Dusk Integration

Just call thevisualDiff() method on the Laravel DuskBrowser instance that you use for testing:

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

This will automatically create a screenshot in all provided resolutions and create a diff, if a previous screenshot is available.

HTTP Testing Integration

Just call thevisualDiff() method on theTestResponse instance that you use for testing:

$this->get('/')     ->visualDiff();

This will automatically create a screenshot in all provided resolutions and create a diff, if a previous screenshot is available.

Dealing with diffs

When VisualDiff detects differences in the new screenshot compared to the previous successfully created screenshot, the PHPUnit test will fail.It will tell you which test caused the visual difference as well as giving you the filename of the screenshot diff.

Now you need to handle with this visual diff, just as you would with a code-diff. Review the changes and either approve the visual difference, or revert the UI state back to the successful state.

You can approve the new screenshots by adding a-d --update-screenshots flag to the phpunit command.

> ./vendor/bin/phpunit -d --update-screenshotsOK (1 test, 1 assertion)

Specify multiple resolutions

Creating diffs for multiple resolutions can be very useful - especially if you want to test responsive websites and applications.

You can define all possible resolutions in yourvisualdiff.php configuration file:

/** * Define all different resolutions that you want to use when performing * the regression tests. */'resolutions' => [    ['width' =>1920,'height'=>1080    ]]

Alternatively, you may want to only create one specific diff in multiple resolutions.You can do this using thevisualDiffForResolutions method and provide an array with the resolutions to test.

$this->get('/')     ->visualDiffForResolutions([        ['width' =>1920,'height' =>1080        ],        ['width' =>640,'height' =>480        ],     ]);

See diff results in your terminal window

If you useiTerm2 as your terminal of choice, you will see an image representation of the diff when you run your tests.

iTerm 2

Changelog

Please seeCHANGELOG for more information on what has changed recently.

Contributing

Please seeCONTRIBUTING for details.

Security

If you discover any security related issues, please emailmarcel@beyondco.de instead of using the issue tracker.

Credits

License

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

About

Create visual diffs in your Laravel application tests.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP85.3%
  • Shell10.4%
  • JavaScript4.3%

[8]ページ先頭

©2009-2025 Movatter.jp