2014-03-22 20:41:24 +01:00
|
|
|
package embd
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func TestPinMapLookup(t *testing.T) {
|
|
|
|
var tests = []struct {
|
|
|
|
key interface{}
|
2014-03-22 21:06:24 +01:00
|
|
|
cap int
|
2014-03-22 20:41:24 +01:00
|
|
|
id string
|
2014-03-22 22:01:47 +01:00
|
|
|
|
|
|
|
found bool
|
2014-03-22 20:41:24 +01:00
|
|
|
}{
|
2014-03-22 22:01:47 +01:00
|
|
|
{"10", CapAnalog, "P1_1", true},
|
|
|
|
{10, CapAnalog, "P1_1", true},
|
2014-03-23 09:41:09 +01:00
|
|
|
{"10", CapDigital, "P1_2", true},
|
|
|
|
{"P1_2", CapDigital, "P1_2", true},
|
2014-03-22 22:01:47 +01:00
|
|
|
{"P1_2", CapAnalog, "P1_2", true},
|
2014-03-23 09:41:09 +01:00
|
|
|
{"GPIO10", CapDigital, "P1_2", true},
|
2014-03-22 22:01:47 +01:00
|
|
|
{key: "NOTTHERE", found: false},
|
2014-03-22 20:41:24 +01:00
|
|
|
}
|
|
|
|
var pinMap = PinMap{
|
2014-03-22 21:06:24 +01:00
|
|
|
&PinDesc{ID: "P1_1", Aliases: []string{"AN1", "10"}, Caps: CapAnalog},
|
2014-03-23 09:41:09 +01:00
|
|
|
&PinDesc{ID: "P1_2", Aliases: []string{"10", "GPIO10"}, Caps: CapDigital},
|
2014-03-22 20:41:24 +01:00
|
|
|
}
|
|
|
|
for _, test := range tests {
|
2014-03-22 21:06:24 +01:00
|
|
|
pd, found := pinMap.Lookup(test.key, test.cap)
|
2014-03-22 22:01:47 +01:00
|
|
|
if found != test.found {
|
|
|
|
t.Errorf("Outcome mismatch for %v: got found = %v, expected found = %v", test.key, found, test.found)
|
|
|
|
continue
|
|
|
|
}
|
2014-03-22 20:41:24 +01:00
|
|
|
if !found {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if pd.ID != test.id {
|
2014-03-22 21:06:24 +01:00
|
|
|
var capStr string
|
|
|
|
switch test.cap {
|
2014-03-23 09:41:09 +01:00
|
|
|
case CapDigital:
|
|
|
|
capStr = "CapDigital"
|
2014-03-22 21:06:24 +01:00
|
|
|
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)
|
2014-03-22 20:41:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-23 00:53:25 +01:00
|
|
|
|
|
|
|
func BenchmarkPinMapLookup(b *testing.B) {
|
|
|
|
var pinMap = PinMap{
|
|
|
|
&PinDesc{ID: "P1_1", Aliases: []string{"AN1", "10"}, Caps: CapAnalog},
|
2014-03-23 09:41:09 +01:00
|
|
|
&PinDesc{ID: "P1_2", Aliases: []string{"10", "GPIO10"}, Caps: CapDigital},
|
2014-03-23 00:53:25 +01:00
|
|
|
}
|
|
|
|
for i := 0; i < b.N; i++ {
|
2014-03-23 09:41:09 +01:00
|
|
|
pinMap.Lookup("GPIO10", CapDigital)
|
2014-03-23 00:53:25 +01:00
|
|
|
}
|
|
|
|
}
|