Socialify

Folder ..

Viewing helpers.spec.ts
289 lines (256 loc) • 9.0 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import { describe, expect, it, vi } from 'vitest';
import { faker } from '../dist/cjs';
import { luhnCheck } from './support/luhnCheck';

describe('helpers.js', () => {
  describe('replaceSymbolWithNumber()', () => {
    describe('when no symbol passed in', () => {
      it("uses '#' by default", () => {
        const num = faker.helpers.replaceSymbolWithNumber('#AB');
        expect(num).match(/\dAB/);
      });
    });

    describe('when symbol passed in', () => {
      it('replaces that symbol with integers', () => {
        const num = faker.helpers.replaceSymbolWithNumber('#AB', 'A');
        expect(num).match(/#\dB/);
      });
    });
  });

  describe('replaceSymbols()', () => {
    describe("when '*' passed", () => {
      it('replaces it with alphanumeric', () => {
        const num = faker.helpers.replaceSymbols('*AB');
        expect(num).match(/\wAB/);
      });
    });
  });

  describe('shuffle()', () => {
    it('the output is the same length as the input', () => {
      const spy_datatype_number = vi.spyOn(faker.datatype, 'number');

      const shuffled = faker.helpers.shuffle(['a', 'b']);

      expect(shuffled).toHaveLength(2);
      expect(spy_datatype_number).toHaveBeenCalledWith(1);

      spy_datatype_number.mockRestore();
    });

    it('empty array returns empty array', () => {
      const shuffled = faker.helpers.shuffle([]);
      expect(shuffled).toHaveLength(0);
    });

    it('mutates the input array in place', () => {
      const input = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
      const shuffled = faker.helpers.shuffle(input);
      expect(shuffled).deep.eq(input);
    });

    it('all items shuffled as expected when seeded', () => {
      const input = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
      faker.seed(100);
      const shuffled = faker.helpers.shuffle(input);
      expect(shuffled).deep.eq([
        'b',
        'e',
        'a',
        'd',
        'j',
        'i',
        'h',
        'c',
        'g',
        'f',
      ]);
    });
  });

  describe('uniqueArray()', () => {
    it('custom array returns unique array', () => {
      const input = ['a', 'a', 'a', 'a,', 'a', 'a', 'a', 'a', 'b'];
      const length = 2;
      const unique = faker.helpers.uniqueArray(input, length);
      expect(unique).toHaveLength(length);
      expect(new Set(unique).size).toBe(length);
    });

    it('definition array returns unique array', () => {
      const length = faker.datatype.number({ min: 1, max: 6 });
      const unique = faker.helpers.uniqueArray(
        faker.definitions.hacker.noun,
        length
      );
      expect(unique).toHaveLength(length);
      expect(new Set(unique).size).toBe(length);
    });

    it('function returns unique array', () => {
      const length = faker.datatype.number({ min: 1, max: 6 });
      const unique = faker.helpers.uniqueArray(faker.lorem.word, length);
      expect(unique).toHaveLength(length);
      expect(new Set(unique).size).toBe(length);
    });

    it('empty array returns empty array', () => {
      const input = [];
      const length = faker.datatype.number({ min: 1, max: 6 });
      const unique = faker.helpers.uniqueArray(input, length);
      expect(unique).toHaveLength(input.length);
      expect(new Set(unique).size).toBe(input.length);
    });

    it('length longer than source returns max length', () => {
      const input = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
      const length = input.length + 1;
      const unique = faker.helpers.uniqueArray(input, length);
      expect(unique).toHaveLength(input.length);
      expect(new Set(unique).size).toBe(input.length);
    });

    it('works as expected when seeded', () => {
      const input = ['a', 'a', 'a', 'a', 'a', 'f', 'g', 'h', 'i', 'j'];
      const length = 5;
      faker.seed(100);
      const unique = faker.helpers.uniqueArray(input, length);
      expect(unique).deep.eq(['g', 'a', 'i', 'f', 'j']);
    });
  });

  describe('slugify()', () => {
    it('removes unwanted characters from URI string', () => {
      expect(faker.helpers.slugify('Aiden.Harªann')).toBe('Aiden.Harann');
      expect(faker.helpers.slugify("d'angelo.net")).toBe('dangelo.net');
    });
  });

  describe('mustache()', () => {
    it('returns empty string with no arguments', () => {
      expect(
        // @ts-expect-error
        faker.helpers.mustache()
      ).toBe('');
    });
  });

  describe('repeatString()', () => {
    it('returns empty string with no arguments', () => {
      expect(
        // @ts-expect-error
        faker.helpers.repeatString()
      ).toBe('');
    });
  });

  describe('replaceSymbols()', () => {
    it('returns empty string with no arguments', () => {
      expect(faker.helpers.replaceSymbols()).toBe('');
    });
  });

  /*
    describe("replaceCreditCardSymbols()",  () =>{
        it("returns empty string with no arguments",  () =>{
            assert.equal(faker.helpers.replaceCreditCardSymbols(), "");
        });
    });
    */

  describe('createCard()', () => {
    it('returns an object', () => {
      const card = faker.helpers.createCard();
      expect(typeof card).toBe('object');
    });
  });

  describe('contextualCard()', () => {
    it('returns an object', () => {
      const card = faker.helpers.contextualCard();
      expect(typeof card).toBe('object');
    });
  });

  describe('userCard()', () => {
    it('returns an object', () => {
      const card = faker.helpers.userCard();
      expect(typeof card).toBe('object');
    });
  });

  // Make sure we keep this function for backward-compatibility.
  describe('randomize()', () => {
    it('returns a random element from an array', () => {
      const arr = ['a', 'b', 'c'];
      const elem = faker.helpers.randomize(arr);
      expect(elem).toBeTruthy();
      expect(arr).toContain(elem);
    });
  });

  describe('replaceCreditCardSymbols()', () => {
    it('returns a credit card number given a schema', () => {
      const number = faker.helpers.replaceCreditCardSymbols(
        '6453-####-####-####-###L'
      );
      expect(number).match(
        /^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/
      );
      expect(luhnCheck(number)).toBeTruthy();
    });
    it('supports different symbols', () => {
      const number = faker.helpers.replaceCreditCardSymbols(
        '6453-****-****-****-***L',
        '*'
      );
      expect(number).match(
        /^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/
      );
      expect(luhnCheck(number)).toBeTruthy();
    });
    it('handles regexp style input', () => {
      let number = faker.helpers.replaceCreditCardSymbols(
        '6453-*{4}-*{4}-*{4}-*{3}L',
        '*'
      );
      expect(number).match(
        /^6453\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}\-([0-9]){4}$/
      );
      expect(luhnCheck(number)).toBeTruthy();
      number = faker.helpers.replaceCreditCardSymbols(
        '645[5-9]-#{4,6}-#{1,2}-#{4,6}-#{3}L'
      );
      expect(number).match(
        /^645[5-9]\-([0-9]){4,6}\-([0-9]){1,2}\-([0-9]){4,6}\-([0-9]){4}$/
      );
      expect(luhnCheck(number)).toBeTruthy();
    });
  });

  describe('regexpStyleStringParse()', () => {
    it('returns an empty string when called without param', () => {
      expect(faker.helpers.regexpStyleStringParse()).toBe('');
    });

    it('deals with range repeat', () => {
      const string = faker.helpers.regexpStyleStringParse('#{5,10}');
      expect(string.length).lessThanOrEqual(10);
      expect(string.length).greaterThanOrEqual(5);
      expect(string).match(/^\#{5,10}$/);
    });

    it('flips the range when min > max', () => {
      const string = faker.helpers.regexpStyleStringParse('#{10,5}');
      expect(string.length).lessThanOrEqual(10);
      expect(string.length).greaterThanOrEqual(5);
      expect(string).match(/^\#{5,10}$/);
    });

    it('repeats string {n} number of times', () => {
      expect(faker.helpers.regexpStyleStringParse('%{10}')).toBe(
        faker.helpers.repeatString('%', 10)
      );
      expect(faker.helpers.regexpStyleStringParse('%{30}')).toBe(
        faker.helpers.repeatString('%', 30)
      );
      expect(faker.helpers.regexpStyleStringParse('%{5}')).toBe(
        faker.helpers.repeatString('%', 5)
      );
    });

    it('creates a numerical range', () => {
      const string = faker.helpers.regexpStyleStringParse('Hello[0-9]');
      expect(string).match(/^Hello[0-9]$/);
    });

    it('deals with multiple tokens in one string', () => {
      const string = faker.helpers.regexpStyleStringParse(
        'Test#{5}%{2,5}Testing**[1-5]**{10}END'
      );
      expect(string).match(/^Test\#{5}%{2,5}Testing\*\*[1-5]\*\*{10}END$/);
    });
  });

  describe('createTransaction()', () => {
    it('should create a random transaction', () => {
      const transaction = faker.helpers.createTransaction();
      expect(transaction).toBeTruthy();
      expect(transaction.amount).toBeTruthy();
      expect(transaction.date).toBeTruthy();
      expect(transaction.business).toBeTruthy();
      expect(transaction.name).toBeTruthy();
      expect(transaction.type).toBeTruthy();
      expect(transaction.account).toBeTruthy();
    });
  });
});