-
Notifications
You must be signed in to change notification settings - Fork 9
/
device_test.go
827 lines (751 loc) · 20.2 KB
/
device_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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
package vitotrol
import (
"fmt"
"testing"
td "github.com/maxatome/go-testdeep"
)
const (
testDeviceID = 1234
testLocationID = 5678
testTimeStr = "2016-10-30 12:13:14"
)
var (
_ = []HasResultHeader{
(*GetDataResponse)(nil),
(*WriteDataResponse)(nil),
(*RefreshDataResponse)(nil),
(*GetErrorHistoryResponse)(nil),
(*GetTimesheetDataResponse)(nil),
(*WriteTimesheetDataResponse)(nil),
(*GetTypeInfoResponse)(nil),
}
testTime = func() Time {
tm, _ := ParseVitotrolTime(testTimeStr)
return tm
}()
)
func TestFormatAttributes(tt *testing.T) {
t := td.NewT(tt)
pDevice := &Device{
Attributes: map[AttrID]*Value{
NoAttr: {
Value: "unknown-attr",
Time: testTime,
},
BurnerState: {
Value: "invalid-value",
Time: testTime,
},
IndoorTemp: {
Value: "22",
Time: testTime,
},
OutdoorTemp: nil,
},
}
t.CmpDeeply(
pDevice.FormatAttributes(
[]AttrID{NoAttr, BurnerState, IndoorTemp, OutdoorTemp}),
fmt.Sprintf("%d: unknown-attr@%s\n", NoAttr, testTime)+
fmt.Sprintf("BurnerState: unknown-value<invalid-value>@%s (%s)\n",
testTime, AttributesRef[BurnerState].Doc)+
fmt.Sprintf("IndoorTemp: 22@%s (%s)\n",
testTime, AttributesRef[IndoorTemp].Doc)+
fmt.Sprintf("OutdoorTemp: uninitialized (%s)\n",
AttributesRef[OutdoorTemp].Doc))
}
func TestMakeDatenpunktIDs(tt *testing.T) {
t := td.NewT(tt)
t.CmpDeeply(makeDatenpunktIDs([]AttrID{11, 22}),
`<DatenpunktIds><int>11</int><int>22</int></DatenpunktIds>`)
}
type requestDeviceCommon struct {
DeviceID uint32 `xml:"GeraetId"`
LocationID uint32 `xml:"AnlageId"`
}
var deviceCommon = requestDeviceCommon{
DeviceID: testDeviceID,
LocationID: testLocationID,
}
func intoDeviceResponse(action, content string) string {
return fmt.Sprintf(
`<%[1]sResponse xmlns="http://www.e-controlnet.de/services/vii/">
<%[1]sResult>
%[2]s
</%[1]sResult>
</%[1]sResponse>`, action, content)
}
func testSendRequestDeviceAny(t *td.T,
sendReq func(v *Session, d *Device) bool, soapAction string,
expectedRequest interface{}, serverResponse string,
testName string) bool {
t.Helper()
return testSendRequestAny(t,
func(v *Session) bool {
v.Devices = []Device{
{
DeviceID: testDeviceID,
LocationID: testLocationID,
Attributes: map[AttrID]*Value{},
Timesheets: map[TimesheetID]map[string]TimeslotSlice{},
},
}
return sendReq(v, &v.Devices[0])
},
soapAction, expectedRequest,
intoDeviceResponse(soapAction, serverResponse),
testName)
}
//
// GetData
//
func TestGetData(tt *testing.T) {
t := td.NewT(tt)
type requestGetData struct {
requestDeviceCommon
IDs []int `xml:"DatenpunktIds>int"`
}
type requestBody struct {
GetData requestGetData `xml:"Body>GetData"`
}
expectedRequest := &requestBody{
GetData: requestGetData{
requestDeviceCommon: deviceCommon,
IDs: []int{11, 22},
},
}
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
err := d.GetData(v, []AttrID{11, 22})
if !t.CmpNoError(err) {
return false
}
return t.CmpDeeply(d.Attributes,
map[AttrID]*Value{
11: {
Value: "value11",
Time: testTime,
},
22: {
Value: "value22",
Time: testTime,
},
})
},
// SOAP action
"GetData",
expectedRequest,
// Response to reply
`<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<DatenwerteListe>
<WerteListe>
<DatenpunktId>11</DatenpunktId>
<Wert>value11</Wert>
<Zeitstempel>`+testTimeStr+`</Zeitstempel>
</WerteListe>
<WerteListe>
<DatenpunktId>22</DatenpunktId>
<Wert>value22</Wert>
<Zeitstempel>`+testTimeStr+`</Zeitstempel>
</WerteListe>
</DatenwerteListe>
<Status>12</Status>`,
"GetData")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
return t.NotNil(d.GetData(v, []AttrID{11, 22}))
},
// SOAP action
"GetData",
expectedRequest,
// Response to reply
`<bad XML>`,
"GetData with error")
}
//
// WriteData
//
type requestWriteData struct {
requestDeviceCommon
ID int `xml:"DatapointId"`
Value string `xml:"Wert"`
}
type requestWriteDataBody struct {
WriteData requestWriteData `xml:"Body>WriteData"`
}
const (
writeDataTestID = 12
writeDataTestValue = "value12"
)
var writeDataTest = testAction{
expectedRequest: &requestWriteDataBody{
WriteData: requestWriteData{
requestDeviceCommon: deviceCommon,
ID: writeDataTestID,
Value: writeDataTestValue,
},
},
serverResponse: `<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<AktualisierungsId>123456789</AktualisierungsId>`,
}
func TestWriteData(tt *testing.T) {
t := td.NewT(tt)
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
refreshID, err := d.WriteData(v, writeDataTestID, writeDataTestValue)
if !t.CmpNoError(err) {
return false
}
return t.CmpDeeply(refreshID, "123456789")
},
// SOAP action
"WriteData",
writeDataTest.expectedRequest,
// Response to reply
writeDataTest.serverResponse,
"WriteData")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
_, err := d.WriteData(v, writeDataTestID, writeDataTestValue)
return t.CmpError(err)
},
// SOAP action
"WriteData",
writeDataTest.expectedRequest,
// Response to reply
`<bad XML>`,
"WriteData with error")
}
//
// RefreshData
//
type requestRefreshData struct {
requestDeviceCommon
IDs []AttrID `xml:"DatenpunktIds>int"`
}
type requestRefreshDataBody struct {
RefreshData requestRefreshData `xml:"Body>RefreshData"`
}
var refreshDataTestIDs = []AttrID{11, 22, 33}
var refreshDataTest = testAction{
expectedRequest: &requestRefreshDataBody{
RefreshData: requestRefreshData{
requestDeviceCommon: deviceCommon,
IDs: refreshDataTestIDs,
},
},
serverResponse: `<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<AktualisierungsId>123456789</AktualisierungsId>`,
}
func TestRefreshData(tt *testing.T) {
t := td.NewT(tt)
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
refreshID, err := d.RefreshData(v, refreshDataTestIDs)
if !t.CmpNoError(err) {
return false
}
return t.CmpDeeply(refreshID, "123456789")
},
// SOAP action
"RefreshData",
refreshDataTest.expectedRequest,
// Response to reply
refreshDataTest.serverResponse,
"RefreshData")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
_, err := d.RefreshData(v, refreshDataTestIDs)
return t.CmpError(err)
},
// SOAP action
"RefreshData",
refreshDataTest.expectedRequest,
// Response to reply
`<bad XML>`,
"RefreshData with error")
}
func TestErrorHistoryEvent(tt *testing.T) {
t := td.NewT(tt)
ehe := &ErrorHistoryEvent{
Error: "EC",
Message: "Error message",
Time: testTime,
IsActive: false,
}
expectedStr := "EC@" + testTimeStr + " = Error message"
t.CmpDeeply(ehe.String(), expectedStr)
ehe.IsActive = true
t.CmpDeeply(ehe.String(), expectedStr+" *ACTIVE*")
}
//
// GetErrorHistory
//
func TestGetErrorHistory(tt *testing.T) {
t := td.NewT(tt)
type requestGetErrorHistory struct {
requestDeviceCommon
Locale string `xml:"Culture"`
}
type requestBody struct {
GetErrorHistory requestGetErrorHistory `xml:"Body>GetErrorHistory"`
}
expectedRequest := &requestBody{
GetErrorHistory: requestGetErrorHistory{
requestDeviceCommon: deviceCommon,
Locale: "fr-fr",
},
}
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
if !t.CmpNoError(d.GetErrorHistory(v)) {
return false
}
return t.CmpDeeply(d.Errors,
[]ErrorHistoryEvent{
{
Error: "AB",
Message: "First error",
Time: testTime,
IsActive: true,
},
{
Error: "CD",
Message: "Second error",
Time: testTime,
IsActive: false,
},
})
},
// SOAP action
"GetErrorHistory",
expectedRequest,
// Response to reply
`<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<FehlerListe>
<FehlerHistorie>
<FehlerCode>AB</FehlerCode>
<FehlerMeldung>First error</FehlerMeldung>
<Zeitstempel>`+testTimeStr+`</Zeitstempel>
<FehlerIstAktiv>1</FehlerIstAktiv>
</FehlerHistorie>
<FehlerHistorie>
<FehlerCode>CD</FehlerCode>
<FehlerMeldung>Second error</FehlerMeldung>
<Zeitstempel>`+testTimeStr+`</Zeitstempel>
<FehlerIstAktiv>0</FehlerIstAktiv>
</FehlerHistorie>
</FehlerListe>`,
"GetErrorHistory")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
return t.CmpError(d.GetErrorHistory(v))
},
// SOAP action
"GetErrorHistory",
expectedRequest,
// Response to reply
`<bad XML>`,
"GetErrorHistory with error")
}
//
// GetTimesheetData
//
func TestGetTimesheetData(tt *testing.T) {
t := td.NewT(tt)
type requestGetTimesheetData struct {
requestDeviceCommon
ID int `xml:"DatenpunktId"`
}
type requestBody struct {
GetTimesheetData requestGetTimesheetData `xml:"Body>GetTimesheetData"`
}
expectedRequest := &requestBody{
GetTimesheetData: requestGetTimesheetData{
requestDeviceCommon: deviceCommon,
ID: 23,
},
}
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
if !t.CmpNoError(d.GetTimesheetData(v, 23)) {
return false
}
return t.CmpDeeply(d.Timesheets[23],
map[string]TimeslotSlice{
"mon": {
{From: 900, To: 1011},
{From: 1015, To: 1222},
{From: 1230, To: 1345},
},
"wed": {
{From: 1900, To: 2011},
{From: 2015, To: 2222},
{From: 2230, To: 2345},
},
})
},
// SOAP action
"GetTimesheetData",
expectedRequest,
// Response to reply
`<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<SchaltsatzDaten>
<DatenpunktId>23</DatenpunktId>
<Schaltzeiten>
<Schaltzeit>
<Wochentag>Mon</Wochentag>
<ZeitVon>1230</ZeitVon>
<ZeitBis>1345</ZeitBis>
</Schaltzeit>
<Schaltzeit>
<Wochentag>Wed</Wochentag>
<ZeitVon>2015</ZeitVon>
<ZeitBis>2222</ZeitBis>
</Schaltzeit>
<Schaltzeit>
<Wochentag>Mon</Wochentag>
<ZeitVon>900</ZeitVon>
<ZeitBis>1011</ZeitBis>
</Schaltzeit>
<Schaltzeit>
<Wochentag>Wed</Wochentag>
<ZeitVon>2230</ZeitVon>
<ZeitBis>2345</ZeitBis>
</Schaltzeit>
<Schaltzeit>
<Wochentag>Mon</Wochentag>
<ZeitVon>1015</ZeitVon>
<ZeitBis>1222</ZeitBis>
</Schaltzeit>
<Schaltzeit>
<Wochentag>Wed</Wochentag>
<ZeitVon>1900</ZeitVon>
<ZeitBis>2011</ZeitBis>
</Schaltzeit>
</Schaltzeiten>
</SchaltsatzDaten>`,
"GetTimesheetData")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
return t.CmpError(d.GetTimesheetData(v, 23))
},
// SOAP action
"GetTimesheetData",
expectedRequest,
// Response to reply
`<bad XML>`,
"GetTimesheetData with error")
}
//
// WriteTimesheetData
//
func TestWriteTimesheetData(tt *testing.T) {
t := td.NewT(tt)
type requestDaySlot struct {
Day string `xml:"Wochentag"`
From string `xml:"ZeitVon"`
To string `xml:"ZeitBis"`
Value int `xml:"Wert"`
Position int `xml:"Position"`
}
type requestWriteTimesheetData struct {
requestDeviceCommon
ID int `xml:"DatenpunktId"`
Type int `xml:"SchaltzeitTyp"`
DaySlots []requestDaySlot `xml:"Schaltzeiten>Schaltzeit"`
}
// Be careful to SchaltsatzData nested layer
type requestBody struct {
WriteTimesheetData requestWriteTimesheetData `xml:"Body>WriteTimesheetData>SchaltsatzData"`
}
expectedRequest := &requestBody{
WriteTimesheetData: requestWriteTimesheetData{
requestDeviceCommon: deviceCommon,
ID: 23,
Type: 1,
DaySlots: []requestDaySlot{
{Day: "MON", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "MON", From: "1610", To: "1820", Value: 1, Position: 1},
{Day: "TUE", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "WED", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "THU", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "FRI", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "SAT", From: "0610", To: "0820", Value: 1, Position: 0},
{Day: "SAT", From: "1610", To: "1820", Value: 1, Position: 1},
{Day: "SUN", From: "0610", To: "0820", Value: 1, Position: 0},
},
},
}
inputOK := map[string]TimeslotSlice{
"mon": {{From: 1610, To: 1820}, {From: 610, To: 820}},
"Tue": {{From: 610, To: 820}},
"weD-FRI": {{From: 610, To: 820}},
"sat": {{From: 1610, To: 1820}, {From: 610, To: 820}},
"sun": {{From: 610, To: 820}},
}
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
id, err := d.WriteTimesheetData(v, 23, inputOK)
return t.CmpDeeply(id, "123456789") && t.CmpNoError(err)
},
// SOAP action
"WriteTimesheetData",
expectedRequest,
// Response to reply
`<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<AktualisierungsId>123456789</AktualisierungsId>`,
"WriteTimesheetData")
// Bad dayslot
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
id, err := d.WriteTimesheetData(v, 23, map[string]TimeslotSlice{
"foo": {{From: 1610, To: 1820}},
})
return t.Empty(id) &&
t.CmpError(err) &&
t.CmpDeeply(err.Error(), "Bad timesheet day `FOO'")
},
"", nil, "", "WriteTimesheetData with bad day")
// Bad dayslot (day range)
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
id, err := d.WriteTimesheetData(v, 23, map[string]TimeslotSlice{
"foo-bar": {{From: 1610, To: 1820}},
})
return t.Empty(id) &&
t.CmpError(err) &&
t.CmpDeeply(err.Error(), "Bad timesheet range of days `FOO-BAR'")
},
"", nil, "", "WriteTimesheetData with bad day range")
// Bad dayslot (duplicate)
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
id, err := d.WriteTimesheetData(v, 23, map[string]TimeslotSlice{
"mon": {{From: 1610, To: 1820}},
"sun-tue": {{From: 1610, To: 1820}},
})
return t.Empty(id) &&
t.CmpError(err) &&
t.CmpDeeply(err.Error(), "Duplicate day `MON'")
},
"", nil, "", "WriteTimesheetData with bad day")
// Async error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
id, err := d.WriteTimesheetData(v, 23, inputOK)
return t.Empty(id) && t.CmpError(err)
},
// SOAPAction
"WriteTimesheetData",
expectedRequest,
// Response to reply
`<bad XML>`,
"WriteTimesheetData with async error")
}
//
// GetTypeInfo
//
func TestGetTypeInfo(tt *testing.T) {
t := td.NewT(tt)
type requestGetTypeInfo struct {
requestDeviceCommon
}
type requestBody struct {
GetTypeInfo requestGetTypeInfo `xml:"Body>GetTypeInfo"`
}
expectedRequest := &requestBody{
GetTypeInfo: requestGetTypeInfo{
requestDeviceCommon: deviceCommon,
},
}
// No problem
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
list, err := d.GetTypeInfo(v)
if !t.CmpNoError(err) || !t.NotEmpty(list) {
return false
}
return t.CmpDeeply(list, []*AttributeInfo{
{
AttributeInfoBase: AttributeInfoBase{
AttributeName: "anzahl_brennerstunden_r",
AttributeType: "Double",
AttributeTypeValue: 0,
MinValue: "",
MaxValue: "",
DataPointGroup: "ecnsysEventTypeGroupHC~VScotHO1_72",
HeatingCircuitID: 19178,
DefaultValue: "",
Readable: true,
Writable: false,
},
AttributeID: 104,
},
{
AttributeInfoBase: AttributeInfoBase{
AttributeName: "konf_ww_solltemp_rw",
AttributeType: "Integer",
AttributeTypeValue: 0,
MinValue: "10",
MaxValue: "95",
DataPointGroup: "viessmann.eventtypegroupHC.name.VScotHO1_72~HC1",
HeatingCircuitID: 19179,
DefaultValue: "50",
Readable: true,
Writable: true,
},
AttributeID: 51,
},
{
AttributeInfoBase: AttributeInfoBase{
AttributeName: "zustand_interne_pumpe_r",
AttributeType: "ENUM",
AttributeTypeValue: 0,
MinValue: "",
MaxValue: "",
DataPointGroup: "ecnsysEventTypeGroupHC~VScotHO1_72",
HeatingCircuitID: 19178,
DefaultValue: "",
Readable: true,
Writable: false,
},
AttributeID: 245,
EnumValues: map[uint32]string{
0: "Aus",
1: "Ein",
},
},
})
},
// SOAP action
"GetTypeInfo",
expectedRequest,
// Response to reply
`<Ergebnis>0</Ergebnis>
<ErgebnisText>Kein Fehler</ErgebnisText>
<TypeInfoListe>
<DatenpunktTypInfo>
<AnlageId>88888</AnlageId>
<GeraetId>77777</GeraetId>
<DatenpunktId>104</DatenpunktId>
<DatenpunktName>anzahl_brennerstunden_r</DatenpunktName>
<DatenpunktTyp>Double</DatenpunktTyp>
<DatenpunktTypWert>0</DatenpunktTypWert>
<MinimalWert />
<MaximalWert />
<DatenpunktGruppe>ecnsysEventTypeGroupHC~VScotHO1_72</DatenpunktGruppe>
<HeizkreisId>19178</HeizkreisId>
<Auslieferungswert />
<IstLesbar>true</IstLesbar>
<IstSchreibbar>false</IstSchreibbar>
</DatenpunktTypInfo>
<DatenpunktTypInfo>
<AnlageId>88888</AnlageId>
<GeraetId>77777</GeraetId>
<DatenpunktId>51</DatenpunktId>
<DatenpunktName>konf_ww_solltemp_rw</DatenpunktName>
<DatenpunktTyp>Integer</DatenpunktTyp>
<DatenpunktTypWert>0</DatenpunktTypWert>
<MinimalWert>10</MinimalWert>
<MaximalWert>95</MaximalWert>
<DatenpunktGruppe>viessmann.eventtypegroupHC.name.VScotHO1_72~HC1</DatenpunktGruppe>
<HeizkreisId>19179</HeizkreisId>
<Auslieferungswert>50</Auslieferungswert>
<IstLesbar>true</IstLesbar>
<IstSchreibbar>true</IstSchreibbar>
</DatenpunktTypInfo>
<DatenpunktTypInfo>
<AnlageId>88888</AnlageId>
<GeraetId>77777</GeraetId>
<DatenpunktId>245</DatenpunktId>
<DatenpunktName>zustand_interne_pumpe_r</DatenpunktName>
<DatenpunktTyp>ENUM</DatenpunktTyp>
<DatenpunktTypWert>0</DatenpunktTypWert>
<MinimalWert />
<MaximalWert />
<DatenpunktGruppe>ecnsysEventTypeGroupHC~VScotHO1_72</DatenpunktGruppe>
<HeizkreisId>19178</HeizkreisId>
<Auslieferungswert />
<IstLesbar>true</IstLesbar>
<IstSchreibbar>false</IstSchreibbar>
</DatenpunktTypInfo>
<DatenpunktTypInfo>
<AnlageId>88888</AnlageId>
<GeraetId>77777</GeraetId>
<DatenpunktId>245-0</DatenpunktId>
<DatenpunktName>zustand_interne_pumpe_r</DatenpunktName>
<DatenpunktTyp>ENUM</DatenpunktTyp>
<DatenpunktTypWert>0</DatenpunktTypWert>
<MinimalWert>Aus</MinimalWert>
<MaximalWert />
<DatenpunktGruppe>ecnsysEventTypeGroupHC~VScotHO1_72</DatenpunktGruppe>
<HeizkreisId>19178</HeizkreisId>
<Auslieferungswert />
<IstLesbar>true</IstLesbar>
<IstSchreibbar>false</IstSchreibbar>
</DatenpunktTypInfo>
<DatenpunktTypInfo>
<AnlageId>88888</AnlageId>
<GeraetId>77777</GeraetId>
<DatenpunktId>245-1</DatenpunktId>
<DatenpunktName>zustand_interne_pumpe_r</DatenpunktName>
<DatenpunktTyp>ENUM</DatenpunktTyp>
<DatenpunktTypWert>0</DatenpunktTypWert>
<MinimalWert>Ein</MinimalWert>
<MaximalWert />
<DatenpunktGruppe>ecnsysEventTypeGroupHC~VScotHO1_72</DatenpunktGruppe>
<HeizkreisId>19178</HeizkreisId>
<Auslieferungswert />
<IstLesbar>true</IstLesbar>
<IstSchreibbar>false</IstSchreibbar>
</DatenpunktTypInfo>
</TypeInfoListe>`,
"GetTypeInfo")
// With an error
testSendRequestDeviceAny(t,
// Send request and check result
func(v *Session, d *Device) bool {
_, err := d.GetTypeInfo(v)
return t.CmpError(err)
},
// SOAP action
"GetTypeInfo",
expectedRequest,
// Response to reply
`<bad XML>`,
"GetTypeInfo with error")
}