mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
135 lines
3.9 KiB
TypeScript
135 lines
3.9 KiB
TypeScript
import { getOptions } from '../config/definitions';
|
|
import { loadModules } from '../util/modules';
|
|
import { isVersioningApiConstructor } from './common';
|
|
import { GenericVersion, GenericVersioningApi } from './loose/generic';
|
|
import * as semverVersioning from './semver';
|
|
import type { VersioningApi, VersioningApiConstructor } from './types';
|
|
import * as allVersioning from '.';
|
|
|
|
const supportedSchemes = getOptions().find(
|
|
(option) => option.name === 'versioning'
|
|
).allowedValues;
|
|
|
|
describe('allVersioning.get(versioning)', () => {
|
|
it('has api', () => {
|
|
expect(Object.keys(allVersioning.get('semver')).sort()).toMatchSnapshot();
|
|
});
|
|
it('validates', () => {
|
|
function validate(
|
|
module: VersioningApi | VersioningApiConstructor,
|
|
name: string
|
|
): boolean {
|
|
// eslint-disable-next-line new-cap
|
|
const mod = isVersioningApiConstructor(module) ? new module() : module;
|
|
|
|
// TODO: test required api (#9715)
|
|
if (!mod.isValid || !mod.isVersion) {
|
|
throw Error(`Missing api on ${name}`);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
const vers = allVersioning.getVersionings();
|
|
|
|
const loadedVers = loadModules(__dirname);
|
|
expect(Array.from(vers.keys())).toEqual(Object.keys(loadedVers));
|
|
|
|
for (const name of vers.keys()) {
|
|
const ver = vers.get(name);
|
|
expect(validate(ver, name)).toBe(true);
|
|
}
|
|
});
|
|
|
|
it('should fallback to semver', () => {
|
|
expect(allVersioning.get(undefined)).toBe(
|
|
allVersioning.get(semverVersioning.id)
|
|
);
|
|
expect(allVersioning.get('unknown')).toBe(
|
|
allVersioning.get(semverVersioning.id)
|
|
);
|
|
});
|
|
|
|
it('should accept config', () => {
|
|
expect(allVersioning.get('semver:test')).toBeDefined();
|
|
});
|
|
|
|
describe('should return the same interface', () => {
|
|
const optionalFunctions = [
|
|
'isLessThanRange',
|
|
'valueToVersion',
|
|
'constructor',
|
|
'hasOwnProperty',
|
|
'isPrototypeOf',
|
|
'propertyIsEnumerable',
|
|
'should',
|
|
'toLocaleString',
|
|
'toString',
|
|
'valueOf',
|
|
];
|
|
const npmApi = Object.keys(allVersioning.get(semverVersioning.id))
|
|
.filter((val) => !optionalFunctions.includes(val))
|
|
.sort();
|
|
|
|
function getAllPropertyNames(obj: any): string[] {
|
|
const props = [];
|
|
let o = obj;
|
|
|
|
do {
|
|
Object.getOwnPropertyNames(o).forEach((prop) => {
|
|
if (!props.includes(prop)) {
|
|
props.push(prop);
|
|
}
|
|
});
|
|
// eslint-disable-next-line no-cond-assign
|
|
} while ((o = Object.getPrototypeOf(o)));
|
|
|
|
return props;
|
|
}
|
|
|
|
for (const supportedScheme of supportedSchemes) {
|
|
it(supportedScheme, () => {
|
|
const schemeKeys = getAllPropertyNames(
|
|
allVersioning.get(supportedScheme)
|
|
)
|
|
.filter(
|
|
(val) => !optionalFunctions.includes(val) && !val.startsWith('_')
|
|
)
|
|
.sort();
|
|
|
|
expect(schemeKeys).toEqual(npmApi);
|
|
|
|
const apiOrCtor = require('./' + supportedScheme).api;
|
|
if (isVersioningApiConstructor(apiOrCtor)) {
|
|
return;
|
|
}
|
|
|
|
expect(Object.keys(apiOrCtor).sort()).toEqual(
|
|
Object.keys(allVersioning.get(supportedScheme)).sort()
|
|
);
|
|
});
|
|
}
|
|
|
|
it('dummy', () => {
|
|
class DummyScheme extends GenericVersioningApi {
|
|
// eslint-disable-next-line class-methods-use-this
|
|
protected _compare(_version: string, _other: string): number {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
protected _parse(_version: string): GenericVersion {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
}
|
|
|
|
const api = new DummyScheme();
|
|
const schemeKeys = getAllPropertyNames(api)
|
|
.filter(
|
|
(val) => !optionalFunctions.includes(val) && !val.startsWith('_')
|
|
)
|
|
.sort();
|
|
|
|
expect(schemeKeys).toEqual(npmApi);
|
|
});
|
|
});
|
|
});
|