mirror of https://github.com/renovatebot/renovate
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import type { FetchPresetConfig, Preset } from './types';
|
|
import { PRESET_DEP_NOT_FOUND, PRESET_NOT_FOUND, fetchPreset } from './util';
|
|
|
|
const config: FetchPresetConfig = {
|
|
repo: 'some/repo',
|
|
filePreset: 'default',
|
|
endpoint: 'endpoint',
|
|
fetch: undefined as never,
|
|
};
|
|
|
|
const fetch = jest.fn(() => Promise.resolve<Preset | null>({}));
|
|
|
|
describe('config/presets/util', () => {
|
|
beforeEach(() => {
|
|
fetch.mockReset();
|
|
});
|
|
|
|
it('works', async () => {
|
|
fetch.mockResolvedValueOnce({ sub: { preset: { foo: true } } });
|
|
expect(await fetchPreset({ ...config, fetch })).toEqual({
|
|
sub: { preset: { foo: true } },
|
|
});
|
|
|
|
fetch.mockRejectedValueOnce(new Error(PRESET_DEP_NOT_FOUND));
|
|
fetch.mockResolvedValueOnce({ sub: { preset: { foo: true } } });
|
|
expect(await fetchPreset({ ...config, fetch })).toEqual({
|
|
sub: { preset: { foo: true } },
|
|
});
|
|
|
|
fetch.mockResolvedValueOnce({ sub: { preset: { foo: true } } });
|
|
expect(
|
|
await fetchPreset({ ...config, filePreset: 'some/sub', fetch }),
|
|
).toEqual({ preset: { foo: true } });
|
|
|
|
fetch.mockResolvedValueOnce({ sub: { preset: { foo: true } } });
|
|
expect(
|
|
await fetchPreset({ ...config, filePreset: 'some/sub/preset', fetch }),
|
|
).toEqual({ foo: true });
|
|
});
|
|
|
|
it('fails', async () => {
|
|
fetch.mockRejectedValueOnce(new Error('fails'));
|
|
await expect(fetchPreset({ ...config, fetch })).rejects.toThrow('fails');
|
|
});
|
|
|
|
it(PRESET_DEP_NOT_FOUND, async () => {
|
|
fetch.mockResolvedValueOnce(null);
|
|
await expect(fetchPreset({ ...config, fetch })).rejects.toThrow(
|
|
PRESET_DEP_NOT_FOUND,
|
|
);
|
|
|
|
fetch.mockRejectedValueOnce(new Error(PRESET_DEP_NOT_FOUND));
|
|
fetch.mockRejectedValueOnce(new Error(PRESET_DEP_NOT_FOUND));
|
|
await expect(fetchPreset({ ...config, fetch })).rejects.toThrow(
|
|
PRESET_DEP_NOT_FOUND,
|
|
);
|
|
});
|
|
|
|
it(PRESET_NOT_FOUND, async () => {
|
|
fetch.mockResolvedValueOnce({});
|
|
await expect(
|
|
fetchPreset({ ...config, filePreset: 'some/sub/preset', fetch }),
|
|
).rejects.toThrow(PRESET_NOT_FOUND);
|
|
|
|
fetch.mockResolvedValueOnce({ sub: {} });
|
|
await expect(
|
|
fetchPreset({ ...config, filePreset: 'some/sub/preset', fetch }),
|
|
).rejects.toThrow(PRESET_NOT_FOUND);
|
|
});
|
|
});
|