forked from ovn-org/libovsdb
-
Notifications
You must be signed in to change notification settings - Fork 15
/
native_test.go
231 lines (216 loc) · 4.92 KB
/
native_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
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
package libovsdb
import (
"encoding/json"
"fmt"
"reflect"
"testing"
)
var testSchema = []byte(`{
"cksum": "223619766 22548",
"name": "TestSchema",
"tables": {
"TestTable": {
"columns": {
"aString": {
"type": "string"
},
"aSet": {
"type": {
"key": "string",
"max": "unlimited",
"min": 0
}
},
"anotherSet": {
"type": {
"key": "string",
"max": "unlimited",
"min": 0,
"max": 1
}
},
"aUUIDSet": {
"type": {
"key": {
"refTable": "SomeOtherTAble",
"refType": "weak",
"type": "uuid"
},
"min": 0
}
},
"aUUID": {
"type": {
"key": {
"refTable": "SomeOtherTAble",
"refType": "weak",
"type": "uuid"
},
"min": 1,
"max": 1
}
},
"aIntSet": {
"type": {
"key": {
"type": "integer"
},
"min": 0,
"max": "unlimited"
}
},
"aFloat": {
"type": {
"key": {
"type": "real"
}
}
},
"aFloatSet": {
"type": {
"key": {
"type": "real"
},
"min": 0,
"max": 10
}
},
"aEmptySet": {
"type": {
"key": {
"type": "string"
},
"min": 0,
"max": "unlimited"
}
},
"aEnum": {
"type": {
"key": {
"enum": [
"set",
[
"enum1",
"enum2",
"enum3"
]
],
"type": "string"
}
}
},
"aMap": {
"type": {
"key": "string",
"max": "unlimited",
"min": 0,
"value": "string"
}
}
}
}
}
}`)
//
// When going Native -> OvS:
// map -> *OvsMap
// slice -> *OvsSet
// However, when going OvS -> Native
// OvsMap -> map
// OvsSet -> slice
// Perform indirection of ovs fields to be compared
// with the ones that wre used initially
func expectedOvs(in interface{}) interface{} {
switch in.(type) {
case *OvsSet:
return *(in.(*OvsSet))
case *OvsMap:
return *(in.(*OvsMap))
default:
return in
}
}
func getNativeMap() map[string]interface{} {
return map[string]interface{}{
"aString": aString,
"aSet": aSet,
"aUUIDSet": aUUIDSet,
"aMap": aMap,
"aUUID": aUUID0,
"aIntSet": aIntSet,
}
}
func GetOvsRow() Row {
ovsRow := Row{Fields: make(map[string]interface{})}
ovsRow.Fields["aString"] = aString
s, _ := NewOvsSet(aSet)
ovsRow.Fields["aSet"] = *s
us := make([]UUID, 0)
for _, u := range aUUIDSet {
us = append(us, UUID{GoUUID: u})
}
ovsUs, _ := NewOvsSet(us)
ovsRow.Fields["aUUIDSet"] = *ovsUs
m, _ := NewOvsMap(aMap)
ovsRow.Fields["aMap"] = *m
ovsRow.Fields["aUUID"] = UUID{GoUUID: aUUID0}
is, e := NewOvsSet(aIntSet)
if e != nil {
fmt.Printf("%s", e.Error())
}
ovsRow.Fields["aIntSet"] = *is
return ovsRow
}
func TestGetData(t *testing.T) {
ovsRow := GetOvsRow()
/* Code under test */
var schema DatabaseSchema
if err := json.Unmarshal(testSchema, &schema); err != nil {
t.Error(err)
}
nf := NativeAPI{schema: &schema}
data, err := nf.GetRowData("TestTable", &ovsRow)
if err != nil {
t.Error(err)
}
/* End: code under test */
if len(data) != len(ovsRow.Fields) {
t.Errorf("wrong length %d", len(data))
}
// Verify I can cast the content of data to native types
if v, ok := data["aSet"].([]string); !ok || !reflect.DeepEqual(v, aSet) {
t.Errorf("invalid set value %v", v)
}
if v, ok := data["aMap"].(map[string]string); !ok || !reflect.DeepEqual(v, aMap) {
t.Errorf("invalid map value %v", v)
}
if v, ok := data["aUUIDSet"].([]string); !ok || !reflect.DeepEqual(v, aUUIDSet) {
t.Errorf("invalid uuidset value %v", v)
}
if v, ok := data["aUUID"].(string); !ok || !reflect.DeepEqual(v, aUUID0) {
t.Errorf("invalid uuidvalue %v", v)
}
if v, ok := data["aIntSet"].([]int); !ok || !reflect.DeepEqual(v, aIntSet) {
t.Errorf("invalid integer set %v", v)
}
}
func TestNewRow(t *testing.T) {
ovsRow := GetOvsRow()
/* Code under test */
var schema DatabaseSchema
if err := json.Unmarshal(testSchema, &schema); err != nil {
t.Error(err)
}
nf := NativeAPI{schema: &schema}
row, err := nf.NewRow("TestTable", getNativeMap())
if err != nil {
t.Error(err)
}
for k := range row {
if !reflect.DeepEqual(expectedOvs(row[k]), ovsRow.Fields[k]) {
t.Errorf("Failed to convert to ovs. Key %s", k)
fmt.Printf("value: %v\n", expectedOvs(row[k]))
fmt.Printf("expected : %v\n", ovsRow.Fields[k])
}
}
}