2020-05-15 00:27:38 +03:00
import * as cache from "@actions/cache" ;
2019-11-15 01:14:16 +03:00
import * as core from "@actions/core" ;
2020-05-15 00:27:38 +03:00
import { Events , Inputs , RefKey } from "../src/constants" ;
2019-11-15 01:14:16 +03: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-15 00:27:38 +03:00
jest . mock ( "@actions/cache" ) ;
2019-12-14 01:24:37 +03:00
jest . mock ( "../src/utils/actionUtils" ) ;
2019-11-15 01:14:16 +03:00
beforeAll ( ( ) = > {
jest . spyOn ( core , "getInput" ) . mockImplementation ( ( name , options ) = > {
return jest . requireActual ( "@actions/core" ) . getInput ( name , options ) ;
} ) ;
2022-12-21 17:08:44 +03:00
jest . spyOn ( core , "getState" ) . mockImplementation ( name = > {
return jest . requireActual ( "@actions/core" ) . getState ( name ) ;
2019-11-15 01:14:16 +03:00
} ) ;
2020-06-02 18:21:03 +03:00
jest . spyOn ( actionUtils , "getInputAsArray" ) . mockImplementation (
( name , options ) = > {
return jest
. requireActual ( "../src/utils/actionUtils" )
. getInputAsArray ( name , options ) ;
}
) ;
2020-10-02 17:59:55 +03:00
jest . spyOn ( actionUtils , "getInputAsInt" ) . mockImplementation (
( name , options ) = > {
return jest
. requireActual ( "../src/utils/actionUtils" )
. getInputAsInt ( name , options ) ;
}
) ;
2023-01-05 14:19:13 +03:00
jest . spyOn ( actionUtils , "getInputAsBool" ) . mockImplementation (
( name , options ) = > {
return jest
. requireActual ( "../src/utils/actionUtils" )
. getInputAsBool ( name , options ) ;
}
) ;
2019-11-15 01:14:16 +03:00
jest . spyOn ( actionUtils , "isExactKeyMatch" ) . mockImplementation (
( key , cacheResult ) = > {
return jest
. requireActual ( "../src/utils/actionUtils" )
. isExactKeyMatch ( key , cacheResult ) ;
}
) ;
2019-11-21 22:37:54 +03:00
jest . spyOn ( actionUtils , "isValidEvent" ) . mockImplementation ( ( ) = > {
const actualUtils = jest . requireActual ( "../src/utils/actionUtils" ) ;
return actualUtils . isValidEvent ( ) ;
} ) ;
2019-11-15 01:14:16 +03:00
} ) ;
2019-11-21 22:37:54 +03:00
beforeEach ( ( ) = > {
process . env [ Events . Key ] = Events . Push ;
2020-04-17 22:46:46 +03:00
process . env [ RefKey ] = "refs/heads/feature-branch" ;
2020-09-29 18:23:21 +03:00
jest . spyOn ( actionUtils , "isGhes" ) . mockImplementation ( ( ) = > false ) ;
2022-03-30 13:16:49 +03:00
jest . spyOn ( actionUtils , "isCacheFeatureAvailable" ) . mockImplementation (
( ) = > true
) ;
2019-11-21 22:37:54 +03:00
} ) ;
2019-11-15 01:14:16 +03:00
afterEach ( ( ) = > {
testUtils . clearInputs ( ) ;
2019-11-21 22:37:54 +03:00
delete process . env [ Events . Key ] ;
2020-04-17 22:46:46 +03:00
delete process . env [ RefKey ] ;
2019-11-21 22:37:54 +03:00
} ) ;
2022-12-21 17:08:44 +03:00
test ( "save with valid inputs uploads a cache" , async ( ) = > {
2019-11-15 01:14:16 +03:00
const failedMock = jest . spyOn ( core , "setFailed" ) ;
const primaryKey = "Linux-node-bb828da54c148048dd17899ba9fda624811cfb43" ;
2020-05-15 00:27:38 +03:00
const savedCacheKey = "Linux-node-" ;
2019-11-15 01:14:16 +03:00
jest . spyOn ( core , "getState" )
// Cache Entry State
. mockImplementationOnce ( ( ) = > {
return primaryKey ;
2020-01-06 21:05:50 +03:00
} )
// Cache Key State
2019-11-15 01:14:16 +03:00
. mockImplementationOnce ( ( ) = > {
2020-05-15 00:27:38 +03:00
return savedCacheKey ;
2019-11-15 01:14:16 +03:00
} ) ;
const inputPath = "node_modules" ;
testUtils . setInput ( Inputs . Path , inputPath ) ;
2020-10-02 17:59:55 +03:00
testUtils . setInput ( Inputs . UploadChunkSize , "4000000" ) ;
2019-11-15 01:14:16 +03:00
2020-01-06 21:05:50 +03:00
const cacheId = 4 ;
2020-05-15 00:27:38 +03:00
const saveCacheMock = jest
. spyOn ( cache , "saveCache" )
2020-01-06 21:05:50 +03:00
. mockImplementationOnce ( ( ) = > {
return Promise . resolve ( cacheId ) ;
} ) ;
2019-11-15 01:14:16 +03:00
await run ( ) ;
expect ( saveCacheMock ) . toHaveBeenCalledTimes ( 1 ) ;
2023-01-05 14:19:13 +03:00
expect ( saveCacheMock ) . toHaveBeenCalledWith (
[ inputPath ] ,
primaryKey ,
{
uploadChunkSize : 4000000
} ,
false
) ;
2019-11-15 01:14:16 +03:00
expect ( failedMock ) . toHaveBeenCalledTimes ( 0 ) ;
} ) ;