-
-
Notifications
You must be signed in to change notification settings - Fork 939
/
Copy pathrandom.spec.ts
245 lines (194 loc) · 6.77 KB
/
random.spec.ts
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import { describe, expect, it, vi } from 'vitest';
import { faker } from '../src';
describe('random', () => {
describe('arrayElement', () => {
it('should return a random element in the array', () => {
const testArray = ['hello', 'to', 'you', 'my', 'friend'];
const actual = faker.random.arrayElement(testArray);
expect(testArray).toContain(actual);
});
it('should return a random element in the array when there is only 1', () => {
const testArray = ['hello'];
const actual = faker.random.arrayElement(testArray);
expect(actual).toBe('hello');
});
});
describe('arrayElements', () => {
it('should return a subset with random elements in the array', () => {
const testArray = ['hello', 'to', 'you', 'my', 'friend'];
const subset = faker.random.arrayElements(testArray);
// Check length
expect(subset.length).greaterThanOrEqual(1);
expect(subset.length).lessThanOrEqual(testArray.length);
// Check elements
subset.forEach((element) => {
expect(testArray).toContain(element);
});
// Check uniqueness
expect(subset).toHaveLength(new Set(subset).size);
});
it('should return a subset of fixed length with random elements in the array', () => {
const testArray = ['hello', 'to', 'you', 'my', 'friend'];
const subset = faker.random.arrayElements(testArray, 3);
// Check length
expect(subset).toHaveLength(3);
// Check elements
subset.forEach((element) => {
expect(testArray).toContain(element);
});
// Check uniqueness
expect(subset).toHaveLength(new Set(subset).size);
});
});
describe('objectElement', () => {
it('should return a random value', () => {
const testObject = {
hello: 'to',
you: 'my',
friend: '!',
};
const actual = faker.random.objectElement(testObject);
expect(Object.values(testObject)).toContain(actual);
});
it('should return a random key', () => {
const testObject = {
hello: 'to',
you: 'my',
friend: '!',
};
const actual = faker.random.objectElement(testObject, 'key');
expect(Object.keys(testObject)).toContain(actual);
});
});
describe('word', () => {
it('should return a random word', () => {
const actual = faker.random.word();
expect(actual).toBeTruthy();
expect(actual).toBeTypeOf('string');
});
});
describe('words', () => {
it('should return random words', () => {
const actual = faker.random.words();
expect(actual).toBeTruthy();
expect(actual).toBeTypeOf('string');
const words = actual.split(' ');
expect(words.length).greaterThanOrEqual(1);
expect(words.length).lessThanOrEqual(3);
});
it('should return random words', () => {
const actual = faker.random.words(5);
expect(actual).toBeTruthy();
expect(actual).toBeTypeOf('string');
const words = actual.split(' ');
expect(words).toHaveLength(5);
});
});
describe('locale', () => {
it('should return a random locale', () => {
const actual = faker.random.locale();
expect(actual).toBeTruthy();
expect(actual).toBeTypeOf('string');
expect(Object.keys(faker.locales)).toContain(actual);
});
});
describe('alpha', () => {
it('should return single letter when no count provided', () => {
const actual = faker.random.alpha();
expect(actual).toHaveLength(1);
});
it('should return lowercase letter when no upcase option provided', () => {
const actual = faker.random.alpha();
expect(actual).match(/[a-z]/);
});
it('should return uppercase when upcase option is true', () => {
const actual = faker.random.alpha({ upcase: true });
expect(actual).match(/[A-Z]/);
});
it('should generate many random letters', () => {
const actual = faker.random.alpha(5);
expect(actual).toHaveLength(5);
});
it('should be able to ban some characters', () => {
const actual = faker.random.alpha({
count: 5,
bannedChars: ['a', 'p'],
});
expect(actual).toHaveLength(5);
expect(actual).match(/[b-oq-z]/);
});
it('should be able handle mistake in banned characters array', () => {
const alphaText = faker.random.alpha({
count: 5,
bannedChars: ['a', 'a', 'p'],
});
expect(alphaText).toHaveLength(5);
expect(alphaText).match(/[b-oq-z]/);
});
});
describe('alphaNumeric', () => {
it('should generate single character when no additional argument was provided', () => {
const actual = faker.random.alphaNumeric();
expect(actual).toHaveLength(1);
});
it('should generate many random characters', () => {
const actual = faker.random.alphaNumeric(5);
expect(actual).toHaveLength(5);
});
it('should be able to ban all alphabetic characters', () => {
const bannedChars = 'abcdefghijklmnopqrstuvwxyz'.split('');
const alphaText = faker.random.alphaNumeric(5, {
bannedChars,
});
expect(alphaText).toHaveLength(5);
for (const bannedChar of bannedChars) {
expect(alphaText).not.includes(bannedChar);
}
});
it('should be able to ban all numeric characters', () => {
const bannedChars = '0123456789'.split('');
const alphaText = faker.random.alphaNumeric(5, {
bannedChars,
});
expect(alphaText).toHaveLength(5);
for (const bannedChar of bannedChars) {
expect(alphaText).not.includes(bannedChar);
}
});
it('should be able to handle mistake in banned characters array', () => {
const alphaText = faker.random.alphaNumeric(5, {
bannedChars: ['a', 'p', 'a'],
});
expect(alphaText).toHaveLength(5);
expect(alphaText).match(/[b-oq-z]/);
});
it.todo('should throw if all possible characters being banned', () => {
const bannedChars = 'abcdefghijklmnopqrstuvwxyz0123456789'.split('');
expect(() =>
faker.random.alphaNumeric(5, {
bannedChars,
})
).toThrowError();
});
});
describe('deprecation warnings', () => {
it.each([
['number', 'datatype.number'],
['float', 'datatype.float'],
['uuid', 'datatype.uuid'],
['boolean', 'datatype.boolean'],
['image', 'image.image'],
['hexaDecimal', 'datatype.hexaDecimal'],
])(
'should warn user that function random.%s is deprecated',
(functionName, newLocation) => {
const spy = vi.spyOn(console, 'warn');
faker.random[functionName]();
expect(spy).toHaveBeenCalledWith(
`Deprecation Warning: faker.random.${functionName} is now located in faker.${newLocation}`
);
spy.mockRestore();
}
);
});
});