=== RUN TestTrustlessCarPathing/GET_default_CAR_response_for_non-existing_file_%28Accept_Header%29/Body
run.go:53:
Name: GET default CAR response for non-existing file (Accept Header)
Hint:
CAR stream of a non-existing path must return 200 OK and all the blocks necessary
to traverse the path up to and including the parent of the first non-existing
segment of the path, in order to allow the client to verify that the request
path does not exist.
Request using an Accept header
Error: Body failed to list all cids: EOF
Expected Request:
{
"method": "GET",
"path": "/ipfs/bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu/subdir/i-do-not-exist",
"headers": {
"Accept": "application/vnd.ipld.car"
}
}
Actual Request:
GET /ipfs/bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu/subdir/i-do-not-exist HTTP/1.1
Host: 127.0.0.1:8081
User-Agent: Go-http-client/1.1
Accept: application/vnd.ipld.car
Accept-Encoding: gzip
Expected Response:
{
"statusCode": 200,
"headers": [
{
"key": "X-Content-Type-Options",
"check": {},
"hint": "Content type sniffing should be explicitly disabled via nosniff header."
},
{
"key": "Accept-Ranges",
"check": {},
"hint": "CAR is streamed, gateway may not have the entire thing, unable to support range-requests. Partial downloads and resumes should be handled using IPLD selectors: https://github.com/ipfs/go-ipfs/issues/8769"
},
{
"key": "Content-Type",
"check": {},
"hint": "Expected content type to be application/vnd.ipld.car"
},
{
"key": "Content-Disposition",
"check": {},
"hint": "Expected content disposition to be attachment; filename=\"*.car\""
},
{
"key": "Etag",
"check": {},
"hint": "Etag must be present for caching purposes",
"not": true
}
],
"body": {}
}
Actual Response:
HTTP/1.1 200 OK
Accept-Ranges: none
Access-Control-Allow-Headers: Content-Type
Access-Control-Allow-Headers: Range
Access-Control-Allow-Headers: User-Agent
Access-Control-Allow-Headers: X-Requested-With
Access-Control-Allow-Methods: GET
Access-Control-Allow-Methods: HEAD
Access-Control-Allow-Methods: OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Content-Length
Access-Control-Expose-Headers: Content-Range
Access-Control-Expose-Headers: X-Chunked-Output
Access-Control-Expose-Headers: X-Ipfs-Path
Access-Control-Expose-Headers: X-Ipfs-Roots
Access-Control-Expose-Headers: X-Stream-Output
Cache-Control: public, max-age=29030400, immutable
Content-Disposition: attachment; filename="bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu_i-do-not-exist.car"; filename*=UTF-8''bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu_i-do-not-exist.car
Content-Type: application/vnd.ipld.car; version=1; order=dfs; dups=n
Date: Fri, 15 Sep 2023 10:04:03 GMT
Etag: W/"bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu.car.sbcscd7sa993"
X-Content-Type-Options: nosniff
X-Ipfs-Path: /ipfs/bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu/subdir/i-do-not-exist
X-Ipfs-Roots: bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu,bafybeietjm63oynimmv5yyqay33nui4y4wx6u3peezwetxgiwvfmelutzu
Content-Length: 0
--- FAIL: TestTrustlessCarPathing/GET_default_CAR_response_for_non-existing_file_%28Accept_Header%29/Body (0.00s)