mirror of https://github.com/renovatebot/renovate
123 lines
4.0 KiB
TypeScript
123 lines
4.0 KiB
TypeScript
import { logger } from '../../test/util';
|
|
import { detectPlatform, parseJson } from './common';
|
|
import * as hostRules from './host-rules';
|
|
|
|
const validJsonString = `
|
|
{
|
|
"name": "John Doe",
|
|
"age": 30,
|
|
"city": "New York"
|
|
}
|
|
`;
|
|
const invalidJsonString = `
|
|
{
|
|
"name": "Alice",
|
|
"age": 25,
|
|
"city": "Los Angeles",
|
|
"hobbies": ["Reading", "Running", "Cooking"]
|
|
"isStudent": true
|
|
}
|
|
`;
|
|
const onlyJson5parsableString = `
|
|
{
|
|
name: "Bob",
|
|
age: 35,
|
|
city: 'San Francisco',
|
|
// This is a comment
|
|
"isMarried": false,
|
|
}
|
|
`;
|
|
|
|
describe('util/common', () => {
|
|
beforeEach(() => hostRules.clear());
|
|
|
|
describe('detectPlatform', () => {
|
|
it.each`
|
|
url | hostType
|
|
${'some-invalid@url:::'} | ${null}
|
|
${'https://enterprise.example.com/chalk/chalk'} | ${null}
|
|
${'https://dev.azure.com/my-organization/my-project/_git/my-repo.git'} | ${'azure'}
|
|
${'https://myorg.visualstudio.com/my-project/_git/my-repo.git'} | ${'azure'}
|
|
${'https://bitbucket.org/some-org/some-repo'} | ${'bitbucket'}
|
|
${'https://bitbucket.com/some-org/some-repo'} | ${'bitbucket'}
|
|
${'https://bitbucket.example.com/some-org/some-repo'} | ${'bitbucket-server'}
|
|
${'https://gitea.com/semantic-release/gitlab'} | ${'gitea'}
|
|
${'https://forgejo.example.com/semantic-release/gitlab'} | ${'gitea'}
|
|
${'https://github.com/semantic-release/gitlab'} | ${'github'}
|
|
${'https://github-enterprise.example.com/chalk/chalk'} | ${'github'}
|
|
${'https://gitlab.com/chalk/chalk'} | ${'gitlab'}
|
|
${'https://gitlab-enterprise.example.com/chalk/chalk'} | ${'gitlab'}
|
|
`('("$url") === $hostType', ({ url, hostType }) => {
|
|
expect(detectPlatform(url)).toBe(hostType);
|
|
});
|
|
|
|
it('uses host rules', () => {
|
|
hostRules.add({
|
|
hostType: 'bitbucket',
|
|
matchHost: 'bb.example.com',
|
|
});
|
|
hostRules.add({
|
|
hostType: 'gitea',
|
|
matchHost: 'gt.example.com',
|
|
});
|
|
hostRules.add({
|
|
hostType: 'github-changelog',
|
|
matchHost: 'gh.example.com',
|
|
});
|
|
hostRules.add({
|
|
hostType: 'gitlab-changelog',
|
|
matchHost: 'gl.example.com',
|
|
});
|
|
hostRules.add({
|
|
hostType: 'unknown',
|
|
matchHost: 'f.example.com',
|
|
});
|
|
|
|
expect(detectPlatform('https://bb.example.com/chalk/chalk')).toBe(
|
|
'bitbucket',
|
|
);
|
|
expect(detectPlatform('https://gt.example.com/chalk/chalk')).toBe(
|
|
'gitea',
|
|
);
|
|
expect(detectPlatform('https://gh.example.com/chalk/chalk')).toBe(
|
|
'github',
|
|
);
|
|
expect(detectPlatform('https://gl.example.com/chalk/chalk')).toBe(
|
|
'gitlab',
|
|
);
|
|
expect(detectPlatform('https://f.example.com/chalk/chalk')).toBeNull();
|
|
});
|
|
});
|
|
|
|
describe('parseJson', () => {
|
|
it('returns null', () => {
|
|
expect(parseJson(null, 'renovate.json')).toBeNull();
|
|
});
|
|
|
|
it('returns parsed json', () => {
|
|
expect(parseJson(validJsonString, 'renovate.json')).toEqual({
|
|
name: 'John Doe',
|
|
age: 30,
|
|
city: 'New York',
|
|
});
|
|
});
|
|
|
|
it('throws error for invalid json', () => {
|
|
expect(() => parseJson(invalidJsonString, 'renovate.json')).toThrow();
|
|
});
|
|
|
|
it('catches and warns if content parsing faield with JSON.parse but not with JSON5.parse', () => {
|
|
expect(parseJson(onlyJson5parsableString, 'renovate.json')).toEqual({
|
|
name: 'Bob',
|
|
age: 35,
|
|
city: 'San Francisco',
|
|
isMarried: false,
|
|
});
|
|
expect(logger.logger.warn).toHaveBeenCalledWith(
|
|
{ context: 'renovate.json' },
|
|
'File contents are invalid JSON but parse using JSON5. Support for this will be removed in a future release so please change to a support .json5 file name or ensure correct JSON syntax.',
|
|
);
|
|
});
|
|
});
|
|
});
|