| | import { generateRandomHash } from "@dokploy/server"; |
| | import { addSuffixToVolumesRoot } from "@dokploy/server"; |
| | import type { ComposeSpecification } from "@dokploy/server"; |
| | import { load } from "js-yaml"; |
| | import { expect, test } from "vitest"; |
| |
|
| | const composeFile = ` |
| | version: "3.8" |
| | |
| | services: |
| | web: |
| | image: nginx:latest |
| | volumes: |
| | - web_data:/var/lib/nginx/data |
| | |
| | volumes: |
| | web_data: |
| | driver: local |
| | |
| | networks: |
| | default: |
| | driver: bridge |
| | `; |
| |
|
| | test("Generate random hash with 8 characters", () => { |
| | const hash = generateRandomHash(); |
| |
|
| | expect(hash).toBeDefined(); |
| | expect(hash.length).toBe(8); |
| | }); |
| |
|
| | test("Add suffix to volumes in root property", () => { |
| | const composeData = load(composeFile) as ComposeSpecification; |
| |
|
| | const suffix = generateRandomHash(); |
| |
|
| | if (!composeData?.volumes) { |
| | return; |
| | } |
| | const volumes = addSuffixToVolumesRoot(composeData.volumes, suffix); |
| | expect(volumes).toBeDefined(); |
| | for (const volumeKey of Object.keys(volumes)) { |
| | expect(volumeKey).toContain(`-${suffix}`); |
| | expect(volumes[volumeKey]).toBeDefined(); |
| | } |
| | }); |
| |
|
| | const composeFile2 = ` |
| | version: "3.8" |
| | |
| | services: |
| | app: |
| | image: node:latest |
| | volumes: |
| | - app_data:/var/lib/app/data |
| | |
| | volumes: |
| | app_data: |
| | driver: local |
| | driver_opts: |
| | type: nfs |
| | o: addr=10.0.0.1,rw |
| | device: ":/exported/path" |
| | |
| | networks: |
| | default: |
| | driver: bridge |
| | `; |
| |
|
| | test("Add suffix to volumes in root property (Case 2)", () => { |
| | const composeData = load(composeFile2) as ComposeSpecification; |
| |
|
| | const suffix = generateRandomHash(); |
| |
|
| | if (!composeData?.volumes) { |
| | return; |
| | } |
| | const volumes = addSuffixToVolumesRoot(composeData.volumes, suffix); |
| | expect(volumes).toBeDefined(); |
| | for (const volumeKey of Object.keys(volumes)) { |
| | expect(volumeKey).toContain(`-${suffix}`); |
| | expect(volumes[volumeKey]).toBeDefined(); |
| | } |
| | }); |
| |
|
| | const composeFile3 = ` |
| | version: "3.8" |
| | |
| | services: |
| | db: |
| | image: postgres:latest |
| | volumes: |
| | - db_data:/var/lib/postgresql/data |
| | |
| | volumes: |
| | db_data: |
| | external: true |
| | |
| | networks: |
| | default: |
| | driver: bridge |
| | `; |
| |
|
| | test("Add suffix to volumes in root property (Case 3)", () => { |
| | const composeData = load(composeFile3) as ComposeSpecification; |
| |
|
| | const suffix = generateRandomHash(); |
| |
|
| | if (!composeData?.volumes) { |
| | return; |
| | } |
| | const volumes = addSuffixToVolumesRoot(composeData.volumes, suffix); |
| |
|
| | expect(volumes).toBeDefined(); |
| | for (const volumeKey of Object.keys(volumes)) { |
| | expect(volumeKey).toContain(`-${suffix}`); |
| | expect(volumes[volumeKey]).toBeDefined(); |
| | } |
| | }); |
| |
|
| | const composeFile4 = ` |
| | version: "3.8" |
| | |
| | services: |
| | web: |
| | image: nginx:latest |
| | |
| | app: |
| | image: node:latest |
| | |
| | db: |
| | image: postgres:latest |
| | |
| | volumes: |
| | web_data: |
| | driver: local |
| | |
| | app_data: |
| | driver: local |
| | driver_opts: |
| | type: nfs |
| | o: addr=10.0.0.1,rw |
| | device: ":/exported/path" |
| | |
| | db_data: |
| | external: true |
| | |
| | |
| | `; |
| |
|
| | |
| | const expectedComposeFile4 = load(` |
| | version: "3.8" |
| | |
| | services: |
| | web: |
| | image: nginx:latest |
| | |
| | app: |
| | image: node:latest |
| | |
| | db: |
| | image: postgres:latest |
| | |
| | volumes: |
| | web_data-testhash: |
| | driver: local |
| | |
| | app_data-testhash: |
| | driver: local |
| | driver_opts: |
| | type: nfs |
| | o: addr=10.0.0.1,rw |
| | device: ":/exported/path" |
| | |
| | db_data-testhash: |
| | external: true |
| | |
| | |
| | `) as ComposeSpecification; |
| |
|
| | test("Add suffix to volumes in root property", () => { |
| | const composeData = load(composeFile4) as ComposeSpecification; |
| |
|
| | const suffix = "testhash"; |
| |
|
| | if (!composeData?.volumes) { |
| | return; |
| | } |
| | const volumes = addSuffixToVolumesRoot(composeData.volumes, suffix); |
| | const updatedComposeData = { ...composeData, volumes }; |
| |
|
| | |
| | expect(updatedComposeData).toEqual(expectedComposeFile4); |
| | }); |
| |
|