-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey_test_cgo.go
127 lines (121 loc) · 2.17 KB
/
key_test_cgo.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright (c) 2023 Joshua Rich <[email protected]>
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
package gokbd
// #cgo pkg-config: libevdev
// #include <libevdev/libevdev.h>
// #include <libevdev/libevdev-uinput.h>
import "C"
import (
"reflect"
"testing"
)
func test_keyPress(t *testing.T) {
aKey := &key{
keyType: C.EV_KEY,
keyCode: 30,
value: 1,
}
type args struct {
c int
}
tests := []struct {
name string
args args
want *key
}{
{
name: "test press",
args: args{c: 30},
want: aKey,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := keyPress(tt.args.c); !reflect.DeepEqual(got, tt.want) {
t.Errorf("keyPress() = %v, want %v", got, tt.want)
}
})
}
}
func test_keyRelease(t *testing.T) {
aKey := &key{
keyType: C.EV_KEY,
keyCode: 30,
value: 0,
}
type args struct {
c int
}
tests := []struct {
name string
args args
want *key
}{
{
name: "test release",
args: args{c: 30},
want: aKey,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := keyRelease(tt.args.c); !reflect.DeepEqual(got, tt.want) {
t.Errorf("keyRelease() = %v, want %v", got, tt.want)
}
})
}
}
func test_keySync(t *testing.T) {
k := &key{
keyType: C.EV_SYN,
keyCode: C.SYN_REPORT,
value: 0,
}
tests := []struct {
name string
want *key
}{
{
name: "test sync",
want: k,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := keySync(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("keySync() = %v, want %v", got, tt.want)
}
})
}
}
func test_keySequence(t *testing.T) {
keyList := []*key{
keyPress(30),
keySync(),
keyRelease(30),
keySync(),
}
type args struct {
keys []*key
}
tests := []struct {
name string
args args
want []*key
}{
{
name: "test key sequence",
args: args{keys: keyList},
want: keyList,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := getValues(keySequence(tt.args.keys...)); !reflect.DeepEqual(got, tt.want) {
t.Errorf("keySequence() = %v, want %v", got, tt.want)
}
})
}
}