23 lines
746 B
TypeScript
23 lines
746 B
TypeScript
import { VerHdLink } from './VerHdLink';
|
|
import { FetcherMock, ImdbId } from '../utils';
|
|
import { Context } from '../types';
|
|
|
|
const ctx: Context = { id: 'id', ip: '127.0.0.1', config: { es: 'on', mx: 'on' } };
|
|
|
|
describe('VerHdLink', () => {
|
|
let handler: VerHdLink;
|
|
|
|
beforeEach(() => {
|
|
handler = new VerHdLink(new FetcherMock());
|
|
});
|
|
|
|
test('handles non-existent movies gracefully', async () => {
|
|
const streams = await handler.handle(ctx, 'movie', new ImdbId('tt12345678', undefined, undefined));
|
|
expect(streams).toHaveLength(0);
|
|
});
|
|
|
|
test('handle titanic', async () => {
|
|
const streams = await handler.handle(ctx, 'movie', new ImdbId('tt0120338', undefined, undefined));
|
|
expect(streams).toMatchSnapshot();
|
|
});
|
|
});
|