-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcontext_test.go
92 lines (85 loc) · 2.13 KB
/
context_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
// Copyright (c) 2015-2023 The libusb developers. All rights reserved.
// Project site: /~https://github.com/gotmc/libusb
// Use of this source code is governed by a MIT-style license that
// can be found in the LICENSE.txt file for the project.
package libusb
import "testing"
func TestNewContext(t *testing.T) {
if _, err := NewContext(); err != nil {
t.Errorf(
"Error initializing new libusb context:\n\tgot %v want %v",
err,
nil,
)
}
}
func TestCloseContext(t *testing.T) {
context, _ := NewContext()
if err := context.Close(); err != nil {
t.Errorf(
"Error exiting context:\n\tgot %v want %v",
err,
nil,
)
}
if context.libusbContext != nil {
t.Errorf(
"Context field still exists after exiting:\n\tgot %v want %v",
context.libusbContext,
nil,
)
}
}
func TestSetDebugLevel(t *testing.T) {
testCases := []struct {
lev LogLevel
}{
{LogLevelNone},
{LogLevelError},
{LogLevelWarning},
{LogLevelInfo},
{LogLevelDebug},
}
for _, tc := range testCases {
context, _ := NewContext()
context.SetDebug(tc.lev)
if got := context.LogLevel; got != tc.lev {
t.Errorf("got %v; want %v", got, tc.lev)
}
}
}
func TestLogLevelStringMethod(t *testing.T) {
testCases := []struct {
logLevel LogLevel
want string
}{
{LogLevelNone, "No messages ever printed by the library (default)"},
{LogLevelError, "Error messages are printed to stderr"},
{LogLevelWarning, "Warning and error messages are printed to stderr"},
{LogLevelInfo, "Informational messages are printed to stdout, warning and error messages are printed to stderr"},
{LogLevelDebug, "Debug and informational messages are printed to stdout, warnings and errors to stderr"},
}
for _, tc := range testCases {
if got := tc.logLevel.String(); got != tc.want {
t.Errorf("got %s; want %s", got, tc.want)
}
}
}
func TestDeviceList(t *testing.T) {
context, _ := NewContext()
defer context.Close()
devices, err := context.DeviceList()
if err != nil {
t.Errorf(
"Error on DeviceList:\n\tgot %v; want %v",
err,
nil,
)
}
if got := len(devices); got < 1 {
t.Errorf(
"got %v device; want at least one",
got,
)
}
}