Files
cache/__tests__/save.test.ts
T

117 lines
3.3 KiB
TypeScript
Raw Normal View History

import * as cache from "@actions/cache";
2019-11-14 17:14:16 -05:00
import * as core from "@actions/core";
2020-03-18 22:35:13 +09:00
import { Events, Inputs, RefKey } from "../src/constants";
2024-01-10 15:36:58 +00:00
import { saveRun } from "../src/saveImpl";
2019-11-14 17:14:16 -05:00
import * as actionUtils from "../src/utils/actionUtils";
import * as testUtils from "../src/utils/testUtils";
jest.mock("@actions/core");
jest.mock("@actions/cache");
2019-12-13 17:24:37 -05:00
jest.mock("../src/utils/actionUtils");
2019-11-14 17:14:16 -05:00
beforeAll(() => {
jest.spyOn(core, "getInput").mockImplementation((name, options) => {
return jest.requireActual("@actions/core").getInput(name, options);
});
2022-12-21 19:38:44 +05:30
jest.spyOn(core, "getState").mockImplementation(name => {
return jest.requireActual("@actions/core").getState(name);
2019-11-14 17:14:16 -05:00
});
2020-06-02 10:21:03 -05:00
jest.spyOn(actionUtils, "getInputAsArray").mockImplementation(
(name, options) => {
return jest
.requireActual("../src/utils/actionUtils")
.getInputAsArray(name, options);
}
);
2020-10-02 09:59:55 -05:00
jest.spyOn(actionUtils, "getInputAsInt").mockImplementation(
(name, options) => {
return jest
.requireActual("../src/utils/actionUtils")
.getInputAsInt(name, options);
}
);
jest.spyOn(actionUtils, "getInputAsBool").mockImplementation(
(name, options) => {
return jest
.requireActual("../src/utils/actionUtils")
.getInputAsBool(name, options);
}
);
2019-11-14 17:14:16 -05:00
jest.spyOn(actionUtils, "isExactKeyMatch").mockImplementation(
(key, cacheResult) => {
return jest
.requireActual("../src/utils/actionUtils")
.isExactKeyMatch(key, cacheResult);
}
);
jest.spyOn(actionUtils, "isValidEvent").mockImplementation(() => {
const actualUtils = jest.requireActual("../src/utils/actionUtils");
return actualUtils.isValidEvent();
});
2019-11-14 17:14:16 -05:00
});
beforeEach(() => {
process.env[Events.Key] = Events.Push;
2020-04-17 15:46:46 -04:00
process.env[RefKey] = "refs/heads/feature-branch";
2020-09-29 10:23:21 -05:00
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => false);
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
() => true
);
});
2019-11-14 17:14:16 -05:00
afterEach(() => {
testUtils.clearInputs();
delete process.env[Events.Key];
2020-04-17 15:46:46 -04:00
delete process.env[RefKey];
});
2019-11-14 17:14:16 -05:00
test("save with valid inputs uploads a cache", async () => {
const failedMock = jest.spyOn(core, "setFailed");
const primaryKey = "Linux-node-bb828da54c148048dd17899ba9fda624811cfb43";
const savedCacheKey = "Linux-node-";
2019-11-14 17:14:16 -05:00
jest.spyOn(core, "getState")
// Cache Entry State
.mockImplementationOnce(() => {
2022-12-21 19:38:44 +05:30
return primaryKey;
2019-11-14 17:14:16 -05:00
})
// Cache Key State
.mockImplementationOnce(() => {
2022-12-21 19:38:44 +05:30
return savedCacheKey;
2019-11-14 17:14:16 -05:00
});
const inputPath = "node_modules";
testUtils.setInput(Inputs.Path, inputPath);
2020-10-02 09:59:55 -05:00
testUtils.setInput(Inputs.UploadChunkSize, "4000000");
2019-11-14 17:14:16 -05:00
2020-01-06 13:05:50 -05:00
const cacheId = 4;
const saveCacheMock = jest
.spyOn(cache, "saveCache")
2020-01-06 13:05:50 -05:00
.mockImplementationOnce(() => {
return Promise.resolve(cacheId);
});
2024-01-10 15:36:58 +00:00
await saveRun();
2019-11-14 17:14:16 -05:00
expect(saveCacheMock).toHaveBeenCalledTimes(1);
expect(saveCacheMock).toHaveBeenCalledWith(
[inputPath],
primaryKey,
{
uploadChunkSize: 4000000
},
false
);
2019-11-14 17:14:16 -05:00
expect(failedMock).toHaveBeenCalledTimes(0);
});