/* * Copyright 2005 The Apache Software Foundation * * 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. */ using System; using NUnit.Framework; using StandardAnalyzer = Lucene.Net.Analysis.Standard.StandardAnalyzer; using Document = Lucene.Net.Documents.Document; using Field = Lucene.Net.Documents.Field; using IndexWriter = Lucene.Net.Index.IndexWriter; using Term = Lucene.Net.Index.Term; using BooleanClause = Lucene.Net.Search.BooleanClause; using BooleanQuery = Lucene.Net.Search.BooleanQuery; using Hits = Lucene.Net.Search.Hits; using IndexSearcher = Lucene.Net.Search.IndexSearcher; using Query = Lucene.Net.Search.Query; using Directory = Lucene.Net.Store.Directory; using RAMDirectory = Lucene.Net.Store.RAMDirectory; namespace Lucene.Net.Search.Spans { /// **************************************************************************** /// Tests the span query bug in Lucene. It demonstrates that SpanTermQuerys don't /// work correctly in a BooleanQuery. /// /// /// Reece Wilton /// [TestFixture] public class TestSpansAdvanced { // location to the index protected internal Directory mDirectory; // field names in the index private const System.String FIELD_ID = "ID"; protected internal const System.String FIELD_TEXT = "TEXT"; /// Initializes the tests by adding 4 identical documents to the index. [SetUp] public virtual void SetUp() { // create test index mDirectory = new RAMDirectory(); IndexWriter writer = new IndexWriter(mDirectory, new StandardAnalyzer(), true); AddDocument(writer, "1", "I think it should work."); AddDocument(writer, "2", "I think it should work."); AddDocument(writer, "3", "I think it should work."); AddDocument(writer, "4", "I think it should work."); writer.Close(); } [TearDown] public virtual void TearDown() { mDirectory.Close(); mDirectory = null; } /// Adds the document to the index. /// /// /// the Lucene index writer /// /// the unique id of the document /// /// the text of the document /// /// IOException protected internal virtual void AddDocument(IndexWriter writer, System.String id, System.String text) { Lucene.Net.Documents.Document document = new Lucene.Net.Documents.Document(); document.Add(new Field(FIELD_ID, id, Field.Store.YES, Field.Index.UN_TOKENIZED)); document.Add(new Field(FIELD_TEXT, text, Field.Store.YES, Field.Index.TOKENIZED)); writer.AddDocument(document); } /// Tests two span queries. /// /// /// IOException [Test] public virtual void TestBooleanQueryWithSpanQueries() { DoTestBooleanQueryWithSpanQueries(0.3884282f); } /// Tests two span queries. /// /// /// IOException protected internal virtual void DoTestBooleanQueryWithSpanQueries(float expectedScore) { Query spanQuery = new SpanTermQuery(new Term(FIELD_TEXT, "work")); BooleanQuery query = new BooleanQuery(); query.Add(spanQuery, BooleanClause.Occur.MUST); query.Add(spanQuery, BooleanClause.Occur.MUST); Hits hits = ExecuteQuery(query); System.String[] expectedIds = new System.String[]{"1", "2", "3", "4"}; float[] expectedScores = new float[]{expectedScore, expectedScore, expectedScore, expectedScore}; AssertHits(hits, "two span queries", expectedIds, expectedScores); } /// Executes the query and throws an assertion if the results don't match the /// expectedHits. /// /// /// the query to execute /// /// IOException protected internal virtual Hits ExecuteQuery(Query query) { IndexSearcher searcher = new IndexSearcher(mDirectory); Hits hits = searcher.Search(query); searcher.Close(); return hits; } /// Checks to see if the hits are what we expected. /// /// /// the search results /// /// the description of the search /// /// the expected document ids of the hits /// /// the expected scores of the hits /// /// /// IOException protected internal virtual void AssertHits(Hits hits, System.String description, System.String[] expectedIds, float[] expectedScores) { // display the hits /*System.out.println(hits.length() + " hits for search: \"" + description + '\"'); for (int i = 0; i < hits.length(); i++) { System.out.println(" " + FIELD_ID + ':' + hits.doc(i).get(FIELD_ID) + " (score:" + hits.score(i) + ')'); }*/ // did we get the hits we expected Assert.AreEqual(expectedIds.Length, hits.Length()); for (int i = 0; i < hits.Length(); i++) { Assert.IsTrue(expectedIds[i].Equals(hits.Doc(i).Get(FIELD_ID))); Assert.AreEqual(expectedScores[i], hits.Score(i), 0); } } } }