mirror of
https://github.com/actions/setup-python.git
synced 2025-07-18 10:18:21 +02:00
disable-auto-overwriting
This commit is contained in:
parent
532b046aaf
commit
bf549696cd
5 changed files with 105 additions and 71 deletions
|
@ -33,45 +33,26 @@ describe('cacheDependencies', () => {
|
|||
process.env.GITHUB_WORKSPACE = '/github/workspace';
|
||||
|
||||
mockedCore.getInput.mockReturnValue('nested/deps.lock');
|
||||
|
||||
// Simulate file exists by resolving access without error
|
||||
mockedFsPromises.access.mockImplementation(async p => {
|
||||
const pathStr = typeof p === 'string' ? p : p.toString();
|
||||
if (pathStr === '/github/action/nested/deps.lock') {
|
||||
return Promise.resolve();
|
||||
}
|
||||
// Simulate directory doesn't exist to test mkdir
|
||||
if (pathStr === path.dirname('/github/workspace/nested/deps.lock')) {
|
||||
return Promise.reject(new Error('no dir'));
|
||||
}
|
||||
return Promise.resolve();
|
||||
});
|
||||
|
||||
// Simulate mkdir success
|
||||
mockedFsPromises.mkdir.mockResolvedValue(undefined);
|
||||
|
||||
// Simulate copyFile success
|
||||
mockedFsPromises.copyFile.mockResolvedValue(undefined);
|
||||
mockedCore.getBooleanInput.mockReturnValue(false);
|
||||
|
||||
mockedGetCacheDistributor.mockReturnValue({restoreCache: mockRestoreCache});
|
||||
|
||||
mockedFsPromises.mkdir.mockResolvedValue(undefined);
|
||||
mockedFsPromises.copyFile.mockResolvedValue(undefined);
|
||||
});
|
||||
|
||||
it('copies the dependency file and resolves the path with directory structure', async () => {
|
||||
it('copies the file if source exists and target does not', async () => {
|
||||
mockedFsPromises.access.mockImplementation(async filePath => {
|
||||
if (filePath === '/github/action/nested/deps.lock')
|
||||
return Promise.resolve(); // source
|
||||
throw new Error('target does not exist'); // target
|
||||
});
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
const sourcePath = path.resolve('/github/action', 'nested/deps.lock');
|
||||
const targetPath = path.resolve('/github/workspace', 'nested/deps.lock');
|
||||
const sourcePath = '/github/action/nested/deps.lock';
|
||||
const targetPath = '/github/workspace/nested/deps.lock';
|
||||
|
||||
expect(mockedFsPromises.access).toHaveBeenCalledWith(
|
||||
sourcePath,
|
||||
fs.constants.F_OK
|
||||
);
|
||||
expect(mockedFsPromises.mkdir).toHaveBeenCalledWith(
|
||||
path.dirname(targetPath),
|
||||
{
|
||||
recursive: true
|
||||
}
|
||||
);
|
||||
expect(mockedFsPromises.copyFile).toHaveBeenCalledWith(
|
||||
sourcePath,
|
||||
targetPath
|
||||
|
@ -79,15 +60,45 @@ describe('cacheDependencies', () => {
|
|||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
`Copied ${sourcePath} to ${targetPath}`
|
||||
);
|
||||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
`Resolved cache-dependency-path: nested/deps.lock`
|
||||
);
|
||||
expect(mockRestoreCache).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('warns if the dependency file does not exist', async () => {
|
||||
// Simulate file does not exist by rejecting access
|
||||
mockedFsPromises.access.mockRejectedValue(new Error('file not found'));
|
||||
it('overwrites file if target exists and overwrite is true', async () => {
|
||||
mockedCore.getBooleanInput.mockReturnValue(true);
|
||||
mockedFsPromises.access.mockResolvedValue(); // both source and target exist
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
const sourcePath = '/github/action/nested/deps.lock';
|
||||
const targetPath = '/github/workspace/nested/deps.lock';
|
||||
|
||||
expect(mockedFsPromises.copyFile).toHaveBeenCalledWith(
|
||||
sourcePath,
|
||||
targetPath
|
||||
);
|
||||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
`Overwrote ${sourcePath} to ${targetPath}`
|
||||
);
|
||||
});
|
||||
|
||||
it('skips copy if file exists and overwrite is false', async () => {
|
||||
mockedCore.getBooleanInput.mockReturnValue(false);
|
||||
mockedFsPromises.access.mockResolvedValue(); // both source and target exist
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
expect(mockedFsPromises.copyFile).not.toHaveBeenCalled();
|
||||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
expect.stringContaining('Skipped copying')
|
||||
);
|
||||
});
|
||||
|
||||
it('logs warning if source file does not exist', async () => {
|
||||
mockedFsPromises.access.mockImplementation(async filePath => {
|
||||
if (filePath === '/github/action/nested/deps.lock') {
|
||||
throw new Error('source not found');
|
||||
}
|
||||
return Promise.resolve(); // fallback for others
|
||||
});
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
|
@ -95,11 +106,15 @@ describe('cacheDependencies', () => {
|
|||
expect.stringContaining('does not exist')
|
||||
);
|
||||
expect(mockedFsPromises.copyFile).not.toHaveBeenCalled();
|
||||
expect(mockRestoreCache).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('warns if file copy fails', async () => {
|
||||
// Simulate copyFile failure
|
||||
it('logs warning if copyFile fails', async () => {
|
||||
mockedFsPromises.access.mockImplementation(async filePath => {
|
||||
if (filePath === '/github/action/nested/deps.lock')
|
||||
return Promise.resolve();
|
||||
throw new Error('target does not exist');
|
||||
});
|
||||
|
||||
mockedFsPromises.copyFile.mockRejectedValue(new Error('copy failed'));
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
@ -107,43 +122,30 @@ describe('cacheDependencies', () => {
|
|||
expect(mockedCore.warning).toHaveBeenCalledWith(
|
||||
expect.stringContaining('Failed to copy file')
|
||||
);
|
||||
expect(mockRestoreCache).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('skips path logic if no input is provided', async () => {
|
||||
it('skips everything if cache-dependency-path is not provided', async () => {
|
||||
mockedCore.getInput.mockReturnValue('');
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
expect(mockedFsPromises.copyFile).not.toHaveBeenCalled();
|
||||
expect(mockedCore.warning).not.toHaveBeenCalled();
|
||||
expect(mockRestoreCache).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('does not copy if dependency file is already inside the workspace but still sets resolved path', async () => {
|
||||
// Simulate cacheDependencyPath inside workspace
|
||||
it('does not copy if source and target are the same path', async () => {
|
||||
mockedCore.getInput.mockReturnValue('deps.lock');
|
||||
process.env.GITHUB_ACTION_PATH = '/github/workspace';
|
||||
process.env.GITHUB_WORKSPACE = '/github/workspace';
|
||||
|
||||
// Override sourcePath and targetPath to be equal
|
||||
const actionPath = '/github/workspace'; // same path for action and workspace
|
||||
process.env.GITHUB_ACTION_PATH = actionPath;
|
||||
process.env.GITHUB_WORKSPACE = actionPath;
|
||||
|
||||
// access resolves to simulate file exists
|
||||
mockedFsPromises.access.mockResolvedValue();
|
||||
|
||||
await cacheDependencies('pip', '3.12');
|
||||
|
||||
const sourcePath = path.resolve(actionPath, 'deps.lock');
|
||||
const targetPath = sourcePath; // same path
|
||||
|
||||
const sourcePath = '/github/workspace/deps.lock';
|
||||
expect(mockedFsPromises.copyFile).not.toHaveBeenCalled();
|
||||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
`Dependency file is already inside the workspace: ${sourcePath}`
|
||||
);
|
||||
expect(mockedCore.info).toHaveBeenCalledWith(
|
||||
`Resolved cache-dependency-path: deps.lock`
|
||||
);
|
||||
expect(mockRestoreCache).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue