forked from konimarti/opc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection_test.go
270 lines (240 loc) · 5.75 KB
/
connection_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
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
265
266
267
268
269
270
package opc
import (
"fmt"
"reflect"
"testing"
)
func TestOPCBrowser(t *testing.T) {
browser, err := CreateBrowser(
"Graybox.Simulator",
[]string{"localhost"},
)
if err != nil {
t.Fatal(err)
}
if browser.Name != "root" {
t.Fatal("structure of browser tree is compromised: root")
}
if browser.Branches[0].Name != "options" {
t.Fatal("structure of browser tree is compromised: options")
}
if len(browser.Branches[0].Leaves) != 4 {
t.Fatal("structure of browser tree is compromised: number of leaves for options")
}
}
func TestNewConnectionNoTags(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{},
)
client.Close()
}
func TestNewConnectionWithTags(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{"numeric.sin.int64", "numeric.saw.float"},
)
client.Close()
}
func TestNewConnectionWrongServer(t *testing.T) {
client, err := NewConnection(
"Graybox.Simulator.NOTREAL",
[]string{"localhost"},
[]string{},
)
client.Close()
if err == nil {
t.Fatal("this test should return an error because server does not exist")
}
}
func TestNewConnectionWrongNode(t *testing.T) {
client, err := NewConnection(
"Graybox.Simulator",
[]string{"localhost.NOTREAL"},
[]string{},
)
client.Close()
if err == nil {
t.Fatal("this test should return an error because node does not exist")
}
}
func TestAddTags(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{},
)
defer client.Close()
client.Add("numeric.sin.int64", "numeric.saw.float")
}
func TestRemoveTags(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{"numeric.sin.int64", "numeric.saw.float"},
)
defer client.Close()
client.Remove("numeric.sin.int64")
client.Remove("numeric.saw.float")
}
func TestGetTags(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{},
)
defer client.Close()
var config = []struct {
Add []string
Remove []string
Want []string
}{
{
Add: []string{"numeric.sin.float"},
Want: []string{"numeric.sin.float"},
},
{
Remove: []string{"numeric.sin.float"},
Want: []string{},
},
{
Add: []string{"numeric.saw.float"},
Want: []string{"numeric.saw.float"},
},
{
Remove: []string{"numeric.saw.float", "numeric.sin.float"},
Want: []string{},
},
}
for _, cfg := range config {
if cfg.Add != nil {
client.Add(cfg.Add...)
}
if cfg.Remove != nil {
for _, tag := range cfg.Remove {
client.Remove(tag)
}
}
tags := client.Tags()
if !reflect.DeepEqual(tags, cfg.Want) {
if len(tags) != len(cfg.Want) || reflect.DeepEqual(tags, []string{}) {
fmt.Println("actual:", tags)
fmt.Println("expected:", cfg.Want)
t.Error("Tags() did not return correct tags")
}
}
}
}
func TestTags(t *testing.T) {
var want []string
client := &opcConnectionImpl{}
tags := client.Tags()
if !reflect.DeepEqual(tags, want) {
fmt.Printf("actual: %+v\n", tags)
fmt.Printf("Want: %+v\n", want)
t.Error("Tags() should return a empty array of strings")
}
}
func TestAutomationItemsClose(t *testing.T) {
conn := &opcConnectionImpl{}
conn.AutomationItems.Close()
}
func TestOpcRead(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{"numeric.sin.int64", "numeric.saw.float"},
)
defer client.Close()
var item Item
// should be able to read tag because it has been added
item = client.ReadItem("numeric.sin.int64")
if reflect.DeepEqual(item, Item{}) {
t.Fatal("this test should not have returned an empty item")
}
// should not be able to read tag because it does not exist
item = client.ReadItem("numeric.fantasy_tag.int64")
if !reflect.DeepEqual(item, Item{}) {
t.Fatal("this test should have returned an empty item")
}
// read all added tags (items)
m := client.Read()
if len(m) != 2 {
t.Fatal("the map should have only two items")
}
// check Good() of Item
if item.Quality == OPCQualityGood {
if item.Good() != true {
t.Fatal("failed to check quality of item")
}
} else {
if item.Good() == true {
t.Fatal("failed to check quality of item")
}
}
}
func TestOpcWrite(t *testing.T) {
client, _ := NewConnection(
"Graybox.Simulator",
[]string{"localhost"},
[]string{"numeric.sin.int64", "numeric.saw.float"},
)
defer client.Close()
var config = []struct {
Tag string
Payload interface{}
Want interface{}
}{
{
Tag: "storage.numeric.reg01",
Payload: 0.12,
Want: 0.12,
},
{
Tag: "storage.numeric.reg02",
Payload: 2,
Want: 2.0,
},
{
Tag: "storage.string.reg01",
Payload: "Hello",
Want: "Hello",
},
{
Tag: "storage.bool.reg01",
Payload: true,
Want: true,
},
}
for _, cfg := range config {
// write new frequency to non-existing tag which should fail
err := client.Write(cfg.Tag, cfg.Payload)
if err == nil {
t.Fatal("this test should fail because tag has not been added yet and cannot be written to")
}
// add tag
client.Add(cfg.Tag)
// write new frequency to existing tag which should succeed
err = client.Write(cfg.Tag, cfg.Payload)
if err != nil {
t.Fatal("this test should not fail because new value should be written to tag")
}
// read tag and check if value has been changed
item := client.ReadItem(cfg.Tag)
if item.Value != cfg.Want {
t.Fatalf("tag has not been set to value. Got %v but expected %v", item.Value, cfg.Want)
}
// check quality
if item.Quality == OPCQualityGoodButForced {
if item.Good() != true {
t.Fatal("failed to check quality of item")
}
} else {
if item.Good() == true {
t.Fatal("failed to check quality of item")
}
}
}
}