0
0
bleve/search/scorer_term_test.go
2014-04-19 14:39:07 -04:00

139 lines
3.3 KiB
Go

// Copyright (c) 2013 Couchbase, Inc.
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
// except in compliance with the License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software distributed under the
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
package search
import (
"math"
"reflect"
"testing"
"github.com/couchbaselabs/bleve/index"
)
func TestTermScorer(t *testing.T) {
query := TermQuery{
Term: "beer",
Field: "desc",
BoostVal: 1.0,
Explain: true,
}
var docTotal uint64 = 100
var docTerm uint64 = 9
scorer := NewTermQueryScorer(&query, docTotal, docTerm, true)
idf := 1.0 + math.Log(float64(docTotal)/float64(docTerm+1.0))
tests := []struct {
termMatch *index.TermFieldDoc
result *DocumentMatch
}{
// test some simple math
{
termMatch: &index.TermFieldDoc{
ID: "one",
Freq: 1,
Norm: 1.0,
},
result: &DocumentMatch{
ID: "one",
Score: math.Sqrt(1.0) * idf,
Expl: &Explanation{
Value: math.Sqrt(1.0) * idf,
Message: "fieldWeight(desc:beer in one), product of:",
Children: []*Explanation{
&Explanation{
Value: 1,
Message: "tf(termFreq(desc:beer)=1",
},
&Explanation{
Value: 1,
Message: "fieldNorm(field=desc, doc=one)",
},
&Explanation{
Value: idf,
Message: "idf(docFreq=9, maxDocs=100)",
},
},
},
},
},
// test the same thing again (score should be cached this time)
{
termMatch: &index.TermFieldDoc{
ID: "one",
Freq: 1,
Norm: 1.0,
},
result: &DocumentMatch{
ID: "one",
Score: math.Sqrt(1.0) * idf,
Expl: &Explanation{
Value: math.Sqrt(1.0) * idf,
Message: "fieldWeight(desc:beer in one), product of:",
Children: []*Explanation{
&Explanation{
Value: 1,
Message: "tf(termFreq(desc:beer)=1",
},
&Explanation{
Value: 1,
Message: "fieldNorm(field=desc, doc=one)",
},
&Explanation{
Value: idf,
Message: "idf(docFreq=9, maxDocs=100)",
},
},
},
},
},
// test a case where the sqrt isn't precalculated
{
termMatch: &index.TermFieldDoc{
ID: "one",
Freq: 65,
Norm: 1.0,
},
result: &DocumentMatch{
ID: "one",
Score: math.Sqrt(65) * idf,
Expl: &Explanation{
Value: math.Sqrt(65) * idf,
Message: "fieldWeight(desc:beer in one), product of:",
Children: []*Explanation{
&Explanation{
Value: math.Sqrt(65),
Message: "tf(termFreq(desc:beer)=65",
},
&Explanation{
Value: 1,
Message: "fieldNorm(field=desc, doc=one)",
},
&Explanation{
Value: idf,
Message: "idf(docFreq=9, maxDocs=100)",
},
},
},
},
},
}
for _, test := range tests {
actual := scorer.Score(test.termMatch)
if !reflect.DeepEqual(actual, test.result) {
t.Errorf("expected %#v got %#v for %#v", test.result, actual, test.termMatch)
t.Logf("expl: %s", actual.Expl)
}
}
}