mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 02:14:19 +08:00 
			
		
		
		
	Fix test
This commit is contained in:
		
							parent
							
								
									67f61c6e6b
								
							
						
					
					
						commit
						2850cd8f45
					
				| @ -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(() => { | ||||
| @ -54,15 +56,11 @@ 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"; | ||||
|     jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true); | ||||
| 
 | ||||
|     const infoMock = jest.spyOn(core, "info"); | ||||
|     const restoreCacheMock = jest.spyOn(cache, "restoreCache"); | ||||
|         const setCacheHitOutputMock = jest.spyOn( | ||||
|             actionUtils, | ||||
|             "setCacheHitOutput" | ||||
|         ); | ||||
|     const setCacheHitOutputMock = jest.spyOn(actionUtils, "setCacheHitOutput"); | ||||
| 
 | ||||
|     await run(); | ||||
| 
 | ||||
| @ -72,9 +70,6 @@ test("restore on GHES should no-op", async () => { | ||||
|     expect(infoMock).toHaveBeenCalledWith( | ||||
|         "Cache action is not supported on GHES" | ||||
|     ); | ||||
|     } finally { | ||||
|         process.env["GITHUB_SERVER_URL"] = undefined; | ||||
|     } | ||||
| }); | ||||
| 
 | ||||
| test("restore with no path should fail", async () => { | ||||
|  | ||||
| @ -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(() => { | ||||
| @ -92,8 +94,7 @@ 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"); | ||||
| @ -104,9 +105,6 @@ test("save on GHES should no-op", async () => { | ||||
|     expect(infoMock).toHaveBeenCalledWith( | ||||
|         "Cache action is not supported on GHES" | ||||
|     ); | ||||
|     } finally { | ||||
|         process.env["GITHUB_SERVER_URL"] = undefined; | ||||
|     } | ||||
| }); | ||||
| 
 | ||||
| test("save with exact match returns early", async () => { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Dave Hadka
						Dave Hadka