mirror of
				https://github.com/actions/cache.git
				synced 2025-10-23 08:56:26 +08:00 
			
		
		
		
	Added test case for restore state
This commit is contained in:
		| @@ -68,6 +68,8 @@ test("restore with no cache found", async () => { | |||||||
|     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []); |     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []); | ||||||
|  |  | ||||||
|     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); |     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); | ||||||
|  |     expect(stateMock).toHaveBeenCalledTimes(1); | ||||||
|  |  | ||||||
|     expect(failedMock).toHaveBeenCalledTimes(0); |     expect(failedMock).toHaveBeenCalledTimes(0); | ||||||
|  |  | ||||||
|     expect(infoMock).toHaveBeenCalledWith( |     expect(infoMock).toHaveBeenCalledWith( | ||||||
| @@ -100,6 +102,8 @@ test("restore with restore keys and no cache found", async () => { | |||||||
|     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]); |     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]); | ||||||
|  |  | ||||||
|     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); |     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); | ||||||
|  |     expect(stateMock).toHaveBeenCalledTimes(1); | ||||||
|  |  | ||||||
|     expect(failedMock).toHaveBeenCalledTimes(0); |     expect(failedMock).toHaveBeenCalledTimes(0); | ||||||
|  |  | ||||||
|     expect(infoMock).toHaveBeenCalledWith( |     expect(infoMock).toHaveBeenCalledWith( | ||||||
| @@ -131,6 +135,9 @@ test("restore with cache found for key", async () => { | |||||||
|     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []); |     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, []); | ||||||
|  |  | ||||||
|     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); |     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); | ||||||
|  |     expect(stateMock).toHaveBeenCalledWith("CACHE_RESULT", key); | ||||||
|  |     expect(stateMock).toHaveBeenCalledTimes(2); | ||||||
|  |  | ||||||
|     expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1); |     expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1); | ||||||
|     expect(setCacheHitOutputMock).toHaveBeenCalledWith("cache-hit", "true"); |     expect(setCacheHitOutputMock).toHaveBeenCalledWith("cache-hit", "true"); | ||||||
|  |  | ||||||
| @@ -164,6 +171,9 @@ test("restore with cache found for restore key", async () => { | |||||||
|     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]); |     expect(restoreCacheMock).toHaveBeenCalledWith([path], key, [restoreKey]); | ||||||
|  |  | ||||||
|     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); |     expect(stateMock).toHaveBeenCalledWith("CACHE_KEY", key); | ||||||
|  |     expect(stateMock).toHaveBeenCalledWith("CACHE_RESULT", restoreKey); | ||||||
|  |     expect(stateMock).toHaveBeenCalledTimes(2); | ||||||
|  |  | ||||||
|     expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1); |     expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1); | ||||||
|     expect(setCacheHitOutputMock).toHaveBeenCalledWith("cache-hit", "false"); |     expect(setCacheHitOutputMock).toHaveBeenCalledWith("cache-hit", "false"); | ||||||
|     expect(infoMock).toHaveBeenCalledWith( |     expect(infoMock).toHaveBeenCalledWith( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user