| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  | import * as cache from "@actions/cache"; | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | import * as core from "@actions/core"; | 
					
						
							| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | import { Events, Inputs, RefKey } from "../src/constants"; | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | import run from "../src/save"; | 
					
						
							|  |  |  | import * as actionUtils from "../src/utils/actionUtils"; | 
					
						
							|  |  |  | import * as testUtils from "../src/utils/testUtils"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | jest.mock("@actions/core"); | 
					
						
							| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  | 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); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-05 09:29:13 +00:00
										 |  |  |     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); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  |     jest.spyOn(actionUtils, "isValidEvent").mockImplementation(() => { | 
					
						
							|  |  |  |         const actualUtils = jest.requireActual("../src/utils/actionUtils"); | 
					
						
							|  |  |  |         return actualUtils.isValidEvent(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -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); | 
					
						
							| 
									
										
										
										
											2022-03-30 15:46:49 +05:30
										 |  |  |     jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation( | 
					
						
							|  |  |  |         () => true | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | afterEach(() => { | 
					
						
							|  |  |  |     testUtils.clearInputs(); | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  |     delete process.env[Events.Key]; | 
					
						
							| 
									
										
										
										
											2020-04-17 15:46:46 -04:00
										 |  |  |     delete process.env[RefKey]; | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-21 19:38:44 +05:30
										 |  |  | test("save with valid inputs uploads a cache", async () => { | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  |     const failedMock = jest.spyOn(core, "setFailed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const primaryKey = "Linux-node-bb828da54c148048dd17899ba9fda624811cfb43"; | 
					
						
							| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  |     const savedCacheKey = "Linux-node-"; | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     jest.spyOn(core, "getState") | 
					
						
							|  |  |  |         // Cache Entry State
 | 
					
						
							|  |  |  |         .mockImplementationOnce(() => { | 
					
						
							|  |  |  |             return primaryKey; | 
					
						
							| 
									
										
										
										
											2020-01-06 13:05:50 -05:00
										 |  |  |         }) | 
					
						
							|  |  |  |         // Cache Key State
 | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  |         .mockImplementationOnce(() => { | 
					
						
							| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  |             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; | 
					
						
							| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  |     const saveCacheMock = jest | 
					
						
							|  |  |  |         .spyOn(cache, "saveCache") | 
					
						
							| 
									
										
										
										
											2020-01-06 13:05:50 -05:00
										 |  |  |         .mockImplementationOnce(() => { | 
					
						
							|  |  |  |             return Promise.resolve(cacheId); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  |     await run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(saveCacheMock).toHaveBeenCalledTimes(1); | 
					
						
							| 
									
										
										
										
											2023-01-05 09:29:13 +00:00
										 |  |  |     expect(saveCacheMock).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         [inputPath], | 
					
						
							|  |  |  |         primaryKey, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             uploadChunkSize: 4000000 | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         false | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2019-11-14 17:14:16 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     expect(failedMock).toHaveBeenCalledTimes(0); | 
					
						
							|  |  |  | }); |