@@ -13,12 +13,14 @@ import { pEvent } from 'p-event'
13
13
import Sinon from 'sinon'
14
14
import { stubInterface } from 'sinon-ts'
15
15
import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string'
16
- import { Upgrader , type UpgraderInit } from '../../src/upgrader.js'
16
+ import { Upgrader } from '../../src/upgrader.js'
17
17
import { createDefaultUpgraderComponents } from './utils.js'
18
+ import type { UpgraderComponents , UpgraderInit } from '../../src/upgrader.js'
18
19
import type { ConnectionEncrypter , StreamMuxerFactory , MultiaddrConnection , StreamMuxer , ConnectionProtector , PeerId , SecuredConnection , Stream , StreamMuxerInit , Connection } from '@libp2p/interface'
19
20
import type { ConnectionManager , Registrar } from '@libp2p/interface-internal'
20
21
21
22
describe ( 'upgrader' , ( ) => {
23
+ let components : UpgraderComponents
22
24
let init : UpgraderInit
23
25
const encrypterProtocol = '/test-encrypter'
24
26
const muxerProtocol = '/test-muxer'
@@ -36,6 +38,7 @@ describe('upgrader', () => {
36
38
beforeEach ( async ( ) => {
37
39
remotePeer = peerIdFromPrivateKey ( await generateKeyPair ( 'Ed25519' ) )
38
40
remoteAddr = multiaddr ( `/ip4/123.123.123.123/tcp/1234/p2p/${ remotePeer } ` )
41
+ components = await createDefaultUpgraderComponents ( )
39
42
40
43
init = {
41
44
connectionEncrypters : [
@@ -76,7 +79,7 @@ describe('upgrader', () => {
76
79
} )
77
80
78
81
it ( 'should upgrade outbound with valid muxers and crypto' , async ( ) => {
79
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , init )
82
+ const upgrader = new Upgrader ( components , init )
80
83
const conn = await upgrader . upgradeOutbound ( maConn , {
81
84
signal : AbortSignal . timeout ( 5_000 )
82
85
} )
@@ -85,7 +88,7 @@ describe('upgrader', () => {
85
88
} )
86
89
87
90
it ( 'should upgrade outbound with only crypto' , async ( ) => {
88
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
91
+ const upgrader = new Upgrader ( components , {
89
92
...init ,
90
93
streamMuxers : [ ]
91
94
} )
@@ -102,9 +105,10 @@ describe('upgrader', () => {
102
105
const connectionProtector = stubInterface < ConnectionProtector > ( )
103
106
connectionProtector . protect . callsFake ( async ( conn ) => conn )
104
107
105
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( {
108
+ const upgrader = new Upgrader ( {
109
+ ...components ,
106
110
connectionProtector
107
- } ) , init )
111
+ } , init )
108
112
109
113
await upgrader . upgradeInbound ( maConn , {
110
114
signal : AbortSignal . timeout ( 5_000 )
@@ -117,9 +121,10 @@ describe('upgrader', () => {
117
121
const connectionProtector = stubInterface < ConnectionProtector > ( )
118
122
connectionProtector . protect . callsFake ( async ( conn ) => conn )
119
123
120
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( {
124
+ const upgrader = new Upgrader ( {
125
+ ...components ,
121
126
connectionProtector
122
- } ) , init )
127
+ } , init )
123
128
124
129
await upgrader . upgradeOutbound ( maConn , {
125
130
signal : AbortSignal . timeout ( 5_000 )
@@ -129,7 +134,7 @@ describe('upgrader', () => {
129
134
} )
130
135
131
136
it ( 'should fail inbound if crypto fails' , async ( ) => {
132
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
137
+ const upgrader = new Upgrader ( components , {
133
138
...init ,
134
139
connectionEncrypters : [
135
140
new BoomCrypto ( )
@@ -143,7 +148,7 @@ describe('upgrader', () => {
143
148
} )
144
149
145
150
it ( 'should fail outbound if crypto fails' , async ( ) => {
146
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
151
+ const upgrader = new Upgrader ( components , {
147
152
...init ,
148
153
connectionEncrypters : [
149
154
new BoomCrypto ( )
@@ -157,7 +162,7 @@ describe('upgrader', () => {
157
162
} )
158
163
159
164
it ( 'should abort if inbound upgrade is slow' , async ( ) => {
160
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
165
+ const upgrader = new Upgrader ( components , {
161
166
...init ,
162
167
inboundUpgradeTimeout : 100
163
168
} )
@@ -174,7 +179,7 @@ describe('upgrader', () => {
174
179
} )
175
180
176
181
it ( 'should abort by signal if inbound upgrade is slow' , async ( ) => {
177
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
182
+ const upgrader = new Upgrader ( components , {
178
183
...init ,
179
184
inboundUpgradeTimeout : 10000
180
185
} )
@@ -212,7 +217,7 @@ describe('upgrader', () => {
212
217
} )
213
218
214
219
it ( 'should not abort if outbound upgrade is successful' , async ( ) => {
215
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
220
+ const upgrader = new Upgrader ( components , {
216
221
...init ,
217
222
inboundUpgradeTimeout : 100
218
223
} )
@@ -248,7 +253,7 @@ describe('upgrader', () => {
248
253
} )
249
254
250
255
it ( 'should not abort by signal if outbound upgrade is successful' , async ( ) => {
251
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
256
+ const upgrader = new Upgrader ( components , {
252
257
...init ,
253
258
inboundUpgradeTimeout : 10000
254
259
} )
@@ -263,7 +268,7 @@ describe('upgrader', () => {
263
268
} )
264
269
265
270
it ( 'should abort protocol selection for slow outbound stream creation' , async ( ) => {
266
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
271
+ const upgrader = new Upgrader ( components , {
267
272
...init ,
268
273
streamMuxers : [
269
274
stubInterface < StreamMuxerFactory > ( {
@@ -298,7 +303,7 @@ describe('upgrader', () => {
298
303
it ( 'should abort stream when protocol negotiation fails on outbound stream' , async ( ) => {
299
304
let stream : Stream | undefined
300
305
301
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( ) , {
306
+ const upgrader = new Upgrader ( components , {
302
307
...init ,
303
308
streamMuxers : [
304
309
stubInterface < StreamMuxerFactory > ( {
@@ -376,9 +381,10 @@ describe('upgrader', () => {
376
381
protocol : encrypterProtocol
377
382
} )
378
383
379
- const upgrader = new Upgrader ( await createDefaultUpgraderComponents ( {
384
+ const upgrader = new Upgrader ( {
385
+ ...components ,
380
386
connectionProtector
381
- } ) , {
387
+ } , {
382
388
...init ,
383
389
connectionEncrypters : [
384
390
connectionEncrypter
@@ -617,4 +623,84 @@ describe('upgrader', () => {
617
623
await expect ( conn . newStream ( protocol , opts ) ) . to . eventually . be . rejected
618
624
. with . property ( 'name' , 'TooManyOutboundProtocolStreamsError' )
619
625
} )
626
+
627
+ describe ( 'early muxer selection' , ( ) => {
628
+ let earlyMuxerProtocol : string
629
+ let streamMuxerFactory : StreamMuxerFactory
630
+ let upgrader : Upgrader
631
+ let maConn : MultiaddrConnection
632
+ let encrypterProtocol : string
633
+
634
+ beforeEach ( async ( ) => {
635
+ encrypterProtocol = '/test-encrypt-with-early'
636
+ earlyMuxerProtocol = '/early-muxer'
637
+ streamMuxerFactory = stubInterface < StreamMuxerFactory > ( {
638
+ protocol : earlyMuxerProtocol ,
639
+ createStreamMuxer : ( ) => stubInterface < StreamMuxer > ( {
640
+ protocol : earlyMuxerProtocol ,
641
+ sink : async ( source ) => drain ( source ) ,
642
+ source : ( async function * ( ) { } ) ( )
643
+ } )
644
+ } )
645
+
646
+ upgrader = new Upgrader ( components , {
647
+ connectionEncrypters : [
648
+ stubInterface < ConnectionEncrypter > ( {
649
+ protocol : encrypterProtocol ,
650
+ secureOutbound : async ( connection ) => ( {
651
+ conn : connection ,
652
+ remotePeer,
653
+ streamMuxer : streamMuxerFactory
654
+ } ) ,
655
+ secureInbound : async ( connection ) => ( {
656
+ conn : connection ,
657
+ remotePeer,
658
+ streamMuxer : streamMuxerFactory
659
+ } )
660
+ } )
661
+ ] ,
662
+ streamMuxers : [
663
+ stubInterface < StreamMuxerFactory > ( {
664
+ protocol : '/late-muxer' ,
665
+ createStreamMuxer : ( ) => stubInterface < StreamMuxer > ( {
666
+ protocol : '/late-muxer' ,
667
+ sink : async ( source ) => drain ( source ) ,
668
+ source : ( async function * ( ) { } ) ( )
669
+ } )
670
+ } )
671
+ ]
672
+ } )
673
+
674
+ maConn = stubInterface < MultiaddrConnection > ( {
675
+ remoteAddr,
676
+ log : logger ( 'test' ) ,
677
+ sink : async ( source ) => drain ( source ) ,
678
+ source : map ( ( async function * ( ) {
679
+ yield '/multistream/1.0.0\n'
680
+ yield `${ encrypterProtocol } \n`
681
+ } ) ( ) , str => encode . single ( uint8ArrayFromString ( str ) ) )
682
+ } )
683
+ } )
684
+
685
+ it ( 'should allow early muxer selection on inbound connection' , async ( ) => {
686
+ const connectionPromise = pEvent < 'connection:open' , CustomEvent < Connection > > ( components . events , 'connection:open' )
687
+
688
+ await upgrader . upgradeInbound ( maConn , {
689
+ signal : AbortSignal . timeout ( 5_000 )
690
+ } )
691
+
692
+ const event = await connectionPromise
693
+ const conn = event . detail
694
+
695
+ expect ( conn . multiplexer ) . to . equal ( earlyMuxerProtocol )
696
+ } )
697
+
698
+ it ( 'should allow early muxer selection on outbound connection' , async ( ) => {
699
+ const conn = await upgrader . upgradeOutbound ( maConn , {
700
+ signal : AbortSignal . timeout ( 5_000 )
701
+ } )
702
+
703
+ expect ( conn . multiplexer ) . to . equal ( earlyMuxerProtocol )
704
+ } )
705
+ } )
620
706
} )
0 commit comments