renovate/lib/modules/datasource/datasource.spec.ts
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/

BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
2022-03-04 09:04:02 +01:00

35 lines
921 B
TypeScript

import * as httpMock from '../../../test/http-mock';
import { EXTERNAL_HOST_ERROR } from '../../constants/error-messages';
import { Datasource } from './datasource';
import type { GetReleasesConfig, ReleaseResult } from './types';
const exampleUrl = 'https://example.com/';
class TestDatasource extends Datasource {
constructor() {
super('test');
}
async getReleases(
getReleasesConfig: GetReleasesConfig
): Promise<ReleaseResult> {
try {
await this.http.get(exampleUrl);
} catch (err) {
this.handleGenericErrors(err);
}
return Promise.resolve(undefined);
}
}
describe('modules/datasource/datasource', () => {
it('should throw on 429', async () => {
const testDatasource = new TestDatasource();
httpMock.scope(exampleUrl).get('/').reply(429);
await expect(testDatasource.getReleases(undefined)).rejects.toThrow(
EXTERNAL_HOST_ERROR
);
});
});