forked from TrueCloudLab/frostfs-sdk-go
client: Accept oid.Address into PrmObjectHash, PrmObjectDelete, PrmObjectGet
close #404 Signed-off-by: Evgenii Baidakov <evgenii@nspcc.io>
This commit is contained in:
parent
8ed98d6dec
commit
3f603dc8eb
6 changed files with 197 additions and 6 deletions
|
@ -55,7 +55,7 @@ func (x *PrmObjectDelete) WithBearerToken(t bearer.Token) {
|
|||
}
|
||||
|
||||
// FromContainer specifies NeoFS container of the object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to [PrmObjectDelete.ByAddress].
|
||||
func (x *PrmObjectDelete) FromContainer(id cid.ID) {
|
||||
var cidV2 v2refs.ContainerID
|
||||
id.WriteToV2(&cidV2)
|
||||
|
@ -64,7 +64,7 @@ func (x *PrmObjectDelete) FromContainer(id cid.ID) {
|
|||
}
|
||||
|
||||
// ByID specifies identifier of the requested object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to [PrmObjectDelete.ByAddress].
|
||||
func (x *PrmObjectDelete) ByID(id oid.ID) {
|
||||
var idV2 v2refs.ObjectID
|
||||
id.WriteToV2(&idV2)
|
||||
|
@ -72,6 +72,12 @@ func (x *PrmObjectDelete) ByID(id oid.ID) {
|
|||
x.addr.SetObjectID(&idV2)
|
||||
}
|
||||
|
||||
// ByAddress specifies address of the requested object.
|
||||
// Required parameter. It is an alternative to [PrmObjectDelete.ByID], [PrmObjectDelete.FromContainer].
|
||||
func (x *PrmObjectDelete) ByAddress(addr oid.Address) {
|
||||
addr.WriteToV2(&x.addr)
|
||||
}
|
||||
|
||||
// UseSigner specifies private signer to sign the requests.
|
||||
// If signer is not provided, then Client default signer is used.
|
||||
func (x *PrmObjectDelete) UseSigner(signer neofscrypto.Signer) {
|
||||
|
|
73
client/object_delete_test.go
Normal file
73
client/object_delete_test.go
Normal file
|
@ -0,0 +1,73 @@
|
|||
package client
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"crypto/rand"
|
||||
"crypto/sha256"
|
||||
"testing"
|
||||
|
||||
v2refs "github.com/nspcc-dev/neofs-api-go/v2/refs"
|
||||
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
||||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func randOID(t *testing.T) oid.ID {
|
||||
var id oid.ID
|
||||
id.SetSHA256(randSHA256Checksum(t))
|
||||
|
||||
return id
|
||||
}
|
||||
|
||||
func randCID(t *testing.T) cid.ID {
|
||||
var id cid.ID
|
||||
id.SetSHA256(randSHA256Checksum(t))
|
||||
|
||||
return id
|
||||
}
|
||||
|
||||
func randSHA256Checksum(t *testing.T) (cs [sha256.Size]byte) {
|
||||
_, err := rand.Read(cs[:])
|
||||
require.NoError(t, err)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func TestPrmObjectDelete_ByAddress(t *testing.T) {
|
||||
var prm PrmObjectDelete
|
||||
|
||||
var (
|
||||
objID oid.ID
|
||||
contID cid.ID
|
||||
oidV2 v2refs.ObjectID
|
||||
cidV2 v2refs.ContainerID
|
||||
)
|
||||
|
||||
t.Run("ByID", func(t *testing.T) {
|
||||
objID = randOID(t)
|
||||
prm.ByID(objID)
|
||||
|
||||
objID.WriteToV2(&oidV2)
|
||||
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("FromContainer", func(t *testing.T) {
|
||||
contID = randCID(t)
|
||||
prm.FromContainer(contID)
|
||||
|
||||
contID.WriteToV2(&cidV2)
|
||||
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("ByAddress", func(t *testing.T) {
|
||||
var addr oid.Address
|
||||
addr.SetObject(objID)
|
||||
addr.SetContainer(contID)
|
||||
|
||||
prm.ByAddress(addr)
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
}
|
|
@ -72,7 +72,7 @@ func (x *prmObjectRead) WithBearerToken(t bearer.Token) {
|
|||
}
|
||||
|
||||
// FromContainer specifies NeoFS container of the object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to ByAddress.
|
||||
func (x *prmObjectRead) FromContainer(id cid.ID) {
|
||||
var cnrV2 v2refs.ContainerID
|
||||
id.WriteToV2(&cnrV2)
|
||||
|
@ -80,13 +80,19 @@ func (x *prmObjectRead) FromContainer(id cid.ID) {
|
|||
}
|
||||
|
||||
// ByID specifies identifier of the requested object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to ByAddress.
|
||||
func (x *prmObjectRead) ByID(id oid.ID) {
|
||||
var objV2 v2refs.ObjectID
|
||||
id.WriteToV2(&objV2)
|
||||
x.addr.SetObjectID(&objV2)
|
||||
}
|
||||
|
||||
// ByAddress specifies address of the requested object.
|
||||
// Required parameter. It is an alternative to ByID, FromContainer.
|
||||
func (x *prmObjectRead) ByAddress(addr oid.Address) {
|
||||
addr.WriteToV2(&x.addr)
|
||||
}
|
||||
|
||||
// PrmObjectGet groups parameters of ObjectGetInit operation.
|
||||
type PrmObjectGet struct {
|
||||
prmObjectRead
|
||||
|
|
50
client/object_get_test.go
Normal file
50
client/object_get_test.go
Normal file
|
@ -0,0 +1,50 @@
|
|||
package client
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"testing"
|
||||
|
||||
v2refs "github.com/nspcc-dev/neofs-api-go/v2/refs"
|
||||
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
||||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestPrmObjectRead_ByAddress(t *testing.T) {
|
||||
var prm PrmObjectHead
|
||||
|
||||
var (
|
||||
objID oid.ID
|
||||
contID cid.ID
|
||||
oidV2 v2refs.ObjectID
|
||||
cidV2 v2refs.ContainerID
|
||||
)
|
||||
|
||||
t.Run("ByID", func(t *testing.T) {
|
||||
objID = randOID(t)
|
||||
prm.ByID(objID)
|
||||
|
||||
objID.WriteToV2(&oidV2)
|
||||
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("FromContainer", func(t *testing.T) {
|
||||
contID = randCID(t)
|
||||
prm.FromContainer(contID)
|
||||
|
||||
contID.WriteToV2(&cidV2)
|
||||
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("ByAddress", func(t *testing.T) {
|
||||
var addr oid.Address
|
||||
addr.SetObject(objID)
|
||||
addr.SetContainer(contID)
|
||||
|
||||
prm.ByAddress(addr)
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
}
|
|
@ -67,7 +67,7 @@ func (x *PrmObjectHash) WithBearerToken(t bearer.Token) {
|
|||
}
|
||||
|
||||
// FromContainer specifies NeoFS container of the object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to [PrmObjectHash.ByAddress].
|
||||
func (x *PrmObjectHash) FromContainer(id cid.ID) {
|
||||
var cidV2 v2refs.ContainerID
|
||||
id.WriteToV2(&cidV2)
|
||||
|
@ -76,7 +76,7 @@ func (x *PrmObjectHash) FromContainer(id cid.ID) {
|
|||
}
|
||||
|
||||
// ByID specifies identifier of the requested object.
|
||||
// Required parameter.
|
||||
// Required parameter. It is an alternative to [PrmObjectHash.ByAddress].
|
||||
func (x *PrmObjectHash) ByID(id oid.ID) {
|
||||
var idV2 v2refs.ObjectID
|
||||
id.WriteToV2(&idV2)
|
||||
|
@ -84,6 +84,12 @@ func (x *PrmObjectHash) ByID(id oid.ID) {
|
|||
x.addr.SetObjectID(&idV2)
|
||||
}
|
||||
|
||||
// ByAddress specifies address of the requested object.
|
||||
// Required parameter. It is an alternative to [PrmObjectHash.ByID], [PrmObjectHash.FromContainer].
|
||||
func (x *PrmObjectHash) ByAddress(addr oid.Address) {
|
||||
addr.WriteToV2(&x.addr)
|
||||
}
|
||||
|
||||
// SetRangeList sets list of ranges in (offset, length) pair format.
|
||||
// Required parameter.
|
||||
//
|
||||
|
|
50
client/object_hash_test.go
Normal file
50
client/object_hash_test.go
Normal file
|
@ -0,0 +1,50 @@
|
|||
package client
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"testing"
|
||||
|
||||
v2refs "github.com/nspcc-dev/neofs-api-go/v2/refs"
|
||||
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
||||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestPrmObjectHash_ByAddress(t *testing.T) {
|
||||
var prm PrmObjectHash
|
||||
|
||||
var (
|
||||
objID oid.ID
|
||||
contID cid.ID
|
||||
oidV2 v2refs.ObjectID
|
||||
cidV2 v2refs.ContainerID
|
||||
)
|
||||
|
||||
t.Run("ByID", func(t *testing.T) {
|
||||
objID = randOID(t)
|
||||
prm.ByID(objID)
|
||||
|
||||
objID.WriteToV2(&oidV2)
|
||||
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("FromContainer", func(t *testing.T) {
|
||||
contID = randCID(t)
|
||||
prm.FromContainer(contID)
|
||||
|
||||
contID.WriteToV2(&cidV2)
|
||||
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
|
||||
t.Run("ByAddress", func(t *testing.T) {
|
||||
var addr oid.Address
|
||||
addr.SetObject(objID)
|
||||
addr.SetContainer(contID)
|
||||
|
||||
prm.ByAddress(addr)
|
||||
require.True(t, bytes.Equal(oidV2.GetValue(), prm.addr.GetObjectID().GetValue()))
|
||||
require.True(t, bytes.Equal(cidV2.GetValue(), prm.addr.GetContainerID().GetValue()))
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue