renovate/lib/manager/bundler/extract.spec.ts
2021-04-13 12:07:57 +02:00

173 lines
5.6 KiB
TypeScript

import { readFileSync } from 'fs';
import { fs, getName } from '../../../test/util';
import { isValid } from '../../versioning/ruby';
import { extractPackageFile } from './extract';
jest.mock('../../util/fs');
const railsGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.rails',
'utf8'
);
const railsGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.rails.lock',
'utf8'
);
const sourceGroupGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.sourceGroup',
'utf8'
);
const webPackerGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.webpacker',
'utf8'
);
const webPackerGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.webpacker.lock',
'utf8'
);
const mastodonGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.mastodon',
'utf8'
);
const mastodonGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.mastodon.lock',
'utf8'
);
const rubyCIGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.rubyci.lock',
'utf8'
);
const rubyCIGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.rubyci',
'utf8'
);
const gitlabFossGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.gitlab-foss.lock',
'utf8'
);
const gitlabFossGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.gitlab-foss',
'utf8'
);
const sourceBlockGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.sourceBlock',
'utf8'
);
const sourceBlockWithNewLinesGemfileLock = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.sourceBlockWithNewLines.lock',
'utf8'
);
const sourceBlockWithNewLinesGemfile = readFileSync(
'lib/manager/bundler/__fixtures__/Gemfile.sourceBlockWithNewLines',
'utf8'
);
function validateGems(raw, parsed) {
const gemfileGemCount = raw.match(/\n\s*gem\s+/g).length;
const parsedGemCount = parsed.deps.length;
expect(gemfileGemCount).toEqual(parsedGemCount);
}
describe(getName(__filename), () => {
describe('extractPackageFile()', () => {
it('returns null for empty', async () => {
expect(await extractPackageFile('nothing here', 'Gemfile')).toBeNull();
});
it('parses rails Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(railsGemfileLock);
const res = await extractPackageFile(railsGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
// couple of dependency of ruby rails are not present in the lock file. Filter out those before processing
expect(
res.deps
.filter((dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion')
)
.every(
(dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') &&
isValid(dep.lockedVersion)
)
).toBe(true);
validateGems(railsGemfile, res);
});
it('parses sourceGroups', async () => {
const res = await extractPackageFile(sourceGroupGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
validateGems(sourceGroupGemfile, res);
});
it('parse webpacker Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(webPackerGemfileLock);
const res = await extractPackageFile(webPackerGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
expect(
res.deps.every(
(dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') &&
isValid(dep.lockedVersion)
)
).toBe(true);
validateGems(webPackerGemfile, res);
});
it('parse mastodon Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(mastodonGemfileLock);
const res = await extractPackageFile(mastodonGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
expect(
res.deps
.filter((dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion')
)
.every(
(dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') &&
isValid(dep.lockedVersion)
)
).toBe(true);
validateGems(mastodonGemfile, res);
});
it('parse Ruby CI Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(rubyCIGemfileLock);
const res = await extractPackageFile(rubyCIGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
expect(
res.deps.every(
(dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') &&
isValid(dep.lockedVersion)
)
).toBe(true);
validateGems(rubyCIGemfile, res);
});
});
it('parse Gitlab Foss Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(gitlabFossGemfileLock);
const res = await extractPackageFile(gitlabFossGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
expect(
res.deps.every(
(dep) =>
Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') &&
isValid(dep.lockedVersion)
)
).toBe(true);
validateGems(gitlabFossGemfile, res);
});
it('parse source blocks in Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(sourceBlockGemfile);
const res = await extractPackageFile(sourceBlockGemfile, 'Gemfile');
expect(res).toMatchSnapshot();
});
it('parse source blocks with spaces in Gemfile', async () => {
fs.readLocalFile.mockResolvedValueOnce(sourceBlockWithNewLinesGemfileLock);
const res = await extractPackageFile(
sourceBlockWithNewLinesGemfile,
'Gemfile'
);
expect(res).toMatchSnapshot();
validateGems(sourceBlockWithNewLinesGemfile, res);
});
});