FoundKey/test/streaming.ts

78 lines
2 KiB
TypeScript
Raw Normal View History

2021-05-16 09:12:18 +00:00
import WS from 'jest-websocket-mock';
import Stream from '../src/streaming';
describe('Streaming', () => {
2021-05-23 04:34:36 +00:00
test('useChannel', async () => {
2021-05-16 09:12:18 +00:00
const server = new WS('wss://misskey.test/streaming');
const stream = new Stream('https://misskey.test', { token: 'TOKEN' });
const mainChannelReceived: any[] = [];
2021-05-23 04:34:36 +00:00
const main = stream.useChannel('main');
main.on('meUpdated', payload => {
2021-05-16 09:12:18 +00:00
mainChannelReceived.push(payload);
});
await server.connected;
const msg = JSON.parse(await server.nextMessage as string);
const mainChannelId = msg.body.id;
expect(msg.type).toEqual('connect');
expect(msg.body.channel).toEqual('main');
expect(mainChannelId != null).toEqual(true);
server.send(JSON.stringify({
type: 'channel',
body: {
id: mainChannelId,
type: 'meUpdated',
2021-05-16 09:12:18 +00:00
body: {
id: 'foo'
2021-05-16 09:12:18 +00:00
}
}
}));
expect(mainChannelReceived[0]).toEqual({
id: 'foo'
2021-05-16 09:12:18 +00:00
});
2021-05-17 10:57:04 +00:00
server.close();
});
2021-05-23 04:34:36 +00:00
test('useChannel with parameters', async () => {
// TODO
});
test('Connection#dispose', async () => {
2021-05-17 10:57:04 +00:00
const server = new WS('wss://misskey.test/streaming');
const stream = new Stream('https://misskey.test', { token: 'TOKEN' });
const mainChannelReceived: any[] = [];
2021-05-23 04:34:36 +00:00
const main = stream.useChannel('main');
2021-05-17 10:57:04 +00:00
main.on('meUpdated', payload => {
mainChannelReceived.push(payload);
});
await server.connected;
const msg = JSON.parse(await server.nextMessage as string);
const mainChannelId = msg.body.id;
expect(msg.type).toEqual('connect');
expect(msg.body.channel).toEqual('main');
expect(mainChannelId != null).toEqual(true);
main.dispose();
server.send(JSON.stringify({
type: 'channel',
body: {
id: mainChannelId,
type: 'meUpdated',
body: {
id: 'foo'
}
}
}));
expect(mainChannelReceived.length).toEqual(0);
server.close();
2021-05-16 09:12:18 +00:00
});
2021-05-17 10:57:04 +00:00
// TODO: SharedConnection#dispose して一定時間経ったら disconnect メッセージがサーバーに送られてくるかのテスト
2021-05-23 04:34:36 +00:00
// TODO: チャンネル接続が使いまわされるかのテスト
2021-05-16 09:12:18 +00:00
});