diff --git a/client/errors_test.go b/client/errors_test.go new file mode 100644 index 0000000..bc3a5ee --- /dev/null +++ b/client/errors_test.go @@ -0,0 +1,44 @@ +package client_test + +import ( + "testing" + + "github.com/nspcc-dev/neofs-sdk-go/client" + apistatus "github.com/nspcc-dev/neofs-sdk-go/client/status" + "github.com/stretchr/testify/require" +) + +func TestErrors(t *testing.T) { + for _, tc := range []struct { + check func(error) bool + errs []error + }{ + { + check: client.IsErrContainerNotFound, + errs: []error{ + apistatus.ContainerNotFound{}, + new(apistatus.ContainerNotFound), + }, + }, + { + check: client.IsErrObjectNotFound, + errs: []error{ + apistatus.ObjectNotFound{}, + new(apistatus.ObjectNotFound), + }, + }, + { + check: client.IsErrObjectAlreadyRemoved, + errs: []error{ + apistatus.ObjectAlreadyRemoved{}, + new(apistatus.ObjectAlreadyRemoved), + }, + }, + } { + require.NotEmpty(t, tc.errs) + + for i := range tc.errs { + require.True(t, tc.check(tc.errs[i]), tc.errs[i]) + } + } +}