aboutsummaryrefslogtreecommitdiff
path: root/light_test.go
blob: 6da677df2dd3ff432c193404cb1be19c6d99397b (plain)
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
package hue

import (
    "testing"
    "fmt"
)

func TestGetAllLights(t *testing.T) {
    bridge := NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
    GetAllLights(bridge)
}

func TestGetLight(t *testing.T) {
    bridge := NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
    GetLight(bridge, "Bathroom Light")
}

func TestSetLightState(t *testing.T) {
    fmt.Println("\nTESTING LIGHT STATE:\n\n")
    bridge := NewBridge("192.168.1.128", "319b36233bd2328f3e40731b23479207")
    lights, _ := GetAllLights(bridge)
    fmt.Println("\nUNIQUE ID: ", lights[0].UniqueID)
    newState := LightState{On: false}
    SetLightState(bridge, lights[1].Index, newState)
}