mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
79592f848a
This reverts commit 0b287c763d
.
243 lines
7.4 KiB
TypeScript
243 lines
7.4 KiB
TypeScript
import { exec as _exec } from 'child_process';
|
|
import _fs from 'fs-extra';
|
|
import { join } from 'upath';
|
|
import { envMock, mockExecAll } from '../../../test/exec-util';
|
|
import { git, mocked } from '../../../test/util';
|
|
import { setAdminConfig } from '../../config/admin';
|
|
import type { RepoAdminConfig } from '../../config/types';
|
|
import * as _datasource from '../../datasource';
|
|
import { setExecConfig } from '../../util/exec';
|
|
import { BinarySource } from '../../util/exec/common';
|
|
import * as _env from '../../util/exec/env';
|
|
import type { StatusResult } from '../../util/git';
|
|
import type { UpdateArtifactsConfig } from '../types';
|
|
import { updateArtifacts } from '.';
|
|
|
|
jest.mock('fs-extra');
|
|
jest.mock('child_process');
|
|
jest.mock('../../util/exec/env');
|
|
jest.mock('../../util/git');
|
|
jest.mock('../../platform');
|
|
jest.mock('../../datasource');
|
|
|
|
const fs: jest.Mocked<typeof _fs> = _fs as any;
|
|
const exec: jest.Mock<typeof _exec> = _exec as any;
|
|
const env = mocked(_env);
|
|
const datasource = mocked(_datasource);
|
|
|
|
delete process.env.CP_HOME_DIR;
|
|
|
|
const config: UpdateArtifactsConfig = {};
|
|
|
|
const adminConfig: RepoAdminConfig = {
|
|
localDir: join('/tmp/github/some/repo'),
|
|
cacheDir: join('/tmp/cache'),
|
|
};
|
|
|
|
describe('.updateArtifacts()', () => {
|
|
beforeEach(async () => {
|
|
jest.resetAllMocks();
|
|
env.getChildProcessEnv.mockReturnValue(envMock.basic);
|
|
|
|
await setExecConfig(adminConfig as never);
|
|
setAdminConfig(adminConfig);
|
|
|
|
datasource.getPkgReleases.mockResolvedValue({
|
|
releases: [
|
|
{ version: '1.2.0' },
|
|
{ version: '1.2.1' },
|
|
{ version: '1.2.2' },
|
|
{ version: '1.2.3' },
|
|
{ version: '1.2.4' },
|
|
{ version: '1.2.5' },
|
|
],
|
|
});
|
|
});
|
|
afterEach(() => {
|
|
setAdminConfig();
|
|
});
|
|
it('returns null if no Podfile.lock found', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toBeNull();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns null if no updatedDeps were provided', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: [],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toBeNull();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns null for invalid local directory', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
setAdminConfig({
|
|
localDir: '',
|
|
});
|
|
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config: {},
|
|
})
|
|
).toBeNull();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns null if updatedDeps is empty', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: [],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toBeNull();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns null if unchanged', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
fs.readFile.mockResolvedValueOnce('Current Podfile' as any);
|
|
git.getRepoStatus.mockResolvedValueOnce({
|
|
modified: [],
|
|
} as StatusResult);
|
|
fs.readFile.mockResolvedValueOnce('Current Podfile' as any);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toBeNull();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns updated Podfile', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
await setExecConfig({ ...adminConfig, binarySource: BinarySource.Docker });
|
|
fs.readFile.mockResolvedValueOnce('Old Podfile' as any);
|
|
git.getRepoStatus.mockResolvedValueOnce({
|
|
modified: ['Podfile.lock'],
|
|
} as StatusResult);
|
|
fs.readFile.mockResolvedValueOnce('New Podfile' as any);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: 'plugin "cocoapods-acknowledgements"',
|
|
config,
|
|
})
|
|
).toMatchSnapshot();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns updated Podfile and Pods files', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
await setExecConfig({ ...adminConfig, binarySource: BinarySource.Docker });
|
|
fs.readFile.mockResolvedValueOnce('Old Manifest.lock' as any);
|
|
fs.readFile.mockResolvedValueOnce('New Podfile' as any);
|
|
fs.readFile.mockResolvedValueOnce('Pods manifest' as any);
|
|
git.getRepoStatus.mockResolvedValueOnce({
|
|
not_added: ['Pods/New'],
|
|
modified: ['Podfile.lock', 'Pods/Manifest.lock'],
|
|
deleted: ['Pods/Deleted'],
|
|
} as StatusResult);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toMatchSnapshot();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('catches write error', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
fs.readFile.mockResolvedValueOnce('Current Podfile' as any);
|
|
fs.outputFile.mockImplementationOnce(() => {
|
|
throw new Error('not found');
|
|
});
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toMatchSnapshot();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('returns pod exec error', async () => {
|
|
const execSnapshots = mockExecAll(exec, new Error('exec exception'));
|
|
fs.readFile.mockResolvedValueOnce('Old Podfile.lock' as any);
|
|
fs.outputFile.mockResolvedValueOnce(null as never);
|
|
fs.readFile.mockResolvedValueOnce('Old Podfile.lock' as any);
|
|
expect(
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
})
|
|
).toMatchSnapshot();
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('dynamically selects Docker image tag', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
|
|
await setExecConfig({ ...adminConfig, binarySource: BinarySource.Docker });
|
|
|
|
fs.readFile.mockResolvedValueOnce('COCOAPODS: 1.2.4' as any);
|
|
|
|
fs.readFile.mockResolvedValueOnce('New Podfile' as any);
|
|
|
|
git.getRepoStatus.mockResolvedValueOnce({
|
|
modified: ['Podfile.lock'],
|
|
} as StatusResult);
|
|
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
});
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
it('falls back to the `latest` Docker image tag', async () => {
|
|
const execSnapshots = mockExecAll(exec);
|
|
|
|
await setExecConfig({ ...adminConfig, binarySource: BinarySource.Docker });
|
|
|
|
fs.readFile.mockResolvedValueOnce('COCOAPODS: 1.2.4' as any);
|
|
datasource.getPkgReleases.mockResolvedValueOnce({
|
|
releases: [],
|
|
});
|
|
|
|
fs.readFile.mockResolvedValueOnce('New Podfile' as any);
|
|
|
|
git.getRepoStatus.mockResolvedValueOnce({
|
|
modified: ['Podfile.lock'],
|
|
} as StatusResult);
|
|
|
|
await updateArtifacts({
|
|
packageFileName: 'Podfile',
|
|
updatedDeps: ['foo'],
|
|
newPackageFileContent: '',
|
|
config,
|
|
});
|
|
expect(execSnapshots).toMatchSnapshot();
|
|
});
|
|
});
|