-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestStorage_Get.go
48 lines (40 loc) · 1.57 KB
/
TestStorage_Get.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
package storage_test_helper
import (
"context"
"fmt"
if_expression "github.com/golang-infrastructure/go-if-expression"
"github.com/storage-lock/go-storage"
"github.com/stretchr/testify/assert"
"testing"
)
func TestStorage_Get(t *testing.T, s storage.Storage) {
assert.NotNilf(t, s, "Storage is nil")
ctx, cancelFunc := context.WithTimeout(context.Background(), DefaultContextTimeout)
defer cancelFunc()
err := s.Init(ctx)
assert.Nilf(t, err, "Storage %s init error: %s", s.GetName(), if_expression.ReturnByFunc(err != nil, func() string {
return err.Error()
}, func() string {
return ""
}))
TestEnsureLockNotExists(t, s, TestLockId)
lockInformation := BuildTestLockInformation(t)
ctx2, cancelFunc2 := context.WithTimeout(context.Background(), DefaultContextTimeout)
defer cancelFunc2()
err = s.CreateWithVersion(ctx2, TestLockId, TestLockVersion, lockInformation)
assert.Nilf(t, err, "Storage %s insert error: %s", s.GetName(), if_expression.ReturnByFunc(err != nil, func() string {
return err.Error()
}, func() string {
return ""
}))
ctx3, cancelFunc3 := context.WithTimeout(context.Background(), DefaultContextTimeout)
defer cancelFunc3()
lockInformationJsonStringRs, err := s.Get(ctx3, TestLockId)
assert.Nilf(t, err, "Storage %s get lock error: %s", s.GetName(), if_expression.ReturnByFunc(err != nil, func() string {
return err.Error()
}, func() string {
return ""
}))
assert.Equalf(t, lockInformation.ToJsonString(), lockInformationJsonStringRs, "Storage %s get lock not equals", s.GetName())
t.Log(fmt.Sprintf("Storage %s test Get done", s.GetName()))
}