forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevsewifi_test.go
64 lines (53 loc) · 1.3 KB
/
evsewifi_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
package charger
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/evcc-io/evcc/api"
)
func TestEvseWifi(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = fmt.Fprintln(w, `{"list":[{"useMeter":true, "alwaysActive":true}]}`)
}))
defer ts.Close()
wb, err := NewEVSEWifiFromConfig(map[string]interface{}{
"uri": ts.URL,
"meter": map[string]interface{}{
"power": true,
"energy": true,
"currents": true,
"voltages": true,
},
})
if err != nil {
t.Error(err)
}
if _, ok := wb.(api.Meter); !ok {
t.Error("missing api.Meter")
}
if _, ok := wb.(api.MeterEnergy); !ok {
t.Error("missing api.MeterEnergy")
}
if _, ok := wb.(api.PhaseCurrents); !ok {
t.Error("missing api.PhaseCurrents")
}
if _, ok := wb.(api.PhaseVoltages); !ok {
t.Error("missing api.PhaseVoltages")
}
}
func TestEvseWifiEx(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = fmt.Fprintln(w, `{"list":[{"actualCurrentMA":600, "alwaysActive":true}]}`)
}))
defer ts.Close()
wb, err := NewEVSEWifiFromConfig(map[string]interface{}{
"uri": ts.URL,
})
if err != nil {
t.Error(err)
}
if _, ok := wb.(api.ChargerEx); !ok {
t.Error("missing api.ChargerEx")
}
}