2021-10-26 04:27:18 +00:00
|
|
|
import { DirectoryResult, dir } from 'tmp-promise';
|
2021-01-17 08:18:32 +00:00
|
|
|
import { join } from 'upath';
|
2021-08-18 05:46:56 +00:00
|
|
|
import { loadFixture } from '../../../test/util';
|
2021-08-15 06:21:08 +00:00
|
|
|
import { setGlobalConfig } from '../../config/global';
|
2021-08-16 16:00:51 +00:00
|
|
|
import type { RepoGlobalConfig } from '../../config/types';
|
2021-05-17 13:21:28 +00:00
|
|
|
import { writeLocalFile } from '../../util/fs';
|
|
|
|
import type { ExtractConfig } from '../types';
|
2020-02-05 00:14:31 +00:00
|
|
|
import { extractPackageFile } from './extract';
|
2018-11-09 13:22:11 +00:00
|
|
|
|
2021-04-26 14:15:03 +00:00
|
|
|
const cargo1toml = loadFixture('Cargo.1.toml');
|
|
|
|
const cargo2toml = loadFixture('Cargo.2.toml');
|
|
|
|
const cargo3toml = loadFixture('Cargo.3.toml');
|
|
|
|
const cargo4toml = loadFixture('Cargo.4.toml');
|
|
|
|
const cargo5toml = loadFixture('Cargo.5.toml');
|
|
|
|
const cargo6configtoml = loadFixture('cargo.6.config.toml');
|
|
|
|
const cargo6toml = loadFixture('Cargo.6.toml');
|
2021-01-17 08:18:32 +00:00
|
|
|
|
2021-08-18 05:46:56 +00:00
|
|
|
describe('manager/cargo/extract', () => {
|
2018-11-09 13:22:11 +00:00
|
|
|
describe('extractPackageFile()', () => {
|
2021-05-17 13:21:28 +00:00
|
|
|
let config: ExtractConfig;
|
2021-08-16 16:00:51 +00:00
|
|
|
let adminConfig: RepoGlobalConfig;
|
2021-10-26 04:27:18 +00:00
|
|
|
let tmpDir: DirectoryResult;
|
2021-05-17 13:21:28 +00:00
|
|
|
|
|
|
|
beforeEach(async () => {
|
2018-11-09 13:22:11 +00:00
|
|
|
config = {};
|
2021-10-26 04:27:18 +00:00
|
|
|
tmpDir = await dir({ unsafeCleanup: true });
|
2021-05-17 13:21:28 +00:00
|
|
|
adminConfig = {
|
2021-05-26 11:22:16 +00:00
|
|
|
localDir: join(tmpDir.path, 'local'),
|
2021-05-17 13:21:28 +00:00
|
|
|
cacheDir: join(tmpDir.path, 'cache'),
|
|
|
|
};
|
|
|
|
|
2021-08-16 16:00:51 +00:00
|
|
|
setGlobalConfig(adminConfig);
|
2021-05-17 13:21:28 +00:00
|
|
|
});
|
2021-10-26 04:27:18 +00:00
|
|
|
afterEach(async () => {
|
|
|
|
await tmpDir.cleanup();
|
2021-08-16 16:00:51 +00:00
|
|
|
setGlobalConfig();
|
2018-11-09 13:22:11 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('returns null for invalid toml', async () => {
|
|
|
|
expect(
|
|
|
|
await extractPackageFile('invalid toml', 'Cargo.toml', config)
|
|
|
|
).toBeNull();
|
2019-04-09 08:25:13 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('returns null for empty dependencies', async () => {
|
2019-04-09 08:25:13 +00:00
|
|
|
const cargotoml = '[dependencies]\n';
|
2021-01-17 08:18:32 +00:00
|
|
|
expect(
|
|
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
|
|
).toBeNull();
|
2019-04-09 08:25:13 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('returns null for empty dev-dependencies', async () => {
|
2019-04-09 08:25:13 +00:00
|
|
|
const cargotoml = '[dev-dependencies]\n';
|
2021-01-17 08:18:32 +00:00
|
|
|
expect(
|
|
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
|
|
).toBeNull();
|
2019-04-09 08:25:13 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('returns null for empty custom target', async () => {
|
2019-04-09 08:25:13 +00:00
|
|
|
const cargotoml = '[target."foo".dependencies]\n';
|
2021-01-17 08:18:32 +00:00
|
|
|
expect(
|
|
|
|
await extractPackageFile(cargotoml, 'Cargo.toml', config)
|
|
|
|
).toBeNull();
|
2018-11-09 13:22:11 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('extracts multiple dependencies simple', async () => {
|
|
|
|
const res = await extractPackageFile(cargo1toml, 'Cargo.toml', config);
|
2019-03-04 09:24:07 +00:00
|
|
|
expect(res.deps).toMatchSnapshot();
|
2019-04-09 08:25:13 +00:00
|
|
|
expect(res.deps).toHaveLength(15);
|
2019-03-04 09:24:07 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('extracts multiple dependencies advanced', async () => {
|
|
|
|
const res = await extractPackageFile(cargo2toml, 'Cargo.toml', config);
|
2019-03-04 09:24:07 +00:00
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(18 + 6 + 1);
|
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('handles inline tables', async () => {
|
|
|
|
const res = await extractPackageFile(cargo3toml, 'Cargo.toml', config);
|
2019-03-04 09:24:07 +00:00
|
|
|
expect(res.deps).toMatchSnapshot();
|
2019-04-09 08:25:13 +00:00
|
|
|
expect(res.deps).toHaveLength(8);
|
2019-03-04 09:24:07 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('handles standard tables', async () => {
|
|
|
|
const res = await extractPackageFile(cargo4toml, 'Cargo.toml', config);
|
2019-03-04 09:24:07 +00:00
|
|
|
expect(res.deps).toMatchSnapshot();
|
2019-04-09 08:25:13 +00:00
|
|
|
expect(res.deps).toHaveLength(6);
|
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('extracts platform specific dependencies', async () => {
|
|
|
|
const res = await extractPackageFile(cargo5toml, 'Cargo.toml', config);
|
2019-04-09 08:25:13 +00:00
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(4);
|
2019-03-04 09:24:07 +00:00
|
|
|
});
|
2021-01-17 08:18:32 +00:00
|
|
|
it('extracts registry urls from .cargo/config.toml', async () => {
|
|
|
|
await writeLocalFile('.cargo/config.toml', cargo6configtoml);
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(3);
|
|
|
|
});
|
|
|
|
it('extracts registry urls from .cargo/config (legacy path)', async () => {
|
|
|
|
await writeLocalFile('.cargo/config', cargo6configtoml);
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
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 () => {
|
|
|
|
await writeLocalFile('.cargo/config', '[registries');
|
|
|
|
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(3);
|
|
|
|
});
|
|
|
|
it('ignore cargo config registries with missing index', async () => {
|
|
|
|
await writeLocalFile('.cargo/config', '[registries.mine]\nfoo = "bar"');
|
|
|
|
|
|
|
|
const res = await extractPackageFile(cargo6toml, 'Cargo.toml', {
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(3);
|
|
|
|
});
|
2021-06-11 16:41:46 +00:00
|
|
|
it('extracts original package name of renamed dependencies', async () => {
|
|
|
|
const cargotoml =
|
|
|
|
'[dependencies]\nboolector-solver = { package = "boolector", version = "0.4.0" }';
|
|
|
|
const res = await extractPackageFile(cargotoml, 'Cargo.toml', config);
|
|
|
|
|
|
|
|
expect(res.deps).toMatchSnapshot();
|
|
|
|
expect(res.deps).toHaveLength(1);
|
2021-11-08 12:16:58 +00:00
|
|
|
expect(res.deps[0].lookupName).toBe('boolector');
|
2021-06-11 16:41:46 +00:00
|
|
|
});
|
2018-11-09 13:22:11 +00:00
|
|
|
});
|
|
|
|
});
|