23 lines
741 B
TypeScript
23 lines
741 B
TypeScript
import { Eurostreaming } from './Eurostreaming';
|
|
import { FetcherMock, ImdbId } from '../utils';
|
|
import { Context } from '../types';
|
|
|
|
const ctx: Context = { id: 'id', ip: '127.0.0.1', config: { it: 'on' } };
|
|
|
|
describe('Eurostreaming', () => {
|
|
let handler: Eurostreaming;
|
|
|
|
beforeEach(() => {
|
|
handler = new Eurostreaming(new FetcherMock());
|
|
});
|
|
|
|
test('handles non-existent series gracefully', async () => {
|
|
const streams = await handler.handle(ctx, 'series', new ImdbId('tt12345678', 1, 1));
|
|
expect(streams).toHaveLength(0);
|
|
});
|
|
|
|
test('handle imdb black mirror s2e4', async () => {
|
|
const streams = await handler.handle(ctx, 'series', new ImdbId('tt2085059', 2, 4));
|
|
expect(streams).toMatchSnapshot();
|
|
});
|
|
});
|