-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathverify-redis-cache.spec.ts
74 lines (64 loc) · 2.33 KB
/
verify-redis-cache.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { expect, test } from "@playwright/test";
import { UIhelper } from "../utils/ui-helper";
import { Common } from "../utils/common";
import Redis from "ioredis";
import { ChildProcessWithoutNullStreams, spawn } from "child_process";
test.describe("Verify Redis Cache DB", () => {
let common: Common;
let uiHelper: UIhelper;
let portForward: ChildProcessWithoutNullStreams;
test.beforeEach(async ({ page }) => {
uiHelper = new UIhelper(page);
common = new Common(page);
await common.loginAsGuest();
portForward = spawn("/bin/sh", [
"-c",
`
oc login --token="${process.env.K8S_CLUSTER_TOKEN}" --server="${process.env.K8S_CLUSTER_URL}" &&
kubectl port-forward service/redis 6379:6379 -n ${process.env.NAME_SPACE}
`,
]);
});
test("Open techdoc and verify the cache generated in redis db", async () => {
test.setTimeout(120_000);
await uiHelper.openSidebarButton("Favorites");
await uiHelper.openSidebar("Docs");
await uiHelper.clickLink("Backstage Showcase");
// ensure that the docs are generated. if redis configuration has an error, this page will hang and docs won't be generated
await expect(async () => {
await uiHelper.verifyHeading("rhdh");
}).toPass({
intervals: [3_000],
timeout: 60_000,
});
// Wait for port-forward to be ready
await new Promise<void>((resolve, reject) => {
portForward.stdout.on("data", (data) => {
if (data.toString().includes("Forwarding from 127.0.0.1:6379")) {
resolve();
}
});
portForward.stderr.on("data", (data) => {
reject(new Error(`Port forwarding failed: ${data.toString()}`));
});
});
const redis = new Redis(
`redis://${process.env.REDIS_TEMP_USER}:${process.env.REDIS_TEMP_PASS}@localhost:6379`,
);
await expect(async () => {
const keys = await redis.keys("*");
expect(keys).toContainEqual(expect.stringContaining("techdocs"));
// Additionally, verify the format of the key
const key = keys.filter((k) => k.startsWith("techdocs"))[0];
expect(key).toMatch(
/(?:techdocs|bulk-import):(?:[A-Za-z0-9+]{4})*(?:[A-Za-z0-9+]{2}==|[A-Za-z0-9+]{3}=)$/gm,
);
}).toPass({
intervals: [3_000],
timeout: 60_000,
});
});
test.afterAll(() => {
portForward.kill();
});
});