mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-16 01:26:24 +00:00
b255275632
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
145 lines
5.2 KiB
TypeScript
145 lines
5.2 KiB
TypeScript
import { dir } from 'tmp-promise';
|
|
import { join } from 'upath';
|
|
import { getName, loadFixture } from '../../../test/util';
|
|
import { setFsConfig, writeLocalFile } from '../../util/fs';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
const cargo1toml = loadFixture(__filename, 'Cargo.1.toml');
|
|
const cargo2toml = loadFixture(__filename, 'Cargo.2.toml');
|
|
const cargo3toml = loadFixture(__filename, 'Cargo.3.toml');
|
|
const cargo4toml = loadFixture(__filename, 'Cargo.4.toml');
|
|
const cargo5toml = loadFixture(__filename, 'Cargo.5.toml');
|
|
const cargo6configtoml = loadFixture(__filename, 'cargo.6.config.toml');
|
|
const cargo6toml = loadFixture(__filename, 'Cargo.6.toml');
|
|
|
|
describe(getName(__filename), () => {
|
|
describe('extractPackageFile()', () => {
|
|
let config;
|
|
beforeEach(() => {
|
|
config = {};
|
|
});
|
|
it('returns null for invalid toml', async () => {
|
|
expect(
|
|
await extractPackageFile('invalid toml', 'Cargo.toml', config)
|
|
).toBeNull();
|
|
});
|
|
it('returns null for empty dependencies', async () => {
|
|
const cargotoml = '[dependencies]\n';
|
|
expect(
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
).toBeNull();
|
|
});
|
|
it('returns null for empty dev-dependencies', async () => {
|
|
const cargotoml = '[dev-dependencies]\n';
|
|
expect(
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
).toBeNull();
|
|
});
|
|
it('returns null for empty custom target', async () => {
|
|
const cargotoml = '[target."foo".dependencies]\n';
|
|
expect(
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
).toBeNull();
|
|
});
|
|
it('extracts multiple dependencies simple', async () => {
|
|
const res = await extractPackageFile(cargo1toml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(15);
|
|
});
|
|
it('extracts multiple dependencies advanced', async () => {
|
|
const res = await extractPackageFile(cargo2toml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(18 + 6 + 1);
|
|
});
|
|
it('handles inline tables', async () => {
|
|
const res = await extractPackageFile(cargo3toml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(8);
|
|
});
|
|
it('handles standard tables', async () => {
|
|
const res = await extractPackageFile(cargo4toml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(6);
|
|
});
|
|
it('extracts platform specific dependencies', async () => {
|
|
const res = await extractPackageFile(cargo5toml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(4);
|
|
});
|
|
it('extracts registry urls from .cargo/config.toml', async () => {
|
|
const tmpDir = await dir();
|
|
const localDir = join(tmpDir.path, 'local');
|
|
const cacheDir = join(tmpDir.path, 'cache');
|
|
setFsConfig({
|
|
localDir,
|
|
cacheDir,
|
|
});
|
|
await writeLocalFile('.cargo/config.toml', cargo6configtoml);
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
...config,
|
|
localDir,
|
|
});
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(3);
|
|
});
|
|
it('extracts registry urls from .cargo/config (legacy path)', async () => {
|
|
const tmpDir = await dir();
|
|
const localDir = join(tmpDir.path, 'local');
|
|
const cacheDir = join(tmpDir.path, 'cache');
|
|
setFsConfig({
|
|
localDir,
|
|
cacheDir,
|
|
});
|
|
await writeLocalFile('.cargo/config', cargo6configtoml);
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
...config,
|
|
localDir,
|
|
});
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(3);
|
|
});
|
|
it('skips unknown registries', async () => {
|
|
const cargotoml =
|
|
'[dependencies]\nfoobar = { version = "0.1.0", registry = "not-listed" }';
|
|
const res = await extractPackageFile(cargotoml, 'Cargo.toml', config);
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(1);
|
|
});
|
|
it('fails to parse cargo config with invalid TOML', async () => {
|
|
const tmpDir = await dir();
|
|
const localDir = join(tmpDir.path, 'local');
|
|
const cacheDir = join(tmpDir.path, 'cache');
|
|
setFsConfig({
|
|
localDir,
|
|
cacheDir,
|
|
});
|
|
await writeLocalFile('.cargo/config', '[registries');
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
...config,
|
|
localDir,
|
|
});
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(3);
|
|
});
|
|
it('ignore cargo config registries with missing index', async () => {
|
|
const tmpDir = await dir();
|
|
const localDir = join(tmpDir.path, 'local');
|
|
const cacheDir = join(tmpDir.path, 'cache');
|
|
setFsConfig({
|
|
localDir,
|
|
cacheDir,
|
|
});
|
|
await writeLocalFile('.cargo/config', '[registries.mine]\nfoo = "bar"');
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
...config,
|
|
localDir,
|
|
});
|
|
expect(res.deps).toMatchSnapshot();
|
|
expect(res.deps).toHaveLength(3);
|
|
});
|
|
});
|
|
});
|