|
| 1 | +import { describe, expect, test } from "vitest"; |
| 2 | +import { compositeClassFunction } from "./Theme"; |
| 3 | + |
| 4 | +const start = "navds-accordion testclass navds-heading endclass"; |
| 5 | +const end = |
| 6 | + "startclass navds-accordion navds-heading endclass navds-accordion__header"; |
| 7 | + |
| 8 | +const both = start + " " + end; |
| 9 | + |
| 10 | +describe("RenameCSS", () => { |
| 11 | + test("String starts with navds", () => { |
| 12 | + expect(compositeClassFunction(start)).toBe( |
| 13 | + "aksel-accordion testclass aksel-heading endclass", |
| 14 | + ); |
| 15 | + }); |
| 16 | + |
| 17 | + test("String ends with navds", () => { |
| 18 | + expect(compositeClassFunction(end)).toBe( |
| 19 | + "startclass aksel-accordion aksel-heading endclass aksel-accordion__header", |
| 20 | + ); |
| 21 | + }); |
| 22 | + |
| 23 | + test("String starts and ends with navds", () => { |
| 24 | + expect(compositeClassFunction(both)).toBe( |
| 25 | + "aksel-accordion testclass aksel-heading endclass startclass aksel-accordion aksel-heading endclass aksel-accordion__header", |
| 26 | + ); |
| 27 | + }); |
| 28 | + |
| 29 | + test("String does not contain navds", () => { |
| 30 | + expect(compositeClassFunction("startclass endclass")).toBe( |
| 31 | + "startclass endclass", |
| 32 | + ); |
| 33 | + }); |
| 34 | + |
| 35 | + test("String is empty", () => { |
| 36 | + expect(compositeClassFunction("")).toBe(""); |
| 37 | + }); |
| 38 | + |
| 39 | + test("String contains navds as a substring", () => { |
| 40 | + expect(compositeClassFunction("startclass test-navds-class endclass")).toBe( |
| 41 | + "startclass test-navds-class endclass", |
| 42 | + ); |
| 43 | + }); |
| 44 | + |
| 45 | + test("String contains multiple navds occurrences", () => { |
| 46 | + const input = "navds-button navds-icon navds-label"; |
| 47 | + const expected = "aksel-button aksel-icon aksel-label"; |
| 48 | + expect(compositeClassFunction(input)).toBe(expected); |
| 49 | + }); |
| 50 | + |
| 51 | + test("String contains navds with special characters", () => { |
| 52 | + const input = "navds-button! navds-icon@ navds-#label navds#-label"; |
| 53 | + const expected = "aksel-button! aksel-icon@ aksel-#label navds#-label"; |
| 54 | + expect(compositeClassFunction(input)).toBe(expected); |
| 55 | + }); |
| 56 | + |
| 57 | + test("String contains mixed navds and non-navds classes", () => { |
| 58 | + const input = "navds-button custom-class navds-icon"; |
| 59 | + const expected = "aksel-button custom-class aksel-icon"; |
| 60 | + expect(compositeClassFunction(input)).toBe(expected); |
| 61 | + }); |
| 62 | + |
| 63 | + test("String contains only navds", () => { |
| 64 | + const input = "navds"; |
| 65 | + const expected = "navds"; |
| 66 | + expect(compositeClassFunction(input)).toBe(expected); |
| 67 | + }); |
| 68 | + |
| 69 | + test("String contains navds with numbers", () => { |
| 70 | + const input = "navds-1 navds-2 navds-3"; |
| 71 | + const expected = "aksel-1 aksel-2 aksel-3"; |
| 72 | + expect(compositeClassFunction(input)).toBe(expected); |
| 73 | + }); |
| 74 | + |
| 75 | + test("String contains different casings", () => { |
| 76 | + const input = "Navds-button NAVds-icon NAVDS-label navDS-component"; |
| 77 | + const expected = "Navds-button NAVds-icon NAVDS-label navDS-component"; |
| 78 | + expect(compositeClassFunction(input)).toBe(expected); |
| 79 | + }); |
| 80 | +}); |
0 commit comments