@@ -31,9 +31,17 @@ module.exports = (createCommon, options) => {
31
31
32
32
function populate ( ) {
33
33
series ( [
34
- cb => ipfs . add ( fixtures . files [ 0 ] . data , { pin : false } , cb ) ,
34
+ // two files wrapped in directories, only root CID pinned recursively
35
+ cb => {
36
+ const dir = fixtures . directory . files . map ( ( file ) => ( { path : file . path , content : file . data } ) )
37
+ ipfs . add ( dir , { pin : false , cidVersion : 0 } , cb )
38
+ } ,
39
+ cb => ipfs . pin . add ( fixtures . directory . cid , { recursive : true } , cb ) ,
40
+ // a file (CID pinned recursively)
41
+ cb => ipfs . add ( fixtures . files [ 0 ] . data , { pin : false , cidVersion : 0 } , cb ) ,
35
42
cb => ipfs . pin . add ( fixtures . files [ 0 ] . cid , { recursive : true } , cb ) ,
36
- cb => ipfs . add ( fixtures . files [ 1 ] . data , { pin : false } , cb ) ,
43
+ // a single CID (pinned directly)
44
+ cb => ipfs . add ( fixtures . files [ 1 ] . data , { pin : false , cidVersion : 0 } , cb ) ,
37
45
cb => ipfs . pin . add ( fixtures . files [ 1 ] . cid , { recursive : false } , cb )
38
46
] , done )
39
47
}
@@ -42,21 +50,24 @@ module.exports = (createCommon, options) => {
42
50
after ( ( done ) => common . teardown ( done ) )
43
51
44
52
// 1st, because ipfs.add pins automatically
45
- it ( 'should list recursive pins' , ( done ) => {
53
+ it ( 'should list all recursive pins' , ( done ) => {
46
54
ipfs . pin . ls ( { type : 'recursive' } , ( err , pinset ) => {
47
55
expect ( err ) . to . not . exist ( )
48
56
expect ( pinset ) . to . deep . include ( {
49
57
type : 'recursive' ,
50
58
hash : fixtures . files [ 0 ] . cid
51
59
} )
60
+ expect ( pinset ) . to . deep . include ( {
61
+ type : 'recursive' ,
62
+ hash : fixtures . directory . cid
63
+ } )
52
64
done ( )
53
65
} )
54
66
} )
55
67
56
- it ( 'should list indirect pins' , ( done ) => {
68
+ it ( 'should list all indirect pins' , ( done ) => {
57
69
ipfs . pin . ls ( { type : 'indirect' } , ( err , pinset ) => {
58
70
expect ( err ) . to . not . exist ( )
59
- // because the pinned files have no links
60
71
expect ( pinset ) . to . not . deep . include ( {
61
72
type : 'recursive' ,
62
73
hash : fixtures . files [ 0 ] . cid
@@ -65,14 +76,31 @@ module.exports = (createCommon, options) => {
65
76
type : 'direct' ,
66
77
hash : fixtures . files [ 1 ] . cid
67
78
} )
79
+ expect ( pinset ) . to . not . deep . include ( {
80
+ type : 'recursive' ,
81
+ hash : fixtures . directory . cid
82
+ } )
83
+ expect ( pinset ) . to . deep . include ( {
84
+ type : 'indirect' ,
85
+ hash : fixtures . directory . files [ 0 ] . cid
86
+ } )
87
+ expect ( pinset ) . to . deep . include ( {
88
+ type : 'indirect' ,
89
+ hash : fixtures . directory . files [ 1 ] . cid
90
+ } )
68
91
done ( )
69
92
} )
70
93
} )
71
94
72
- it ( 'should list pins' , ( done ) => {
95
+ it ( 'should list all types of pins' , ( done ) => {
73
96
ipfs . pin . ls ( ( err , pinset ) => {
74
97
expect ( err ) . to . not . exist ( )
75
98
expect ( pinset ) . to . not . be . empty ( )
99
+ // check the three "roots"
100
+ expect ( pinset ) . to . deep . include ( {
101
+ type : 'recursive' ,
102
+ hash : fixtures . directory . cid
103
+ } )
76
104
expect ( pinset ) . to . deep . include ( {
77
105
type : 'recursive' ,
78
106
hash : fixtures . files [ 0 ] . cid
@@ -81,13 +109,27 @@ module.exports = (createCommon, options) => {
81
109
type : 'direct' ,
82
110
hash : fixtures . files [ 1 ] . cid
83
111
} )
112
+ expect ( pinset ) . to . deep . include ( {
113
+ type : 'indirect' ,
114
+ hash : fixtures . directory . files [ 0 ] . cid
115
+ } )
116
+ expect ( pinset ) . to . deep . include ( {
117
+ type : 'indirect' ,
118
+ hash : fixtures . directory . files [ 1 ] . cid
119
+ } )
84
120
done ( )
85
121
} )
86
122
} )
87
123
88
- it ( 'should list pins (promised)' , ( ) => {
124
+ it ( 'should list all types of pins (promised)' , ( ) => {
89
125
return ipfs . pin . ls ( )
90
126
. then ( ( pinset ) => {
127
+ expect ( pinset ) . to . not . be . empty ( )
128
+ // check our three "roots"
129
+ expect ( pinset ) . to . deep . include ( {
130
+ type : 'recursive' ,
131
+ hash : fixtures . directory . cid
132
+ } )
91
133
expect ( pinset ) . to . deep . include ( {
92
134
type : 'recursive' ,
93
135
hash : fixtures . files [ 0 ] . cid
@@ -96,12 +138,21 @@ module.exports = (createCommon, options) => {
96
138
type : 'direct' ,
97
139
hash : fixtures . files [ 1 ] . cid
98
140
} )
141
+ expect ( pinset ) . to . deep . include ( {
142
+ type : 'indirect' ,
143
+ hash : fixtures . directory . files [ 0 ] . cid
144
+ } )
145
+ expect ( pinset ) . to . deep . include ( {
146
+ type : 'indirect' ,
147
+ hash : fixtures . directory . files [ 1 ] . cid
148
+ } )
99
149
} )
100
150
} )
101
151
102
- it ( 'should list direct pins' , ( done ) => {
152
+ it ( 'should list all direct pins' , ( done ) => {
103
153
ipfs . pin . ls ( { type : 'direct' } , ( err , pinset ) => {
104
154
expect ( err ) . to . not . exist ( )
155
+ expect ( pinset ) . to . have . lengthOf ( 1 )
105
156
expect ( pinset ) . to . deep . include ( {
106
157
type : 'direct' ,
107
158
hash : fixtures . files [ 1 ] . cid
@@ -130,5 +181,45 @@ module.exports = (createCommon, options) => {
130
181
} ] )
131
182
} )
132
183
} )
184
+
185
+ it ( 'should throw an error on missing direct pins for existing path' , ( done ) => {
186
+ // ipfs.txt is an indirect pin, so lookup for direct one should throw an error
187
+ ipfs . pin . ls ( `/ipfs/${ fixtures . directory . cid } /files/ipfs.txt` , { type : 'direct' } , ( err , pinset ) => {
188
+ expect ( err ) . to . exist ( )
189
+ expect ( pinset ) . to . not . exist ( )
190
+ expect ( err . message ) . to . be . equal ( `path '/ipfs/${ fixtures . directory . cid } /files/ipfs.txt' is not pinned` )
191
+ done ( )
192
+ } )
193
+ } )
194
+
195
+ it ( 'should throw an error on missing link for a specific path' , ( done ) => {
196
+ ipfs . pin . ls ( `/ipfs/${ fixtures . directory . cid } /I-DONT-EXIST.txt` , { type : 'direct' } , ( err , pinset ) => {
197
+ expect ( err ) . to . exist ( )
198
+ expect ( pinset ) . to . not . exist ( )
199
+ expect ( err . message ) . to . be . equal ( `no link named "I-DONT-EXIST.txt" under ${ fixtures . directory . cid } ` )
200
+ done ( )
201
+ } )
202
+ } )
203
+
204
+ it ( 'should list indirect pins for a specific path' , ( done ) => {
205
+ ipfs . pin . ls ( `/ipfs/${ fixtures . directory . cid } /files/ipfs.txt` , { type : 'indirect' } , ( err , pinset ) => {
206
+ expect ( err ) . to . not . exist ( )
207
+ expect ( pinset ) . to . deep . include ( {
208
+ type : `indirect through ${ fixtures . directory . cid } ` ,
209
+ hash : fixtures . directory . files [ 1 ] . cid
210
+ } )
211
+ done ( )
212
+ } )
213
+ } )
214
+
215
+ it ( 'should list recursive pins for a specific hash (promised)' , ( ) => {
216
+ return ipfs . pin . ls ( fixtures . files [ 0 ] . cid , { type : 'recursive' } )
217
+ . then ( ( pinset ) => {
218
+ expect ( pinset ) . to . deep . equal ( [ {
219
+ type : 'recursive' ,
220
+ hash : fixtures . files [ 0 ] . cid
221
+ } ] )
222
+ } )
223
+ } )
133
224
} )
134
225
}
0 commit comments