2
2
3
3
const chai = require ( 'chai' )
4
4
const dirtyChai = require ( 'dirty-chai' )
5
+ const series = require ( 'async/series' )
5
6
const expect = chai . expect
6
7
const statsTests = require ( './utils/stats' )
7
8
const spawn = require ( './utils/spawn' )
@@ -10,7 +11,8 @@ const CID = require('cids')
10
11
11
12
module . exports = ( common ) => {
12
13
describe ( '.bitswap online' , ( ) => {
13
- let ipfs
14
+ let ipfsA
15
+ let ipfsB
14
16
let withGo
15
17
const key = 'QmUBdnXXPyoDFXj3Hj39dNJ5VkN3QFRskXxcGaYFBB8CNR'
16
18
@@ -21,44 +23,63 @@ module.exports = (common) => {
21
23
22
24
common . setup ( ( err , factory ) => {
23
25
expect ( err ) . to . not . exist ( )
24
- spawn . spawnNodeWithId ( factory , ( err , node ) => {
25
- expect ( err ) . to . not . exist ( )
26
- ipfs = node
27
- withGo = node . peerId . agentVersion . startsWith ( 'go-ipfs' )
28
- ipfs . block . get ( key )
29
- . then ( ( ) => { } )
30
- . catch ( ( ) => { } )
31
- done ( )
32
- } )
26
+ series ( [
27
+ ( cb ) => spawn . spawnNodeWithId ( factory , ( err , node ) => {
28
+ expect ( err ) . to . not . exist ( )
29
+ ipfsA = node
30
+ withGo = node . peerId . agentVersion . startsWith ( 'go-ipfs' )
31
+ cb ( )
32
+ //ipfsA.block.get(key)
33
+ //.then(() => {})
34
+ //.catch(() => {})
35
+ //cb()
36
+ } ) ,
37
+ ( cb ) => spawn . spawnNodeWithId ( factory , ( err , node ) => {
38
+ expect ( err ) . to . not . exist ( )
39
+ ipfsB = node
40
+ ipfsB . block . get ( new CID ( key ) )
41
+ . then ( ( ) => { } )
42
+ . catch ( ( ) => { } )
43
+ ipfsA . swarm . connect ( node . peerId . addresses [ 0 ] , cb )
44
+ } )
45
+ ] , done )
33
46
} )
34
47
} )
35
48
36
49
after ( ( done ) => common . teardown ( done ) )
37
50
38
51
it ( '.stat' , ( done ) => {
39
-
40
- ipfs . bitswap . stat ( ( err , stats ) => {
52
+ ipfsA . bitswap . stat ( ( err , stats ) => {
53
+ expect ( err ) . to . not . exist ( )
41
54
statsTests . expectIsBitswap ( err , stats )
42
55
done ( )
43
56
} )
44
57
} )
45
58
46
59
it ( '.wantlist' , ( done ) => {
47
- ipfs . bitswap . wantlist ( ( err , list ) => {
60
+ ipfsA . bitswap . wantlist ( ( err , list ) => {
48
61
expect ( err ) . to . not . exist ( )
49
62
expect ( list . Keys ) . to . have . length ( 1 ) ;
50
63
expect ( list . Keys [ 0 ] [ '/' ] ) . to . equal ( key )
51
64
done ( )
52
65
} )
53
66
} )
54
67
68
+ it ( '.wantlist peerid' , ( done ) => {
69
+ ipfsA . bitswap . wantlist ( ipfsBId , ( err , list ) => {
70
+ expect ( err ) . to . not . exist ( )
71
+ expect ( list . Keys [ 0 ] [ '/' ] ) . to . equal ( key )
72
+ done ( )
73
+ } )
74
+ } )
75
+
55
76
it ( '.unwant' , function ( done ) {
56
77
if ( withGo ) {
57
78
this . skip ( )
58
79
}
59
- ipfs . bitswap . unwant ( key , ( err ) => {
80
+ ipfsA . bitswap . unwant ( key , ( err ) => {
60
81
expect ( err ) . to . not . exist ( ) ;
61
- ipfs . bitswap . wantlist ( ( err , list ) => {
82
+ ipfsA . bitswap . wantlist ( ( err , list ) => {
62
83
expect ( err ) . to . not . exist ( ) ;
63
84
expect ( list . Keys ) . to . be . empty ( )
64
85
done ( )
0 commit comments