forked from kidoman/embd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pin_test.go
57 lines (53 loc) · 1.41 KB
/
pin_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
package embd
import "testing"
func TestPinMapLookup(t *testing.T) {
var tests = []struct {
key interface{}
cap int
id string
found bool
}{
{"10", CapAnalog, "P1_1", true},
{10, CapAnalog, "P1_1", true},
{"10", CapDigital, "P1_2", true},
{"P1_2", CapDigital, "P1_2", true},
{"P1_2", CapAnalog, "P1_2", true},
{"GPIO10", CapDigital, "P1_2", true},
{key: "NOTTHERE", found: false},
}
var pinMap = PinMap{
&PinDesc{ID: "P1_1", Aliases: []string{"AN1", "10"}, Caps: CapAnalog},
&PinDesc{ID: "P1_2", Aliases: []string{"10", "GPIO10"}, Caps: CapDigital},
}
for _, test := range tests {
pd, found := pinMap.Lookup(test.key, test.cap)
if found != test.found {
t.Errorf("Outcome mismatch for %v: got found = %v, expected found = %v", test.key, found, test.found)
continue
}
if !found {
continue
}
if pd.ID != test.id {
var capStr string
switch test.cap {
case CapDigital:
capStr = "CapDigital"
case CapAnalog:
capStr = "CapAnalog"
default:
t.Fatalf("Unknown cap %v", test.cap)
}
t.Errorf("Looking up %q with %v: got %v, want %v", test.key, capStr, pd.ID, test.id)
}
}
}
func BenchmarkPinMapLookup(b *testing.B) {
var pinMap = PinMap{
&PinDesc{ID: "P1_1", Aliases: []string{"AN1", "10"}, Caps: CapAnalog},
&PinDesc{ID: "P1_2", Aliases: []string{"10", "GPIO10"}, Caps: CapDigital},
}
for i := 0; i < b.N; i++ {
pinMap.Lookup("GPIO10", CapDigital)
}
}