Socialify

Folder ..

Viewing unique.spec.ts
61 lines (54 loc) • 2.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
import { describe, expect, it } from 'vitest';
import { faker } from '../dist/cjs';

describe('unique', () => {
  describe('unique()', () => {
    it('is able to call a function with no arguments and return a result', () => {
      const result =
        // @ts-expect-error
        faker.unique(faker.internet.email);
      expect(typeof result).toBe('string');
    });

    it('is able to call a function with arguments and return a result', () => {
      const result = faker.unique(faker.internet.email, ['a', 'b', 'c']); // third argument is provider, or domain for email
      expect(result).toMatch(/\@c/);
    });

    it('is able to call same function with arguments and return a result', () => {
      const result = faker.unique(faker.internet.email, ['a', 'b', 'c']); // third argument is provider, or domain for email
      expect(result).toMatch(/\@c/);
    });

    it('is able to exclude results as array', () => {
      const result = faker.unique(faker.internet.protocol, [], {
        exclude: ['https'],
      });
      expect(result).toBe('http');
    });

    it('is able to limit unique call by maxTime in ms', () => {
      let result;
      try {
        result = faker.unique(faker.internet.protocol, [], {
          maxTime: 1,
          maxRetries: 9999,
          exclude: ['https', 'http'],
        });
      } catch (err) {
        expect(err.message.substr(0, 16)).toBe('Exceeded maxTime');
      }
    });

    it('is able to limit unique call by maxRetries', () => {
      let result;
      try {
        result = faker.unique(faker.internet.protocol, [], {
          maxTime: 5000,
          maxRetries: 5,
          exclude: ['https', 'http'],
        });
      } catch (err) {
        expect(err.message.substr(0, 19)).toBe('Exceeded maxRetries');
      }
    });

    it('is able to call last function with arguments and return a result', () => {
      const result = faker.unique(faker.internet.email, ['a', 'b', 'c']); // third argument is provider, or domain for email
      expect(result).toMatch(/\@c/);
    });
  });
});