|
1 | 1 | import { describe, expect, it } from 'vitest'
|
2 | 2 |
|
3 |
| -import { generateOfficialGroups } from '../rules/sort-classes-utils' |
| 3 | +import { |
| 4 | + validateGroupsConfiguration, |
| 5 | + generateOfficialGroups, |
| 6 | + getCombinations, |
| 7 | +} from '../rules/sort-classes-utils' |
| 8 | +import { allModifiers, allSelectors } from '../rules/sort-classes.types' |
4 | 9 |
|
5 | 10 | describe('sort-classes-utils', () => {
|
6 | 11 | it('sort-classes-utils: should generate official groups', () => {
|
@@ -44,4 +49,84 @@ describe('sort-classes-utils', () => {
|
44 | 49 | 'method',
|
45 | 50 | ])
|
46 | 51 | })
|
| 52 | + |
| 53 | + describe('validateGroupsConfiguration', () => { |
| 54 | + it('allows predefined groups', () => { |
| 55 | + let allModifierCombinationPermutations = |
| 56 | + getAllNonEmptyCombinations(allModifiers) |
| 57 | + let allPredefinedGroups = allSelectors |
| 58 | + .map(selector => |
| 59 | + allModifierCombinationPermutations.map( |
| 60 | + modifiers => `${modifiers.join('-')}-${selector}`, |
| 61 | + ), |
| 62 | + ) |
| 63 | + .flat() |
| 64 | + .concat(allSelectors) |
| 65 | + expect( |
| 66 | + validateGroupsConfiguration(allPredefinedGroups, []), |
| 67 | + ).toBeUndefined() |
| 68 | + }) |
| 69 | + |
| 70 | + it('allows custom groups with the new API', () => { |
| 71 | + expect( |
| 72 | + validateGroupsConfiguration( |
| 73 | + ['static-property', 'myCustomGroup'], |
| 74 | + [ |
| 75 | + { |
| 76 | + groupName: 'myCustomGroup', |
| 77 | + }, |
| 78 | + ], |
| 79 | + ), |
| 80 | + ).toBeUndefined() |
| 81 | + }) |
| 82 | + |
| 83 | + it('throws an error with predefined groups with duplicate modifiers', () => { |
| 84 | + expect(() => |
| 85 | + validateGroupsConfiguration(['static-static-property'], []), |
| 86 | + ).toThrow('Invalid group(s): static-static-property') |
| 87 | + }) |
| 88 | + |
| 89 | + it('throws an error if a duplicate group is provided', () => { |
| 90 | + expect(() => |
| 91 | + validateGroupsConfiguration(['static-property', 'static-property'], []), |
| 92 | + ).toThrow('Duplicated group(s): static-property') |
| 93 | + }) |
| 94 | + |
| 95 | + it('throws an error if invalid groups are provided with the new API', () => { |
| 96 | + expect(() => |
| 97 | + validateGroupsConfiguration( |
| 98 | + ['static-property', 'myCustomGroup', ''], |
| 99 | + [ |
| 100 | + { |
| 101 | + groupName: 'myCustomGroupNotReferenced', |
| 102 | + }, |
| 103 | + ], |
| 104 | + ), |
| 105 | + ).toThrow('Invalid group(s): myCustomGroup') |
| 106 | + }) |
| 107 | + |
| 108 | + it('allows groups with the old API', () => { |
| 109 | + expect( |
| 110 | + validateGroupsConfiguration(['static-property', 'myCustomGroup'], { |
| 111 | + myCustomGroup: 'foo', |
| 112 | + }), |
| 113 | + ).toBeUndefined() |
| 114 | + }) |
| 115 | + |
| 116 | + it('throws an error if invalid custom groups are provided with the old API', () => { |
| 117 | + expect(() => |
| 118 | + validateGroupsConfiguration(['static-property', 'myCustomGroup'], { |
| 119 | + myCustomGroupNotReferenced: 'foo', |
| 120 | + }), |
| 121 | + ).toThrow('Invalid group(s): myCustomGroup') |
| 122 | + }) |
| 123 | + }) |
47 | 124 | })
|
| 125 | + |
| 126 | +const getAllNonEmptyCombinations = (array: string[]): string[][] => { |
| 127 | + let result: string[][] = [] |
| 128 | + for (let i = 1; i < array.length; i++) { |
| 129 | + result = [...result, ...getCombinations(array, i)] |
| 130 | + } |
| 131 | + return result |
| 132 | +} |
0 commit comments