don't use a numeric field for testing highlighting

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@801411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-08-05 21:08:42 +00:00
parent e2faa07f41
commit 167a03b576
1 changed files with 4 additions and 3 deletions

View File

@ -539,7 +539,8 @@ public class HighlighterTest extends AbstractSolrTestCase {
//long document //long document
assertU(adoc("tv_text", "keyword is only here", assertU(adoc("tv_text", "keyword is only here",
"t_text", "a piece of text to be substituted", "t_text", "a piece of text to be substituted",
"id", "1")); "id", "1",
"foo_t","hi"));
assertU(commit()); assertU(commit());
assertU(optimize()); assertU(optimize());
@ -559,12 +560,12 @@ public class HighlighterTest extends AbstractSolrTestCase {
); );
// with an alternate // with an alternate
args.put("hl.alternateField", "id"); args.put("hl.alternateField", "foo_t");
sumLRF = h.getRequestFactory("standard", 0, 200, args); sumLRF = h.getRequestFactory("standard", 0, 200, args);
assertQ("Alternate summarization", assertQ("Alternate summarization",
sumLRF.makeRequest("tv_text:keyword"), sumLRF.makeRequest("tv_text:keyword"),
"//lst[@name='highlighting']/lst[@name='1' and count(*)=1]", "//lst[@name='highlighting']/lst[@name='1' and count(*)=1]",
"//lst[@name='highlighting']/lst[@name='1']/arr[@name='t_text']/str[.='1']" "//lst[@name='highlighting']/lst[@name='1']/arr[@name='t_text']/str[.='hi']"
); );
// with an alternate + max length // with an alternate + max length