-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrfkill_test.go
More file actions
75 lines (71 loc) · 1.29 KB
/
rfkill_test.go
File metadata and controls
75 lines (71 loc) · 1.29 KB
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
package rfkill
import (
"encoding/binary"
"io"
"io/ioutil"
"os"
"reflect"
"testing"
)
func TestEach(t *testing.T) {
withControlFile(t, func(f *os.File) {
evs := []Event{{
Idx: 1,
Type: TypeWLAN,
Soft: 1,
Hard: 0,
}, {
Idx: 2,
Type: TypeBluetooth,
Soft: 0,
Hard: 1,
}}
for _, ev := range evs {
if err := binary.Write(f, endianness, ev); err != nil {
t.Fatal(err)
}
}
i := 0
if err := Each(func(ev Event) error {
if !reflect.DeepEqual(ev, evs[i]) {
t.Fatalf("not equal events, got = %#v, want %#v", ev, evs[i])
}
i++
return nil
}); err != nil && err != io.EOF {
t.Fatal(err)
}
})
}
func TestBlockByIdx(t *testing.T) {
withControlFile(t, func(f *os.File) {
if err := BlockByIdx(1, true); err != nil {
t.Fatal(err)
}
var ev Event
if err := binary.Read(f, endianness, &ev); err != nil {
t.Fatal(err)
}
want := Event{
Idx: 1,
Soft: 1,
Op: OpChange,
}
if !reflect.DeepEqual(ev, want) {
t.Fatalf("BlockByIdx received event = %#v, want %#v", ev, want)
}
})
}
func withControlFile(t *testing.T, fn func(f *os.File)) {
f, err := ioutil.TempFile("", "")
if err != nil {
t.Fatal(err)
}
tmp := controlFile
controlFile = f.Name()
defer func() {
controlFile = tmp
os.Remove(f.Name())
}()
fn(f)
}