UNPKG

@libp2p/interface-stream-muxer-compliance-tests

Version:
28 lines (24 loc) 1.52 kB
import spawn from './spawner.js' import type { TestSetup } from '@libp2p/interface-compliance-tests' import type { StreamMuxerFactory, StreamMuxerInit, StreamMuxer } from '@libp2p/interface-stream-muxer' export default (common: TestSetup<StreamMuxerFactory>): void => { const createMuxer = async (init?: StreamMuxerInit): Promise<StreamMuxer> => { const factory = await common.setup() return factory.createStreamMuxer(init) } describe('stress test', function () { this.timeout(800000) it('1 stream with 1 msg', async () => { await spawn(createMuxer, 1, 1) }) it('1 stream with 10 msg', async () => { await spawn(createMuxer, 1, 10) }) it('1 stream with 100 msg', async () => { await spawn(createMuxer, 1, 100) }) it('10 streams with 1 msg', async () => { await spawn(createMuxer, 10, 1) }) it('10 streams with 10 msg', async () => { await spawn(createMuxer, 10, 10) }) it('10 streams with 100 msg', async () => { await spawn(createMuxer, 10, 100) }) it('100 streams with 1 msg', async () => { await spawn(createMuxer, 100, 1) }) it('100 streams with 10 msg', async () => { await spawn(createMuxer, 100, 10) }) it('100 streams with 100 msg', async () => { await spawn(createMuxer, 100, 100) }) it('1000 streams with 1 msg', async () => { await spawn(createMuxer, 1000, 1) }) it('1000 streams with 10 msg', async () => { await spawn(createMuxer, 1000, 10) }) it('1000 streams with 100 msg', async () => { await spawn(createMuxer, 1000, 100) }) }) }