2022-12-20 08:38:58 +00:00
|
|
|
package frostfs
|
2022-04-21 08:49:56 +00:00
|
|
|
|
|
|
|
import (
|
2023-06-13 14:47:31 +00:00
|
|
|
"context"
|
|
|
|
"errors"
|
2022-04-21 08:49:56 +00:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
2023-06-13 14:47:31 +00:00
|
|
|
"time"
|
2022-04-21 08:49:56 +00:00
|
|
|
|
2024-09-27 08:14:45 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-s3-gw/api/layer/frostfs"
|
2024-09-27 09:18:41 +00:00
|
|
|
frosterr "git.frostfs.info/TrueCloudLab/frostfs-s3-gw/internal/frostfs/errors"
|
2023-03-07 14:38:08 +00:00
|
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
2022-04-21 08:49:56 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2023-06-13 14:47:31 +00:00
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
2022-04-21 08:49:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestErrorChecking(t *testing.T) {
|
|
|
|
reason := "some reason"
|
|
|
|
err := new(apistatus.ObjectAccessDenied)
|
|
|
|
err.WriteReason(reason)
|
|
|
|
|
|
|
|
var wrappedError error
|
|
|
|
|
2024-09-27 09:18:41 +00:00
|
|
|
if fetchedReason, ok := frosterr.IsErrObjectAccessDenied(err); ok {
|
2024-09-27 08:14:45 +00:00
|
|
|
wrappedError = fmt.Errorf("%w: %s", frostfs.ErrAccessDenied, fetchedReason)
|
2022-04-21 08:49:56 +00:00
|
|
|
}
|
|
|
|
|
2024-09-27 08:14:45 +00:00
|
|
|
require.ErrorIs(t, wrappedError, frostfs.ErrAccessDenied)
|
2022-04-21 08:49:56 +00:00
|
|
|
require.Contains(t, wrappedError.Error(), reason)
|
|
|
|
}
|
2023-06-13 14:47:31 +00:00
|
|
|
|
|
|
|
func TestErrorTimeoutChecking(t *testing.T) {
|
|
|
|
t.Run("simple timeout", func(t *testing.T) {
|
2024-09-27 09:18:41 +00:00
|
|
|
require.True(t, frosterr.IsTimeoutError(errors.New("timeout")))
|
2023-06-13 14:47:31 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("deadline exceeded", func(t *testing.T) {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Millisecond)
|
|
|
|
defer cancel()
|
2024-02-14 11:32:17 +00:00
|
|
|
<-ctx.Done()
|
2023-06-13 14:47:31 +00:00
|
|
|
|
2024-09-27 09:18:41 +00:00
|
|
|
require.True(t, frosterr.IsTimeoutError(ctx.Err()))
|
2023-06-13 14:47:31 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("grpc deadline exceeded", func(t *testing.T) {
|
|
|
|
err := fmt.Errorf("wrap grpc error: %w", status.Error(codes.DeadlineExceeded, "error"))
|
2024-09-27 09:18:41 +00:00
|
|
|
require.True(t, frosterr.IsTimeoutError(err))
|
2023-06-13 14:47:31 +00:00
|
|
|
})
|
|
|
|
}
|