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
139 lines (99 loc) · 3.57 KB
/
test.js
File metadata and controls
139 lines (99 loc) · 3.57 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
/*jshint node:true, evil:true */
/*global describe:true, it:true, PAYPAL:true, document:true, window:true */
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';
it('Should have a PAYPAL namespace', function () {
PAYPAL.should.be.a('object');
});
it('Should have a PAYPAL.apps namespace', function () {
PAYPAL.apps.should.be.a('object');
});
it('Should have a PAYPAL.apps.ButtonFactory namespace', function () {
PAYPAL.apps.ButtonFactory.should.be.a('object');
});
it('Should have a configuration object', function () {
PAYPAL.apps.ButtonFactory.config.should.be.a('object');
});
it('Should have a create method', function () {
PAYPAL.apps.ButtonFactory.create.should.be.a('function');
});
it('Create return false if no parameters', function () {
var result = PAYPAL.apps.ButtonFactory.create();
result.should.equal(false);
});
});
// Test the buttons counter object
describe('Test page button counter', function () {
'use strict';
var buttons = PAYPAL.apps.ButtonFactory.buttons;
it('Should have six buy now buttons', function () {
buttons.buynow.should.equal(6);
});
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 editable fields
describe('Editable buttons', function () {
'use strict';
var 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');
});