forked from fluid-cloudnative/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasetinfo_parser_test.go
More file actions
264 lines (252 loc) · 8.26 KB
/
datasetinfo_parser_test.go
File metadata and controls
264 lines (252 loc) · 8.26 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
Copyright 2021 The Fluid 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.
*/
package juicefs
import (
"reflect"
"testing"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"github.com/fluid-cloudnative/fluid/api/v1alpha1"
"github.com/fluid-cloudnative/fluid/pkg/utils/fake"
)
func TestGetCacheInfoFromConfigmap(t *testing.T) {
configMap := &v1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Name: "test-dataset-juicefs-values",
Namespace: "fluid",
},
Data: map[string]string{
"data": valuesConfigMapData,
},
}
dataSet := &v1alpha1.Dataset{
ObjectMeta: metav1.ObjectMeta{
Name: "test-dataset",
Namespace: "fluid",
},
Status: v1alpha1.DatasetStatus{
Runtimes: []v1alpha1.Runtime{
{
Name: "test-dataset",
Namespace: "fluid",
Type: "juicefs",
},
},
},
}
runtimeObjs := []runtime.Object{}
runtimeObjs = append(runtimeObjs, configMap)
runtimeObjs = append(runtimeObjs, dataSet.DeepCopy())
fakeClient := fake.NewFakeClientWithScheme(testScheme, runtimeObjs...)
wantCacheInfo := map[string]string{"mountpath": "/runtime-mnt/juicefs/default/jfsdemo/juicefs-fuse", "edition": "community"}
cacheinfo, err := GetCacheInfoFromConfigmap(fakeClient, dataSet.Name, dataSet.Namespace)
if err != nil {
t.Errorf("GetCacheInfoFromConfigmap failed.")
}
if !reflect.DeepEqual(cacheinfo, wantCacheInfo) {
t.Errorf("gotcacheinfo = %v, want %v", cacheinfo, wantCacheInfo)
}
}
func Test_parseCacheInfoFromConfigMap(t *testing.T) {
type args struct {
configMap *v1.ConfigMap
}
tests := []struct {
name string
args args
wantCacheInfo map[string]string
wantErr bool
}{
{
name: "parseCacheInfoFromConfigMap",
args: args{configMap: &v1.ConfigMap{
Data: map[string]string{
"data": valuesConfigMapData,
},
}},
wantCacheInfo: map[string]string{"mountpath": "/runtime-mnt/juicefs/default/jfsdemo/juicefs-fuse", "edition": "community"},
wantErr: false,
},
{
name: "parseCacheInfoFromConfigMap-err",
args: args{configMap: &v1.ConfigMap{
Data: map[string]string{
"data": `test`,
},
}},
wantCacheInfo: nil,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotPorts, err := parseCacheInfoFromConfigMap(tt.args.configMap)
if (err != nil) != tt.wantErr {
t.Errorf("parseCacheInfoFromConfigMap() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotPorts, tt.wantCacheInfo) {
t.Errorf("parseCacheInfoFromConfigMap() gotPorts = %v, want %v", gotPorts, tt.wantCacheInfo)
}
})
}
}
// TestGetFSInfoFromConfigMap is a unit test for the GetFSInfoFromConfigMap function.
// It verifies that the function correctly retrieves file system information from a ConfigMap.
//
// The test sets up a fake Kubernetes client with a predefined ConfigMap and Dataset,
// then calls GetFSInfoFromConfigMap and compares the returned metadata with expected values.
//
// Steps:
//
// 1. Create a fake ConfigMap containing FS configuration data.
// 2. Create a fake Dataset associated with the ConfigMap.
// 3. Use a fake client to simulate interactions with the Kubernetes API.
// 4. Call GetFSInfoFromConfigMap with the dataset's name and namespace.
// 5. Validate that the returned metadata matches the expected values.
//
// If the function does not return the correct values, the test fails with an error message.
func TestGetFSInfoFromConfigMap(t *testing.T) {
configMap := &v1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Name: "test-dataset-juicefs-values",
Namespace: "fluid",
},
Data: map[string]string{
"data": valuesConfigMapData,
},
}
dataSet := &v1alpha1.Dataset{
ObjectMeta: metav1.ObjectMeta{
Name: "test-dataset",
Namespace: "fluid",
},
Status: v1alpha1.DatasetStatus{
Runtimes: []v1alpha1.Runtime{
{
Name: "test-dataset",
Namespace: "fluid",
Type: "juicefs",
},
},
},
}
runtimeObjs := []runtime.Object{}
runtimeObjs = append(runtimeObjs, configMap)
runtimeObjs = append(runtimeObjs, dataSet.DeepCopy())
fakeClient := fake.NewFakeClientWithScheme(testScheme, runtimeObjs...)
wantMetaurlInfo := map[string]string{
MetaurlSecret: "jfs-secret",
MetaurlSecretKey: "metaurl",
SecretKeySecret: "jfs-secret",
SecretKeySecretKey: "secretkey",
TokenSecret: "",
TokenSecretKey: "",
AccessKeySecret: "jfs-secret",
AccessKeySecretKey: "accesskey",
FormatCmd: "/usr/local/bin/juicefs format --trash-days=0 --access-key=${ACCESS_KEY} --secret-key=${SECRET_KEY} --storage=minio --bucket=http://minio.default.svc.cluster.local:9000/minio/test2 ${METAURL} minio",
Name: "minio",
Edition: "community",
}
metaurlInfo, err := GetFSInfoFromConfigMap(fakeClient, dataSet.Name, dataSet.Namespace)
if err != nil {
t.Errorf("GetMetaUrlInfoFromConfigMap failed.")
}
if len(metaurlInfo) != len(wantMetaurlInfo) {
t.Errorf("parseCacheInfoFromConfigMap() gotMetaurlInfo = %v,\n want %v", metaurlInfo, wantMetaurlInfo)
}
for k, v := range metaurlInfo {
if v != wantMetaurlInfo[k] {
t.Errorf("parseCacheInfoFromConfigMap() got %s = %v,\n want %v", k, v, wantMetaurlInfo[k])
}
}
}
// Test_parseFSInfoFromConfigMap is a unit test function for the parseFSInfoFromConfigMap method.
// It validates whether the function correctly extracts and parses dataset information
// from a given Kubernetes ConfigMap.
//
// Steps:
// 1. Define test cases with different ConfigMap data inputs.
// 2. Execute parseFSInfoFromConfigMap using the provided test cases.
// 3. Verify the returned metadata information against expected values.
// 4. Check for expected errors in erroneous cases.
// 5. Use assertions to ensure the function behaves as intended.
func Test_parseFSInfoFromConfigMap(t *testing.T) {
type args struct {
configMap *v1.ConfigMap
}
tests := []struct {
name string
args args
wantMetaurlInfo map[string]string
wantErr bool
}{
{
name: "test",
args: args{
configMap: &v1.ConfigMap{
Data: map[string]string{
"data": valuesConfigMapData,
},
},
},
wantMetaurlInfo: map[string]string{
MetaurlSecret: "jfs-secret",
MetaurlSecretKey: "metaurl",
SecretKeySecret: "jfs-secret",
SecretKeySecretKey: "secretkey",
TokenSecret: "",
TokenSecretKey: "",
AccessKeySecret: "jfs-secret",
AccessKeySecretKey: "accesskey",
FormatCmd: "/usr/local/bin/juicefs format --trash-days=0 --access-key=${ACCESS_KEY} --secret-key=${SECRET_KEY} --storage=minio --bucket=http://minio.default.svc.cluster.local:9000/minio/test2 ${METAURL} minio",
Name: "minio",
Edition: "community",
},
wantErr: false,
},
{
name: "test-err",
args: args{
configMap: &v1.ConfigMap{
Data: map[string]string{
"data": "test",
},
},
},
wantMetaurlInfo: map[string]string{},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotMetaurlInfo, err := parseFSInfoFromConfigMap(tt.args.configMap)
if (err != nil) != tt.wantErr {
t.Errorf("parseFSInfoFromConfigMap() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotMetaurlInfo, tt.wantMetaurlInfo) {
t.Errorf("parseFSInfoFromConfigMap() gotMetaurlInfo = %v, want %v", gotMetaurlInfo, tt.wantMetaurlInfo)
}
if len(gotMetaurlInfo) != len(tt.wantMetaurlInfo) {
t.Errorf("parseCacheInfoFromConfigMap() gotMetaurlInfo = %v,\n want %v", gotMetaurlInfo, tt.wantMetaurlInfo)
}
for k, v := range gotMetaurlInfo {
if v != tt.wantMetaurlInfo[k] {
t.Errorf("parseCacheInfoFromConfigMap() got %s = %v,\n want %v", k, v, tt.wantMetaurlInfo[k])
}
}
})
}
}