ids: Add tests for Aliaser

Tests cover Aliaser.Lookup, Aliaser.Aliases, Aliaser.PrimaryAlias, and
Aliaser.Alias.
This commit is contained in:
Alex Willmer 2020-04-05 00:55:12 +01:00
parent d01c7989b1
commit cf69425775
1 changed files with 113 additions and 0 deletions

113
ids/aliases_test.go Normal file
View File

@ -0,0 +1,113 @@
// (c) 2020, Alex Willmer. All rights reserved.
// See the file LICENSE for licensing terms.
package ids
import (
"reflect"
"testing"
)
func TestAliaserLookupError(t *testing.T) {
emptyAliaser := Aliaser{}
emptyAliaser.Initialize()
tests := []struct {
label string
aliaser Aliaser
alias string
res ID
}{
{"Unitialized", Aliaser{}, "Batwoman", ID{}},
{"Empty", emptyAliaser, "Batman", ID{}},
}
for _, tt := range tests {
t.Run(tt.label, func(t *testing.T) {
res, err := tt.aliaser.Lookup(tt.alias)
if !tt.res.Equals(res) {
t.Errorf("Got %v, expected %v", res, tt.res)
}
if err == nil {
t.Error("Expected an error due to missing alias")
}
})
}
}
func TestAliaserLookup(t *testing.T) {
id := NewID([32]byte{'K', 'a', 't', 'e', ' ', 'K', 'a', 'n', 'e'})
aliaser := Aliaser{}
aliaser.Initialize()
aliaser.Alias(id, "Batwoman")
res, err := aliaser.Lookup("Batwoman")
if err != nil {
t.Fatalf("Unexpected error %q", err)
}
if !id.Equals(res) {
t.Fatalf("Got %v, expected %v", res, id)
}
}
func TestAliaserAliasesEmpty(t *testing.T) {
id := NewID([32]byte{'J', 'a', 'm', 'e', 's', ' ', 'G', 'o', 'r', 'd', 'o', 'n'})
aliaser := Aliaser{}
aliaser.Initialize()
aliases := aliaser.Aliases(id)
if len(aliases) != 0 {
t.Fatalf("Unexpected aliases %#v", aliases)
}
}
func TestAliaserAliases(t *testing.T) {
id := NewID([32]byte{'B', 'r', 'u', 'c', 'e', ' ', 'W', 'a', 'y', 'n', 'e'})
aliaser := Aliaser{}
aliaser.Initialize()
aliaser.Alias(id, "Batman")
aliaser.Alias(id, "Dark Knight")
aliases := aliaser.Aliases(id)
expected := []string{"Batman", "Dark Knight"}
if !reflect.DeepEqual(aliases, expected) {
t.Fatalf("Got %v, expected %v", aliases, expected)
}
}
func TestAliaserPrimaryAlias(t *testing.T) {
id1 := NewID([32]byte{'J', 'a', 'm', 'e', 's', ' ', 'G', 'o', 'r', 'd', 'o', 'n'})
id2 := NewID([32]byte{'B', 'r', 'u', 'c', 'e', ' ', 'W', 'a', 'y', 'n', 'e'})
aliaser := Aliaser{}
aliaser.Initialize()
aliaser.Alias(id2, "Batman")
aliaser.Alias(id2, "Dark Knight")
res, err := aliaser.PrimaryAlias(id1)
if res != "" {
t.Fatalf("Unexpected alias for %v", id1)
}
if err == nil {
t.Fatal("Expected an error given an id with no aliases")
}
res, err = aliaser.PrimaryAlias(id2)
expected := "Batman"
if res != expected {
t.Fatalf("Got %v, expected %v", res, expected)
}
if err != nil {
t.Fatalf("Unexpected error %v", err)
}
}
func TestAliaserAliasClash(t *testing.T) {
id1 := NewID([32]byte{'B', 'r', 'u', 'c', 'e', ' ', 'W', 'a', 'y', 'n', 'e'})
id2 := NewID([32]byte{'D', 'i', 'c', 'k', ' ', 'G', 'r', 'a', 'y', 's', 'o', 'n'})
aliaser := Aliaser{}
aliaser.Initialize()
aliaser.Alias(id1, "Batman")
err := aliaser.Alias(id2, "Batman")
if err == nil {
t.Fatalf("Expected an error, due to an existing alias")
}
}