aboutsummaryrefslogtreecommitdiff
path: root/bridge_test.go
blob: b98d63ec584cdad46054e56a6a554a5c6f0f811a (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
26
27
28
29
30
31
32
33
34
/*
* bridge_test.go
* GoHue library for Philips Hue
* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
*/

package hue

import (
    "testing"
    "fmt"
)

func TestCreateUser(t *testing.T) {
    bridge, _ := NewBridge("192.168.1.128")
    username, _ := bridge.CreateUser("test")
    bridge.Login(username)
    //bridge.DeleteUser(bridge.Username)
}

func TestFindBridge(t *testing.T) {
    bridge, _ := FindBridge()
    fmt.Println(bridge.IPAddress)
}

func TestBridgeLogin(t *testing.T) {
    bridge, err := FindBridge()
    if err != nil {
        fmt.Println("Error on TestBridgeLogin")
    }
    bridge.Login("427de8bd6d49f149c8398e4fc08f")

}