2019-11-06 13:41:45 -05:00
|
|
|
import { Inputs } from "../constants";
|
2023-04-07 21:38:17 -04:00
|
|
|
import { rest } from "msw";
|
|
|
|
import { setupServer } from "msw/node";
|
|
|
|
import nock from "nock";
|
|
|
|
|
|
|
|
export const successCacheKey = "Linux-node-bb828da54c148048dd17899ba9fda624811cfb43";
|
|
|
|
export const failureCacheKey = "Windows-node-bb828da54c148048dd17899ba9fda624811cfb43";
|
|
|
|
export const passThroughCacheKey = "macOS-node-bb828da54c148048dd17899ba9fda624811cfb43";
|
|
|
|
|
2019-11-06 13:41:45 -05:00
|
|
|
|
|
|
|
// See: https://github.com/actions/toolkit/blob/master/packages/core/src/core.ts#L67
|
2019-10-30 14:48:49 -04:00
|
|
|
function getInputName(name: string): string {
|
|
|
|
return `INPUT_${name.replace(/ /g, "_").toUpperCase()}`;
|
|
|
|
}
|
|
|
|
|
2019-11-13 06:48:02 +09:00
|
|
|
export function setInput(name: string, value: string): void {
|
2019-10-30 14:48:49 -04:00
|
|
|
process.env[getInputName(name)] = value;
|
|
|
|
}
|
2019-11-06 13:41:45 -05:00
|
|
|
|
|
|
|
interface CacheInput {
|
|
|
|
path: string;
|
|
|
|
key: string;
|
|
|
|
restoreKeys?: string[];
|
2023-01-05 16:49:13 +05:30
|
|
|
enableCrossOsArchive?: boolean;
|
2023-01-30 12:10:58 +01:00
|
|
|
failOnCacheMiss?: boolean;
|
2023-03-09 13:30:28 +01:00
|
|
|
lookupOnly?: boolean;
|
2023-04-07 21:38:17 -04:00
|
|
|
refreshCache?: boolean;
|
2019-11-06 13:41:45 -05:00
|
|
|
}
|
|
|
|
|
2019-11-13 06:48:02 +09:00
|
|
|
export function setInputs(input: CacheInput): void {
|
2019-11-06 13:41:45 -05:00
|
|
|
setInput(Inputs.Path, input.path);
|
|
|
|
setInput(Inputs.Key, input.key);
|
|
|
|
input.restoreKeys &&
|
|
|
|
setInput(Inputs.RestoreKeys, input.restoreKeys.join("\n"));
|
2023-01-05 16:49:13 +05:30
|
|
|
input.enableCrossOsArchive !== undefined &&
|
|
|
|
setInput(
|
|
|
|
Inputs.EnableCrossOsArchive,
|
|
|
|
input.enableCrossOsArchive.toString()
|
|
|
|
);
|
2023-01-30 12:10:58 +01:00
|
|
|
input.failOnCacheMiss !== undefined &&
|
|
|
|
setInput(Inputs.FailOnCacheMiss, input.failOnCacheMiss.toString());
|
2023-03-09 13:30:28 +01:00
|
|
|
input.lookupOnly !== undefined &&
|
|
|
|
setInput(Inputs.LookupOnly, input.lookupOnly.toString());
|
2023-04-07 21:38:17 -04:00
|
|
|
input.refreshCache !== undefined &&
|
|
|
|
setInput(Inputs.RefreshCache, input.refreshCache.toString());
|
2019-11-06 13:41:45 -05:00
|
|
|
}
|
|
|
|
|
2019-11-13 06:48:02 +09:00
|
|
|
export function clearInputs(): void {
|
2019-11-06 13:41:45 -05:00
|
|
|
delete process.env[getInputName(Inputs.Path)];
|
|
|
|
delete process.env[getInputName(Inputs.Key)];
|
|
|
|
delete process.env[getInputName(Inputs.RestoreKeys)];
|
2020-10-02 09:59:55 -05:00
|
|
|
delete process.env[getInputName(Inputs.UploadChunkSize)];
|
2023-01-05 16:49:13 +05:30
|
|
|
delete process.env[getInputName(Inputs.EnableCrossOsArchive)];
|
2023-01-30 12:10:58 +01:00
|
|
|
delete process.env[getInputName(Inputs.FailOnCacheMiss)];
|
2023-03-09 13:30:28 +01:00
|
|
|
delete process.env[getInputName(Inputs.LookupOnly)];
|
2023-04-07 21:38:17 -04:00
|
|
|
delete process.env[getInputName(Inputs.RefreshCache)];
|
2019-11-06 13:41:45 -05:00
|
|
|
}
|
2023-04-07 21:38:17 -04:00
|
|
|
|
|
|
|
/* istanbul ignore next */
|
|
|
|
export const mockServer = setupServer(rest.delete('https://api.github.com/repos/owner/repo/actions/caches', (req, res, ctx) => {
|
|
|
|
if (req.url?.searchParams?.get('key') === failureCacheKey) {
|
|
|
|
return res(ctx.status(404),
|
|
|
|
ctx.json({
|
|
|
|
message: "Not Found",
|
|
|
|
documentation_url: "https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key"
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
else if (req.url?.searchParams?.get('key') === successCacheKey) {
|
|
|
|
return res(ctx.status(200),
|
|
|
|
ctx.json({
|
|
|
|
total_count: 1,
|
|
|
|
actions_caches: [{
|
|
|
|
id: 15,
|
|
|
|
ref: "refs/heads/main",
|
|
|
|
key: successCacheKey,
|
|
|
|
version: "93a0f912fdb70083e929c1bf564bca2050be1c4e0932f7f9e78465ddcfbcc8f6",
|
|
|
|
last_accessed_at: "2022-12-29T22:06:42.683333300Z",
|
|
|
|
created_at: "2022-12-29T22:06:42.683333300Z",
|
|
|
|
size_in_bytes: 6057793
|
|
|
|
}]
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
else if (req.url?.searchParams?.get('key') === passThroughCacheKey) {
|
|
|
|
return req.passthrough();
|
|
|
|
}
|
|
|
|
}));
|