2020-05-14 23:27:38 +02:00
|
|
|
import * as cache from "@actions/cache";
|
2019-11-06 19:41:45 +01:00
|
|
|
import * as core from "@actions/core";
|
2020-05-14 23:27:38 +02:00
|
|
|
|
|
|
|
import { Events, Inputs, RefKey } from "../src/constants";
|
2019-11-06 19:41:45 +01:00
|
|
|
import run from "../src/restore";
|
|
|
|
import * as actionUtils from "../src/utils/actionUtils";
|
|
|
|
import * as testUtils from "../src/utils/testUtils";
|
|
|
|
|
2019-12-13 23:24:37 +01:00
|
|
|
jest.mock("../src/utils/actionUtils");
|
2019-11-06 19:41:45 +01:00
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
jest.spyOn(actionUtils, "isExactKeyMatch").mockImplementation(
|
|
|
|
(key, cacheResult) => {
|
|
|
|
const actualUtils = jest.requireActual("../src/utils/actionUtils");
|
|
|
|
return actualUtils.isExactKeyMatch(key, cacheResult);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-11-13 16:54:39 +01:00
|
|
|
jest.spyOn(actionUtils, "isValidEvent").mockImplementation(() => {
|
|
|
|
const actualUtils = jest.requireActual("../src/utils/actionUtils");
|
|
|
|
return actualUtils.isValidEvent();
|
|
|
|
});
|
2020-06-02 17:21:03 +02:00
|
|
|
|
|
|
|
jest.spyOn(actionUtils, "getInputAsArray").mockImplementation(
|
|
|
|
(name, options) => {
|
|
|
|
const actualUtils = jest.requireActual("../src/utils/actionUtils");
|
|
|
|
return actualUtils.getInputAsArray(name, options);
|
|
|
|
}
|
|
|
|
);
|
2019-11-06 19:41:45 +01:00
|
|
|
});
|
2019-11-13 16:54:39 +01:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
process.env[Events.Key] = Events.Push;
|
2020-04-17 21:46:46 +02:00
|
|
|
process.env[RefKey] = "refs/heads/feature-branch";
|
2020-09-29 17:23:21 +02:00
|
|
|
|
|
|
|
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => false);
|
2022-03-30 12:16:49 +02:00
|
|
|
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
|
|
|
|
() => true
|
|
|
|
);
|
2019-11-13 16:54:39 +01:00
|
|
|
});
|
|
|
|
|
2019-11-06 19:41:45 +01:00
|
|
|
afterEach(() => {
|
|
|
|
testUtils.clearInputs();
|
2019-11-13 16:54:39 +01:00
|
|
|
delete process.env[Events.Key];
|
2020-04-17 21:46:46 +02:00
|
|
|
delete process.env[RefKey];
|
2019-11-13 16:54:39 +01:00
|
|
|
});
|
|
|
|
|
2019-11-21 20:37:54 +01:00
|
|
|
test("restore with invalid event outputs warning", async () => {
|
|
|
|
const logWarningMock = jest.spyOn(actionUtils, "logWarning");
|
2019-11-13 16:54:39 +01:00
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const invalidEvent = "commit_comment";
|
|
|
|
process.env[Events.Key] = invalidEvent;
|
2020-04-17 21:46:46 +02:00
|
|
|
delete process.env[RefKey];
|
2019-11-13 16:54:39 +01:00
|
|
|
await run();
|
2019-11-21 20:37:54 +01:00
|
|
|
expect(logWarningMock).toHaveBeenCalledWith(
|
2020-04-17 21:46:46 +02:00
|
|
|
`Event Validation Error: The event type ${invalidEvent} is not supported because it's not tied to a branch or tag ref.`
|
2019-11-13 16:54:39 +01:00
|
|
|
);
|
2019-11-21 20:37:54 +01:00
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
2019-11-06 19:41:45 +01:00
|
|
|
});
|
|
|
|
|
2022-03-30 12:16:49 +02:00
|
|
|
test("restore without AC available should no-op", async () => {
|
|
|
|
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => false);
|
|
|
|
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
|
|
|
|
() => false
|
|
|
|
);
|
2020-09-29 16:58:32 +02:00
|
|
|
|
2020-09-29 17:23:21 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
|
|
|
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
|
2020-09-29 16:58:32 +02:00
|
|
|
|
2020-09-29 17:23:21 +02:00
|
|
|
await run();
|
2020-09-29 16:58:32 +02:00
|
|
|
|
2020-09-29 17:23:21 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(0);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
|
2022-03-30 12:16:49 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
test("restore on GHES without AC available should no-op", async () => {
|
|
|
|
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true);
|
|
|
|
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
|
|
|
|
() => false
|
2020-09-29 17:23:21 +02:00
|
|
|
);
|
2022-03-30 12:16:49 +02:00
|
|
|
|
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
|
|
|
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
|
|
|
|
|
|
|
|
await run();
|
|
|
|
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(0);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore on GHES with AC available ", async () => {
|
|
|
|
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true);
|
|
|
|
const path = "node_modules";
|
|
|
|
const key = "node-test";
|
|
|
|
testUtils.setInputs({
|
|
|
|
path: path,
|
|
|
|
key
|
|
|
|
});
|
|
|
|
|
|
|
|
const infoMock = jest.spyOn(core, "info");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const stateMock = jest.spyOn(core, "saveState");
|
|
|
|
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
|
|
|
|
const restoreCacheMock = jest
|
|
|
|
.spyOn(cache, "restoreCache")
|
|
|
|
.mockImplementationOnce(() => {
|
|
|
|
return Promise.resolve(key);
|
|
|
|
});
|
|
|
|
|
|
|
|
await run();
|
|
|
|
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
|
|
|
|
|
|
|
|
expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledWith(true);
|
|
|
|
|
|
|
|
expect(infoMock).toHaveBeenCalledWith(`Cache restored from key: ${key}`);
|
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
2020-09-29 16:58:32 +02:00
|
|
|
});
|
|
|
|
|
2019-11-06 19:41:45 +01:00
|
|
|
test("restore with no path should fail", async () => {
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(0);
|
2020-03-20 21:02:11 +01:00
|
|
|
// this input isn't necessary for restore b/c tarball contains entries relative to workspace
|
|
|
|
expect(failedMock).not.toHaveBeenCalledWith(
|
2019-11-06 19:41:45 +01:00
|
|
|
"Input required and not supplied: path"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with no key", async () => {
|
|
|
|
testUtils.setInput(Inputs.Path, "node_modules");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(0);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(failedMock).toHaveBeenCalledWith(
|
|
|
|
"Input required and not supplied: key"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with too many keys should fail", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "node-test";
|
2020-11-28 20:34:06 +01:00
|
|
|
const restoreKeys = [...Array(20).keys()].map(x => x.toString()).sort();
|
2019-11-06 19:41:45 +01:00
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key,
|
|
|
|
restoreKeys
|
|
|
|
});
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, restoreKeys);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(failedMock).toHaveBeenCalledWith(
|
|
|
|
`Key Validation Error: Keys are limited to a maximum of 10.`
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with large key should fail", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "foo".repeat(512); // Over the 512 character limit
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key
|
|
|
|
});
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(failedMock).toHaveBeenCalledWith(
|
|
|
|
`Key Validation Error: ${key} cannot be larger than 512 characters.`
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with invalid key should fail", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "comma,comma";
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key
|
|
|
|
});
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest.spyOn(cache, "restoreCache");
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(failedMock).toHaveBeenCalledWith(
|
|
|
|
`Key Validation Error: ${key} cannot contain commas.`
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with no cache found", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "node-test";
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key
|
|
|
|
});
|
|
|
|
|
|
|
|
const infoMock = jest.spyOn(core, "info");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const stateMock = jest.spyOn(core, "saveState");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest
|
|
|
|
.spyOn(cache, "restoreCache")
|
|
|
|
.mockImplementationOnce(() => {
|
|
|
|
return Promise.resolve(undefined);
|
|
|
|
});
|
2019-11-06 19:41:45 +01:00
|
|
|
|
|
|
|
await run();
|
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
|
|
|
|
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key);
|
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
|
|
|
|
|
|
|
expect(infoMock).toHaveBeenCalledWith(
|
2020-02-25 20:16:36 +01:00
|
|
|
`Cache not found for input keys: ${key}`
|
2019-11-06 19:41:45 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with restore keys and no cache found", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "node-test";
|
|
|
|
const restoreKey = "node-";
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key,
|
|
|
|
restoreKeys: [restoreKey]
|
|
|
|
});
|
|
|
|
|
|
|
|
const infoMock = jest.spyOn(core, "info");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const stateMock = jest.spyOn(core, "saveState");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest
|
|
|
|
.spyOn(cache, "restoreCache")
|
|
|
|
.mockImplementationOnce(() => {
|
|
|
|
return Promise.resolve(undefined);
|
|
|
|
});
|
2019-11-06 19:41:45 +01:00
|
|
|
|
|
|
|
await run();
|
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]);
|
|
|
|
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key);
|
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
|
|
|
|
|
|
|
expect(infoMock).toHaveBeenCalledWith(
|
2020-02-25 20:16:36 +01:00
|
|
|
`Cache not found for input keys: ${key}, ${restoreKey}`
|
2019-11-06 19:41:45 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
test("restore with cache found for key", async () => {
|
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "node-test";
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key
|
|
|
|
});
|
|
|
|
|
|
|
|
const infoMock = jest.spyOn(core, "info");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const stateMock = jest.spyOn(core, "saveState");
|
|
|
|
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest
|
|
|
|
.spyOn(cache, "restoreCache")
|
|
|
|
.mockImplementationOnce(() => {
|
|
|
|
return Promise.resolve(key);
|
|
|
|
});
|
2020-04-22 22:36:34 +02:00
|
|
|
|
2019-11-06 19:41:45 +01:00
|
|
|
await run();
|
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
|
2019-11-13 16:54:39 +01:00
|
|
|
|
|
|
|
expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledWith(true);
|
|
|
|
|
|
|
|
expect(infoMock).toHaveBeenCalledWith(`Cache restored from key: ${key}`);
|
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("restore with cache found for restore key", async () => {
|
2020-05-14 23:27:38 +02:00
|
|
|
const path = "node_modules";
|
2019-11-06 19:41:45 +01:00
|
|
|
const key = "node-test";
|
|
|
|
const restoreKey = "node-";
|
|
|
|
testUtils.setInputs({
|
2020-05-14 23:27:38 +02:00
|
|
|
path: path,
|
2019-11-06 19:41:45 +01:00
|
|
|
key,
|
|
|
|
restoreKeys: [restoreKey]
|
|
|
|
});
|
|
|
|
|
|
|
|
const infoMock = jest.spyOn(core, "info");
|
|
|
|
const failedMock = jest.spyOn(core, "setFailed");
|
|
|
|
const stateMock = jest.spyOn(core, "saveState");
|
|
|
|
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
|
2020-05-14 23:27:38 +02:00
|
|
|
const restoreCacheMock = jest
|
|
|
|
.spyOn(cache, "restoreCache")
|
|
|
|
.mockImplementationOnce(() => {
|
|
|
|
return Promise.resolve(restoreKey);
|
|
|
|
});
|
2019-11-06 19:41:45 +01:00
|
|
|
|
|
|
|
await run();
|
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]);
|
2019-11-06 19:41:45 +01:00
|
|
|
|
2020-05-14 23:27:38 +02:00
|
|
|
expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key);
|
2019-11-06 19:41:45 +01:00
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
|
|
|
|
|
|
|
|
expect(infoMock).toHaveBeenCalledWith(
|
|
|
|
`Cache restored from key: ${restoreKey}`
|
|
|
|
);
|
|
|
|
expect(failedMock).toHaveBeenCalledTimes(0);
|
|
|
|
});
|