mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-06 22:45:24 +02:00
99 lines
2.4 KiB
TypeScript
99 lines
2.4 KiB
TypeScript
import { fs, vol } from "memfs";
|
|
|
|
vi.mock("node:fs", () => ({
|
|
...fs,
|
|
default: fs,
|
|
}));
|
|
|
|
import type { Admin, FileConfig } from "@dokploy/server";
|
|
import {
|
|
createDefaultServerTraefikConfig,
|
|
loadOrCreateConfig,
|
|
updateServerTraefik,
|
|
} from "@dokploy/server";
|
|
import { beforeEach, expect, test, vi } from "vitest";
|
|
|
|
const baseAdmin: Admin = {
|
|
cleanupCacheApplications: false,
|
|
cleanupCacheOnCompose: false,
|
|
cleanupCacheOnPreviews: false,
|
|
createdAt: "",
|
|
authId: "",
|
|
adminId: "string",
|
|
serverIp: null,
|
|
certificateType: "none",
|
|
host: null,
|
|
letsEncryptEmail: null,
|
|
sshPrivateKey: null,
|
|
enableDockerCleanup: false,
|
|
enableLogRotation: false,
|
|
serversQuantity: 0,
|
|
stripeCustomerId: "",
|
|
stripeSubscriptionId: "",
|
|
};
|
|
|
|
beforeEach(() => {
|
|
vol.reset();
|
|
createDefaultServerTraefikConfig();
|
|
});
|
|
|
|
test("Should read the configuration file", () => {
|
|
const config: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
expect(config.http?.routers?.["dokploy-router-app"]?.service).toBe(
|
|
"dokploy-service-app",
|
|
);
|
|
});
|
|
|
|
test("Should apply redirect-to-https", () => {
|
|
updateServerTraefik(
|
|
{
|
|
...baseAdmin,
|
|
certificateType: "letsencrypt",
|
|
},
|
|
"example.com",
|
|
);
|
|
|
|
const config: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
expect(config.http?.routers?.["dokploy-router-app"]?.middlewares).toContain(
|
|
"redirect-to-https",
|
|
);
|
|
});
|
|
|
|
test("Should change only host when no certificate", () => {
|
|
updateServerTraefik(baseAdmin, "example.com");
|
|
|
|
const config: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
expect(config.http?.routers?.["dokploy-router-app-secure"]).toBeUndefined();
|
|
});
|
|
|
|
test("Should not touch config without host", () => {
|
|
const originalConfig: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
updateServerTraefik(baseAdmin, null);
|
|
|
|
const config: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
expect(originalConfig).toEqual(config);
|
|
});
|
|
|
|
test("Should remove websecure if https rollback to http", () => {
|
|
const originalConfig: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
updateServerTraefik(
|
|
{ ...baseAdmin, certificateType: "letsencrypt" },
|
|
"example.com",
|
|
);
|
|
|
|
updateServerTraefik({ ...baseAdmin, certificateType: "none" }, "example.com");
|
|
|
|
const config: FileConfig = loadOrCreateConfig("dokploy");
|
|
|
|
expect(config.http?.routers?.["dokploy-router-app-secure"]).toBeUndefined();
|
|
expect(
|
|
config.http?.routers?.["dokploy-router-app"]?.middlewares,
|
|
).not.toContain("redirect-to-https");
|
|
});
|