-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
65 lines (46 loc) · 1.67 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
var plugin = require('./index');
var PluginApi = require('gardr-core-plugin').PluginApi;
describe('plugin', function () {
var pluginApi, spy;
beforeEach(function () {
pluginApi = new PluginApi();
spy = sinon.spy(pluginApi, 'on');
});
it('should listen to banner:rendered event', function () {
plugin(pluginApi, {});
expect(spy).to.have.been.calledOnce;
expect(spy).to.have.been.calledWith('banner:rendered');
});
it('should inject wallpapercolor if wallpapercolor exists on window', function () {
var color = '#333';
window.gardr_wallpapercolor = color;
plugin(pluginApi, {});
var options = {};
pluginApi.trigger('banner:rendered', options);
expect(options.wallpapercolor).to.equal(color);
});
it('should inject wallpaperimage if wallpaperimage exists on window', function (){
var image = 'http://test.image.com/image.jpg';
window.gardr_wallpaperimage = image;
plugin(pluginApi, {});
var options = {};
pluginApi.trigger('banner:rendered', options);
expect(options.wallpaperimage).to.equal(image);
});
it('should inject wallpaperclick if wallpaperclick exists on window', function (){
var click = 'http://www.somedomain.com';
window.gardr_wallpaperclick = click;
plugin(pluginApi, {});
var options = {};
pluginApi.trigger('banner:rendered', options);
expect(options.wallpaperclick).to.equal(click);
});
it('should inject wallpapertiling if wallpapertiling exists on window', function (){
var tiling = 'yes';
window.gardr_wallpapertiling = tiling;
plugin(pluginApi, {});
var options = {};
pluginApi.trigger('banner:rendered', options);
expect(options.wallpapertiling).to.equal(tiling);
});
});