Commit 3de10ba1 authored by Łukasz Magiera's avatar Łukasz Magiera Committed by Steven Allen

Unixfs: enforce refs on files when using nocopy

License: MIT
Signed-off-by: default avatarŁukasz Magiera <magik6k@gmail.com>
parent e49c3d22
......@@ -16,6 +16,7 @@ import (
"github.com/ipfs/go-ipfs/core/coreapi/interface/options"
"gx/ipfs/QmQXze9tG878pa4Euya4rrDpyTNX3kQe4dhCaBzBozGgpe/go-unixfs"
"gx/ipfs/QmQXze9tG878pa4Euya4rrDpyTNX3kQe4dhCaBzBozGgpe/go-unixfs/importer/helpers"
"gx/ipfs/QmR8BauakNcBa3RbE4nbQu76PDiJgoQgz8AJdhJuiU4TAw/go-cid"
cbor "gx/ipfs/QmRoARq3nkUb13HSKZGepCZSWe5GrVPwx7xURJGZ7KWv9V/go-ipld-cbor"
mdag "gx/ipfs/QmTQdH4848iTVCJmKXYyRiK72HufWTLYQQ8iN3JaQ8K1Hq/go-merkledag"
......@@ -365,6 +366,13 @@ func (tp *provider) TestAdd(t *testing.T) {
opts: []options.UnixfsAddOption{options.Unixfs.Nocopy(true), options.Unixfs.RawLeaves(false)},
err: "nocopy option requires '--raw-leaves' to be enabled as well",
},
{
name: "noCopyNoPath",
data: strFile(helloStr),
path: "/ipfs/zb2rhdhmJjJZs9qkhQCpCQ7VREFkqWw3h1r8utjVvQugwHPFd",
opts: []options.UnixfsAddOption{options.Unixfs.Nocopy(true)},
err: helpers.ErrMissingFsRef.Error(),
},
// Events / Progress
{
name: "simpleAddEvent",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment