diff options
| author | Brayton Rude <[email protected]> | 2022-12-07 04:13:40 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-07 10:13:40 +0000 |
| commit | 50fb72ce3d7a911564ad5ff9f929ca5567a83757 (patch) | |
| tree | 75a9f702192e707faedb5bad5e81e580f83bd73b /test | |
| parent | f1948bd5efac0acb286db398b665bb581fcaec27 (diff) | |
| download | faker-50fb72ce3d7a911564ad5ff9f929ca5567a83757.tar.xz faker-50fb72ce3d7a911564ad5ff9f929ca5567a83757.zip | |
feat(string): add special() method (#1634)
Diffstat (limited to 'test')
| -rw-r--r-- | test/__snapshots__/string.spec.ts.snap | 42 | ||||
| -rw-r--r-- | test/string.spec.ts | 38 |
2 files changed, 80 insertions, 0 deletions
diff --git a/test/__snapshots__/string.spec.ts.snap b/test/__snapshots__/string.spec.ts.snap index 9de8545d..bd7522f9 100644 --- a/test/__snapshots__/string.spec.ts.snap +++ b/test/__snapshots__/string.spec.ts.snap @@ -104,6 +104,20 @@ exports[`string > 42 > sample > with length parameter 5`] = `"\\"&{dn"`; exports[`string > 42 > sample > with length range 1`] = `"ky2eiXX/J/*&Kq"`; +exports[`string > 42 > special > noArgs 1`] = `","`; + +exports[`string > 42 > special > with length parameter 1`] = `",^}&\\\\"`; + +exports[`string > 42 > special > with length parameter 2`] = `"]>>%/"`; + +exports[`string > 42 > special > with length parameter 3`] = `"%$\\"/\`"`; + +exports[`string > 42 > special > with length parameter 4`] = `"+>%[?"`; + +exports[`string > 42 > special > with length parameter 5`] = `"!\\"~\\\\_"`; + +exports[`string > 42 > special > with length range 1`] = `"^}&\\\\]>>%/%$\\"/\`"`; + exports[`string > 42 > uuid 1`] = `"5cf2bc99-2721-407d-992b-a00fbdf302f2"`; exports[`string > 42 > uuid 2`] = `"94980604-8962-404f-9371-c9368f970d9a"`; @@ -218,6 +232,20 @@ exports[`string > 1211 > sample > with length parameter 5`] = `"h^]dn"`; exports[`string > 1211 > sample > with length range 1`] = `"Kti5-}$_/\`4hHA0afl\\"h"`; +exports[`string > 1211 > special > noArgs 1`] = `"|"`; + +exports[`string > 1211 > special > with length parameter 1`] = `"|/{]("`; + +exports[`string > 1211 > special > with length parameter 2`] = `"%~\\"@&"`; + +exports[`string > 1211 > special > with length parameter 3`] = `"@'].,"`; + +exports[`string > 1211 > special > with length parameter 4`] = `"&[\\\\_!"`; + +exports[`string > 1211 > special > with length parameter 5`] = `"]@?\\\\_"`; + +exports[`string > 1211 > special > with length range 1`] = `"/{](%~\\"@&@'].,&[\\\\_!]"`; + exports[`string > 1211 > uuid 1`] = `"e7ec32f0-a2a3-4c65-abbd-0caabde64dfd"`; exports[`string > 1211 > uuid 2`] = `"f379e325-9f7c-4064-a086-f23942b68e5f"`; @@ -332,6 +360,20 @@ exports[`string > 1337 > sample > with length parameter 5`] = `"D)[B,"`; exports[`string > 1337 > sample > with length range 1`] = `"U/4:SK$>6QX9"`; +exports[`string > 1337 > special > noArgs 1`] = `")"`; + +exports[`string > 1337 > special > with length parameter 1`] = `")<&')"`; + +exports[`string > 1337 > special > with length parameter 2`] = `"</\\"+("`; + +exports[`string > 1337 > special > with length parameter 3`] = `";=)+~"`; + +exports[`string > 1337 > special > with length parameter 4`] = `")\\\\*$^"`; + +exports[`string > 1337 > special > with length parameter 5`] = `"-$?,%"`; + +exports[`string > 1337 > special > with length range 1`] = `"<&')</\\"+(;=)"`; + exports[`string > 1337 > uuid 1`] = `"48234870-5389-445f-8b41-c61a52bf27dc"`; exports[`string > 1337 > uuid 2`] = `"cc057669-8c53-474d-a677-226d3e8ed92f"`; diff --git a/test/string.spec.ts b/test/string.spec.ts index fe8235b0..8963e3cf 100644 --- a/test/string.spec.ts +++ b/test/string.spec.ts @@ -75,6 +75,12 @@ describe('string', () => { }); t.itRepeated('uuid', 5); + + t.describe('special', (t) => { + t.it('noArgs') + .itRepeated('with length parameter', 5, 5) + .it('with length range', { min: 10, max: 20 }); + }); }); describe(`random seeded tests for seed ${faker.seed()}`, () => { @@ -550,6 +556,38 @@ describe('string', () => { expect(UUID).toMatch(RFC4122); }); }); + + describe('special', () => { + it('should return a value of type string with default length of 1', () => { + const actual = faker.string.special(); + + expect(actual).toBeTypeOf('string'); + expect(actual).toHaveLength(1); + }); + + it('should return an empty string when length is negative', () => { + const actual = faker.string.special( + faker.number.int({ min: -1000, max: -1 }) + ); + + expect(actual).toBe(''); + expect(actual).toHaveLength(0); + }); + + it('should return string of designated length', () => { + const length = 87; + const actual = faker.string.special(length); + + expect(actual).toHaveLength(length); + }); + + it('should return string with a length within a given range', () => { + const actual = faker.string.special({ min: 10, max: 20 }); + + expect(actual.length).toBeGreaterThanOrEqual(10); + expect(actual.length).toBeLessThanOrEqual(20); + }); + }); } }); }); |
