@@ -53,21 +53,27 @@ module.exports = (common) => {
53
53
describe ( '.add' , ( ) => {
54
54
it ( 'stream' , ( done ) => {
55
55
const buffered = new Buffer ( 'some data' )
56
+ const expectedMultihash = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS'
57
+
56
58
const rs = new Readable ( )
57
59
rs . push ( buffered )
58
60
rs . push ( null )
59
61
60
62
const arr = [ ]
61
- const filePair = { path : 'data.txt' , content : rs }
63
+ const filePair = {
64
+ path : 'data.txt' ,
65
+ content : rs
66
+ }
67
+
62
68
arr . push ( filePair )
63
69
64
70
ipfs . files . add ( arr , ( err , res ) => {
65
71
expect ( err ) . to . not . exist
66
72
expect ( res ) . to . be . length ( 1 )
67
- expect ( res [ 0 ] . path ) . to . equal ( 'data.txt' )
68
- expect ( res [ 0 ] . node . size ( ) ) . to . equal ( 17 )
69
- const mh = 'QmVv4Wz46JaZJeH5PMV4LGbRiiMKEmszPYY3g6fjGnVXBS'
70
- expect ( bs58 . encode ( res [ 0 ] . node . multihash ( ) ) . toString ( ) ) . to . equal ( mh )
73
+ const file = res [ 0 ]
74
+ expect ( file . path ) . to . equal ( 'data.txt' )
75
+ expect ( file . size ) . to . equal ( 17 )
76
+ expect ( file . hash ) . to . equal ( expectedMultihash )
71
77
done ( )
72
78
} )
73
79
} )
@@ -77,41 +83,40 @@ module.exports = (common) => {
77
83
path : 'testfile.txt' ,
78
84
content : smallFile
79
85
}
86
+ const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
80
87
81
88
ipfs . files . add ( [ file ] , ( err , res ) => {
82
89
expect ( err ) . to . not . exist
83
90
84
- const added = res [ 0 ] != null ? res [ 0 ] : res
85
- const mh = bs58 . encode ( added . node . multihash ( ) ) . toString ( )
86
- expect ( mh ) . to . equal ( 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP' )
87
- expect ( added . path ) . to . equal ( 'testfile.txt' )
88
- expect ( added . node . links ) . to . have . length ( 0 )
91
+ const file = res [ 0 ]
92
+ expect ( file . hash ) . to . equal ( expectedMultihash )
93
+ expect ( file . path ) . to . equal ( 'testfile.txt' )
89
94
done ( )
90
95
} )
91
96
} )
92
97
93
98
it ( 'buffer' , ( done ) => {
99
+ const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
100
+
94
101
ipfs . files . add ( smallFile , ( err , res ) => {
95
102
expect ( err ) . to . not . exist
96
-
97
103
expect ( res ) . to . have . length ( 1 )
98
- const mh = bs58 . encode ( res [ 0 ] . node . multihash ( ) ) . toString ( )
99
- expect ( mh ) . to . equal ( 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP' )
100
- expect ( res [ 0 ] . path ) . to . equal ( mh )
101
- expect ( res [ 0 ] . node . links ) . to . have . length ( 0 )
104
+ const file = res [ 0 ]
105
+ expect ( file . hash ) . to . equal ( expectedMultihash )
106
+ expect ( file . path ) . to . equal ( file . hash )
102
107
done ( )
103
108
} )
104
109
} )
105
110
106
111
it ( 'BIG buffer' , ( done ) => {
112
+ const expectedMultihash = 'Qme79tX2bViL26vNjPsF3DP1R9rMKMvnPYJiKTTKPrXJjq'
113
+
107
114
ipfs . files . add ( bigFile , ( err , res ) => {
108
115
expect ( err ) . to . not . exist
109
-
110
116
expect ( res ) . to . have . length ( 1 )
111
- expect ( res [ 0 ] . node . links ) . to . have . length ( 58 )
112
- const mh = bs58 . encode ( res [ 0 ] . node . multihash ( ) ) . toString ( )
113
- expect ( res [ 0 ] . path ) . to . equal ( mh )
114
- expect ( mh ) . to . equal ( 'Qme79tX2bViL26vNjPsF3DP1R9rMKMvnPYJiKTTKPrXJjq' )
117
+ const file = res [ 0 ]
118
+ expect ( file . hash ) . to . equal ( expectedMultihash )
119
+ expect ( file . path ) . to . equal ( file . hash )
115
120
done ( )
116
121
} )
117
122
} )
@@ -121,9 +126,13 @@ module.exports = (common) => {
121
126
path : `test-folder/${ name } ` ,
122
127
content : directoryContent [ name ]
123
128
} )
129
+
124
130
const emptyDir = ( name ) => ( {
125
131
path : `test-folder/${ name } `
126
132
} )
133
+
134
+ const expectedRootMultihash = 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP'
135
+
127
136
const dirs = [
128
137
content ( 'pp.txt' ) ,
129
138
content ( 'holmes.txt' ) ,
@@ -137,13 +146,10 @@ module.exports = (common) => {
137
146
138
147
ipfs . files . add ( dirs , ( err , res ) => {
139
148
expect ( err ) . to . not . exist
149
+ const root = res [ res . length - 1 ]
140
150
141
- const added = res [ res . length - 1 ]
142
- const mh = bs58 . encode ( added . node . multihash ( ) ) . toString ( )
143
- expect ( added . node . links ) . to . have . length ( 6 )
144
- expect ( added . path ) . to . equal ( 'test-folder' )
145
- expect ( mh ) . to . equal ( 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP' )
146
-
151
+ expect ( root . path ) . to . equal ( 'test-folder' )
152
+ expect ( root . hash ) . to . equal ( expectedRootMultihash )
147
153
done ( )
148
154
} )
149
155
} )
@@ -154,9 +160,13 @@ module.exports = (common) => {
154
160
path : `test-folder/${ name } ` ,
155
161
content : directoryContent [ name ]
156
162
} )
163
+
157
164
const emptyDir = ( name ) => ( {
158
165
path : `test-folder/${ name } `
159
166
} )
167
+
168
+ const expectedRootMultihash = 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP'
169
+
160
170
const files = [
161
171
content ( 'pp.txt' ) ,
162
172
content ( 'holmes.txt' ) ,
@@ -171,11 +181,9 @@ module.exports = (common) => {
171
181
ipfs . files . createAddStream ( ( err , stream ) => {
172
182
expect ( err ) . to . not . exist
173
183
174
- stream . on ( 'data' , ( tuple ) => {
175
- if ( tuple . path === 'test-folder' ) {
176
- const mh = bs58 . encode ( tuple . node . multihash ( ) ) . toString ( )
177
- expect ( mh ) . to . equal ( 'QmVvjDy7yF7hdnqE8Hrf4MHo5ABDtb5AbX6hWbD3Y42bXP' )
178
- expect ( tuple . node . links ) . to . have . length ( 6 )
184
+ stream . on ( 'data' , ( file ) => {
185
+ if ( file . path === 'test-folder' ) {
186
+ expect ( file . hash ) . to . equal ( expectedRootMultihash )
179
187
}
180
188
} )
181
189
@@ -232,14 +240,14 @@ module.exports = (common) => {
232
240
233
241
describe ( 'promise API' , ( ) => {
234
242
describe ( '.add' , ( ) => {
243
+ const expectedMultihash = 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP'
244
+
235
245
it ( 'buffer' , ( ) => {
236
246
return ipfs . files . add ( smallFile )
237
247
. then ( ( res ) => {
238
- const added = res [ 0 ] != null ? res [ 0 ] : res
239
- const mh = bs58 . encode ( added . node . multihash ( ) ) . toString ( )
240
- expect ( mh ) . to . equal ( 'Qma4hjFTnCasJ8PVp3mZbZK5g2vGDT4LByLJ7m8ciyRFZP' )
241
- expect ( added . path ) . to . equal ( mh )
242
- expect ( added . node . links ) . to . have . length ( 0 )
248
+ const file = res [ 0 ]
249
+ expect ( file . hash ) . to . equal ( expectedMultihash )
250
+ expect ( file . path ) . to . equal ( file . hash )
243
251
} )
244
252
} )
245
253
} )
0 commit comments