This repository was archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtest.ts
86 lines (62 loc) · 2.41 KB
/
test.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
75
76
77
78
79
80
81
82
83
84
85
86
import { buildFor } from "sinco/mod.ts";
import { assertEquals } from "testing/asserts.ts";
const CHROME_BIN = Deno.env.get("CHROME_BIN");
Deno.test("E2E test", async (t) => {
/* Start Sinco */
const { browser, page } = await buildFor("chrome", {
binaryPath: CHROME_BIN,
});
const index = "http://localhost:8000/";
/* Beginning of tests */
await t.step("click the logo", async () => {
await page.location(index);
const image = await page.querySelector("img");
await image.click({ waitFor: "navigation" });
assertEquals(await page.location(), "https://www.active-connector.com/");
});
await t.step("input is empty", async () => {
await page.location(index);
const input = await page.querySelector("input");
assertEquals(await input.value(), "");
});
await t.step("error is not shown", async () => {
const error = await page.evaluate(() =>
document.querySelector("p")?.innerText
);
assertEquals(error, undefined);
});
await t.step("show error for an empty input", async () => {
const button = await page.querySelector("button");
await button.click({ waitFor: "navigation" });
const error = await page.evaluate(() =>
document.querySelector("p")?.innerText
);
assertEquals(error, "error: empty input");
});
await t.step("input a random string and click the button", async () => {
const input = await page.querySelector("input");
const name = crypto.randomUUID().slice(0, 7);
await input.value(name);
const button = await page.querySelector("button");
await button.click({ waitFor: "navigation" });
assertEquals(await page.location(), `${index}jobs/${name}`);
const body = await page.evaluate(() => {
return document.querySelector("div")?.innerText;
});
assertEquals(body, `Job "${name}" is not available`);
});
await t.step("input 'engineer' and click the button", async () => {
await page.location(index);
const input = await page.querySelector("input");
await input.value("engineer");
const button = await page.querySelector("button");
await button.click({ waitFor: "navigation" });
assertEquals(await page.location(), `${index}jobs/engineer`);
const body = await page.evaluate(() => {
return document.querySelector("div")?.innerText;
});
assertEquals(body, `Job "engineer" is open for you!`);
});
/* End of tests */
await browser.close();
});