1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-03 21:17:47 +02:00
This commit is contained in:
bchen1029 2022-12-12 20:34:35 +08:00 committed by GitHub
commit c6f3195bc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View file

@ -205,6 +205,7 @@ test("restore with no cache found", async () => {
key
});
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
const infoMock = jest.spyOn(core, "info");
const failedMock = jest.spyOn(core, "setFailed");
const stateMock = jest.spyOn(core, "saveState");
@ -216,6 +217,9 @@ test("restore with no cache found", async () => {
await run();
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []);
@ -237,6 +241,7 @@ test("restore with restore keys and no cache found", async () => {
restoreKeys: [restoreKey]
});
const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput");
const infoMock = jest.spyOn(core, "info");
const failedMock = jest.spyOn(core, "setFailed");
const stateMock = jest.spyOn(core, "saveState");
@ -248,6 +253,9 @@ test("restore with restore keys and no cache found", async () => {
await run();
expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1);
expect(setCacheHitOutputMock).toHaveBeenCalledWith(false);
expect(restoreCacheMock).toHaveBeenCalledTimes(1);
expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]);

View file

@ -49012,6 +49012,7 @@ function run() {
primaryKey,
...restoreKeys
].join(", ")}`);
utils.setCacheHitOutput(false);
return;
}
// Store the matched cache key

View file

@ -43,6 +43,7 @@ async function run(): Promise<void> {
].join(", ")}`
);
utils.setCacheHitOutput(false);
return;
}