[#64] core/object: Claim TombstoneContent in tombstone payload

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-10-01 20:14:10 +03:00 committed by Alex Vanin
parent 21bdc82fb5
commit 33ca88f85f
2 changed files with 11 additions and 6 deletions

View file

@ -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))