Fix user search when using an asterisk (#4586)

Этот коммит содержится в:
Joram Wilander
2016-11-21 12:17:53 -05:00
коммит произвёл Harrison Healey
родитель a9824a3653
Коммит 062f758e47
2 изменённых файлов: 40 добавлений и 1 удалений

Просмотреть файл

@@ -981,6 +981,32 @@ func TestUserStoreSearch(t *testing.T) {
}
}
// * should be treated as a space
if r1 := <-store.User().Search(tid, "jimb*", searchOptions); r1.Err != nil {
t.Fatal(r1.Err)
} else {
profiles := r1.Data.([]*model.User)
found1 := false
found2 := false
for _, profile := range profiles {
if profile.Id == u1.Id {
found1 = true
}
if profile.Id == u3.Id {
found2 = true
}
}
if !found1 {
t.Fatal("should have found user")
}
if found2 {
t.Fatal("should not have found inactive user")
}
}
if r1 := <-store.User().Search(tid, "harol", searchOptions); r1.Err != nil {
t.Fatal(r1.Err)
} else {