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
|
/*
* Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: jouyouyun <jouyouwen717@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package display
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
var edid0 = []byte{0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x30, 0xe4, 0x5e, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1, 0x4, 0x95, 0x1f, 0x11, 0x78, 0xea, 0xeb, 0xf5, 0x95, 0x59, 0x54, 0x90, 0x27, 0x1e, 0x50, 0x54, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0xd0, 0x1d, 0x56, 0xf4, 0x50, 0x0, 0x16, 0x30, 0x30, 0x20, 0x35, 0x0, 0x36, 0xae, 0x10, 0x0, 0x0, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x4c, 0x47, 0x20, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0xa, 0x20, 0x20, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x4c, 0x50, 0x31, 0x34, 0x30, 0x57, 0x48, 0x38, 0x2d, 0x54, 0x50, 0x44, 0x31, 0x0, 0x25}
var edid1 = []byte{0x0, 0xff}
func getControllerByName(cs []*Controller, name string) *Controller {
for _, c := range cs {
if c.Name == name {
return c
}
}
return nil
}
func Test_list(t *testing.T) {
Convey("Test list", t, func(c C) {
controllers, err := list("./testdata")
c.So(err, ShouldBeNil)
c.So(controllers, ShouldHaveLength, 2)
c.Convey("Test Controller", func(c C) {
c.Convey("Test intel_backlight", func(c C) {
controller := getControllerByName(controllers, "intel_backlight")
c.So(controller.Type, ShouldEqual, ControllerTypeRaw)
c.So(controller.MaxBrightness, ShouldEqual, 937)
c.So(controller.DeviceEDID, ShouldHaveLength, 128)
t.Logf("%#v\n", controller.DeviceEDID)
br, err := controller.GetBrightness()
c.So(err, ShouldBeNil)
c.So(br, ShouldEqual, 100)
abr, err := controller.GetActualBrightness()
c.So(err, ShouldBeNil)
c.So(abr, ShouldEqual, 100)
})
c.Convey("Test acpi_video0", func(c C) {
controller := getControllerByName(controllers, "acpi_video0")
c.So(controller.Type, ShouldEqual, ControllerTypeFirmware)
c.So(controller.MaxBrightness, ShouldEqual, 15)
c.So(controller.DeviceEDID, ShouldBeNil)
br, err := controller.GetBrightness()
c.So(err, ShouldBeNil)
c.So(br, ShouldEqual, 1)
abr, err := controller.GetActualBrightness()
c.So(err, ShouldBeNil)
c.So(abr, ShouldEqual, 1)
})
})
c.Convey("Test GetByEDID", func(c C) {
controller := controllers.GetByEDID(edid0)
c.So(controller, ShouldNotBeNil)
c.So(controller.Name, ShouldEqual, "intel_backlight")
controller = controllers.GetByEDID(edid1)
c.So(controller, ShouldBeNil)
})
})
}
func TestList(t *testing.T) {
controllers, err := List()
t.Log(err)
for _, c := range controllers {
t.Logf("%+v\n", c)
br, _ := c.GetBrightness()
t.Log("brightness", br)
abr, _ := c.GetActualBrightness()
t.Log("actual_brightness", abr)
}
}
|