12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package main
- import (
- "golang.org/x/text/language"
- "golang.org/x/text/search"
- "strings"
- "github.com/stretchr/testify/assert"
- "testing"
- )
- func entry(title, content, tags string) *Entry {
- cs := strings.Fields(tags)
- cat := make([]Category, len(cs))
- for idx, txt := range cs {
- if strings.HasPrefix(txt, "#") {
- txt = txt[1:]
- }
- cat[idx].Term = txt
- }
- return &Entry{
- Title: HumanText{Body: title},
- Content: &HumanText{Body: content},
- Categories: cat,
- }
- }
- func TestRankEntryTerms(t *testing.T) {
- t.Parallel()
- lang := language.Make("DE-LU")
- assert.Equal(t, "de-LU", lang.String(), "aha")
- matcher := search.New(language.German, search.IgnoreDiacritics, search.IgnoreCase)
- assert.Equal(t, 0, rankEntryTerms(nil, nil, nil), "soso")
- assert.Equal(t, 0, rankEntryTerms(&Entry{}, nil, nil), "soso")
- assert.Equal(t, 2, rankEntryTerms(&Entry{Title: HumanText{Body: "my foo bar"}}, []string{"foo"}, matcher), "soso")
- assert.Equal(t, 2, rankEntryTerms(entry("my foo bar", "", ""), []string{"fòO"}, matcher), "ignores Diacritics")
- assert.Equal(t, 5, rankEntryTerms(entry("my foo bar", "", "#barfoobaz"), []string{"#fòO"}, matcher), "matches tag substrings")
- }
|