generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 74
/
storage_test.go
122 lines (111 loc) · 3.12 KB
/
storage_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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This is an xtest because it imports the crds package, but the crds package
// also imports storage, creating a cycle.
package storage_test
import (
"fmt"
"reflect"
"sort"
"testing"
"sigs.k8s.io/boskos/common"
"sigs.k8s.io/boskos/storage"
)
func createStorages() []storage.PersistenceLayer {
return []storage.PersistenceLayer{
storage.NewMemoryStorage(),
}
}
func TestAddDelete(t *testing.T) {
for _, s := range createStorages() {
var resources []common.Resource
var err error
for i := 0; i < 10; i++ {
resources = append(resources, common.Resource{
Name: fmt.Sprintf("res-%d", i),
Type: fmt.Sprintf("type-%d", i),
})
}
sort.Stable(common.ResourceByName(resources))
for _, res := range resources {
if err = s.Add(res); err != nil {
t.Errorf("unable to add %s, %v", res.Name, err)
}
}
returnedResources, err := s.List()
if err != nil {
t.Errorf("unable to list resources, %v", err)
}
sort.Stable(common.ResourceByName(returnedResources))
if !reflect.DeepEqual(resources, returnedResources) {
t.Errorf("received resources (%v) do not match resources (%v)", resources, returnedResources)
}
for _, r := range returnedResources {
err = s.Delete(r.Name)
if err != nil {
t.Errorf("unable to delete resource %s.%v", r.Name, err)
}
}
eResources, err := s.List()
if err != nil {
t.Errorf("unable to list resources, %v", err)
}
if len(eResources) != 0 {
t.Error("list should return an empty list")
}
}
}
func TestUpdateGet(t *testing.T) {
for _, s := range createStorages() {
oRes := common.Resource{
Name: "original",
Type: "type",
}
if err := s.Add(oRes); err != nil {
t.Errorf("unable to add resource, %v", err)
}
uRes := oRes
uRes.Type = "typeUpdated"
if _, err := s.Update(uRes); err != nil {
t.Errorf("unable to update resource %v", err)
}
res, err := s.Get(oRes.Name)
if err != nil {
t.Errorf("unable to get resource, %v", err)
}
if !reflect.DeepEqual(uRes, res) {
t.Errorf("expected (%v) and received (%v) do not match", uRes, res)
}
}
}
func TestNegativeDeleteGet(t *testing.T) {
for _, s := range createStorages() {
oRes := common.Resource{
Name: "original",
Type: "type",
}
if err := s.Add(oRes); err != nil {
t.Errorf("unable to add resource, %v", err)
}
uRes := common.Resource{
Name: "notExist",
Type: "type",
}
if _, err := s.Update(uRes); err == nil {
t.Errorf("should not be able to update resource, %v", err)
}
if err := s.Delete(uRes.Name); err == nil {
t.Errorf("should not be able to delete resource, %v", err)
}
}
}