-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsnapshot_installer.test.ts
105 lines (86 loc) · 3.38 KB
/
snapshot_installer.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import * as tc from "@actions/tool-cache";
import { afterEach, describe, expect, test, vi } from "vitest";
import * as cache from "../src/cache";
import { SnapshotInstaller } from "../src/snapshot_installer";
const cacheFindSpy = vi.spyOn(cache, "find");
const cacheCacheDirSpy = vi.spyOn(cache, "cacheDir");
const tcDownloadToolSpy = vi.spyOn(tc, "downloadTool");
const tcExtractZipSpy = vi.spyOn(tc, "extractZip");
afterEach(() => {
vi.resetAllMocks();
});
describe("SnapshotInstaller", () => {
const installer = new SnapshotInstaller({ os: "linux", arch: "amd64" });
describe("checkInstalledBrowser", () => {
test("returns undefined if not installed", async () => {
cacheFindSpy.mockResolvedValue(undefined);
const result = await installer.checkInstalledBrowser("123456");
expect(result).toBe(undefined);
});
test("returns install result if installed", async () => {
cacheFindSpy.mockResolvedValue("/path/to/chromium");
const result = await installer.checkInstalledBrowser("123456");
expect(result).toEqual({ root: "/path/to/chromium", bin: "chrome" });
});
});
describe("downloadBrowser", () => {
test("downloads the browser", async () => {
tcDownloadToolSpy.mockResolvedValue("/tmp/chrome.zip");
const result = await installer.downloadBrowser("123456");
expect(result).toEqual({ archive: "/tmp/chrome.zip" });
expect(tcDownloadToolSpy).toHaveBeenCalled();
});
});
describe("installBrowser", () => {
test("installs the browser", async () => {
tcExtractZipSpy.mockResolvedValue("/path/to/ext");
cacheCacheDirSpy.mockResolvedValue("/path/to/chromium");
const result = await installer.installBrowser(
"123456",
"/tmp/chrome.zip",
);
expect(result).toEqual({ root: "/path/to/chromium", bin: "chrome" });
expect(tcExtractZipSpy).toHaveBeenCalled();
expect(cacheCacheDirSpy).toHaveBeenCalled();
});
});
describe("checkInstalledDriver", () => {
test("returns undefined if not installed", async () => {
cacheFindSpy.mockResolvedValue(undefined);
const result = await installer.checkInstalledDriver("123456");
expect(result).toBe(undefined);
});
test("returns install result if installed", async () => {
cacheFindSpy.mockResolvedValue("/path/to/chromedriver");
const result = await installer.checkInstalledDriver("123456");
expect(result).toEqual({
root: "/path/to/chromedriver",
bin: "chromedriver",
});
});
});
describe("downloadDriver", () => {
test("downloads the driver", async () => {
tcDownloadToolSpy.mockResolvedValue("/tmp/chromedriver.zip");
const result = await installer.downloadDriver("123456");
expect(result).toEqual({ archive: "/tmp/chromedriver.zip" });
expect(tcDownloadToolSpy).toHaveBeenCalled();
});
});
describe("installDriver", () => {
test("installs the driver", async () => {
tcExtractZipSpy.mockResolvedValue("/path/to/ext");
cacheCacheDirSpy.mockResolvedValue("/path/to/chromedriver");
const result = await installer.installDriver(
"123456",
"/tmp/chromedriver.zip",
);
expect(result).toEqual({
root: "/path/to/chromedriver",
bin: "chromedriver",
});
expect(tcExtractZipSpy).toHaveBeenCalled();
expect(cacheCacheDirSpy).toHaveBeenCalled();
});
});
});