-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathhelpers.unit.js
188 lines (169 loc) · 7.35 KB
/
helpers.unit.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
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
180
181
182
183
184
185
186
187
188
if (typeof module !== 'undefined') {
var assert = require('assert');
var sinon = require('sinon');
var faker = require('../index');
}
describe("helpers.js", function () {
describe("replaceSymbolWithNumber()", function () {
context("when no symbol passed in", function () {
it("uses '#' by default", function () {
var num = faker.helpers.replaceSymbolWithNumber('#AB');
assert.ok(num.match(/\dAB/));
});
});
context("when symbol passed in", function () {
it("replaces that symbol with integers", function () {
var num = faker.helpers.replaceSymbolWithNumber('#AB', 'A');
assert.ok(num.match(/#\dB/));
});
});
});
describe("replaceSymbols()", function () {
context("when '*' passed", function () {
it("replaces it with alphanumeric", function(){
var num = faker.helpers.replaceSymbols('*AB');
assert.ok(num.match(/\wAB/));
});
});
});
describe("shuffle()", function () {
it("the output is the same length as the input", function () {
sinon.spy(faker.random, 'number');
var shuffled = faker.helpers.shuffle(["a", "b"]);
assert.ok(shuffled.length === 2);
assert.ok(faker.random.number.calledWith(1));
faker.random.number.restore();
});
it("empty array returns empty array", function () {
var shuffled = faker.helpers.shuffle([]);
assert.ok(shuffled.length === 0);
});
it("mutates the input array in place", function () {
var input = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"];
var shuffled = faker.helpers.shuffle(input);
assert.deepEqual(shuffled, input);
});
it("all items shuffled as expected when seeded", function () {
var input = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"];
faker.seed(100);
var shuffled = faker.helpers.shuffle(input);
assert.deepEqual(shuffled, ["b", "e", "a", "d", "j", "i", "h", "c", "g", "f"]);
});
});
describe("slugify()", function () {
it("removes unwanted characters from URI string", function () {
assert.equal(faker.helpers.slugify("Aiden.Harªann"), "Aiden.Harann");
assert.equal(faker.helpers.slugify("d'angelo.net"), "dangelo.net");
});
});
describe("mustache()", function () {
it("returns empty string with no arguments", function () {
assert.equal(faker.helpers.mustache(), "");
});
});
describe("repeatString()", function () {
it("returns empty string with no arguments", function () {
assert.equal(faker.helpers.repeatString(), "");
});
});
describe("replaceSymbols()", function () {
it("returns empty string with no arguments", function () {
assert.equal(faker.helpers.replaceSymbols(), "");
});
});
/*
describe("replaceCreditCardSymbols()", function () {
it("returns empty string with no arguments", function () {
assert.equal(faker.helpers.replaceCreditCardSymbols(), "");
});
});
*/
describe("createCard()", function () {
it("returns an object", function () {
var card = faker.helpers.createCard();
assert.ok(typeof card === 'object');
});
});
describe("contextualCard()", function () {
it("returns an object", function () {
var card = faker.helpers.contextualCard();
assert.ok(typeof card === 'object');
});
});
describe("userCard()", function () {
it("returns an object", function () {
var card = faker.helpers.userCard();
assert.ok(typeof card === 'object');
});
});
// Make sure we keep this function for backward-compatibility.
describe("randomize()", function () {
it("returns a random element from an array", function () {
var arr = ['a', 'b', 'c'];
var elem = faker.helpers.randomize(arr);
assert.ok(elem);
assert.ok(arr.indexOf(elem) !== -1);
});
});
describe("replaceCreditCardSymbols()", function () {
var luhnCheck = require("./support/luhnCheck.js");
it("returns a credit card number given a schema", function () {
var number = faker.helpers.replaceCreditCardSymbols("6453-####-####-####-###L");
assert.ok(number.match(/^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/));
assert.ok(luhnCheck(number));
});
it("supports different symbols", function () {
var number = faker.helpers.replaceCreditCardSymbols("6453-****-****-****-***L","*");
assert.ok(number.match(/^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/));
assert.ok(luhnCheck(number));
});
it("handles regexp style input", function () {
var number = faker.helpers.replaceCreditCardSymbols("6453-*{4}-*{4}-*{4}-*{3}L","*");
assert.ok(number.match(/^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/));
assert.ok(luhnCheck(number));
number = faker.helpers.replaceCreditCardSymbols("645[5-9]-#{4,6}-#{1,2}-#{4,6}-#{3}L");
assert.ok(number.match(/^645[5-9]\-([0-9]){4,6}\-([0-9]){1,2}\-([0-9]){4,6}\-([0-9]){4}$/));
assert.ok(luhnCheck(number));
});
});
describe("regexpStyleStringParse()", function () {
it("returns an empty string when called without param", function () {
assert.ok(faker.helpers.regexpStyleStringParse() === "");
});
it("deals with range repeat", function () {
var string = faker.helpers.regexpStyleStringParse("#{5,10}");
assert.ok(string.length <= 10 && string.length >= 5);
assert.ok(string.match(/^\#{5,10}$/));
});
it("flips the range when min > max", function () {
var string = faker.helpers.regexpStyleStringParse("#{10,5}");
assert.ok(string.length <= 10 && string.length >= 5);
assert.ok(string.match(/^\#{5,10}$/));
});
it("repeats string {n} number of times", function () {
assert.ok(faker.helpers.regexpStyleStringParse("%{10}") === faker.helpers.repeatString("%",10));
assert.ok(faker.helpers.regexpStyleStringParse("%{30}") === faker.helpers.repeatString("%",30));
assert.ok(faker.helpers.regexpStyleStringParse("%{5}") === faker.helpers.repeatString("%",5));
});
it("creates a numerical range", function () {
var string = faker.helpers.regexpStyleStringParse("Hello[0-9]");
assert.ok(string.match(/^Hello[0-9]$/));
});
it("deals with multiple tokens in one string", function () {
var string = faker.helpers.regexpStyleStringParse("Test#{5}%{2,5}Testing**[1-5]**{10}END");
assert.ok(string.match(/^Test\#{5}%{2,5}Testing\*\*[1-5]\*\*{10}END$/));
});
});
describe("createTransaction()", function() {
it("should create a random transaction", function() {
var transaction = faker.helpers.createTransaction();
assert.ok(transaction);
assert.ok(transaction.amount);
assert.ok(transaction.date);
assert.ok(transaction.business);
assert.ok(transaction.name);
assert.ok(transaction.type);
assert.ok(transaction.account);
});
});
});