-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathlatest_installer.test.ts
124 lines (105 loc) · 4.03 KB
/
latest_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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import * as tc from "@actions/tool-cache";
import { afterEach, describe, expect, test, vi } from "vitest";
import * as cache from "../src/cache";
import { LatestInstaller } from "../src/latest_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");
vi.mock("../src/snapshot_bucket", () => ({
resolveLatestVersion: () => Promise.resolve("123456"),
browserDownloadURL: () => "https://example.com/chrome.zip",
driverDownloadURL: () => "https://example.com/chromedriver.zip",
}));
afterEach(() => {
vi.resetAllMocks();
});
describe("LatestInstaller", () => {
const installer = new LatestInstaller({ os: "linux", arch: "amd64" });
describe("checkInstalled", () => {
test("returns undefined if not installed", async () => {
cacheFindSpy.mockResolvedValue(undefined);
const result = await installer.checkInstalledBrowser("latest");
expect(result).toBe(undefined);
expect(cacheFindSpy).toHaveBeenCalledWith("chromium", "123456");
});
test("returns install result if installed", async () => {
cacheFindSpy.mockResolvedValue("/path/to/chromium");
const result = await installer.checkInstalledBrowser("latest");
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("latest");
expect(result).toEqual({ archive: "/tmp/chrome.zip" });
expect(tcDownloadToolSpy).toHaveBeenCalledWith(
"https://example.com/chrome.zip",
);
});
});
describe("installBrowser", () => {
test("installs the browser", async () => {
tcExtractZipSpy.mockResolvedValue("/path/to/ext");
cacheCacheDirSpy.mockResolvedValue("/path/to/chromium");
const result = await installer.installBrowser(
"latest",
"/tmp/chrome.zip",
);
expect(result).toEqual({ root: "/path/to/chromium", bin: "chrome" });
expect(tcExtractZipSpy).toHaveBeenCalled();
expect(cacheCacheDirSpy).toHaveBeenCalledWith(
"/path/to/ext/chrome-linux",
"chromium",
"123456",
);
});
});
describe("checkInstalledDriver", () => {
test("returns undefined if not installed", async () => {
cacheFindSpy.mockResolvedValue(undefined);
const result = await installer.checkInstalledDriver("latest");
expect(result).toBe(undefined);
expect(cacheFindSpy).toHaveBeenCalledWith("chromedriver", "123456");
});
test("returns install result if installed", async () => {
cacheFindSpy.mockResolvedValue("/path/to/chromedriver");
const result = await installer.checkInstalledDriver("latest");
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("latest");
expect(result).toEqual({ archive: "/tmp/chromedriver.zip" });
expect(tcDownloadToolSpy).toHaveBeenCalledWith(
"https://example.com/chromedriver.zip",
);
});
});
describe("installDriver", () => {
test("installs the driver", async () => {
tcExtractZipSpy.mockResolvedValue("/path/to/ext");
cacheCacheDirSpy.mockResolvedValue("/path/to/chromedriver");
const result = await installer.installDriver(
"latest",
"/tmp/chromedriver.zip",
);
expect(result).toEqual({
root: "/path/to/chromedriver",
bin: "chromedriver",
});
expect(tcExtractZipSpy).toHaveBeenCalled();
expect(cacheCacheDirSpy).toHaveBeenCalledWith(
"/path/to/ext/chromedriver_linux64",
"chromedriver",
"123456",
);
});
});
});