blob: 22104fd7622ff77679670566dee7ad9ab5cda429 [file] [log] [blame]
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#define C_TESTLUCY_TESTQUERYPARSERLOGIC
#define C_TESTLUCY_TESTQUERYPARSER
#define TESTLUCY_USE_SHORT_NAMES
#include "Lucy/Util/ToolSet.h"
#include <string.h>
#include <stdlib.h>
#include "Clownfish/TestHarness/TestBatchRunner.h"
#include "Lucy/Test.h"
#include "Lucy/Test/Search/TestQueryParserLogic.h"
#include "Lucy/Test/Search/TestQueryParser.h"
#include "Lucy/Test/TestSchema.h"
#include "Lucy/Test/TestUtils.h"
#include "Lucy/Analysis/Analyzer.h"
#include "Lucy/Document/Doc.h"
#include "Lucy/Index/Indexer.h"
#include "Lucy/Search/Hits.h"
#include "Lucy/Search/IndexSearcher.h"
#include "Lucy/Search/QueryParser.h"
#include "Lucy/Search/TermQuery.h"
#include "Lucy/Search/PhraseQuery.h"
#include "Lucy/Search/LeafQuery.h"
#include "Lucy/Search/ANDQuery.h"
#include "Lucy/Search/MatchAllQuery.h"
#include "Lucy/Search/NOTQuery.h"
#include "Lucy/Search/NoMatchQuery.h"
#include "Lucy/Search/ORQuery.h"
#include "Lucy/Search/RequiredOptionalQuery.h"
#include "Lucy/Store/RAMFolder.h"
#define make_leaf_query (Query*)TestUtils_make_leaf_query
#define make_not_query (Query*)TestUtils_make_not_query
#define make_poly_query (Query*)TestUtils_make_poly_query
TestQueryParserLogic*
TestQPLogic_new() {
return (TestQueryParserLogic*)Class_Make_Obj(TESTQUERYPARSERLOGIC);
}
static TestQueryParser*
logical_test_empty_phrase(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "\"\"");
UNUSED_VAR(boolop);
return TestQP_new("\"\"", tree, NULL, 0);
}
static TestQueryParser*
logical_test_empty_parens(uint32_t boolop) {
Query *tree = make_poly_query(boolop, NULL);
return TestQP_new("()", tree, NULL, 0);
}
static TestQueryParser*
logical_test_nested_empty_parens(uint32_t boolop) {
Query *inner = make_poly_query(boolop, NULL);
Query *tree = make_poly_query(boolop, inner, NULL);
return TestQP_new("(())", tree, NULL, 0);
}
static TestQueryParser*
logical_test_nested_empty_phrase(uint32_t boolop) {
Query *leaf = make_leaf_query(NULL, "\"\"");
Query *tree = make_poly_query(boolop, leaf, NULL);
return TestQP_new("(\"\")", tree, NULL, 0);
}
static TestQueryParser*
logical_test_simple_term(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "b");
UNUSED_VAR(boolop);
return TestQP_new("b", tree, NULL, 3);
}
static TestQueryParser*
logical_test_one_nested_term(uint32_t boolop) {
Query *leaf = make_leaf_query(NULL, "a");
Query *tree = make_poly_query(boolop, leaf, NULL);
return TestQP_new("(a)", tree, NULL, 4);
}
static TestQueryParser*
logical_test_one_term_phrase(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "\"a\"");
UNUSED_VAR(boolop);
return TestQP_new("\"a\"", tree, NULL, 4);
}
static TestQueryParser*
logical_test_two_terms(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *tree = make_poly_query(boolop, a_leaf, b_leaf, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 3;
return TestQP_new("a b", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_two_terms_nested(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *tree = make_poly_query(boolop, a_leaf, b_leaf, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 3;
return TestQP_new("(a b)", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_one_term_one_single_term_phrase(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "\"b\"");
Query *tree = make_poly_query(boolop, a_leaf, b_leaf, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 3;
return TestQP_new("a \"b\"", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_two_terms_one_nested(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *b_tree = make_poly_query(boolop, b_leaf, NULL);
Query *tree = make_poly_query(boolop, a_leaf, b_tree, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 3;
return TestQP_new("a (b)", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_one_term_one_nested_single_term_phrase(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "\"b\"");
Query *b_tree = make_poly_query(boolop, b_leaf, NULL);
Query *tree = make_poly_query(boolop, a_leaf, b_tree, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 3;
return TestQP_new("a (\"b\")", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_phrase(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "\"a b\"");
UNUSED_VAR(boolop);
return TestQP_new("\"a b\"", tree, NULL, 3);
}
static TestQueryParser*
logical_test_nested_phrase(uint32_t boolop) {
Query *leaf = make_leaf_query(NULL, "\"a b\"");
Query *tree = make_poly_query(boolop, leaf, NULL);
return TestQP_new("(\"a b\")", tree, NULL, 3);
}
static TestQueryParser*
logical_test_three_terms(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *c_leaf = make_leaf_query(NULL, "c");
Query *tree = make_poly_query(boolop, a_leaf, b_leaf,
c_leaf, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 2;
return TestQP_new("a b c", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_three_terms_two_nested(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *c_leaf = make_leaf_query(NULL, "c");
Query *inner_tree = make_poly_query(boolop, b_leaf, c_leaf, NULL);
Query *tree = make_poly_query(boolop, a_leaf, inner_tree, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 2;
return TestQP_new("a (b c)", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_one_term_one_phrase(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *bc_leaf = make_leaf_query(NULL, "\"b c\"");
Query *tree = make_poly_query(boolop, a_leaf, bc_leaf, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 2;
return TestQP_new("a \"b c\"", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_one_term_one_nested_phrase(uint32_t boolop) {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *bc_leaf = make_leaf_query(NULL, "\"b c\"");
Query *inner_tree = make_poly_query(boolop, bc_leaf, NULL);
Query *tree = make_poly_query(boolop, a_leaf, inner_tree, NULL);
uint32_t num_hits = boolop == BOOLOP_OR ? 4 : 2;
return TestQP_new("a (\"b c\")", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_long_phrase(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "\"a b c\"");
UNUSED_VAR(boolop);
return TestQP_new("\"a b c\"", tree, NULL, 2);
}
static TestQueryParser*
logical_test_pure_negation(uint32_t boolop) {
Query *leaf = make_leaf_query(NULL, "x");
Query *tree = make_not_query(leaf);
UNUSED_VAR(boolop);
return TestQP_new("-x", tree, NULL, 0);
}
static TestQueryParser*
logical_test_double_negative(uint32_t boolop) {
Query *tree = make_leaf_query(NULL, "a");
UNUSED_VAR(boolop);
return TestQP_new("--a", tree, NULL, 4);
}
static TestQueryParser*
logical_test_triple_negative(uint32_t boolop) {
Query *leaf = make_leaf_query(NULL, "a");
Query *tree = make_not_query(leaf);
UNUSED_VAR(boolop);
return TestQP_new("---a", tree, NULL, 0);
}
// Technically, this should produce an acceptably small result set, but it's
// too difficult to prune -- so QParser_Prune just lops it because it's a
// top-level NOTQuery.
static TestQueryParser*
logical_test_nested_negations(uint32_t boolop) {
Query *query = make_leaf_query(NULL, "a");
query = make_poly_query(boolop, query, NULL);
query = make_not_query(query);
query = make_poly_query(BOOLOP_AND, query, NULL);
query = make_not_query(query);
return TestQP_new("-(-(a))", query, NULL, 0);
}
static TestQueryParser*
logical_test_two_terms_one_required(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *tree;
if (boolop == BOOLOP_AND) {
tree = make_poly_query(boolop, a_query, b_query, NULL);
}
else {
tree = (Query*)ReqOptQuery_new(b_query, a_query);
DECREF(b_query);
DECREF(a_query);
}
return TestQP_new("a +b", tree, NULL, 3);
}
static TestQueryParser*
logical_test_intersection(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *tree = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b", tree, NULL, 3);
}
static TestQueryParser*
logical_test_three_way_intersection(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *tree = make_poly_query(BOOLOP_AND, a_query, b_query,
c_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b AND c", tree, NULL, 2);
}
static TestQueryParser*
logical_test_union(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b", tree, NULL, 4);
}
static TestQueryParser*
logical_test_three_way_union(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, c_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b OR c", tree, NULL, 4);
}
static TestQueryParser*
logical_test_a_or_plus_b(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR +b", tree, NULL, 4);
}
static TestQueryParser*
logical_test_and_not(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *not_b = make_not_query(b_query);
Query *tree = make_poly_query(BOOLOP_AND, a_query, not_b, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND NOT b", tree, NULL, 1);
}
static TestQueryParser*
logical_test_nested_or(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *nested = make_poly_query(BOOLOP_OR, b_query, c_query, NULL);
Query *tree = make_poly_query(boolop, a_query, nested, NULL);
return TestQP_new("a (b OR c)", tree, NULL, boolop == BOOLOP_OR ? 4 : 3);
}
static TestQueryParser*
logical_test_and_nested_or(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *nested = make_poly_query(BOOLOP_OR, b_query, c_query, NULL);
Query *tree = make_poly_query(BOOLOP_AND, a_query, nested, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND (b OR c)", tree, NULL, 3);
}
static TestQueryParser*
logical_test_or_nested_or(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *nested = make_poly_query(BOOLOP_OR, b_query, c_query, NULL);
Query *tree = make_poly_query(BOOLOP_OR, a_query, nested, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR (b OR c)", tree, NULL, 4);
}
static TestQueryParser*
logical_test_and_not_nested_or(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *nested = make_poly_query(BOOLOP_OR, b_query, c_query, NULL);
Query *not_nested = make_not_query(nested);
Query *tree = make_poly_query(BOOLOP_AND, a_query,
not_nested, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND NOT (b OR c)", tree, NULL, 1);
}
static TestQueryParser*
logical_test_a_AND_b_AND_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *tree = make_poly_query(BOOLOP_AND, a_query, b_query, c_query,
d_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b AND c AND d", tree, NULL, 1);
}
static TestQueryParser*
logical_test_a_AND_b_AND_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *nested = make_poly_query(BOOLOP_AND, a_query, b_query, c_query,
NULL);
Query *tree = make_poly_query(BOOLOP_OR, nested,
d_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b AND c OR d", tree, NULL, 2);
}
static TestQueryParser*
logical_test_a_AND_b_OR_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
Query *right = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *tree = make_poly_query(BOOLOP_OR, left, right, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b OR c AND d", tree, NULL, 3);
}
static TestQueryParser*
logical_test_a_AND_b_OR_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
Query *tree = make_poly_query(BOOLOP_OR, left, c_query, d_query,
NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND b OR c OR d", tree, NULL, 3);
}
static TestQueryParser*
logical_test_a_OR_b_AND_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *right = make_poly_query(BOOLOP_AND, b_query, c_query, d_query,
NULL);
Query *tree = make_poly_query(BOOLOP_OR, a_query, right, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b AND c AND d", tree, NULL, 4);
}
static TestQueryParser*
logical_test_a_OR_b_AND_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *middle = make_poly_query(BOOLOP_AND, b_query, c_query, NULL);
Query *tree = make_poly_query(BOOLOP_OR, a_query, middle, d_query,
NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b AND c OR d", tree, NULL, 4);
}
static TestQueryParser*
logical_test_a_OR_b_OR_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *right = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, right,
NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b OR c AND d", tree, NULL, 4);
}
static TestQueryParser*
logical_test_a_OR_b_OR_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, c_query,
d_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a OR b OR c OR d", tree, NULL, 4);
}
static TestQueryParser*
logical_test_a_AND_b_AND_c_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_AND, a_query, b_query, c_query,
NULL);
Query *tree = make_poly_query(boolop, left, d_query, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 2;
return TestQP_new("a AND b AND c d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_AND_b_OR_c_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *inner = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
Query *left = make_poly_query(BOOLOP_OR, inner, c_query, NULL);
Query *tree = make_poly_query(boolop, left, d_query, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 3;
return TestQP_new("a AND b OR c d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_OR_b_AND_c_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *inner = make_poly_query(BOOLOP_AND, b_query, c_query, NULL);
Query *left = make_poly_query(BOOLOP_OR, a_query, inner, NULL);
Query *tree = make_poly_query(boolop, left, d_query, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 4;
return TestQP_new("a OR b AND c d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_OR_b_OR_c_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_OR, a_query, b_query, c_query,
NULL);
Query *tree = make_poly_query(boolop, left, d_query, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 4;
return TestQP_new("a OR b OR c d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_AND_b_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
Query *right = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *tree = make_poly_query(boolop, left, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 3;
return TestQP_new("a AND b c AND d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_AND_b_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_AND, a_query, b_query, NULL);
Query *right = make_poly_query(BOOLOP_OR, c_query, d_query, NULL);
Query *tree = make_poly_query(boolop, left, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 2 : 3;
return TestQP_new("a AND b c OR d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_OR_b_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_OR, a_query, b_query, NULL);
Query *right = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *tree = make_poly_query(boolop, left, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 4;
return TestQP_new("a OR b c AND d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_OR_b_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *left = make_poly_query(BOOLOP_OR, a_query, b_query, NULL);
Query *right = make_poly_query(BOOLOP_OR, c_query, d_query, NULL);
Query *tree = make_poly_query(boolop, left, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 2 : 4;
return TestQP_new("a OR b c OR d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_b_AND_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *right = make_poly_query(BOOLOP_AND, b_query, c_query, d_query,
NULL);
Query *tree = make_poly_query(boolop, a_query, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 1 : 4;
return TestQP_new("a b AND c AND d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_b_AND_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *inner = make_poly_query(BOOLOP_AND, b_query, c_query, NULL);
Query *right = make_poly_query(BOOLOP_OR, inner, d_query, NULL);
Query *tree = make_poly_query(boolop, a_query, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 2 : 4;
return TestQP_new("a b AND c OR d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_b_OR_c_AND_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *inner = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *right = make_poly_query(BOOLOP_OR, b_query, inner, NULL);
Query *tree = make_poly_query(boolop, a_query, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 3 : 4;
return TestQP_new("a b OR c AND d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_a_b_OR_c_OR_d(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *right = make_poly_query(BOOLOP_OR, b_query, c_query, d_query,
NULL);
Query *tree = make_poly_query(boolop, a_query, right, NULL);
uint32_t num_hits = boolop == BOOLOP_AND ? 3 : 4;
return TestQP_new("a b OR c OR d", tree, NULL, num_hits);
}
static TestQueryParser*
logical_test_required_phrase_negated_term(uint32_t boolop) {
Query *bc_query = make_leaf_query(NULL, "\"b c\"");
Query *d_query = make_leaf_query(NULL, "d");
Query *not_d = make_not_query(d_query);
Query *tree = make_poly_query(BOOLOP_AND, bc_query, not_d, NULL);
UNUSED_VAR(boolop);
return TestQP_new("+\"b c\" -d", tree, NULL, 1);
}
static TestQueryParser*
logical_test_required_term_optional_phrase(uint32_t boolop) {
Query *ab_query = make_leaf_query(NULL, "\"a b\"");
Query *d_query = make_leaf_query(NULL, "d");
Query *tree;
if (boolop == BOOLOP_AND) {
tree = make_poly_query(BOOLOP_AND, ab_query, d_query, NULL);
}
else {
tree = (Query*)ReqOptQuery_new(d_query, ab_query);
DECREF(d_query);
DECREF(ab_query);
}
UNUSED_VAR(boolop);
return TestQP_new("\"a b\" +d", tree, NULL, 1);
}
static TestQueryParser*
logical_test_nested_nest(uint32_t boolop) {
Query *a_query = make_leaf_query(NULL, "a");
Query *b_query = make_leaf_query(NULL, "b");
Query *c_query = make_leaf_query(NULL, "c");
Query *d_query = make_leaf_query(NULL, "d");
Query *innermost = make_poly_query(BOOLOP_AND, c_query, d_query, NULL);
Query *inner = make_poly_query(BOOLOP_OR, b_query, innermost, NULL);
Query *not_inner = make_not_query(inner);
Query *tree = make_poly_query(BOOLOP_AND, a_query, not_inner, NULL);
UNUSED_VAR(boolop);
return TestQP_new("a AND NOT (b OR (c AND d))", tree, NULL, 1);
}
static TestQueryParser*
logical_test_field_bool_group(uint32_t boolop) {
Query *b_query = make_leaf_query("content", "b");
Query *c_query = make_leaf_query("content", "c");
Query *tree = make_poly_query(boolop, b_query, c_query, NULL);
return TestQP_new("content:(b c)", tree, NULL,
boolop == BOOLOP_OR ? 3 : 2);
}
static TestQueryParser*
logical_test_field_multi_OR(uint32_t boolop) {
Query *a_query = make_leaf_query("content", "a");
Query *b_query = make_leaf_query("content", "b");
Query *c_query = make_leaf_query("content", "c");
Query *tree = make_poly_query(BOOLOP_OR, a_query, b_query, c_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("content:(a OR b OR c)", tree, NULL, 4);
}
static TestQueryParser*
logical_test_field_multi_AND(uint32_t boolop) {
Query *a_query = make_leaf_query("content", "a");
Query *b_query = make_leaf_query("content", "b");
Query *c_query = make_leaf_query("content", "c");
Query *tree = make_poly_query(BOOLOP_AND, a_query, b_query,
c_query, NULL);
UNUSED_VAR(boolop);
return TestQP_new("content:(a AND b AND c)", tree, NULL, 2);
}
static TestQueryParser*
logical_test_field_phrase(uint32_t boolop) {
Query *tree = make_leaf_query("content", "\"b c\"");
UNUSED_VAR(boolop);
return TestQP_new("content:\"b c\"", tree, NULL, 2);
}
static TestQueryParser*
prune_test_null_querystring() {
Query *pruned = (Query*)NoMatchQuery_new();
return TestQP_new(NULL, NULL, pruned, 0);
}
static TestQueryParser*
prune_test_matchall() {
Query *tree = (Query*)MatchAllQuery_new();
Query *pruned = (Query*)NoMatchQuery_new();
return TestQP_new(NULL, tree, pruned, 0);
}
static TestQueryParser*
prune_test_nomatch() {
Query *tree = (Query*)NoMatchQuery_new();
Query *pruned = (Query*)NoMatchQuery_new();
return TestQP_new(NULL, tree, pruned, 0);
}
static TestQueryParser*
prune_test_optional_not() {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *not_b = make_not_query(b_leaf);
Query *tree = make_poly_query(BOOLOP_OR, (Query*)INCREF(a_leaf),
not_b, NULL);
Query *nomatch = (Query*)NoMatchQuery_new();
Query *pruned = make_poly_query(BOOLOP_OR, a_leaf, nomatch, NULL);
return TestQP_new(NULL, tree, pruned, 4);
}
static TestQueryParser*
prune_test_reqopt_optional_not() {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *not_b = make_not_query(b_leaf);
Query *tree = (Query*)ReqOptQuery_new(a_leaf, not_b);
Query *nomatch = (Query*)NoMatchQuery_new();
Query *pruned = (Query*)ReqOptQuery_new(a_leaf, nomatch);
DECREF(nomatch);
DECREF(not_b);
DECREF(a_leaf);
return TestQP_new(NULL, tree, pruned, 4);
}
static TestQueryParser*
prune_test_reqopt_required_not() {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *not_a = make_not_query(a_leaf);
Query *tree = (Query*)ReqOptQuery_new(not_a, b_leaf);
Query *nomatch = (Query*)NoMatchQuery_new();
Query *pruned = (Query*)ReqOptQuery_new(nomatch, b_leaf);
DECREF(nomatch);
DECREF(not_a);
DECREF(b_leaf);
return TestQP_new(NULL, tree, pruned, 0);
}
static TestQueryParser*
prune_test_not_and_not() {
Query *a_leaf = make_leaf_query(NULL, "a");
Query *b_leaf = make_leaf_query(NULL, "b");
Query *not_a = make_not_query(a_leaf);
Query *not_b = make_not_query(b_leaf);
Query *tree = make_poly_query(BOOLOP_AND, not_a, not_b, NULL);
Query *pruned = make_poly_query(BOOLOP_AND, NULL);
return TestQP_new(NULL, tree, pruned, 0);
}
/***************************************************************************/
typedef TestQueryParser*
(*LUCY_TestQPLogic_Logical_Test_t)(uint32_t boolop_sym);
static LUCY_TestQPLogic_Logical_Test_t logical_test_funcs[] = {
logical_test_empty_phrase,
logical_test_empty_parens,
logical_test_nested_empty_parens,
logical_test_nested_empty_phrase,
logical_test_simple_term,
logical_test_one_nested_term,
logical_test_one_term_phrase,
logical_test_two_terms,
logical_test_two_terms_nested,
logical_test_one_term_one_single_term_phrase,
logical_test_two_terms_one_nested,
logical_test_one_term_one_nested_phrase,
logical_test_phrase,
logical_test_nested_phrase,
logical_test_three_terms,
logical_test_three_terms_two_nested,
logical_test_one_term_one_phrase,
logical_test_one_term_one_nested_single_term_phrase,
logical_test_long_phrase,
logical_test_pure_negation,
logical_test_double_negative,
logical_test_triple_negative,
logical_test_nested_negations,
logical_test_two_terms_one_required,
logical_test_intersection,
logical_test_three_way_intersection,
logical_test_union,
logical_test_three_way_union,
logical_test_a_or_plus_b,
logical_test_and_not,
logical_test_nested_or,
logical_test_and_nested_or,
logical_test_or_nested_or,
logical_test_and_not_nested_or,
logical_test_a_AND_b_AND_c_AND_d,
logical_test_a_AND_b_AND_c_OR_d,
logical_test_a_AND_b_OR_c_AND_d,
logical_test_a_AND_b_OR_c_OR_d,
logical_test_a_OR_b_AND_c_AND_d,
logical_test_a_OR_b_AND_c_OR_d,
logical_test_a_OR_b_OR_c_AND_d,
logical_test_a_OR_b_OR_c_OR_d,
logical_test_a_AND_b_AND_c_d,
logical_test_a_AND_b_OR_c_d,
logical_test_a_OR_b_AND_c_d,
logical_test_a_OR_b_OR_c_d,
logical_test_a_AND_b_c_AND_d,
logical_test_a_AND_b_c_OR_d,
logical_test_a_OR_b_c_AND_d,
logical_test_a_OR_b_c_OR_d,
logical_test_a_b_AND_c_AND_d,
logical_test_a_b_AND_c_OR_d,
logical_test_a_b_OR_c_AND_d,
logical_test_a_b_OR_c_OR_d,
logical_test_required_phrase_negated_term,
logical_test_required_term_optional_phrase,
logical_test_nested_nest,
logical_test_field_phrase,
logical_test_field_bool_group,
logical_test_field_multi_OR,
logical_test_field_multi_AND,
NULL
};
typedef TestQueryParser*
(*LUCY_TestQPLogic_Prune_Test_t)();
static LUCY_TestQPLogic_Prune_Test_t prune_test_funcs[] = {
prune_test_null_querystring,
prune_test_matchall,
prune_test_nomatch,
prune_test_optional_not,
prune_test_reqopt_optional_not,
prune_test_reqopt_required_not,
prune_test_not_and_not,
NULL
};
static Folder*
S_create_index() {
Schema *schema = (Schema*)TestSchema_new(false);
RAMFolder *folder = RAMFolder_new(NULL);
Vector *doc_set = TestUtils_doc_set();
Indexer *indexer = Indexer_new(schema, (Obj*)folder, NULL, 0);
String *field = SSTR_WRAP_C("content");
for (size_t i = 0, max = Vec_Get_Size(doc_set); i < max; i++) {
Doc *doc = Doc_new(NULL, 0);
Doc_Store(doc, field, Vec_Fetch(doc_set, i));
Indexer_Add_Doc(indexer, doc, 1.0f);
DECREF(doc);
}
Indexer_Commit(indexer);
DECREF(doc_set);
DECREF(indexer);
DECREF(schema);
return (Folder*)folder;
}
void
TestQPLogic_Run_IMP(TestQueryParserLogic *self, TestBatchRunner *runner) {
TestBatchRunner_Plan(runner, (TestBatch*)self, 258);
uint32_t i;
Folder *folder = S_create_index();
IndexSearcher *searcher = IxSearcher_new((Obj*)folder);
QueryParser *or_parser = QParser_new(IxSearcher_Get_Schema(searcher),
NULL, NULL, NULL);
String *AND = SSTR_WRAP_C("AND");
QueryParser *and_parser = QParser_new(IxSearcher_Get_Schema(searcher),
NULL, AND, NULL);
QParser_Set_Heed_Colons(or_parser, true);
QParser_Set_Heed_Colons(and_parser, true);
// Run logical tests with default boolop of OR.
for (i = 0; logical_test_funcs[i] != NULL; i++) {
LUCY_TestQPLogic_Logical_Test_t test_func = logical_test_funcs[i];
TestQueryParser *test_case_obj = test_func(BOOLOP_OR);
TestQueryParserIVARS *test_case = TestQP_IVARS(test_case_obj);
Query *tree = QParser_Tree(or_parser, test_case->query_string);
Query *parsed = QParser_Parse(or_parser, test_case->query_string);
Hits *hits = IxSearcher_Hits(searcher, (Obj*)parsed, 0, 10, NULL);
char *qstr = Str_To_Utf8(test_case->query_string);
TEST_TRUE(runner, Query_Equals(tree, (Obj*)test_case->tree),
"tree() OR %s", qstr);
TEST_INT_EQ(runner, Hits_Total_Hits(hits), test_case->num_hits,
"hits: OR %s", qstr);
free(qstr);
DECREF(hits);
DECREF(parsed);
DECREF(tree);
DECREF(test_case_obj);
}
// Run logical tests with default boolop of AND.
for (i = 0; logical_test_funcs[i] != NULL; i++) {
LUCY_TestQPLogic_Logical_Test_t test_func = logical_test_funcs[i];
TestQueryParser *test_case_obj = test_func(BOOLOP_AND);
TestQueryParserIVARS *test_case = TestQP_IVARS(test_case_obj);
Query *tree = QParser_Tree(and_parser, test_case->query_string);
Query *parsed = QParser_Parse(and_parser, test_case->query_string);
Hits *hits = IxSearcher_Hits(searcher, (Obj*)parsed, 0, 10, NULL);
char *qstr = Str_To_Utf8(test_case->query_string);
TEST_TRUE(runner, Query_Equals(tree, (Obj*)test_case->tree),
"tree() AND %s", qstr);
TEST_INT_EQ(runner, Hits_Total_Hits(hits), test_case->num_hits,
"hits: AND %s", qstr);
free(qstr);
DECREF(hits);
DECREF(parsed);
DECREF(tree);
DECREF(test_case_obj);
}
// Run tests for QParser_Prune().
for (i = 0; prune_test_funcs[i] != NULL; i++) {
LUCY_TestQPLogic_Prune_Test_t test_func = prune_test_funcs[i];
TestQueryParser *test_case_obj = test_func();
TestQueryParserIVARS *test_case = TestQP_IVARS(test_case_obj);
String *qstring = test_case->tree
? Query_To_String(test_case->tree)
: Str_new_from_trusted_utf8("(NULL)", 6);
char *qstr = Str_To_Utf8(qstring);
Query *tree = test_case->tree;
Query *wanted = test_case->expanded;
Query *pruned = QParser_Prune(or_parser, tree);
Query *expanded;
Hits *hits;
TEST_TRUE(runner, Query_Equals(pruned, (Obj*)wanted),
"prune() %s", qstr);
expanded = QParser_Expand(or_parser, pruned);
hits = IxSearcher_Hits(searcher, (Obj*)expanded, 0, 10, NULL);
TEST_INT_EQ(runner, Hits_Total_Hits(hits), test_case->num_hits,
"hits: %s", qstr);
free(qstr);
DECREF(hits);
DECREF(expanded);
DECREF(pruned);
DECREF(qstring);
DECREF(test_case_obj);
}
DECREF(and_parser);
DECREF(or_parser);
DECREF(searcher);
DECREF(folder);
}