2024-11-22 17:01:59 +00:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import * as path from 'path'
|
|
|
|
import * as tar from '../src/internal/tar'
|
|
|
|
import * as config from '../src/internal/config'
|
|
|
|
import * as cacheUtils from '../src/internal/cacheUtils'
|
2024-11-28 12:56:37 +00:00
|
|
|
import * as cacheHttpClient from '../src/internal/cacheHttpClient'
|
2024-11-25 13:47:51 +00:00
|
|
|
import {restoreCache} from '../src/cache'
|
|
|
|
import {CacheFilename, CompressionMethod} from '../src/internal/constants'
|
|
|
|
import {CacheServiceClientJSON} from '../src/generated/results/api/v1/cache.twirp'
|
2024-11-27 12:51:21 +00:00
|
|
|
import {DownloadOptions} from '../src/options'
|
2024-11-22 17:01:59 +00:00
|
|
|
|
|
|
|
jest.mock('../src/internal/cacheHttpClient')
|
|
|
|
jest.mock('../src/internal/cacheUtils')
|
|
|
|
jest.mock('../src/internal/config')
|
|
|
|
jest.mock('../src/internal/tar')
|
|
|
|
|
2024-11-25 12:08:47 +00:00
|
|
|
let logDebugMock: jest.SpyInstance
|
|
|
|
let logInfoMock: jest.SpyInstance
|
|
|
|
|
2024-11-22 17:01:59 +00:00
|
|
|
beforeAll(() => {
|
2024-11-25 13:47:51 +00:00
|
|
|
jest.spyOn(console, 'log').mockImplementation(() => {})
|
|
|
|
jest.spyOn(core, 'debug').mockImplementation(() => {})
|
|
|
|
jest.spyOn(core, 'info').mockImplementation(() => {})
|
|
|
|
jest.spyOn(core, 'warning').mockImplementation(() => {})
|
|
|
|
jest.spyOn(core, 'error').mockImplementation(() => {})
|
|
|
|
|
|
|
|
jest.spyOn(cacheUtils, 'getCacheFileName').mockImplementation(cm => {
|
|
|
|
const actualUtils = jest.requireActual('../src/internal/cacheUtils')
|
|
|
|
return actualUtils.getCacheFileName(cm)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Ensure that we're using v2 for these tests
|
|
|
|
jest.spyOn(config, 'getCacheServiceVersion').mockReturnValue('v2')
|
|
|
|
|
|
|
|
logDebugMock = jest.spyOn(core, 'debug')
|
|
|
|
logInfoMock = jest.spyOn(core, 'info')
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
2024-11-25 13:47:51 +00:00
|
|
|
expect(logDebugMock).toHaveBeenCalledWith('Cache service version: v2')
|
2024-11-22 17:01:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('restore with no path should fail', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths: string[] = []
|
|
|
|
const key = 'node-test'
|
|
|
|
await expect(restoreCache(paths, key)).rejects.toThrowError(
|
|
|
|
`Path Validation Error: At least one directory or file path is required`
|
|
|
|
)
|
2024-11-22 17:01:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('restore with too many keys should fail', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const restoreKeys = [...Array(20).keys()].map(x => x.toString())
|
|
|
|
await expect(restoreCache(paths, key, restoreKeys)).rejects.toThrowError(
|
|
|
|
`Key Validation Error: Keys are limited to a maximum of 10.`
|
|
|
|
)
|
2024-11-22 17:01:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('restore with large key should fail', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'foo'.repeat(512) // Over the 512 character limit
|
|
|
|
await expect(restoreCache(paths, key)).rejects.toThrowError(
|
|
|
|
`Key Validation Error: ${key} cannot be larger than 512 characters.`
|
|
|
|
)
|
2024-11-22 17:01:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('restore with invalid key should fail', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'comma,comma'
|
|
|
|
await expect(restoreCache(paths, key)).rejects.toThrowError(
|
|
|
|
`Key Validation Error: ${key} cannot contain commas.`
|
|
|
|
)
|
2024-11-22 17:01:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('restore with no cache found', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
|
|
|
|
jest
|
|
|
|
.spyOn(CacheServiceClientJSON.prototype, 'GetCacheEntryDownloadURL')
|
|
|
|
.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: false,
|
|
|
|
signedDownloadUrl: '',
|
|
|
|
matchedKey: ''
|
|
|
|
})
|
2024-11-25 12:08:47 +00:00
|
|
|
)
|
2024-11-22 17:01:59 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key)
|
2024-11-22 17:01:59 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
expect(cacheKey).toBe(undefined)
|
|
|
|
})
|
2024-11-25 12:08:47 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
test('restore with server error should fail', async () => {
|
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const logWarningMock = jest.spyOn(core, 'warning')
|
|
|
|
|
|
|
|
jest
|
|
|
|
.spyOn(CacheServiceClientJSON.prototype, 'GetCacheEntryDownloadURL')
|
|
|
|
.mockImplementation(() => {
|
|
|
|
throw new Error('HTTP Error Occurred')
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key)
|
|
|
|
expect(cacheKey).toBe(undefined)
|
|
|
|
expect(logWarningMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(logWarningMock).toHaveBeenCalledWith(
|
|
|
|
'Failed to restore: HTTP Error Occurred'
|
|
|
|
)
|
|
|
|
})
|
2024-11-25 12:08:47 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
test('restore with restore keys and no cache found', async () => {
|
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const restoreKeys = ['node-']
|
|
|
|
const logWarningMock = jest.spyOn(core, 'warning')
|
|
|
|
|
|
|
|
jest
|
|
|
|
.spyOn(CacheServiceClientJSON.prototype, 'GetCacheEntryDownloadURL')
|
|
|
|
.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: false,
|
|
|
|
signedDownloadUrl: '',
|
|
|
|
matchedKey: ''
|
|
|
|
})
|
2024-11-25 12:08:47 +00:00
|
|
|
)
|
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key, restoreKeys)
|
2024-11-25 12:08:47 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
expect(cacheKey).toBe(undefined)
|
|
|
|
expect(logWarningMock).toHaveBeenCalledWith(
|
|
|
|
`Cache not found for keys: ${[key, ...restoreKeys].join(', ')}`
|
|
|
|
)
|
2024-11-25 11:53:03 +00:00
|
|
|
})
|
2024-11-22 17:01:59 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
test('restore with gzip compressed cache found', async () => {
|
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const compressionMethod = CompressionMethod.Gzip
|
|
|
|
const signedDownloadUrl = 'https://blob-storage.local?signed=true'
|
|
|
|
const cacheVersion =
|
|
|
|
'd90f107aaeb22920dba0c637a23c37b5bc497b4dfa3b07fe3f79bf88a273c11b'
|
2024-11-28 15:42:07 +00:00
|
|
|
const options = {useAzureSdk: true} as DownloadOptions
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const getCacheVersionMock = jest.spyOn(cacheUtils, 'getCacheVersion')
|
|
|
|
getCacheVersionMock.mockReturnValue(cacheVersion)
|
|
|
|
|
|
|
|
const compressionMethodMock = jest.spyOn(cacheUtils, 'getCompressionMethod')
|
|
|
|
compressionMethodMock.mockReturnValue(Promise.resolve(compressionMethod))
|
|
|
|
|
|
|
|
const getCacheDownloadURLMock = jest.spyOn(
|
|
|
|
CacheServiceClientJSON.prototype,
|
|
|
|
'GetCacheEntryDownloadURL'
|
|
|
|
)
|
|
|
|
getCacheDownloadURLMock.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: true,
|
|
|
|
signedDownloadUrl,
|
|
|
|
matchedKey: key
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const tempPath = '/foo/bar'
|
|
|
|
|
|
|
|
const createTempDirectoryMock = jest.spyOn(cacheUtils, 'createTempDirectory')
|
|
|
|
createTempDirectoryMock.mockImplementation(async () => {
|
|
|
|
return Promise.resolve(tempPath)
|
|
|
|
})
|
|
|
|
|
|
|
|
const archivePath = path.join(tempPath, CacheFilename.Gzip)
|
2024-11-28 12:56:37 +00:00
|
|
|
const downloadCacheMock = jest.spyOn(cacheHttpClient, 'downloadCache')
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const fileSize = 142
|
|
|
|
const getArchiveFileSizeInBytesMock = jest
|
|
|
|
.spyOn(cacheUtils, 'getArchiveFileSizeInBytes')
|
|
|
|
.mockReturnValue(fileSize)
|
|
|
|
|
|
|
|
const extractTarMock = jest.spyOn(tar, 'extractTar')
|
|
|
|
const unlinkFileMock = jest.spyOn(cacheUtils, 'unlinkFile')
|
|
|
|
|
2024-11-28 15:42:07 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key, [], options)
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
expect(cacheKey).toBe(key)
|
|
|
|
expect(getCacheVersionMock).toHaveBeenCalledWith(
|
|
|
|
paths,
|
|
|
|
compressionMethod,
|
|
|
|
false
|
|
|
|
)
|
|
|
|
expect(getCacheDownloadURLMock).toHaveBeenCalledWith({
|
|
|
|
key,
|
|
|
|
restoreKeys: [],
|
|
|
|
version: cacheVersion
|
|
|
|
})
|
|
|
|
expect(createTempDirectoryMock).toHaveBeenCalledTimes(1)
|
2024-11-28 12:56:37 +00:00
|
|
|
expect(downloadCacheMock).toHaveBeenCalledWith(
|
2024-11-25 13:47:51 +00:00
|
|
|
signedDownloadUrl,
|
2024-11-27 12:51:21 +00:00
|
|
|
archivePath,
|
2024-11-28 15:42:07 +00:00
|
|
|
options
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
expect(getArchiveFileSizeInBytesMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
expect(logInfoMock).toHaveBeenCalledWith(`Cache Size: ~0 MB (142 B)`)
|
|
|
|
|
|
|
|
expect(extractTarMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(extractTarMock).toHaveBeenCalledWith(archivePath, compressionMethod)
|
|
|
|
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
|
|
|
|
expect(compressionMethodMock).toHaveBeenCalledTimes(1)
|
|
|
|
})
|
2024-11-25 12:08:47 +00:00
|
|
|
|
2024-11-25 13:47:51 +00:00
|
|
|
test('restore with zstd compressed cache found', async () => {
|
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const compressionMethod = CompressionMethod.Zstd
|
|
|
|
const signedDownloadUrl = 'https://blob-storage.local?signed=true'
|
|
|
|
const cacheVersion =
|
|
|
|
'8e2e96a184cb0cd6b48285b176c06a418f3d7fce14c29d9886fd1bb4f05c513d'
|
2024-11-28 15:42:07 +00:00
|
|
|
const options = {useAzureSdk: true} as DownloadOptions
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const getCacheVersionMock = jest.spyOn(cacheUtils, 'getCacheVersion')
|
|
|
|
getCacheVersionMock.mockReturnValue(cacheVersion)
|
|
|
|
|
|
|
|
const compressionMethodMock = jest.spyOn(cacheUtils, 'getCompressionMethod')
|
|
|
|
compressionMethodMock.mockReturnValue(Promise.resolve(compressionMethod))
|
|
|
|
|
|
|
|
const getCacheDownloadURLMock = jest.spyOn(
|
|
|
|
CacheServiceClientJSON.prototype,
|
|
|
|
'GetCacheEntryDownloadURL'
|
|
|
|
)
|
|
|
|
getCacheDownloadURLMock.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: true,
|
|
|
|
signedDownloadUrl,
|
|
|
|
matchedKey: key
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const tempPath = '/foo/bar'
|
|
|
|
|
|
|
|
const createTempDirectoryMock = jest.spyOn(cacheUtils, 'createTempDirectory')
|
|
|
|
createTempDirectoryMock.mockImplementation(async () => {
|
|
|
|
return Promise.resolve(tempPath)
|
|
|
|
})
|
|
|
|
|
|
|
|
const archivePath = path.join(tempPath, CacheFilename.Zstd)
|
2024-11-28 12:56:37 +00:00
|
|
|
const downloadCacheMock = jest.spyOn(cacheHttpClient, 'downloadCache')
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const fileSize = 62915000
|
|
|
|
const getArchiveFileSizeInBytesMock = jest
|
|
|
|
.spyOn(cacheUtils, 'getArchiveFileSizeInBytes')
|
|
|
|
.mockReturnValue(fileSize)
|
|
|
|
|
|
|
|
const extractTarMock = jest.spyOn(tar, 'extractTar')
|
|
|
|
const unlinkFileMock = jest.spyOn(cacheUtils, 'unlinkFile')
|
|
|
|
|
2024-11-28 15:42:07 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key, [], options)
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
expect(cacheKey).toBe(key)
|
|
|
|
expect(getCacheVersionMock).toHaveBeenCalledWith(
|
|
|
|
paths,
|
|
|
|
compressionMethod,
|
|
|
|
false
|
|
|
|
)
|
|
|
|
expect(getCacheDownloadURLMock).toHaveBeenCalledWith({
|
|
|
|
key,
|
|
|
|
restoreKeys: [],
|
|
|
|
version: cacheVersion
|
|
|
|
})
|
|
|
|
expect(createTempDirectoryMock).toHaveBeenCalledTimes(1)
|
2024-11-28 12:56:37 +00:00
|
|
|
expect(downloadCacheMock).toHaveBeenCalledWith(
|
2024-11-25 13:47:51 +00:00
|
|
|
signedDownloadUrl,
|
2024-11-27 12:51:21 +00:00
|
|
|
archivePath,
|
2024-11-28 15:42:07 +00:00
|
|
|
options
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
expect(getArchiveFileSizeInBytesMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
expect(logInfoMock).toHaveBeenCalledWith(`Cache Size: ~60 MB (62915000 B)`)
|
|
|
|
|
|
|
|
expect(extractTarMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(extractTarMock).toHaveBeenCalledWith(archivePath, compressionMethod)
|
|
|
|
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
|
|
|
|
expect(compressionMethodMock).toHaveBeenCalledTimes(1)
|
2024-11-25 11:53:03 +00:00
|
|
|
})
|
2024-11-22 17:01:59 +00:00
|
|
|
|
2024-11-25 12:08:47 +00:00
|
|
|
test('restore with cache found for restore key', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const restoreKeys = ['node-']
|
|
|
|
const compressionMethod = CompressionMethod.Gzip
|
|
|
|
const signedDownloadUrl = 'https://blob-storage.local?signed=true'
|
|
|
|
const cacheVersion =
|
|
|
|
'b8b58e9bd7b1e8f83d9f05c7e06ea865ba44a0330e07a14db74ac74386677bed'
|
2024-11-28 15:42:07 +00:00
|
|
|
const options = {useAzureSdk: true} as DownloadOptions
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const getCacheVersionMock = jest.spyOn(cacheUtils, 'getCacheVersion')
|
|
|
|
getCacheVersionMock.mockReturnValue(cacheVersion)
|
|
|
|
|
|
|
|
const compressionMethodMock = jest.spyOn(cacheUtils, 'getCompressionMethod')
|
|
|
|
compressionMethodMock.mockReturnValue(Promise.resolve(compressionMethod))
|
|
|
|
|
|
|
|
const getCacheDownloadURLMock = jest.spyOn(
|
|
|
|
CacheServiceClientJSON.prototype,
|
|
|
|
'GetCacheEntryDownloadURL'
|
|
|
|
)
|
|
|
|
getCacheDownloadURLMock.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: true,
|
|
|
|
signedDownloadUrl,
|
|
|
|
matchedKey: restoreKeys[0]
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const tempPath = '/foo/bar'
|
|
|
|
|
|
|
|
const createTempDirectoryMock = jest.spyOn(cacheUtils, 'createTempDirectory')
|
|
|
|
createTempDirectoryMock.mockImplementation(async () => {
|
|
|
|
return Promise.resolve(tempPath)
|
|
|
|
})
|
|
|
|
|
|
|
|
const archivePath = path.join(tempPath, CacheFilename.Gzip)
|
2024-11-28 12:56:37 +00:00
|
|
|
const downloadCacheMock = jest.spyOn(cacheHttpClient, 'downloadCache')
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const fileSize = 142
|
|
|
|
const getArchiveFileSizeInBytesMock = jest
|
|
|
|
.spyOn(cacheUtils, 'getArchiveFileSizeInBytes')
|
|
|
|
.mockReturnValue(fileSize)
|
|
|
|
|
|
|
|
const extractTarMock = jest.spyOn(tar, 'extractTar')
|
|
|
|
const unlinkFileMock = jest.spyOn(cacheUtils, 'unlinkFile')
|
|
|
|
|
2024-11-28 15:42:07 +00:00
|
|
|
const cacheKey = await restoreCache(paths, key, restoreKeys, options)
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
expect(cacheKey).toBe(restoreKeys[0])
|
|
|
|
expect(getCacheVersionMock).toHaveBeenCalledWith(
|
|
|
|
paths,
|
|
|
|
compressionMethod,
|
|
|
|
false
|
|
|
|
)
|
|
|
|
expect(getCacheDownloadURLMock).toHaveBeenCalledWith({
|
|
|
|
key,
|
|
|
|
restoreKeys,
|
|
|
|
version: cacheVersion
|
|
|
|
})
|
|
|
|
expect(createTempDirectoryMock).toHaveBeenCalledTimes(1)
|
2024-11-28 12:56:37 +00:00
|
|
|
expect(downloadCacheMock).toHaveBeenCalledWith(
|
2024-11-25 13:47:51 +00:00
|
|
|
signedDownloadUrl,
|
2024-11-27 12:51:21 +00:00
|
|
|
archivePath,
|
2024-11-28 15:42:07 +00:00
|
|
|
options
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
expect(getArchiveFileSizeInBytesMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
expect(logInfoMock).toHaveBeenCalledWith(`Cache Size: ~0 MB (142 B)`)
|
|
|
|
|
|
|
|
expect(extractTarMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(extractTarMock).toHaveBeenCalledWith(archivePath, compressionMethod)
|
|
|
|
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledTimes(1)
|
|
|
|
expect(unlinkFileMock).toHaveBeenCalledWith(archivePath)
|
|
|
|
|
|
|
|
expect(compressionMethodMock).toHaveBeenCalledTimes(1)
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
|
|
|
|
2024-11-28 12:56:37 +00:00
|
|
|
test('restore with lookup only enabled', async () => {
|
2024-11-25 13:47:51 +00:00
|
|
|
const paths = ['node_modules']
|
|
|
|
const key = 'node-test'
|
|
|
|
const compressionMethod = CompressionMethod.Gzip
|
|
|
|
const signedDownloadUrl = 'https://blob-storage.local?signed=true'
|
|
|
|
const cacheVersion =
|
|
|
|
'd90f107aaeb22920dba0c637a23c37b5bc497b4dfa3b07fe3f79bf88a273c11b'
|
2024-11-28 15:42:07 +00:00
|
|
|
const options = {lookupOnly: true, useAzureSdk: true} as DownloadOptions
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const getCacheVersionMock = jest.spyOn(cacheUtils, 'getCacheVersion')
|
|
|
|
getCacheVersionMock.mockReturnValue(cacheVersion)
|
|
|
|
|
|
|
|
const compressionMethodMock = jest.spyOn(cacheUtils, 'getCompressionMethod')
|
|
|
|
compressionMethodMock.mockReturnValue(Promise.resolve(compressionMethod))
|
|
|
|
|
|
|
|
const getCacheDownloadURLMock = jest.spyOn(
|
|
|
|
CacheServiceClientJSON.prototype,
|
|
|
|
'GetCacheEntryDownloadURL'
|
|
|
|
)
|
|
|
|
getCacheDownloadURLMock.mockReturnValue(
|
|
|
|
Promise.resolve({
|
|
|
|
ok: true,
|
|
|
|
signedDownloadUrl,
|
|
|
|
matchedKey: key
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|
2024-11-25 13:47:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const createTempDirectoryMock = jest.spyOn(cacheUtils, 'createTempDirectory')
|
2024-11-28 12:56:37 +00:00
|
|
|
const downloadCacheMock = jest.spyOn(cacheHttpClient, 'downloadCache')
|
2024-11-25 13:47:51 +00:00
|
|
|
|
|
|
|
const cacheKey = await restoreCache(paths, key, undefined, options)
|
|
|
|
|
|
|
|
expect(cacheKey).toBe(key)
|
|
|
|
expect(getCacheVersionMock).toHaveBeenCalledWith(
|
|
|
|
paths,
|
|
|
|
compressionMethod,
|
|
|
|
false
|
|
|
|
)
|
|
|
|
expect(getCacheDownloadURLMock).toHaveBeenCalledWith({
|
|
|
|
key,
|
|
|
|
restoreKeys: [],
|
|
|
|
version: cacheVersion
|
|
|
|
})
|
|
|
|
expect(logInfoMock).toHaveBeenCalledWith('Lookup only - skipping download')
|
|
|
|
|
|
|
|
// creating a tempDir and downloading the cache are skipped
|
|
|
|
expect(createTempDirectoryMock).toHaveBeenCalledTimes(0)
|
2024-11-28 12:56:37 +00:00
|
|
|
expect(downloadCacheMock).toHaveBeenCalledTimes(0)
|
2024-11-25 12:08:47 +00:00
|
|
|
})
|