Socialify

Folder ..

Viewing lorem.spec.ts
236 lines (195 loc) • 8.3 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
import type { JestMockCompat } from 'vitest';
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import { faker } from '../dist/cjs';

describe('lorem.js', () => {
  describe('word()', () => {
    describe("when no 'length' param passed in", () => {
      it('returns a word with a random length', () => {
        const str = faker.lorem.word();
        expect(typeof str).toBe('string');
      });
    });

    describe("when 'length' param passed in", () => {
      it('returns a word with the requested length', () => {
        const str = faker.lorem.word(5);
        expect(typeof str).toBe('string');
        expect(str).toHaveLength(5);
      });
    });
  });

  describe('words()', () => {
    let spy_helpers_shuffle: JestMockCompat<[o?: unknown[]], unknown[]>;

    beforeEach(() => {
      spy_helpers_shuffle = vi.spyOn(faker.helpers, 'shuffle');
    });

    afterEach(() => {
      spy_helpers_shuffle.mockRestore();
    });

    describe("when no 'num' param passed in", () => {
      it('returns three words', () => {
        const str = faker.lorem.words();
        const words = str.split(' ');
        expect(Array.isArray(words)).toBe(true);
        expect(words.length).greaterThanOrEqual(3);
        // assert.ok(faker.helpers.shuffle.called);
      });
    });

    describe("when 'num' param passed in", () => {
      it('returns requested number of words', () => {
        const str = faker.lorem.words(7);
        const words = str.split(' ');
        expect(Array.isArray(words)).toBe(true);
        expect(words).toHaveLength(7);
      });
    });
  });

  describe('slug()', () => {
    let spy_helpers_shuffle: JestMockCompat<[o?: unknown[]], unknown[]>;

    beforeEach(() => {
      spy_helpers_shuffle = vi.spyOn(faker.helpers, 'shuffle');
    });

    afterEach(() => {
      spy_helpers_shuffle.mockRestore();
    });

    const validateSlug = (wordCount, str) => {
      expect(str.match(/^[a-z][a-z-]*[a-z]$/).length).toBe(1);
      expect(str.match(/-/g).length).toBe(wordCount - 1);
    };

    describe("when no 'wordCount' param passed in", () => {
      it('returns a slug with three words', () => {
        const str = faker.lorem.slug();
        validateSlug(3, str);
      });
    });

    describe("when 'wordCount' param passed in", () => {
      it('returns a slug with requested number of words', () => {
        const str = faker.lorem.slug(7);
        validateSlug(7, str);
      });
    });
  });

  /*
    describe("sentence()",  () =>{
        context("when no 'wordCount' or 'range' param passed in",  () =>{
            it("returns a string of at least three words",  () =>{
                sinon.spy(faker.lorem, 'words');
                sinon.stub(faker.random, 'number').returns(2);
                const sentence = faker.lorem.sentence();
                assert.ok(typeof sentence === 'string');
                const parts = sentence.split(' ');
                assert.strictEqual(parts.length, 5); // default 3 plus stubbed 2.
                assert.ok(faker.lorem.words.calledWith(5));

                faker.lorem.words.restore();
                faker.random.number.restore();
            });
        });

        context("when 'wordCount' param passed in",  () =>{
            it("returns a string of at least the requested number of words",  () =>{
                sinon.spy(faker.lorem, 'words');
                sinon.stub(faker.random, 'number').withArgs(7).returns(2);
                const sentence = faker.lorem.sentence(10);

                assert.ok(typeof sentence === 'string');
                const parts = sentence.split(' ');
                assert.strictEqual(parts.length, 12); // requested 10 plus stubbed 2.
                assert.ok(faker.lorem.words.calledWith(12));

                faker.lorem.words.restore();
                faker.random.number.restore();
            });
        });

        context("when 'wordCount' and 'range' params passed in",  () =>{
            it("returns a string of at least the requested number of words",  () =>{
                sinon.spy(faker.lorem, 'words');
                sinon.stub(faker.random, 'number').withArgs(4).returns(4);

                const sentence = faker.lorem.sentence(10, 4);

                assert.ok(typeof sentence === 'string');
                const parts = sentence.split(' ');
                assert.strictEqual(parts.length, 14); // requested 10 plus stubbed 4.
                assert.ok(faker.random.number.calledWith(4)); // random.number should be called with the 'range' we passed.
                assert.ok(faker.lorem.words.calledWith(14));

                faker.lorem.words.restore();
                faker.random.number.restore();
            });


        });
    });
    */
  /*
    describe("sentences()",  () =>{
        context("when no 'sentenceCount' param passed in",  () =>{
            it("returns newline-separated string of three sentences",  () =>{
                sinon.spy(faker.lorem, 'sentence');
                const sentences = faker.lorem.sentences();

                assert.ok(typeof sentences === 'string');
                const parts = sentences.split('\n');
                assert.strictEqual(parts.length, 3);
                assert.ok(faker.lorem.sentence.calledThrice);

                faker.lorem.sentence.restore();
            });
        });

        context("when 'sentenceCount' param passed in",  () =>{
            it("returns newline-separated string of requested number of sentences",  () =>{
                sinon.spy(faker.lorem, 'sentence');
                const sentences = faker.lorem.sentences(5);

                assert.ok(typeof sentences === 'string');
                const parts = sentences.split('\n');
                assert.strictEqual(parts.length, 5);

                faker.lorem.sentence.restore();
            });
        });
    });
    */
  /*
    describe("paragraph()",  () =>{
        context("when no 'wordCount' param passed in",  () =>{
            it("returns a string of at least three sentences",  () =>{
                sinon.spy(faker.lorem, 'sentences');
                sinon.stub(faker.random, 'number').returns(2);
                const paragraph = faker.lorem.paragraph();

                assert.ok(typeof paragraph === 'string');
                const parts = paragraph.split('\n');
                assert.strictEqual(parts.length, 5); // default 3 plus stubbed 2.
                assert.ok(faker.lorem.sentences.calledWith(5));

                faker.lorem.sentences.restore();
                faker.random.number.restore();
            });
        });

        context("when 'wordCount' param passed in",  () =>{
            it("returns a string of at least the requested number of sentences",  () =>{
                sinon.spy(faker.lorem, 'sentences');
                sinon.stub(faker.random, 'number').returns(2);
                const paragraph = faker.lorem.paragraph(10);

                assert.ok(typeof paragraph === 'string');
                const parts = paragraph.split('\n');
                assert.strictEqual(parts.length, 12); // requested 10 plus stubbed 2.
                assert.ok(faker.lorem.sentences.calledWith(12));

                faker.lorem.sentences.restore();
                faker.random.number.restore();
            });
        });
    });
    */

  /*

    describe("paragraphs()",  () =>{
        context("when no 'paragraphCount' param passed in",  () =>{
            it("returns newline-separated string of three paragraphs",  () =>{
                sinon.spy(faker.lorem, 'paragraph');
                const paragraphs = faker.lorem.paragraphs();

                assert.ok(typeof paragraphs === 'string');
                const parts = paragraphs.split('\n \r');
                assert.strictEqual(parts.length, 3);
                assert.ok(faker.lorem.paragraph.calledThrice);

                faker.lorem.paragraph.restore();
            });
        });

        context("when 'paragraphCount' param passed in",  () =>{
            it("returns newline-separated string of requested number of paragraphs",  () =>{
                sinon.spy(faker.lorem, 'paragraph');
                const paragraphs = faker.lorem.paragraphs(5);

                assert.ok(typeof paragraphs === 'string');
                const parts = paragraphs.split('\n \r');
                assert.strictEqual(parts.length, 5);

                faker.lorem.paragraph.restore();
            });
        });
    });
    */
});