js-libp2p/test/dialing/dial-request.spec.ts
Alex Potsides 199395de4d
feat: convert to typescript (#1172)
Converts this module to typescript.

- Ecosystem modules renamed from (e.g.) `libp2p-tcp` to `@libp2p/tcp`
- Ecosystem module now have named exports
- Configuration has been updated, now pass instances of modules instead of classes:
- Some configuration keys have been renamed to make them more descriptive.  `transport` -> `transports`, `connEncryption` -> `connectionEncryption`.  In general where we pass multiple things, the key is now plural, e.g. `streamMuxer` -> `streamMuxers`, `contentRouting` -> `contentRouters`, etc.  Where we are configuring a singleton the config key is singular, e.g. `connProtector` -> `connectionProtector` etc.
- Properties of the `modules` config key have been moved to the root
- Properties of the `config` config key have been moved to the root
```js
// before
import Libp2p from 'libp2p'
import TCP from 'libp2p-tcp'

await Libp2p.create({
  modules: {
    transport: [
      TCP
    ],
  }
  config: {
    transport: {
      [TCP.tag]: {
        foo: 'bar'
      }
    },
    relay: {
      enabled: true,
      hop: {
        enabled: true,
        active: true
      }
    }
  }
})
```
```js
// after
import { createLibp2p } from 'libp2p'
import { TCP } from '@libp2p/tcp'

await createLibp2p({
  transports: [
    new TCP({ foo: 'bar' })
  ],
  relay: {
    enabled: true,
    hop: {
      enabled: true,
      active: true
    }
  }
})
```
- Use of `enabled` flag has been reduced - previously you could pass a module but disable it with config.  Now if you don't want a feature, just don't pass an implementation.   Eg:
```js
// before
await Libp2p.create({
  modules: {
    transport: [
      TCP
    ],
    pubsub: Gossipsub
  },
  config: {
    pubsub: {
      enabled: false
    }
  }
})
```
```js
// after
await createLibp2p({
  transports: [
    new TCP()
  ]
})
```
- `.multiaddrs` renamed to `.getMultiaddrs()` because it's not a property accessor, work is done by that method to calculate announce addresses, observed addresses, etc
- `/p2p/${peerId}` is now appended to all addresses returned by `.getMultiaddrs()` so they can be used opaquely (every consumer has to append the peer ID to the address to actually use it otherwise).  If you need low-level unadulterated addresses, call methods on the address manager.

BREAKING CHANGE: types are no longer hand crafted, this module is now ESM only
2022-03-28 14:30:27 +01:00

219 lines
8.6 KiB
TypeScript

/* eslint-env mocha */
import { expect } from 'aegir/utils/chai.js'
import sinon from 'sinon'
import { AbortError } from '@libp2p/interfaces/errors'
import pDefer from 'p-defer'
import delay from 'delay'
import { DialAction, DialRequest } from '../../src/dialer/dial-request.js'
import { mockConnection, mockDuplex, mockMultiaddrConnection } from '@libp2p/interface-compliance-tests/mocks'
import { createEd25519PeerId } from '@libp2p/peer-id-factory'
import { Multiaddr } from '@multiformats/multiaddr'
import { DefaultDialer } from '../../src/dialer/index.js'
import { Components } from '@libp2p/interfaces/components'
const error = new Error('dial failure')
describe('Dial Request', () => {
it('should end when a single multiaddr dials succeeds', async () => {
const connection = mockConnection(mockMultiaddrConnection(mockDuplex(), await createEd25519PeerId()))
const actions: Record<string, () => Promise<any>> = {
'/ip4/127.0.0.1/tcp/1231': async () => await Promise.reject(error),
'/ip4/127.0.0.1/tcp/1232': async () => await Promise.resolve(connection),
'/ip4/127.0.0.1/tcp/1233': async () => await Promise.reject(error)
}
const dialAction: DialAction = async (num) => await actions[num.toString()]()
const controller = new AbortController()
const dialer = new DefaultDialer(new Components(), {
maxParallelDials: 2
})
const dialerReleaseTokenSpy = sinon.spy(dialer, 'releaseToken')
const dialRequest = new DialRequest({
addrs: Object.keys(actions).map(str => new Multiaddr(str)),
dialer,
dialAction
})
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1231')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1232')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1233')
const result = await dialRequest.run({ signal: controller.signal })
expect(result).to.equal(connection)
expect(actions['/ip4/127.0.0.1/tcp/1231']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1232']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1233']).to.have.property('callCount', 0)
expect(dialerReleaseTokenSpy.callCount).to.equal(2)
})
it('should release tokens when all addr dials have started', async () => {
const connection = mockConnection(mockMultiaddrConnection(mockDuplex(), await createEd25519PeerId()))
const firstDials = pDefer()
const deferred = pDefer()
const actions: Record<string, () => Promise<any>> = {
'/ip4/127.0.0.1/tcp/1231': async () => await firstDials.promise,
'/ip4/127.0.0.1/tcp/1232': async () => await firstDials.promise,
'/ip4/127.0.0.1/tcp/1233': async () => await deferred.promise
}
const dialAction: DialAction = async (num) => await actions[num.toString()]()
const controller = new AbortController()
const dialer = new DefaultDialer(new Components(), {
maxParallelDials: 2
})
const dialerReleaseTokenSpy = sinon.spy(dialer, 'releaseToken')
const dialRequest = new DialRequest({
addrs: Object.keys(actions).map(str => new Multiaddr(str)),
dialer,
dialAction
})
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1231')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1232')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1233')
void dialRequest.run({ signal: controller.signal })
// Let the first dials run
await delay(0)
// Finish the first 2 dials
firstDials.reject(error)
await delay(0)
// Only 1 dial should remain, so 1 token should have been released
expect(actions['/ip4/127.0.0.1/tcp/1231']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1232']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1233']).to.have.property('callCount', 1)
expect(dialerReleaseTokenSpy.callCount).to.equal(1)
// Finish the dial and release the 2nd token
deferred.resolve(connection)
await delay(0)
expect(dialerReleaseTokenSpy.callCount).to.equal(2)
})
it('should throw an AggregateError if all dials fail', async () => {
const actions: Record<string, () => Promise<any>> = {
'/ip4/127.0.0.1/tcp/1231': async () => await Promise.reject(error),
'/ip4/127.0.0.1/tcp/1232': async () => await Promise.reject(error),
'/ip4/127.0.0.1/tcp/1233': async () => await Promise.reject(error)
}
const dialAction: DialAction = async (num) => await actions[num.toString()]()
const addrs = Object.keys(actions)
const controller = new AbortController()
const dialer = new DefaultDialer(new Components(), {
maxParallelDials: 2
})
const dialerReleaseTokenSpy = sinon.spy(dialer, 'releaseToken')
const dialerGetTokensSpy = sinon.spy(dialer, 'getTokens')
const dialRequest = new DialRequest({
addrs: Object.keys(actions).map(str => new Multiaddr(str)),
dialer,
dialAction
})
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1231')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1232')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1233')
try {
await dialRequest.run({ signal: controller.signal })
expect.fail('Should have thrown')
} catch (err: any) {
expect(err).to.have.property('name', 'AggregateError')
}
expect(actions['/ip4/127.0.0.1/tcp/1231']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1232']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1233']).to.have.property('callCount', 1)
expect(dialerGetTokensSpy.calledWith(addrs.length)).to.equal(true)
expect(dialerReleaseTokenSpy.callCount).to.equal(2)
})
it('should handle a large number of addrs', async () => {
const reject = sinon.stub().callsFake(async () => await Promise.reject(error))
const actions: Record<string, () => Promise<any>> = {}
const addrs = [...new Array(25)].map((_, index) => `/ip4/127.0.0.1/tcp/12${index + 1}`)
addrs.forEach(addr => {
actions[addr] = reject
})
const dialAction: DialAction = async (num) => await actions[num.toString()]()
const controller = new AbortController()
const dialer = new DefaultDialer(new Components(), {
maxParallelDials: 2
})
const dialerReleaseTokenSpy = sinon.spy(dialer, 'releaseToken')
const dialRequest = new DialRequest({
addrs: Object.keys(actions).map(str => new Multiaddr(str)),
dialer,
dialAction
})
try {
await dialRequest.run({ signal: controller.signal })
expect.fail('Should have thrown')
} catch (err: any) {
expect(err).to.have.property('name', 'AggregateError')
}
expect(reject).to.have.property('callCount', addrs.length)
expect(dialerReleaseTokenSpy.callCount).to.equal(2)
})
it('should abort all dials when its signal is aborted', async () => {
const deferToAbort = async (args: { signal: AbortSignal }) => {
const { signal } = args
if (signal.aborted) {
throw new Error('already aborted')
}
const deferred = pDefer<any>()
const onAbort = () => {
deferred.reject(new AbortError())
signal.removeEventListener('abort', onAbort)
}
signal.addEventListener('abort', onAbort)
return await deferred.promise
}
const actions: Record<string, (...args: any[]) => Promise<any>> = {
'/ip4/127.0.0.1/tcp/1231': deferToAbort,
'/ip4/127.0.0.1/tcp/1232': deferToAbort,
'/ip4/127.0.0.1/tcp/1233': deferToAbort
}
const dialAction: DialAction = async (num) => await actions[num.toString()]()
const addrs = Object.keys(actions)
const controller = new AbortController()
const dialer = new DefaultDialer(new Components(), {
maxParallelDials: 2
})
const dialerReleaseTokenSpy = sinon.spy(dialer, 'releaseToken')
const dialerGetTokensSpy = sinon.spy(dialer, 'getTokens')
const dialRequest = new DialRequest({
addrs: Object.keys(actions).map(str => new Multiaddr(str)),
dialer,
dialAction
})
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1231')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1232')
sinon.spy(actions, '/ip4/127.0.0.1/tcp/1233')
try {
setTimeout(() => controller.abort(), 100)
await dialRequest.run({ signal: controller.signal })
expect.fail('dial should have failed')
} catch (err: any) {
expect(err).to.have.property('name', 'AggregateError')
}
expect(actions['/ip4/127.0.0.1/tcp/1231']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1232']).to.have.property('callCount', 1)
expect(actions['/ip4/127.0.0.1/tcp/1233']).to.have.property('callCount', 1)
expect(dialerGetTokensSpy.calledWith(addrs.length)).to.equal(true)
expect(dialerReleaseTokenSpy.callCount).to.equal(2)
})
})