Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sc5/sc5-styleguide-visualtest
Gulp plugin for automatic visual testing SC5 StyleGuide components
https://github.com/sc5/sc5-styleguide-visualtest
Last synced: 8 days ago
JSON representation
Gulp plugin for automatic visual testing SC5 StyleGuide components
- Host: GitHub
- URL: https://github.com/sc5/sc5-styleguide-visualtest
- Owner: SC5
- License: mit
- Created: 2015-09-23T08:33:05.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-23T08:51:57.000Z (over 6 years ago)
- Last Synced: 2024-11-06T13:19:00.572Z (11 days ago)
- Language: JavaScript
- Size: 351 KB
- Stars: 24
- Watchers: 22
- Forks: 8
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sc5-styleguide-visualtest
A gulp plugin for automatic visual testing between different versions of components in SC5 StyleGuide.
The screenshots are taken in Chrome via PhantomJS.
## Technical requirements
You need to have PhantomJS installed. After that:
```
npm install --save-dev sc5-styleguide-visualtest
```## Taking the grid screenshots
First you will need to create a set of grid images. They are usually taken from production version of the Style Guide.
It is nice to have a Gulp task for it because you will need to remake the grid screenshots after every interface change.```js
var gulp = require("gulp");var visTest = require('sc5-styleguide-visualtest');
var minimist = require('minimist');var knownOptions = {
'string': 'section',
'default': { 'section': false }
};var options = minimist(process.argv.slice(2), knownOptions);
gulp.task("test:visual:update", function() {
gulp.src('path/to/styleguide/outpurDir', { read: false })
.pipe(visTest.gather({
configDir: './tests/visual/config', // Path to configuration and tests
excludePages: [
'2.2.1', // Back icon is not shown in prod
'6.1-2', // picture is not loaded in prod
],
gridScreenshotsDir: './tests/visual/grid-screenshots',
rootUrl: 'http://mycompany.com/styleguide',
sections: options.section
}))
.pipe(gulp.dest('./tests/visual/config'));
});
```You may also use `localhost` version of Style Guide in `rootUrl` when taking screenshots. If so, make sure it runs.
These 2 tasks will create a basic configuration in `tests/visual/config` folder (you can change to any other path). In
this folder you will get:
* list of fullscreen pages of your components and their modifiers, excluding the listed
* basic test
* grid screenshots put into `tests/visual/grid-screenshots` (change to your path)Store the configuration files and the screenshots in teh repository. But don't forget to exclude from npm and bower
package if you provide it.## Running tests
Tests will compare the grid screenshots with the current view of your Style Guide.```js
gulp.task("test:visual", function(done){
gulp.src(styleGuidePath, { read: false })
.pipe(visTest.test({
configDir: './tests/visual/config',
gridScreenshotsDir: './tests/visual/grid-screenshots',
rootUrl: 'http://127.0.0.1:8000/#',
sections: options.section
}));
});
```Don't forget to have the server with StyleGuide running.
After running `gulp test:visual` you will get output like this:
```
✓ 5.1-25 plain [chrome]
✓ 5.1-26 plain [chrome]
✓ 5.1-27 plain [chrome]
✓ 5.1-28 plain [chrome]
✘ 6.2-1 plain [chrome]
✘ 6.2-2 plain [chrome]
✘ 6.2-3 plain [chrome]
✘ 6.2-4 plain [chrome]
✘ 6.2-5 plain [chrome]
```
The numbers are the references of components in your StyleGuide.You may see the failed tests visually if open `gemini-report/index.html`.
This is how different problems look when spotted:
**Wrong padding**
![](images/wrong-padding.png)
**Wrong font size**
![](images/wrong-font-size.png)
**Wrong height**
![](images/wrong-height.png)## Providing options
By default the plugin takes screenshots in desktop resolution. However you may provide
your own options and take screenshots in different configuration.```js
gulp.task("test:visual", function(done){
gulp.src(styleGuidePath, { read: false })
.pipe(visTest.test({
configDir: './tests/visual/config',
gridScreenshotsDir: './tests/visual/grid-screenshots',
rootUrl: 'http://127.0.0.1:8000/#',
sections: options.section,
geminiOptions: {
browsers: {
"chrome-latest": {
desiredCapabilities: {
browserName: 'chrome',
version: '37.0'
}
}
},
windowSize: '300x600'
}
}));
});
```Don't forget to use the same `geminiOptions` object in for both gulp tasks.
Check the [full list of settings for Gemini](https://en.bem.info/tools/testing/gemini/config/)
## Development flow
### Update the reference images for particular sections (and their subsections)
```
gulp test:visual:update --section 1 --section 4.5
```### Run tests for particular sections (and the subsections) only
```
gulp test:visual --section 1 --section 3.3
```## Custom tests
By default all the components are testing with the same suit. It waits the component to be rendered and then takes a
picture.If you need some specific interactions or modifications for the test, you need to provide a custom test. In the options
list the custom test files with `customTests`:```js
gulp.task("test:visual:update", function() {
gulp.src('path/to/styleguide/outpurDir', { read: false })
.pipe(visTest.gather({
configDir: './tests/visual/config',
gridScreenshotsDir: './tests/visual/grid-screenshots',
rootUrl: 'http://mycompany.com/styleguide',
customTests: {
'2.1': './custom-test.js'
},
sections: options.section
}));
});
```The paths of the test files should be relative to `configDir`. Then, put the test files in there. The content should be
like that:```js
'use strict';var gemini = require('gemini');
module.exports = function (page) {
gemini.suite(page.name, function (suite) {
suite.setUrl(page.url).setCaptureElements('body').capture('plain', function (actions, find) {actions.waitForElementToShow('shadow-dom', 7000);
actions.wait(500);
// Put your actions here. For example, click on an element
actions.click('.simple-block');
});});
};
```
You can modify the test as much as needed (however, keep `module.exports = function (page) {` interface). But usually
the only needed this is to provide more actions. You can find the full list of possible action in [documentation for
Gemini](https://en.bem.info/tools/testing/gemini/testing/#available-actions).### Custom core test
If you need to provide changes for all the tests, it is easier to change the coreTest:
```js
gulp.task("test:visual:update", function() {
gulp.src('path/to/styleguide/outpurDir', { read: false })
.pipe(visTest.gather({
configDir: './tests/visual/config',
gridScreenshotsDir: './tests/visual/grid-screenshots',
rootUrl: 'http://mycompany.com/styleguide',
coreTest: './custom-core-test.js',
sections: options.section
}));
});
```### Ignore some parts of the component
With providing custom test you can ignore some parts of the components. For example, you can tune the test to ignore the
picture which changes from time to time and never matches, or a blinking thing or such.```js
module.exports = function (page) {
gemini.suite(page.name, function (suite) {
suite.setUrl(page.url).setCaptureElements('body').capture('plain', function (actions, find) {
...
suite.ignoreElements('.element-to-ignore', '#another-element-to-ignore');
});});
};
```