2015-10-06 14:53:39 -04:00
|
|
|
package netlabel
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-10-06 15:08:54 -04:00
|
|
|
var input = []struct {
|
|
|
|
label string
|
|
|
|
key string
|
|
|
|
value string
|
|
|
|
}{
|
|
|
|
{"com.directory.person.name=joe", "com.directory.person.name", "joe"},
|
|
|
|
{"com.directory.person.age=24", "com.directory.person.age", "24"},
|
|
|
|
{"com.directory.person.address=1234 First st.", "com.directory.person.address", "1234 First st."},
|
|
|
|
{"com.directory.person.friends=", "com.directory.person.friends", ""},
|
|
|
|
{"com.directory.person.nickname=o=u=8", "com.directory.person.nickname", "o=u=8"},
|
|
|
|
{"", "", ""},
|
|
|
|
{"com.directory.person.student", "com.directory.person.student", ""},
|
|
|
|
}
|
2015-10-06 14:53:39 -04:00
|
|
|
|
2015-10-06 15:08:54 -04:00
|
|
|
func TestKeyValue(t *testing.T) {
|
2015-10-06 14:53:39 -04:00
|
|
|
for _, i := range input {
|
2015-10-06 15:08:54 -04:00
|
|
|
k, v := KeyValue(i.label)
|
|
|
|
if k != i.key || v != i.value {
|
|
|
|
t.Fatalf("unexpected: %s, %s", k, v)
|
2015-10-06 14:53:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|