Unixfs: enforce refs on files when using nocopy
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com> This commit was moved from ipfs/interface-go-ipfs-core@3de10ba1bd3faefa63d1c9353a7ac47c5de45d2d This commit was moved from ipfs/boxo@089430e39729baec439315f08826de38643a99fb
Łukasz Magiera committed
Jan 14, 2019 at 22:00 UTC
f590838d14beed45d05b5db680eb4d010470123d
1 file changed
+8
core/coreiface/tests/unixfs.go
+8
@@ -16,6 +16,7 @@ import (
16
"github.com/ipfs/go-ipfs/core/coreapi/interface/options"
17
18
"gx/ipfs/QmQXze9tG878pa4Euya4rrDpyTNX3kQe4dhCaBzBozGgpe/go-unixfs"
19
+ "gx/ipfs/QmQXze9tG878pa4Euya4rrDpyTNX3kQe4dhCaBzBozGgpe/go-unixfs/importer/helpers"
20
"gx/ipfs/QmR8BauakNcBa3RbE4nbQu76PDiJgoQgz8AJdhJuiU4TAw/go-cid"
21
cbor "gx/ipfs/QmRoARq3nkUb13HSKZGepCZSWe5GrVPwx7xURJGZ7KWv9V/go-ipld-cbor"
22
mdag "gx/ipfs/QmTQdH4848iTVCJmKXYyRiK72HufWTLYQQ8iN3JaQ8K1Hq/go-merkledag"
@@ -365,6 +366,13 @@ func (tp *provider) TestAdd(t *testing.T) {
366
opts: []options.UnixfsAddOption{options.Unixfs.Nocopy(true), options.Unixfs.RawLeaves(false)},
367
err: "nocopy option requires '--raw-leaves' to be enabled as well",
368
},
369
+ {
370
+ name: "noCopyNoPath",
371
+ data: strFile(helloStr),
372
+ path: "/ipfs/zb2rhdhmJjJZs9qkhQCpCQ7VREFkqWw3h1r8utjVvQugwHPFd",
373
+ opts: []options.UnixfsAddOption{options.Unixfs.Nocopy(true)},
374
+ err: helpers.ErrMissingFsRef.Error(),
375
+ },
376
// Events / Progress
377
{
378
name: "simpleAddEvent",