Beispiel #1
0
        public virtual void TestNegativeQueryBoost()
        {
            Query q = new TermQuery(new Term("foo", "bar"));
            q.Boost = -42f;
            Assert.AreEqual(-42f, q.Boost, 0.0f);

            Directory directory = newDirectory();
            try
            {
              Analyzer analyzer = new MockAnalyzer(random());
              IndexWriterConfig conf = newIndexWriterConfig(TEST_VERSION_CURRENT, analyzer);

              IndexWriter writer = new IndexWriter(directory, conf);
              try
              {
            Document d = new Document();
            d.add(newTextField("foo", "bar", Field.Store.YES));
            writer.addDocument(d);
              }
              finally
              {
            writer.close();
              }

              IndexReader reader = DirectoryReader.open(directory);
              try
              {
            IndexSearcher searcher = newSearcher(reader);

            ScoreDoc[] hits = searcher.search(q, null, 1000).scoreDocs;
            Assert.AreEqual(1, hits.Length);
            Assert.IsTrue("score is not negative: " + hits[0].score, hits[0].score < 0);

            Explanation explain = searcher.explain(q, hits[0].doc);
            Assert.AreEqual("score doesn't match explanation", hits[0].score, explain.Value, 0.001f);
            Assert.IsTrue("explain doesn't think doc is a match", explain.Match);

              }
              finally
              {
            reader.close();
              }
            }
            finally
            {
              directory.close();
            }
        }
Beispiel #2
0
        private void DoTestSearch(Random random, PrintWriter @out, bool useCompoundFile)
        {
            Directory directory = newDirectory();
              Analyzer analyzer = new MockAnalyzer(random);
              IndexWriterConfig conf = newIndexWriterConfig(TEST_VERSION_CURRENT, analyzer);
              MergePolicy mp = conf.MergePolicy;
              mp.NoCFSRatio = useCompoundFile ? 1.0 : 0.0;
              IndexWriter writer = new IndexWriter(directory, conf);

              string[] docs = new string[] {"a b c d e", "a b c d e a b c d e", "a b c d e f g h i j", "a c e", "e c a", "a c e a c e", "a c e a b c"};
              for (int j = 0; j < docs.Length; j++)
              {
            Document d = new Document();
            d.add(newTextField("contents", docs[j], Field.Store.YES));
            d.add(newStringField("id", "" + j, Field.Store.NO));
            writer.addDocument(d);
              }
              writer.close();

              IndexReader reader = DirectoryReader.open(directory);
              IndexSearcher searcher = newSearcher(reader);

              ScoreDoc[] hits = null;

              Sort sort = new Sort(SortField.FIELD_SCORE, new SortField("id", SortField.Type.INT));

              foreach (Query query in BuildQueries())
              {
            @out.println("Query: " + query.ToString("contents"));
            if (VERBOSE)
            {
              Console.WriteLine("TEST: query=" + query);
            }

            hits = searcher.search(query, null, 1000, sort).scoreDocs;

            @out.println(hits.Length + " total results");
            for (int i = 0 ; i < hits.Length && i < 10; i++)
            {
              Document d = searcher.doc(hits[i].doc);
              @out.println(i + " " + hits[i].score + " " + d.get("contents"));
            }
              }
              reader.close();
              directory.close();
        }