forked from databricks/terraform-provider-databricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretry_test.go
49 lines (44 loc) · 1.82 KB
/
retry_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package common
import (
"context"
"errors"
"testing"
"github.com/databricks/databricks-sdk-go/experimental/mocks"
"github.com/databricks/databricks-sdk-go/service/workspace"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
func TestRetryOnTimeout_NoError(t *testing.T) {
w := mocks.NewMockWorkspaceClient(t)
expected := &workspace.ObjectInfo{}
api := w.GetMockWorkspaceAPI().EXPECT()
api.GetStatusByPath(mock.Anything, mock.Anything).Return(expected, nil)
res, err := RetryOnTimeout(context.Background(), func(ctx context.Context) (*workspace.ObjectInfo, error) {
return w.WorkspaceClient.Workspace.GetStatusByPath(ctx, "path")
})
assert.NoError(t, err)
assert.Equal(t, expected, res)
}
func TestRetryOnTimeout_OneError(t *testing.T) {
w := mocks.NewMockWorkspaceClient(t)
expected := &workspace.ObjectInfo{}
api := w.GetMockWorkspaceAPI().EXPECT()
call1 := api.GetStatusByPath(mock.Anything, mock.Anything).Return(nil, errors.New("request failed: request timed out after 1m0s of inactivity"))
call1.Repeatability = 1
api.GetStatusByPath(mock.Anything, mock.Anything).Return(expected, nil)
res, err := RetryOnTimeout(context.Background(), func(ctx context.Context) (*workspace.ObjectInfo, error) {
return w.WorkspaceClient.Workspace.GetStatusByPath(ctx, "path")
})
assert.NoError(t, err)
assert.Equal(t, expected, res)
}
func TestRetryOnTimeout_NonRetriableError(t *testing.T) {
w := mocks.NewMockWorkspaceClient(t)
expected := errors.New("request failed: non-retriable error")
api := w.GetMockWorkspaceAPI().EXPECT()
api.GetStatusByPath(mock.Anything, mock.Anything).Return(nil, expected)
_, err := RetryOnTimeout(context.Background(), func(ctx context.Context) (*workspace.ObjectInfo, error) {
return w.WorkspaceClient.Workspace.GetStatusByPath(ctx, "path")
})
assert.ErrorIs(t, err, expected)
}