Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Hadka committed Sep 29, 2020
1 parent 67f61c6 commit 2850cd8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 33 deletions.
37 changes: 16 additions & 21 deletions __tests__/restore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ beforeAll(() => {
beforeEach(() => {
process.env[Events.Key] = Events.Push;
process.env[RefKey] = "refs/heads/feature-branch";

jest.spyOn(actionUtils, "isGhes").mockImplementation(() => false);
});

afterEach(() => {
Expand All @@ -54,27 +56,20 @@ test("restore with invalid event outputs warning", async () => {
});

test("restore on GHES should no-op", async () => {
try {
process.env["GITHUB_SERVER_URL"] = "http://example.com";

const infoMock = jest.spyOn(core, "info");
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);
expect(infoMock).toHaveBeenCalledWith(
"Cache action is not supported on GHES"
);
} finally {
process.env["GITHUB_SERVER_URL"] = undefined;
}
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true);

const infoMock = jest.spyOn(core, "info");
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);
expect(infoMock).toHaveBeenCalledWith(
"Cache action is not supported on GHES"
);
});

test("restore with no path should fail", async () => {
Expand Down
22 changes: 10 additions & 12 deletions __tests__/save.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ beforeAll(() => {
beforeEach(() => {
process.env[Events.Key] = Events.Push;
process.env[RefKey] = "refs/heads/feature-branch";

jest.spyOn(actionUtils, "isGhes").mockImplementation(() => false);
});

afterEach(() => {
Expand Down Expand Up @@ -92,21 +94,17 @@ test("save with no primary key in state outputs warning", async () => {
});

test("save on GHES should no-op", async () => {
try {
process.env["GITHUB_SERVER_URL"] = "http://example.com";
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true);

const infoMock = jest.spyOn(core, "info");
const saveCacheMock = jest.spyOn(cache, "saveCache");
const infoMock = jest.spyOn(core, "info");
const saveCacheMock = jest.spyOn(cache, "saveCache");

await run();
await run();

expect(saveCacheMock).toHaveBeenCalledTimes(0);
expect(infoMock).toHaveBeenCalledWith(
"Cache action is not supported on GHES"
);
} finally {
process.env["GITHUB_SERVER_URL"] = undefined;
}
expect(saveCacheMock).toHaveBeenCalledTimes(0);
expect(infoMock).toHaveBeenCalledWith(
"Cache action is not supported on GHES"
);
});

test("save with exact match returns early", async () => {
Expand Down

0 comments on commit 2850cd8

Please sign in to comment.