2026-07-08 14:45:00 +05:30
import {
jest ,
describe ,
it ,
expect ,
beforeEach ,
afterEach ,
beforeAll ,
afterAll
} from '@jest/globals' ;
2023-03-09 14:49:35 +02:00
import { mkdtempSync } from 'fs' ;
import { tmpdir } from 'os' ;
import { join } from 'path' ;
2021-08-20 01:19:35 +08:00
import * as fs from 'fs' ;
import * as os from 'os' ;
2026-07-08 14:45:00 +05:30
// Mock @actions/core before importing source modules that depend on it
jest . unstable_mockModule ( '@actions/core' , () => ({
info : jest.fn (),
warning : jest.fn (),
debug : jest.fn (),
error : jest.fn (),
notice : jest.fn (),
setFailed : jest.fn (),
setOutput : jest.fn (),
getInput : jest.fn (),
getBooleanInput : jest.fn (),
getMultilineInput : jest.fn (),
addPath : jest.fn (),
exportVariable : jest.fn (),
saveState : jest.fn (),
getState : jest.fn (),
setSecret : jest.fn (),
isDebug : jest.fn (() => false ),
startGroup : jest.fn (),
endGroup : jest.fn (),
group : jest.fn (( _name : string , fn : () => Promise < unknown >) => fn ()),
toPlatformPath : jest.fn (( p : string ) => p ),
toWin32Path : jest.fn (( p : string ) => p ),
toPosixPath : jest.fn (( p : string ) => p )
}));
jest . unstable_mockModule ( '@actions/cache' , () => ({
restoreCache : jest.fn (),
saveCache : jest.fn (),
isFeatureAvailable : jest.fn (),
ValidationError : class ValidationError extends Error {
constructor ( message : string ) {
super ( message );
this . name = 'ValidationError' ;
}
},
ReserveCacheError : class ReserveCacheError extends Error {
constructor ( message : string ) {
super ( message );
this . name = 'ReserveCacheError' ;
}
}
}));
jest . unstable_mockModule ( '@actions/glob' , () => ({
hashFiles : jest.fn (),
create : jest.fn ()
}));
// Dynamic imports after mocking
const core = await import ( '@actions/core' );
const cache = await import ( '@actions/cache' );
const glob = await import ( '@actions/glob' );
const { restore , save } = await import ( '../src/cache.js' );
2021-08-20 01:19:35 +08:00
describe ( 'dependency cache' , () => {
const ORIGINAL_RUNNER_OS = process . env [ 'RUNNER_OS' ];
const ORIGINAL_GITHUB_WORKSPACE = process . env [ 'GITHUB_WORKSPACE' ];
const ORIGINAL_CWD = process . cwd ();
let workspace : string ;
2026-07-08 14:45:00 +05:30
let spyInfo : any ;
let spyWarning : any ;
let spyDebug : any ;
let spySaveState : any ;
let spyCoreError : any ;
2021-08-20 01:19:35 +08:00
beforeEach (() => {
workspace = mkdtempSync ( join ( tmpdir (), 'setup-java-cache-' ));
switch ( os . platform ()) {
case 'darwin' :
process . env [ 'RUNNER_OS' ] = 'macOS' ;
break ;
case 'win32' :
process . env [ 'RUNNER_OS' ] = 'Windows' ;
break ;
case 'linux' :
process . env [ 'RUNNER_OS' ] = 'Linux' ;
break ;
default :
throw new Error ( `unknown platform: ${ os . platform () } ` );
}
process . chdir ( workspace );
// This hack is necessary because @actions/glob ignores files not in the GITHUB_WORKSPACE
// https://git.io/Jcxig
process . env [ 'GITHUB_WORKSPACE' ] = projectRoot ( workspace );
});
beforeEach (() => {
2026-07-08 14:45:00 +05:30
spyInfo = core . info as jest . Mock ;
2021-08-23 11:31:06 +03:00
spyInfo . mockImplementation (() => null );
2026-07-08 14:45:00 +05:30
spyWarning = core . warning as jest . Mock ;
2021-08-23 11:31:06 +03:00
spyWarning . mockImplementation (() => null );
2026-07-08 14:45:00 +05:30
spyDebug = core . debug as jest . Mock ;
2021-08-23 11:31:06 +03:00
spyDebug . mockImplementation (() => null );
2026-07-08 14:45:00 +05:30
spySaveState = core . saveState as jest . Mock ;
2021-08-23 11:31:06 +03:00
spySaveState . mockImplementation (() => null );
2026-04-13 23:14:45 +05:30
// Mock core.error to suppress error logs
2026-07-08 14:45:00 +05:30
spyCoreError = core . error as jest . Mock ;
2026-04-13 23:14:45 +05:30
spyCoreError . mockImplementation (() => {});
2021-08-20 01:19:35 +08:00
});
afterEach (() => {
process . chdir ( ORIGINAL_CWD );
process . env [ 'GITHUB_WORKSPACE' ] = ORIGINAL_GITHUB_WORKSPACE ;
process . env [ 'RUNNER_OS' ] = ORIGINAL_RUNNER_OS ;
resetState ();
2026-04-13 23:14:45 +05:30
jest . resetAllMocks ();
jest . clearAllMocks ();
jest . restoreAllMocks ();
2021-08-20 01:19:35 +08:00
});
describe ( 'restore' , () => {
2026-07-08 14:45:00 +05:30
let spyCacheRestore : any ;
let spyGlobHashFiles : any ;
2026-07-09 11:19:31 -04:00
let spySetOutput : any ;
2021-08-20 01:19:35 +08:00
beforeEach (() => {
2026-07-08 14:45:00 +05:30
spyCacheRestore = ( cache . restoreCache as any ). mockImplementation (
( paths : string [], primaryKey : string ) => Promise . resolve ( undefined )
);
spyGlobHashFiles = glob . hashFiles as jest . Mock ;
spyGlobHashFiles . mockResolvedValue ( 'hash-stub' );
2026-07-09 11:19:31 -04:00
spySetOutput = core . setOutput as jest . Mock ;
spySetOutput . mockImplementation (() => null );
2021-08-23 11:31:06 +03:00
spyWarning . mockImplementation (() => null );
2021-08-20 01:19:35 +08:00
});
it ( 'throws error if unsupported package manager specified' , () => {
2023-11-23 00:43:14 +09:00
return expect ( restore ( 'ant' , '' )). rejects . toThrow (
2023-03-09 14:49:35 +02:00
'unknown package manager specified: ant'
);
2021-08-20 01:19:35 +08:00
});
describe ( 'for maven' , () => {
2026-07-08 10:07:54 +01:00
it ( 'throws error if no pom.xml, maven-wrapper.properties, or extensions.xml found' , async () => {
2026-07-08 14:45:00 +05:30
spyGlobHashFiles . mockResolvedValue ( '' );
2023-11-23 00:43:14 +09:00
await expect ( restore ( 'maven' , '' )). rejects . toThrow (
2021-08-20 01:19:35 +08:00
`No file in ${ projectRoot (
workspace
2026-07-08 10:07:54 +01:00
) } matched to [**/pom.xml,**/.mvn/wrapper/maven-wrapper.properties,**/.mvn/extensions.xml], make sure you have checked out the target repository`
2021-08-20 01:19:35 +08:00
);
});
2026-06-22 20:15:18 +05:30
it ( 'downloads cache based on pom.xml' , async () => {
2021-08-20 01:19:35 +08:00
createFile ( join ( workspace , 'pom.xml' ));
2023-11-23 00:43:14 +09:00
await restore ( 'maven' , '' );
2026-06-22 20:15:18 +05:30
expect ( spyCacheRestore ). toHaveBeenCalledWith (
[
join ( os . homedir (), '.m2' , 'repository' ),
join ( os . homedir (), '.m2' , 'wrapper' , 'dists' )
],
expect . any ( String )
);
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
2026-07-08 10:07:54 +01:00
'**/pom.xml\n**/.mvn/wrapper/maven-wrapper.properties\n**/.mvn/extensions.xml'
2026-06-22 20:15:18 +05:30
);
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'maven cache is not found' );
});
2026-07-09 11:19:31 -04:00
it ( 'sets the cache-primary-key output' , async () => {
createFile ( join ( workspace , 'pom.xml' ));
await restore ( 'maven' , '' );
expect ( spySetOutput ). toHaveBeenCalledWith (
'cache-primary-key' ,
expect . stringContaining ( 'setup-java-' )
);
});
2026-06-22 20:15:18 +05:30
it ( 'downloads cache based on maven-wrapper.properties' , async () => {
createDirectory ( join ( workspace , '.mvn' ));
createDirectory ( join ( workspace , '.mvn' , 'wrapper' ));
createFile (
join ( workspace , '.mvn' , 'wrapper' , 'maven-wrapper.properties' )
);
await restore ( 'maven' , '' );
expect ( spyCacheRestore ). toHaveBeenCalledWith (
[
join ( os . homedir (), '.m2' , 'repository' ),
join ( os . homedir (), '.m2' , 'wrapper' , 'dists' )
],
expect . any ( String )
);
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
2026-07-08 10:07:54 +01:00
'**/pom.xml\n**/.mvn/wrapper/maven-wrapper.properties\n**/.mvn/extensions.xml'
);
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'maven cache is not found' );
});
it ( 'downloads cache based on extensions.xml' , async () => {
createDirectory ( join ( workspace , '.mvn' ));
createFile ( join ( workspace , '.mvn' , 'extensions.xml' ));
await restore ( 'maven' , '' );
expect ( spyCacheRestore ). toHaveBeenCalledWith (
[
join ( os . homedir (), '.m2' , 'repository' ),
join ( os . homedir (), '.m2' , 'wrapper' , 'dists' )
],
expect . any ( String )
);
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/pom.xml\n**/.mvn/wrapper/maven-wrapper.properties\n**/.mvn/extensions.xml'
2026-06-22 20:15:18 +05:30
);
2023-03-09 14:49:35 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'maven cache is not found' );
2021-08-20 01:19:35 +08:00
});
});
describe ( 'for gradle' , () => {
it ( 'throws error if no build.gradle found' , async () => {
2026-07-08 14:45:00 +05:30
spyGlobHashFiles . mockResolvedValue ( '' );
2023-11-23 00:43:14 +09:00
await expect ( restore ( 'gradle' , '' )). rejects . toThrow (
2021-08-20 01:19:35 +08:00
`No file in ${ projectRoot (
workspace
2023-07-21 13:38:46 +02:00
) } matched to [**/*.gradle*,**/gradle-wrapper.properties,buildSrc/**/Versions.kt,buildSrc/**/Dependencies.kt,gradle/*.versions.toml,**/versions.properties], make sure you have checked out the target repository`
2021-08-20 01:19:35 +08:00
);
});
it ( 'downloads cache based on build.gradle' , async () => {
createFile ( join ( workspace , 'build.gradle' ));
2023-11-23 00:43:14 +09:00
await restore ( 'gradle' , '' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheRestore ). toHaveBeenCalled ();
2023-11-23 00:43:14 +09:00
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties'
);
2023-03-09 14:49:35 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
2021-08-20 01:19:35 +08:00
});
it ( 'downloads cache based on build.gradle.kts' , async () => {
createFile ( join ( workspace , 'build.gradle.kts' ));
2023-11-23 00:43:14 +09:00
await restore ( 'gradle' , '' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheRestore ). toHaveBeenCalled ();
2023-11-23 00:43:14 +09:00
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties'
);
2023-03-09 14:49:35 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
2022-10-18 00:34:41 +08:00
});
it ( 'downloads cache based on libs.versions.toml' , async () => {
createDirectory ( join ( workspace , 'gradle' ));
createFile ( join ( workspace , 'gradle' , 'libs.versions.toml' ));
2023-11-23 00:43:14 +09:00
await restore ( 'gradle' , '' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheRestore ). toHaveBeenCalled ();
2023-11-23 00:43:14 +09:00
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties'
);
2023-03-09 14:49:35 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
2021-08-20 01:19:35 +08:00
});
2023-11-23 00:43:14 +09:00
it ( 'downloads cache based on buildSrc/Versions.kt' , async () => {
createDirectory ( join ( workspace , 'buildSrc' ));
createFile ( join ( workspace , 'buildSrc' , 'Versions.kt' ));
2022-01-12 14:43:15 +01:00
2023-11-23 00:43:14 +09:00
await restore ( 'gradle' , '' );
expect ( spyCacheRestore ). toHaveBeenCalled ();
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties'
);
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
});
2022-01-12 14:43:15 +01:00
});
2022-04-20 16:26:27 +02:00
describe ( 'for sbt' , () => {
it ( 'throws error if no build.sbt found' , async () => {
2026-07-08 14:45:00 +05:30
spyGlobHashFiles . mockResolvedValue ( '' );
2023-11-23 00:43:14 +09:00
await expect ( restore ( 'sbt' , '' )). rejects . toThrow (
2022-04-20 16:26:27 +02:00
`No file in ${ projectRoot (
workspace
2023-04-10 10:56:26 +03:00
) } matched to [**/*.sbt,**/project/build.properties,**/project/**.scala,**/project/**.sbt], make sure you have checked out the target repository`
2022-04-20 16:26:27 +02:00
);
});
it ( 'downloads cache' , async () => {
createFile ( join ( workspace , 'build.sbt' ));
2023-11-23 00:43:14 +09:00
await restore ( 'sbt' , '' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheRestore ). toHaveBeenCalled ();
2023-11-23 00:43:14 +09:00
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.sbt\n**/project/build.properties\n**/project/**.scala\n**/project/**.sbt'
);
2023-03-09 14:49:35 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'sbt cache is not found' );
2022-04-20 16:26:27 +02:00
});
2023-04-10 10:56:26 +03:00
it ( 'detects scala and sbt changes under **/project/ folder' , async () => {
2026-07-08 14:45:00 +05:30
let callCount = 0 ;
spyGlobHashFiles . mockImplementation ( async () => {
callCount ++ ;
// Return same hash for first two calls, different for third
return callCount <= 2 ? 'hash-v1' : 'hash-v2' ;
});
2023-04-10 10:56:26 +03:00
createFile ( join ( workspace , 'build.sbt' ));
createDirectory ( join ( workspace , 'project' ));
createFile ( join ( workspace , 'project/DependenciesV1.scala' ));
2023-11-23 00:43:14 +09:00
await restore ( 'sbt' , '' );
2023-04-10 10:56:26 +03:00
const firstCall = spySaveState . mock . calls . toString ();
spySaveState . mockClear ();
2023-11-23 00:43:14 +09:00
await restore ( 'sbt' , '' );
2023-04-10 10:56:26 +03:00
const secondCall = spySaveState . mock . calls . toString ();
// Make sure multiple restores produce the same cache
expect ( firstCall ). toBe ( secondCall );
spySaveState . mockClear ();
createFile ( join ( workspace , 'project/DependenciesV2.scala' ));
2023-11-23 00:43:14 +09:00
await restore ( 'sbt' , '' );
2023-04-10 10:56:26 +03:00
const thirdCall = spySaveState . mock . calls . toString ();
expect ( firstCall ). not . toBe ( thirdCall );
});
2022-04-20 16:26:27 +02:00
});
2023-07-21 13:38:46 +02:00
it ( 'downloads cache based on versions.properties' , async () => {
createFile ( join ( workspace , 'versions.properties' ));
2023-11-23 00:43:14 +09:00
await restore ( 'gradle' , '' );
2023-07-21 13:38:46 +02:00
expect ( spyCacheRestore ). toHaveBeenCalled ();
2023-11-23 00:43:14 +09:00
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties'
);
2023-07-21 13:38:46 +02:00
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
});
2023-11-23 00:43:14 +09:00
describe ( 'cache-dependency-path' , () => {
it ( 'throws error if no matching dependency file found' , async () => {
2026-07-08 14:45:00 +05:30
spyGlobHashFiles . mockResolvedValue ( '' );
2023-11-23 00:43:14 +09:00
createFile ( join ( workspace , 'build.gradle.kts' ));
await expect (
restore ( 'gradle' , 'sub-project/**/build.gradle.kts' )
). rejects . toThrow (
`No file in ${ projectRoot (
workspace
) } matched to [sub-project/**/build.gradle.kts], make sure you have checked out the target repository`
);
});
it ( 'downloads cache based on the specified pattern' , async () => {
createFile ( join ( workspace , 'build.gradle.kts' ));
createDirectory ( join ( workspace , 'sub-project1' ));
createFile ( join ( workspace , 'sub-project1' , 'build.gradle.kts' ));
createDirectory ( join ( workspace , 'sub-project2' ));
createFile ( join ( workspace , 'sub-project2' , 'build.gradle.kts' ));
await restore ( 'gradle' , 'build.gradle.kts' );
expect ( spyCacheRestore ). toHaveBeenCalled ();
expect ( spyGlobHashFiles ). toHaveBeenCalledWith ( 'build.gradle.kts' );
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
await restore ( 'gradle' , 'sub-project1/**/*.gradle*\n' );
expect ( spyCacheRestore ). toHaveBeenCalled ();
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'sub-project1/**/*.gradle*'
);
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
await restore ( 'gradle' , '*.gradle*\nsub-project2/**/*.gradle*\n' );
expect ( spyCacheRestore ). toHaveBeenCalled ();
expect ( spyGlobHashFiles ). toHaveBeenCalledWith (
'*.gradle*\nsub-project2/**/*.gradle*'
);
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith ( 'gradle cache is not found' );
});
});
2021-08-20 01:19:35 +08:00
});
describe ( 'save' , () => {
2026-07-08 14:45:00 +05:30
let spyCacheSave : any ;
2021-08-20 01:19:35 +08:00
beforeEach (() => {
2026-07-08 14:45:00 +05:30
spyCacheSave = ( cache . saveCache as any ). mockImplementation (
( paths : string [], key : string ) => Promise . resolve ( 0 )
);
2021-08-23 11:31:06 +03:00
spyWarning . mockImplementation (() => null );
2021-08-20 01:19:35 +08:00
});
it ( 'throws error if unsupported package manager specified' , () => {
2023-03-09 14:49:35 +02:00
return expect ( save ( 'ant' )). rejects . toThrow (
'unknown package manager specified: ant'
);
2021-08-20 01:19:35 +08:00
});
2022-07-04 22:48:10 +02:00
it ( 'save with -1 cacheId , should not fail workflow' , async () => {
spyCacheSave . mockImplementation (() => Promise . resolve ( - 1 ));
createStateForMissingBuildFile ();
await save ( 'maven' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
2026-06-21 22:16:01 -10:00
expect ( spyInfo ). not . toHaveBeenCalledWith (
2023-03-09 14:49:35 +02:00
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2026-06-21 22:16:01 -10:00
expect ( spyDebug ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache was not saved for the key:.*/ )
);
2022-07-04 22:48:10 +02:00
});
it ( 'saves with error from toolkit, should fail workflow' , async () => {
spyCacheSave . mockImplementation (() =>
Promise . reject ( new cache . ValidationError ( 'Validation failed' ))
);
createStateForMissingBuildFile ();
expect . assertions ( 1 );
2023-03-09 14:49:35 +02:00
await expect ( save ( 'maven' )). rejects . toEqual (
new cache . ValidationError ( 'Validation failed' )
);
2022-07-04 22:48:10 +02:00
});
2021-08-20 01:19:35 +08:00
describe ( 'for maven' , () => {
it ( 'uploads cache even if no pom.xml found' , async () => {
createStateForMissingBuildFile ();
await save ( 'maven' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
2021-08-20 01:19:35 +08:00
});
it ( 'does not upload cache if no restore run before' , async () => {
createFile ( join ( workspace , 'pom.xml' ));
await save ( 'maven' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). not . toHaveBeenCalled ();
expect ( spyWarning ). toHaveBeenCalledWith (
'Error retrieving key from state.'
);
2021-08-20 01:19:35 +08:00
});
it ( 'uploads cache' , async () => {
createFile ( join ( workspace , 'pom.xml' ));
createStateForSuccessfulRestore ();
await save ( 'maven' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2021-08-20 01:19:35 +08:00
});
});
describe ( 'for gradle' , () => {
it ( 'uploads cache even if no build.gradle found' , async () => {
createStateForMissingBuildFile ();
await save ( 'gradle' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
2021-08-20 01:19:35 +08:00
});
it ( 'does not upload cache if no restore run before' , async () => {
createFile ( join ( workspace , 'build.gradle' ));
await save ( 'gradle' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). not . toHaveBeenCalled ();
expect ( spyWarning ). toHaveBeenCalledWith (
'Error retrieving key from state.'
);
2021-08-20 01:19:35 +08:00
});
it ( 'uploads cache based on build.gradle' , async () => {
createFile ( join ( workspace , 'build.gradle' ));
createStateForSuccessfulRestore ();
await save ( 'gradle' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2021-08-20 01:19:35 +08:00
});
it ( 'uploads cache based on build.gradle.kts' , async () => {
createFile ( join ( workspace , 'build.gradle.kts' ));
createStateForSuccessfulRestore ();
2022-01-12 14:43:15 +01:00
await save ( 'gradle' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2022-01-12 14:43:15 +01:00
});
it ( 'uploads cache based on buildSrc/Versions.kt' , async () => {
createDirectory ( join ( workspace , 'buildSrc' ));
createFile ( join ( workspace , 'buildSrc' , 'Versions.kt' ));
createStateForSuccessfulRestore ();
2021-08-20 01:19:35 +08:00
await save ( 'gradle' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2021-08-20 01:19:35 +08:00
});
});
2022-04-20 16:26:27 +02:00
describe ( 'for sbt' , () => {
it ( 'uploads cache even if no build.sbt found' , async () => {
createStateForMissingBuildFile ();
await save ( 'sbt' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
2022-04-20 16:26:27 +02:00
});
it ( 'does not upload cache if no restore run before' , async () => {
createFile ( join ( workspace , 'build.sbt' ));
await save ( 'sbt' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). not . toHaveBeenCalled ();
expect ( spyWarning ). toHaveBeenCalledWith (
'Error retrieving key from state.'
);
2022-04-20 16:26:27 +02:00
});
it ( 'uploads cache' , async () => {
createFile ( join ( workspace , 'build.sbt' ));
createStateForSuccessfulRestore ();
await save ( 'sbt' );
2023-03-09 14:49:35 +02:00
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
2022-04-20 16:26:27 +02:00
});
2023-07-21 13:38:46 +02:00
it ( 'uploads cache based on versions.properties' , async () => {
createFile ( join ( workspace , 'versions.properties' ));
createStateForSuccessfulRestore ();
await save ( 'gradle' );
expect ( spyCacheSave ). toHaveBeenCalled ();
expect ( spyWarning ). not . toHaveBeenCalled ();
expect ( spyInfo ). toHaveBeenCalledWith (
expect . stringMatching ( /^Cache saved with the key:.*/ )
);
});
2022-04-20 16:26:27 +02:00
});
2021-08-20 01:19:35 +08:00
});
});
function resetState() {
2026-07-08 14:45:00 +05:30
( core . getState as jest . Mock ). mockReset ();
2021-08-20 01:19:35 +08:00
}
/**
* Create states to emulate a restore process without build file.
*/
function createStateForMissingBuildFile() {
2026-07-08 14:45:00 +05:30
( core . getState as jest . Mock < any >). mockImplementation (( name : any ) => {
2021-08-20 01:19:35 +08:00
switch ( name ) {
case 'cache-primary-key' :
return 'setup-java-cache-' ;
default :
return '' ;
}
});
}
/**
* Create states to emulate a successful restore process.
*/
function createStateForSuccessfulRestore() {
2026-07-08 14:45:00 +05:30
( core . getState as jest . Mock < any >). mockImplementation (( name : any ) => {
2021-08-20 01:19:35 +08:00
switch ( name ) {
case 'cache-primary-key' :
return 'setup-java-cache-primary-key' ;
case 'cache-matched-key' :
return 'setup-java-cache-matched-key' ;
default :
return '' ;
}
});
}
function createFile ( path : string ) {
core . info ( `created a file at ${ path } ` );
fs . writeFileSync ( path , '' );
}
2022-01-12 14:43:15 +01:00
function createDirectory ( path : string ) {
core . info ( `created a directory at ${ path } ` );
fs . mkdirSync ( path );
}
2021-08-20 01:19:35 +08:00
function projectRoot ( workspace : string ) : string {
if ( os . platform () === 'darwin' ) {
return `/private ${ workspace } ` ;
} else {
return workspace ;
}
}