forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheebus_test.go
141 lines (127 loc) Β· 2.4 KB
/
eebus_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
package charger
import (
"testing"
"go.uber.org/mock/gomock"
)
func TestEEBusIsCharging(t *testing.T) {
type limitStruct struct {
phase uint
min, max, pause float64
}
type measurementStruct struct {
phase uint
current float64
}
type testMeasurementStruct struct {
expected bool
data []measurementStruct
}
tests := []struct {
name string
limits []limitStruct
measurements []testMeasurementStruct
}{
{
"3 phase IEC",
[]limitStruct{
{1, 6, 16, 0},
{2, 6, 16, 0},
{3, 6, 16, 0},
},
[]testMeasurementStruct{
{
false,
[]measurementStruct{
{1, 0},
{2, 3},
{3, 0},
},
},
{
true,
[]measurementStruct{
{1, 6},
{2, 0},
{3, 1},
},
},
},
},
{
"1 phase IEC",
[]limitStruct{
{1, 6, 16, 0},
},
[]testMeasurementStruct{
{
false,
[]measurementStruct{
{1, 2},
},
},
{
true,
[]measurementStruct{
{1, 6},
},
},
},
},
{
"3 phase ISO",
[]limitStruct{
{1, 2.2, 16, 0.1},
{2, 2.2, 16, 0.1},
{3, 2.2, 16, 0.1},
},
[]testMeasurementStruct{
{
false,
[]measurementStruct{
{1, 1},
{2, 0},
{3, 0},
},
},
{
true,
[]measurementStruct{
{1, 1.8},
{2, 1},
{3, 3},
},
},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
limitsMin := make([]float64, 0)
limitsMax := make([]float64, 0)
limitsDefault := make([]float64, 0)
for _, limit := range tc.limits {
limitsMin = append(limitsMin, limit.min)
limitsMax = append(limitsMax, limit.max)
limitsDefault = append(limitsDefault, limit.pause)
}
for index, m := range tc.measurements {
ctrl := gomock.NewController(t)
emobilityMock := NewMockEmobilityI(ctrl)
eebus := &EEBus{
emobility: emobilityMock,
}
currents := make([]float64, 0)
for _, d := range m.data {
currents = append(currents, d.current)
}
emobilityMock.EXPECT().EVCurrentsPerPhase().Return(currents, nil).AnyTimes()
emobilityMock.EXPECT().EVCurrentLimits().Return(limitsMin, limitsMax, limitsDefault, nil)
result := eebus.isCharging()
if result != m.expected {
t.Errorf("Failure: test %s, series %d, expected %v, got %v", tc.name, index, m.expected, result)
}
ctrl.Finish()
}
})
}
}