-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpath_gateway_unixfs_test.go
436 lines (419 loc) · 13.9 KB
/
path_gateway_unixfs_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
package tests
import (
"strings"
"testing"
"github.com/ipfs/gateway-conformance/tooling/car"
. "github.com/ipfs/gateway-conformance/tooling/check"
"github.com/ipfs/gateway-conformance/tooling/ipns"
"github.com/ipfs/gateway-conformance/tooling/specs"
. "github.com/ipfs/gateway-conformance/tooling/test"
. "github.com/ipfs/gateway-conformance/tooling/tmpl"
)
func TestUnixFSDirectoryListing(t *testing.T) {
fixture := car.MustOpenUnixfsCar("dir_listing/fixtures.car")
root := fixture.MustGetNode()
file := fixture.MustGetNode("ą", "ę", "file-źł.txt")
tests := SugarTests{
{
Name: "path gw: backlink on root CID should be hidden (TODO: cleanup Kubo-specifics)",
Request: Request().
Path("/ipfs/{{cid}}/", root.Cid()),
Response: Expect().
Body(
And(
Contains("Index of"),
Not(Contains(`<a href="/ipfs/{{cid}}/">..</a>`, root.Cid())),
)),
},
{
Name: "path gw: redirect dir listing to URL with trailing slash",
Request: Request().
Path("/ipfs/{{cid}}/ą/ę", root.Cid()),
Response: Expect().
Status(301).
Headers(
Header("Location", `/ipfs/{{cid}}/%c4%85/%c4%99/`, root.Cid()),
),
},
{
Name: "path gw: dir listing HTML response (TODO: cleanup Kubo-specifics)",
Request: Request().
Path("/ipfs/{{cid}}/ą/ę/", root.Cid()),
Response: Expect().
Headers(
Header("Etag").Contains(`"DirIndex-`),
).
BodyWithHint(`
- should contain "Index of" (TODO: kubo-specific)
- Breadcrumbs should point at /ipfs namespace mounted at Origin root (TODO: kubo-specific)
- backlink on subdirectory should point at parent directory
- name column should be a link to its content path
- hash column should be a CID link with filename param
`,
And(
Contains("Index of"),
Contains(`/ipfs/<a href="/ipfs/{{cid}}">{{cid}}</a>/<a href="/ipfs/{{cid}}/%C4%85">ą</a>/<a href="/ipfs/{{cid}}/%C4%85/%C4%99">ę</a>`,
root.Cid()),
Contains(`<a href="/ipfs/{{cid}}/%C4%85/%C4%99/..">..</a>`, root.Cid()),
Contains(`<a href="/ipfs/{{cid}}/%C4%85/%C4%99/file-%C5%BA%C5%82.txt">file-źł.txt</a>`, root.Cid()),
Contains(`<a class="ipfs-hash" translate="no" href="/ipfs/{{cid}}?filename=file-%25C5%25BA%25C5%2582.txt">`, file.Cid())),
),
},
}
RunWithSpecs(t, tests, specs.PathGatewayUnixFS)
}
func TestGatewayCache(t *testing.T) {
fixture := car.MustOpenUnixfsCar("gateway-cache/fixtures.car")
tests := SugarTests{
{
Name: "GET for /ipfs/ unixfs dir listing succeeds",
Request: Request().
Path("/ipfs/{{CID}}/root2/root3/", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
Header("X-Ipfs-Path").
Equals("/ipfs/{{CID}}/root2/root3/", fixture.MustGetCid()),
Header("X-Ipfs-Roots").
Equals("{{CID1}},{{CID2}},{{CID3}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3")),
Header("Etag").
Matches("DirIndex-.*_CID-{{cid}}", fixture.MustGetCid("root2", "root3")),
),
},
{
Name: "GET for /ipfs/ unixfs dir with index.html succeeds",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
Equals("public, max-age=29030400, immutable"),
Header("X-Ipfs-Path").
Equals("/ipfs/{{CID}}/root2/root3/root4/", fixture.MustGetCid()),
Header("X-Ipfs-Roots").
Equals("{{CID1}},{{CID2}},{{CID3}},{{CID4}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3"), fixture.MustGetCid("root2", "root3", "root4")),
Header("Etag").
Equals(`"{{CID}}"`, fixture.MustGetCid("root2", "root3", "root4")),
),
},
{
Name: "GET for /ipfs/ unixfs file succeeds",
Request: Request().
Path("/ipfs/{{CID}}/root2/root3/root4/index.html", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
Equals("public, max-age=29030400, immutable"),
Header("X-Ipfs-Path").
Equals("/ipfs/{{CID}}/root2/root3/root4/index.html", fixture.MustGetCid()),
Header("X-Ipfs-Roots").
Equals("{{cid1}},{{cid2}},{{cid3}},{{cid4}},{{cid5}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3"), fixture.MustGetCid("root2", "root3", "root4"), fixture.MustGetCid("root2", "root3", "root4", "index.html")),
Header("Etag").
Equals(`"{{cid}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html")),
),
},
{
Name: "GET for /ipfs/ unixfs dir as DAG-JSON succeeds",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/?format=dag-json", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
Equals("public, max-age=29030400, immutable"),
),
},
{
Name: "GET for /ipfs/ unixfs dir as JSON succeeds",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/?format=json", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
Equals("public, max-age=29030400, immutable"),
),
},
{
Name: "HEAD for /ipfs/ with only-if-cached succeeds when in local datastore",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/?format=json", fixture.MustGetCid()).
Headers(
Header("Cache-Control", "only-if-cached"),
).
Method("HEAD"),
Response: Expect().
Status(200),
},
{
Name: "HEAD for /ipfs/ with only-if-cached fails when not in local datastore",
Request: Request().
Path("/ipfs/QmYzfKSE55XCjD1MW128RfciAf2DViABhEiXfgVFMabSjN").
Headers(
Header("Cache-Control", "only-if-cached"),
).
Method("HEAD"),
Response: Expect().
Status(412),
},
{
Name: "GET for /ipfs/ with only-if-cached succeeds when in local datastore",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/?format=json", fixture.MustGetCid()).
Headers(
Header("Cache-Control", "only-if-cached"),
),
Response: Expect().
Status(200),
},
{
Name: "GET for /ipfs/ with only-if-cached fails when not in local datastore",
Request: Request().
Path("/ipfs/QmYzfKSE55XCjD1MW128RfciAf2DViABhEiXfgVFMabSjN").
Headers(
Header("Cache-Control", "only-if-cached"),
),
Response: Expect().
Status(412),
},
// ==========
// # If-None-Match (return 304 Not Modified when client sends matching Etag they already have)
// ==========
{
Name: "GET for /ipfs/ file with matching Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/index.html", fixture.MustGetCid()).
Headers(
Header("If-None-Match", Fmt(`"{{cid}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html"))),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ dir with index.html file with matching Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/", fixture.MustGetCid()).
Headers(
Header("If-None-Match", Fmt(`"{{cid}}"`, fixture.MustGetCid("root2", "root3", "root4"))),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ file with matching third Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/index.html", fixture.MustGetCid()).
Headers(
Header("If-None-Match", Fmt(`"fakeEtag1", "fakeEtag2", "{{cid}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html"))),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ file with matching weak Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/index.html", fixture.MustGetCid()).
Headers(
Header("If-None-Match", Fmt(`W/"{{cid}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html"))),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ file with wildcard Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/root4/index.html", fixture.MustGetCid()).
Headers(
Header("If-None-Match", "*"),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ dir listing with matching weak Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/", fixture.MustGetCid()).
Headers(
Header("If-None-Match", Fmt(`W/"{{cid}}"`, fixture.MustGetCid("root2", "root3"))),
),
Response: Expect().
Status(304),
},
}
RunWithSpecs(t, tests, specs.PathGatewayUnixFS)
// DirIndex etagDir is based on xxhash(./assets/dir-index-html), so we need to fetch it dynamically
var etagDir string
testsA := SugarTests{
{
Name: "DirIndex etag is based on xxhash(./assets/dir-index-html), so we need to fetch it dynamically",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/", fixture.MustGetCid()),
Response: Expect().
Status(200).
Headers(
Header("Etag").
Checks(func(v string) bool {
etagDir = strings.Trim(v, `"`)
return v != ""
}),
),
},
}
RunWithSpecs(t, testsA, specs.PathGatewayUnixFS)
testsB := SugarTests{
{
Name: "GET for /ipfs/ dir listing with matching strong Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/", fixture.MustGetCid()).
Headers(
Header("If-None-Match", `"{{etag}}"`, etagDir),
),
Response: Expect().
Status(304),
},
{
Name: "GET for /ipfs/ dir listing with matching weak Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipfs/{{cid}}/root2/root3/", fixture.MustGetCid()).
Headers(
Header("If-None-Match", `W/"{{etag}}"`, etagDir),
),
Response: Expect().
Status(304),
},
}
RunWithSpecs(t, testsB, specs.PathGatewayUnixFS)
}
func TestGatewayCacheWithIPNS(t *testing.T) {
fixture := car.MustOpenUnixfsCar("gateway-cache/fixtures.car")
ipns := ipns.MustOpenIPNSRecordWithKey("gateway-cache/k51qzi5uqu5dlxdsdu5fpuu7h69wu4ohp32iwm9pdt9nq3y5rpn3ln9j12zfhe.ipns-record")
ipnsKey := ipns.Key()
tests := SugarTests{
{
Name: "GET for /ipns/ unixfs dir listing succeeds",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/", ipnsKey),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
Header("X-Ipfs-Path").
Equals("/ipns/{{KEY}}/root2/root3/", ipnsKey),
Header("X-Ipfs-Roots").
Equals("{{CID1}},{{CID2}},{{CID3}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3")),
Header("Etag").
Matches("DirIndex-.*_CID-{{CID}}", fixture.MustGetCid("root2", "root3")),
),
},
{
Name: "GET for /ipns/ unixfs dir with index.html succeeds",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/root4/", ipnsKey),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
Header("X-Ipfs-Path").
Equals("/ipns/{{KEY}}/root2/root3/root4/", ipnsKey),
Header("X-Ipfs-Roots").
Equals("{{CID1}},{{CID2}},{{CID3}},{{CID4}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3"), fixture.MustGetCid("root2", "root3", "root4")),
Header("Etag").
Matches(`"{{CID}}"`, fixture.MustGetCid("root2", "root3", "root4")),
),
},
{
Name: "GET for /ipns/ unixfs file succeeds",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/root4/index.html", ipnsKey),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
Header("X-Ipfs-Path").
Equals("/ipns/{{KEY}}/root2/root3/root4/index.html", ipnsKey),
Header("X-Ipfs-Roots").
Equals("{{CID1}},{{CID2}},{{CID3}},{{CID4}},{{CID5}}", fixture.MustGetCid(), fixture.MustGetCid("root2"), fixture.MustGetCid("root2", "root3"), fixture.MustGetCid("root2", "root3", "root4"), fixture.MustGetCid("root2", "root3", "root4", "index.html")),
Header("Etag").
Equals(`"{{CID}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html")),
),
},
{
Name: "GET for /ipns/ unixfs dir as DAG-JSON succeeds",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/root4/", ipnsKey).
Query("format", "dag-json"),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
),
},
{
Name: "GET for /ipns/ unixfs dir as JSON succeeds",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/root4/", ipnsKey).
Query("format", "json"),
Response: Expect().
Status(200).
Headers(
Header("Cache-Control").
IsEmpty(),
),
},
{
Name: "GET for /ipns/ file with matching Etag in If-None-Match returns 304 Not Modified",
Request: Request().
Path("/ipns/{{KEY}}/root2/root3/root4/index.html", ipnsKey).
Headers(
Header("If-None-Match", Fmt(`"{{CID}}"`, fixture.MustGetCid("root2", "root3", "root4", "index.html"))),
),
Response: Expect().
Status(304),
},
}
RunWithSpecs(t, tests, specs.PathGatewayUnixFS, specs.PathGatewayIPNS)
}
func TestGatewaySymlink(t *testing.T) {
fixture := car.MustOpenUnixfsCar("path_gateway_unixfs/symlink.car")
rootDirCID := fixture.MustGetCid()
tests := SugarTests{
{
Name: "Test the directory listing",
Request: Request().
Path("/ipfs/{{CID}}/", rootDirCID),
Response: Expect().
Body(
And(
Contains(">foo<"),
Contains(">bar<"),
),
),
},
{
Name: "Test the directory raw query",
Request: Request().
Path("/ipfs/{{CID}}", rootDirCID).
Query("format", "raw"),
Response: Expect().
Status(200).
Body(fixture.MustGetRawData()),
},
{
Name: "Test the symlink",
Request: Request().
Path("/ipfs/{{CID}}/bar", rootDirCID),
Response: Expect().
Status(200).
Bytes("foo"),
},
}
RunWithSpecs(t, tests, specs.PathGatewayUnixFS)
}