forked from TrueCloudLab/frostfs-node
[#64] core/object: Claim TombstoneContent in tombstone payload
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
21bdc82fb5
commit
33ca88f85f
2 changed files with 11 additions and 6 deletions
|
@ -109,7 +109,10 @@ func TestFormatValidator_Validate(t *testing.T) {
|
|||
|
||||
addr := object.NewAddress()
|
||||
|
||||
data, err := addr.ToV2().StableMarshal(nil)
|
||||
content := NewTombstoneContent()
|
||||
content.SetAddressList(addr)
|
||||
|
||||
data, err := content.MarshalBinary()
|
||||
require.NoError(t, err)
|
||||
|
||||
require.Error(t, v.ValidateContent(object.TypeTombstone, data))
|
||||
|
@ -117,7 +120,7 @@ func TestFormatValidator_Validate(t *testing.T) {
|
|||
addr.SetContainerID(testContainerID(t))
|
||||
addr.SetObjectID(testObjectID(t))
|
||||
|
||||
data, err = addr.ToV2().StableMarshal(nil)
|
||||
data, err = content.MarshalBinary()
|
||||
require.NoError(t, err)
|
||||
|
||||
require.NoError(t, v.ValidateContent(object.TypeTombstone, data))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue