forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-e_test.go
90 lines (70 loc) · 1.54 KB
/
go-e_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
package charger
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/evcc-io/evcc/api"
"github.com/evcc-io/evcc/util/sponsor"
)
type handler struct {
uri string
}
func (h *handler) expect(uri string) {
h.uri = uri
}
func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
if r.URL.RawQuery != "" {
path += "?" + r.URL.RawQuery
}
if path == h.uri {
fmt.Fprint(w, "{}")
} else {
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, "expected %s", h.uri)
}
}
func TestGoEV1(t *testing.T) {
h := &handler{}
srv := httptest.NewServer(h)
sponsor.Subject = "foo"
wb, err := NewGoE(srv.URL, "", 0)
if err != nil {
t.Error(err)
}
if _, ok := wb.(api.Meter); !ok {
t.Error("missing Meter api")
}
if _, ok := wb.(api.PhaseCurrents); !ok {
t.Error("missing PhaseCurrents api")
}
if _, ok := wb.(api.Identifier); !ok {
t.Error("missing Identifier api")
}
}
func TestGoEV2(t *testing.T) {
h := &handler{}
srv := httptest.NewServer(h)
sponsor.Subject = "foo"
h.expect("/api/status?filter=alw")
wb, err := NewGoE(srv.URL, "", 0)
if err != nil {
t.Error(err)
}
if _, ok := wb.(api.Meter); !ok {
t.Error("missing Meter api")
}
if _, ok := wb.(api.PhaseCurrents); !ok {
t.Error("missing PhaseCurrents api")
}
if _, ok := wb.(api.Identifier); !ok {
t.Error("missing Identifier api")
}
if _, ok := wb.(api.MeterEnergy); !ok {
t.Error("missing MeterEnergy api")
}
if _, ok := wb.(api.PhaseSwitcher); !ok {
t.Error("missing PhaseSwitcher api")
}
}