[#519] Use Address.Equals in policer tests
ci/woodpecker/push/pre-commit Pipeline was successful Details

Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
pull/529/head
Alejandro Lopez 2023-07-13 15:04:29 +03:00 committed by Evgenii Stratonikov
parent 3e8de14e7d
commit 3b66f98f27
1 changed files with 2 additions and 7 deletions

View File

@ -220,11 +220,11 @@ func TestProcessObject(t *testing.T) {
WithRemoteObjectHeaderFunc(headFn),
WithBuryFunc(buryFn),
WithRedundantCopyCallback(func(_ context.Context, a oid.Address) {
require.True(t, eqAddr(a, addr), "unexpected redundant copy callback: a=%v", a)
require.True(t, a.Equals(addr), "unexpected redundant copy callback: a=%v", a)
gotRemoveRedundant = true
}),
WithReplicator(replicatorFunc(func(_ context.Context, task replicator.Task, res replicator.TaskResult) {
require.True(t, eqAddr(task.Addr, addr), "unexpected replicator task: %+v", task)
require.True(t, task.Addr.Equals(addr), "unexpected replicator task: %+v", task)
for _, node := range task.Nodes {
gotReplicateTo = append(gotReplicateTo, int(node.PublicKey()[0]))
}
@ -303,11 +303,6 @@ func TestIteratorContract(t *testing.T) {
}, it.calls)
}
// TODO(https://git.frostfs.info/TrueCloudLab/frostfs-sdk-go/issues/101)
func eqAddr(a, b oid.Address) bool {
return a.Container().Equals(b.Container()) && a.Object().Equals(b.Object())
}
type nextResult struct {
objs []objectcore.AddressWithType
err error