-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbridge_test.go
125 lines (109 loc) · 3 KB
/
bridge_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
package huego
import (
"context"
"fmt"
"net"
"net/http"
"strings"
"testing"
"github.com/jarcoal/httpmock"
"github.com/stretchr/testify/assert"
"golang.org/x/net/proxy"
)
func ExampleBridge_CreateUser() {
bridge, _ := Discover()
user, err := bridge.CreateUser("my awesome hue app") // Link button needs to be pressed
if err != nil {
fmt.Printf("Error creating user: %s", err.Error())
}
bridge = bridge.Login(user)
light, _ := bridge.GetLight(1)
light.Off()
}
func TestLogin(t *testing.T) {
b := New(hostname, username)
c, err := b.GetConfig()
if err != nil {
t.Fatal(err)
}
t.Logf("Logged in and got config which means that we are authorized")
t.Logf("Name: %s, SwVersion: %s", c.Name, c.SwVersion)
}
func TestLoginUnauthorized(t *testing.T) {
b := New(hostname, "")
b = b.Login("invalid_password")
_, err := b.GetLights()
if err != nil {
if strings.Contains(err.Error(), "unauthorized user") == false {
t.Fatal(err)
}
}
t.Logf("Bridge: %s, Username: %s", b.Host, b.User)
t.Log("User logged in and authenticated which isn't what we want")
}
func TestUpdateBridgeConfig(t *testing.T) {
b := New(hostname, username)
c, err := b.GetConfig()
if err != nil {
t.Fatal(err)
}
_, err = b.UpdateConfig(c)
if err != nil {
t.Fatal(err)
}
}
func TestUpdateBridgeConfigError(t *testing.T) {
b := New(badHostname, username)
_, err := b.GetConfig()
if err == nil {
t.Fatal("Expected error not to be nil")
}
}
func TestBridge_getAPIPathError(t *testing.T) {
b := New("invalid hostname", "")
_, err := b.getAPIPath("/")
assert.NotNil(t, err)
}
func TestBridge_getError(t *testing.T) {
httpmock.Deactivate()
defer httpmock.Activate()
_, err := get(context.Background(), "invalid hostname", http.DefaultClient)
assert.NotNil(t, err)
}
func TestBridge_putError(t *testing.T) {
httpmock.Deactivate()
defer httpmock.Activate()
_, err := put(context.Background(), "invalid hostname", []byte("huego"), http.DefaultClient)
assert.NotNil(t, err)
}
func TestBridge_postError(t *testing.T) {
httpmock.Deactivate()
defer httpmock.Activate()
_, err := post(context.Background(), "invalid hostname", []byte("huego"), http.DefaultClient)
assert.NotNil(t, err)
}
func TestBridge_deleteError(t *testing.T) {
httpmock.Deactivate()
defer httpmock.Activate()
_, err := del(context.Background(), "invalid hostname", http.DefaultClient)
assert.NotNil(t, err)
}
func TestCustomLogin(t *testing.T) {
newTransport := httpmock.InitialTransport.(*http.Transport).Clone()
newTransport.DialContext = func(ctx context.Context, network, address string) (net.Conn, error) {
return proxy.Direct.Dial(network, address)
}
newClient := http.DefaultClient
newClient.Transport = newTransport
httpmock.ActivateNonDefault(newClient)
b := NewWithClient(hostname, username, newClient)
c, err := b.GetConfig()
if err != nil {
t.Fatal(err)
}
if c == nil {
t.Fatal("failed to get config")
}
t.Logf("Logged in and got config which means that we are authorized")
t.Logf("Name: %s, SwVersion: %s", c.Name, c.SwVersion)
}