2023-04-18 15:37:29 +02:00
|
|
|
import { expect, describe, it } from "vitest"
|
|
|
|
import { duplicateName } from "../duplicate"
|
2021-12-07 13:26:00 +01:00
|
|
|
|
|
|
|
describe("duplicate", () => {
|
|
|
|
describe("duplicates a name ", () => {
|
|
|
|
it("with a single existing", async () => {
|
|
|
|
const names = ["foo"]
|
|
|
|
const name = "foo"
|
|
|
|
|
|
|
|
const duplicate = duplicateName(name, names)
|
|
|
|
|
2023-09-26 16:29:40 +02:00
|
|
|
expect(duplicate).toBe("foo 1")
|
2021-12-07 13:26:00 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
it("with multiple existing", async () => {
|
2023-09-26 16:29:40 +02:00
|
|
|
const names = ["foo", "foo 1", "foo 2"]
|
2021-12-07 13:26:00 +01:00
|
|
|
const name = "foo"
|
|
|
|
|
|
|
|
const duplicate = duplicateName(name, names)
|
|
|
|
|
2023-09-26 16:29:40 +02:00
|
|
|
expect(duplicate).toBe("foo 3")
|
2021-12-07 13:26:00 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
it("with mixed multiple existing", async () => {
|
2023-09-26 16:29:40 +02:00
|
|
|
const names = ["foo", "foo 1", "foo 2", "bar", "bar 1", "bar 2"]
|
2021-12-07 13:26:00 +01:00
|
|
|
const name = "foo"
|
|
|
|
|
|
|
|
const duplicate = duplicateName(name, names)
|
|
|
|
|
2023-09-26 16:29:40 +02:00
|
|
|
expect(duplicate).toBe("foo 3")
|
2021-12-07 13:26:00 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
it("with incomplete sequence", async () => {
|
2023-09-26 16:29:40 +02:00
|
|
|
const names = ["foo", "foo 2", "foo 3"]
|
2021-12-07 13:26:00 +01:00
|
|
|
const name = "foo"
|
|
|
|
|
|
|
|
const duplicate = duplicateName(name, names)
|
|
|
|
|
2023-09-26 16:29:40 +02:00
|
|
|
expect(duplicate).toBe("foo 1")
|
2021-12-07 13:26:00 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|