aboutsummaryrefslogtreecommitdiff
path: root/scene_test.go
blob: 07d630ce45eed18cfd4d416266611ce56a0d2d89 (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
/*
* scene_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 TestGetAllScenes(t *testing.T) {
    bridge, _ := NewBridge("192.168.1.128", "427de8bd6d49f149c8398e4fc08f")
    scenes, _ := bridge.GetAllScenes()
    for scene := range scenes {
        fmt.Println("SCENE: ", scenes[scene])
    }

    individual, _ := bridge.GetScene(scenes[0].ID)
    fmt.Println("Individual scene: ", individual)
}

func TestCreateScene(t *testing.T) {
    bridge, _ := NewBridge("192.168.1.128", "427de8bd6d49f149c8398e4fc08f")
    scene := Scene{Lights: []string{"1", "2"}}
    _ = bridge.CreateScene(scene)
}