mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
import { readFileSync } from 'fs';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
const gomod1 = readFileSync('lib/manager/gomod/__fixtures__/1/go.mod', 'utf8');
|
|
const gomod2 = readFileSync('lib/manager/gomod/__fixtures__/2/go.mod', 'utf8');
|
|
const gomod3 = readFileSync('lib/manager/gomod/__fixtures__/3/go.mod', 'utf8');
|
|
|
|
describe('lib/manager/gomod/extract', () => {
|
|
describe('extractPackageFile()', () => {
|
|
it('returns null for empty', () => {
|
|
expect(extractPackageFile('nothing here')).toBeNull();
|
|
});
|
|
it('extracts single-line requires', () => {
|
|
const res = extractPackageFile(gomod1).deps;
|
|
expect(res).toMatchSnapshot();
|
|
expect(res).toHaveLength(8);
|
|
expect(res.filter((e) => e.skipReason)).toHaveLength(1);
|
|
expect(res.filter((e) => e.depType === 'replace')).toHaveLength(1);
|
|
});
|
|
it('extracts constraints', () => {
|
|
const res = extractPackageFile(gomod3);
|
|
expect(res).toMatchSnapshot();
|
|
expect(res.constraints.go).toEqual('1.13');
|
|
});
|
|
it('extracts multi-line requires', () => {
|
|
const res = extractPackageFile(gomod2).deps;
|
|
expect(res).toMatchSnapshot();
|
|
expect(res).toHaveLength(58);
|
|
expect(res.filter((e) => e.skipReason)).toHaveLength(0);
|
|
});
|
|
});
|
|
});
|