diff --git a/test/unit/utils/regexForFormat.test.js b/test/unit/utils/regexForFormat.test.js index 4e03881..5c695bc 100644 --- a/test/unit/utils/regexForFormat.test.js +++ b/test/unit/utils/regexForFormat.test.js @@ -1,79 +1,73 @@ import regexForFormat from '@/utils/regexForFormat' describe('regexForFormat', () => { - it('Allows MM format with other characters', () => { - expect(regexForFormat('abc/MM').test('abc/01')).toBe(true) - }) + test('allows MM format with other characters', () => { + expect(regexForFormat('abc/MM').test('abc/01')).toBe(true) + }) - it('Fails MM format with single digit', () => { - expect(regexForFormat('abc/MM').test('abc/1')).toBe(false) - }) + test('fails MM format with single digit', () => { + expect(regexForFormat('abc/MM').test('abc/1')).toBe(false) + }) - it('Allows M format with single digit', () => { - expect(regexForFormat('M/abc').test('1/abc')).toBe(true) - }) + test('allows M format with single digit', () => { + expect(regexForFormat('M/abc').test('1/abc')).toBe(true) + }) - it('Fails MM format when out of range', () => { - expect(regexForFormat('M/abc').test('13/abc')).toBe(false) - }) + test.each([ + ['13/abc'], + ['55/abc'], + ])('fails M format when out of range', (string) => { + expect(regexForFormat('M/abc').test(string)).toBe(false) + }) - it('Fails M format when out of range', () => { - expect(regexForFormat('M/abc').test('55/abc')).toBe(false) - }) + test('replaces double digits before singles', () => { + expect(regexForFormat('MMM').test('313131')).toBe(false) + }) - it('Replaces double digits before singles', () => { - expect(regexForFormat('MMM').test('313131')).toBe(false) - }) + test('allows DD format with zero digit', () => { + const regex = regexForFormat('xyz/DD') - it('Allows DD format with zero digit', () => { - expect(regexForFormat('xyz/DD').test('xyz/01')).toBe(true) - }) + expect(regex.test('xyz/01')).toBe(true) + expect(regex.test('xyz/9')).toBe(false) + }) - it('Fails DD format with single digit', () => { - expect(regexForFormat('xyz/DD').test('xyz/9')).toBe(false) - }) + test('allows D format with single digit', () => { + expect(regexForFormat('xyz/D').test('xyz/9')).toBe(true) + }) - it('Allows D format with single digit', () => { - expect(regexForFormat('xyz/D').test('xyz/9')).toBe(true) - }) + test.each([ + ['xyz/92'], + ['xyz/32'], + ])('fails D format with out of range digit', string => { + expect(regexForFormat('xyz/D').test(string)).toBe(false) + }) - it('Fails D format with out of range digit', () => { - expect(regexForFormat('xyz/D').test('xyz/92')).toBe(false) - }) + test.each([ + ['00', true], + ['0000', false], + ])('allows YY format', (string, matches) => { + expect(regexForFormat('YY').test(string)).toBe(matches) + }) - it('Fails DD format with out of range digit', () => { - expect(regexForFormat('xyz/D').test('xyz/32')).toBe(false) - }) + test('allows YYYY format with four zeros', () => { + expect(regexForFormat('YYYY').test('0000')).toBe(true) + }) - it('Allows YY format with double zeros', () => { - expect(regexForFormat('YY').test('00')).toBe(true) - }) + test.each([ + ['MD-YY', '12-00'], + ['DM-YY', '12-00'], + ])('allows $format', (format, string) => { + expect(regexForFormat(format).test(string)).toBe(true) + }) - it('Fails YY format with four zeros', () => { - expect(regexForFormat('YY').test('0000')).toBe(false) - }) + test.each([ + ['MM/DD/YYYY', '12/18/1987'], + ['YYYY-MM-DD', '1987-01-31'] + ])('$date matches $format', (format, date) => { + expect(regexForFormat(format).test(date)).toBe(true) + }) - it('Allows YYYY format with four zeros', () => { - expect(regexForFormat('YYYY').test('0000')).toBe(true) - }) - - it('Allows MD-YY', () => { - expect(regexForFormat('MD-YY').test('12-00')).toBe(true) - }) - - it('Allows DM-YY', () => { - expect(regexForFormat('DM-YY').test('12-00')).toBe(true) - }) - - it('Allows date like MM/DD/YYYY', () => { - expect(regexForFormat('MM/DD/YYYY').test('12/18/1987')).toBe(true) - }) - - it('Allows date like YYYY-MM-DD', () => { - expect(regexForFormat('YYYY-MM-DD').test('1987-01-31')).toBe(true) - }) - - it('Fails date like YYYY-MM-DD with out of bounds day', () => { - expect(regexForFormat('YYYY-MM-DD').test('1987-01-32')).toBe(false) - }) + test('Fails date like YYYY-MM-DD with out of bounds day', () => { + expect(regexForFormat('YYYY-MM-DD').test('1987-01-32')).toBe(false) + }) }) diff --git a/test/unit/utils/snakeToCamel.test.js b/test/unit/utils/snakeToCamel.test.js index efc0970..aad305d 100644 --- a/test/unit/utils/snakeToCamel.test.js +++ b/test/unit/utils/snakeToCamel.test.js @@ -1,27 +1,22 @@ import snakeToCamel from '@/utils/snakeToCamel' describe('snakeToCamel', () => { - it('Converts underscore separated words to camelCase', () => { - expect(snakeToCamel('this_is_snake_case')).toBe('thisIsSnakeCase') + test.each([ + ['this_is_snake_case', 'thisIsSnakeCase'], + ['this_is_snake_case_2nd_example', 'thisIsSnakeCase2ndExample'], + ])('converts snake_case to camelCase', (raw, expected) => { + expect(snakeToCamel(raw)).toBe(expected) }) - it('Converts underscore separated words to camelCase even if they start with a number', () => { - expect(snakeToCamel('this_is_snake_case_2nd_example')).toBe('thisIsSnakeCase2ndExample') - }) - - it('Has no effect on already camelCase words', () => { - expect(snakeToCamel('thisIsCamelCase')).toBe('thisIsCamelCase') - }) - - it('Does not capitalize the first word or strip first underscore if a phrase starts with an underscore', () => { + test('Does not capitalize the first word or strip first underscore if a phrase starts with an underscore', () => { expect(snakeToCamel('_this_starts_with_an_underscore')).toBe('_thisStartsWithAnUnderscore') }) - it('Ignores double underscores anywhere in a word', () => { - expect(snakeToCamel('__unlikely__thing__')).toBe('__unlikely__thing__') - }) - - it('Has no effect hyphenated words', () => { - expect(snakeToCamel('not-a-good-name')).toBe('not-a-good-name') + test.each([ + ['thisIsCamelCase'], + ['__double__underscores__'], + ['this-is-kebab-case'], + ])('has no effect', (raw) => { + expect(snakeToCamel(raw)).toBe(raw) }) })