0
0
bleve/search/highlight/format/html/html_test.go

93 lines
2.2 KiB
Go
Raw Normal View History

// Copyright (c) 2014 Couchbase, Inc.
2016-10-02 16:13:14 +02:00
//
// 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 html
2014-07-22 14:54:33 +02:00
import (
"testing"
"github.com/blevesearch/bleve/search"
"github.com/blevesearch/bleve/search/highlight"
2014-07-22 14:54:33 +02:00
)
func TestHTMLFragmentFormatter1(t *testing.T) {
2014-07-22 14:54:33 +02:00
tests := []struct {
fragment *highlight.Fragment
tlm search.TermLocationMap
2014-07-22 14:54:33 +02:00
output string
}{
{
fragment: &highlight.Fragment{
Orig: []byte("the quick brown fox"),
Start: 0,
End: 19,
2014-07-22 14:54:33 +02:00
},
tlm: search.TermLocationMap{
2016-04-03 05:17:47 +02:00
"quick": []*search.Location{
2016-04-03 05:08:43 +02:00
{
2014-07-22 14:54:33 +02:00
Pos: 2,
Start: 4,
End: 9,
},
},
},
output: "the <b>quick</b> brown fox",
},
}
2014-09-04 01:16:46 +02:00
emHTMLFormatter := NewFragmentFormatter("<b>", "</b>")
2014-07-22 14:54:33 +02:00
for _, test := range tests {
otl := highlight.OrderTermLocations(test.tlm)
result := emHTMLFormatter.Format(test.fragment, otl)
2014-07-22 14:54:33 +02:00
if result != test.output {
t.Errorf("expected `%s`, got `%s`", test.output, result)
}
}
}
func TestHTMLFragmentFormatter2(t *testing.T) {
2014-07-22 14:54:33 +02:00
tests := []struct {
fragment *highlight.Fragment
tlm search.TermLocationMap
2014-07-22 14:54:33 +02:00
output string
}{
{
fragment: &highlight.Fragment{
Orig: []byte("the quick brown fox"),
Start: 0,
End: 19,
2014-07-22 14:54:33 +02:00
},
tlm: search.TermLocationMap{
2016-04-03 05:17:47 +02:00
"quick": []*search.Location{
2016-04-03 05:08:43 +02:00
{
2014-07-22 14:54:33 +02:00
Pos: 2,
Start: 4,
End: 9,
},
},
},
output: "the <em>quick</em> brown fox",
},
}
2014-09-04 01:16:46 +02:00
emHTMLFormatter := NewFragmentFormatter("<em>", "</em>")
2014-07-22 14:54:33 +02:00
for _, test := range tests {
otl := highlight.OrderTermLocations(test.tlm)
result := emHTMLFormatter.Format(test.fragment, otl)
2014-07-22 14:54:33 +02:00
if result != test.output {
t.Errorf("expected `%s`, got `%s`", test.output, result)
}
}
}