forked from jbillimoria/JavaScriptButtons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
179 lines (126 loc) · 4.23 KB
/
Copy pathtest.js
File metadata and controls
179 lines (126 loc) · 4.23 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*jshint node:true, evil:true */
/*global describe:true, it:true, PAYPAL:true, document:true, window:true, before:true, beforeEach:true */
if (typeof window === 'undefined') {
var fs = require('fs'),
should = require('should'),
jsdom = require('jsdom').jsdom,
jsdomOptions = { features: { QuerySelector: true }},
testFile = fs.readFileSync('./test/index.html').toString(),
document = jsdom(testFile, null, jsdomOptions),
window = document.createWindow();
eval(fs.readFileSync('src/paypal-button.js').toString());
}
// Test the object's integrity
describe('JavaScript API', function () {
'use strict';
var namespace;
before(function () {
namespace = PAYPAL;
});
it('Should have a PAYPAL namespace', function () {
namespace.should.be.a('object');
});
it('Should have a PAYPAL.apps namespace', function () {
namespace.apps.should.be.a('object');
});
it('Should have a PAYPAL.apps.ButtonFactory namespace', function () {
namespace.apps.ButtonFactory.should.be.a('object');
});
it('Should have a configuration object', function () {
namespace.apps.ButtonFactory.config.should.be.a('object');
});
it('Should have a create method', function () {
namespace.apps.ButtonFactory.create.should.be.a('function');
});
it('Create return false if no parameters', function () {
var result = namespace.apps.ButtonFactory.create();
result.should.equal(false);
});
});
// Test the buttons counter object
describe('Test page button counter', function () {
'use strict';
var buttons;
before(function () {
buttons = PAYPAL.apps.ButtonFactory.buttons;
});
it('Should have seven buy now buttons', function () {
buttons.buynow.should.equal(7);
});
it('Should have two cart buttons', function () {
buttons.cart.should.equal(2);
});
it('Should have two donation buttons', function () {
buttons.donate.should.equal(2);
});
it('Should have two subscribe buttons', function () {
buttons.subscribe.should.equal(2);
});
it('Should have one QR code', function () {
buttons.qr.should.equal(1);
});
});
// Test environments
describe('Environments', function () {
'use strict';
var sandbox, www;
before(function () {
sandbox = document.querySelector('#sandbox form');
www = document.querySelector('#buynow-sm form');
});
it('Should be a sandbox button', function () {
sandbox.action.should.include('//www.sandbox.paypal');
});
it('Should be a www button', function () {
www.action.should.include('//www.paypal');
});
});
// Test editable fields
describe('Editable buttons', function () {
'use strict';
var inputs;
before(function () {
inputs = document.querySelectorAll('#buynow-editable input[type=text]');
});
it('Should have three inputs', function () {
inputs.length.should.equal(3);
});
it('Should have a CSS class on the input', function () {
inputs[0].className.should.include('paypal-input');
});
it('Should have a CSS class on the label', function () {
inputs[0].parentNode.className.should.include('paypal-label');
});
it('Should have a CSS class on the container', function () {
inputs[0].parentNode.parentNode.className.should.include('paypal-group');
});
});
// Test multi-language support
describe('Multi-language button images', function () {
'use strict';
function testLanguage(locale, type, expected) {
it('Should have a ' + locale + ' version of the ' + type + ' button', function () {
var button = document.querySelector('#' + type + '-' + locale + ' button[type=submit]'),
buttonText = button && button.textContent;
buttonText.should.equal(expected);
});
}
testLanguage('es_ES', 'buynow', 'Comprar ahora');
testLanguage('de_DE', 'buynow', 'Jetzt kaufen');
testLanguage('ja_JP', 'buynow', '今すぐ購入');
});
// Test multiple button image sizes
describe('Multiple button image sizes', function () {
'use strict';
function testSize(size, type, expected) {
it('Should have a ' + size + ' version of ' + type + ' button', function () {
var button = document.querySelector('#' + type + '-' + size + ' button[type=submit]'),
buttonClass = button && button.className;
buttonClass.should.include(expected);
});
}
testSize('sm', 'buynow', 'small');
testSize('sm', 'cart', 'small');
testSize('lg', 'buynow', 'large');
testSize('lg', 'cart', 'large');
});