omegatest: Use test_scriptindex_error in another case
[xapian.git] / xapian-core / tests / harness / testutils.h
blob3b06e2d06009410a210b87bc9ded3f11a2ba07ec
1 /** @file
2 * @brief Xapian-specific test helper functions and macros.
3 */
4 /* Copyright 1999,2000,2001 BrightStation PLC
5 * Copyright 2002,2003,2007,2008,2015 Olly Betts
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
20 * USA
23 #ifndef OM_HGUARD_TESTUTILS_H
24 #define OM_HGUARD_TESTUTILS_H
26 #include "testsuite.h"
27 #include <xapian.h>
29 // ######################################################################
30 // Useful display operators
32 std::ostream &operator<<(std::ostream &os,
33 const std::vector<Xapian::docid> &ints);
35 // ######################################################################
36 // Useful comparison operators
38 // Test that the weights and docids in two mset ranges are the same.
39 bool
40 mset_range_is_same(const Xapian::MSet &mset1, unsigned int first1,
41 const Xapian::MSet &mset2, unsigned int first2,
42 unsigned int count);
44 // Test that the weights and docids in the mset and an array are the same.
45 bool
46 mset_range_is_same(const Xapian::MSet& mset, unsigned int first,
47 const std::pair<Xapian::docid, double> to_compare[],
48 unsigned int count);
50 // Test that the weights in two mset ranges are the same, ignoring docids.
51 bool
52 mset_range_is_same_weights(const Xapian::MSet &mset1, unsigned int first1,
53 const Xapian::MSet &mset2, unsigned int first2,
54 unsigned int count);
56 bool operator==(const Xapian::MSet &first, const Xapian::MSet &second);
58 inline bool operator!=(const Xapian::MSet &first, const Xapian::MSet &second)
60 return !(first == second);
63 void mset_expect_order(const Xapian::MSet &A,
64 Xapian::docid d1 = 0, Xapian::docid d2 = 0,
65 Xapian::docid d3 = 0, Xapian::docid d4 = 0,
66 Xapian::docid d5 = 0, Xapian::docid d6 = 0,
67 Xapian::docid d7 = 0, Xapian::docid d8 = 0,
68 Xapian::docid d9 = 0, Xapian::docid d10 = 0,
69 Xapian::docid d11 = 0, Xapian::docid d12 = 0);
71 void test_mset_order_equal(const Xapian::MSet &mset1,
72 const Xapian::MSet &mset2);
74 // ######################################################################
75 // Useful test macros
77 /// Check MSet M has size S.
78 #define TEST_MSET_SIZE(M, S) TEST_AND_EXPLAIN(((M).size() == (S)), \
79 "MSet '" STRINGIZE(M) "' is not of expected size: was '" << \
80 (M).size() << "' expected '" << (S) << "':\n" << \
81 "Full mset was:\n" << (M))
83 /// Helper macro.
84 #define TEST_EXCEPTION_(TYPE, CODE, EXACT) \
85 do { \
86 expected_exception = STRINGIZE(TYPE); \
87 if (strncmp(expected_exception, "Xapian::", \
88 CONST_STRLEN("Xapian::")) == 0) { \
89 expected_exception += CONST_STRLEN("Xapian::"); \
90 } \
91 try { \
92 CODE; \
93 FAIL_TEST("Expected " << expected_exception << " not thrown"); \
94 } catch (const TYPE& xap_ex_obj_) { \
95 if (EXACT) { \
96 if (strcmp(expected_exception, xap_ex_obj_.get_type()) != 0) { \
97 FAIL_TEST("Caught subclass " << xap_ex_obj_.get_type() << \
98 " of expected " << expected_exception); \
99 } \
102 expected_exception = NULL;\
103 } while (0)
105 /// Check that CODE throws Xapian exception derived from TYPE.
106 #define TEST_EXCEPTION_BASE_CLASS(TYPE, CODE) TEST_EXCEPTION_(TYPE, CODE, false)
108 /// Check that CODE throws exactly Xapian exception TYPE.
109 #define TEST_EXCEPTION(TYPE, CODE) TEST_EXCEPTION_(TYPE, CODE, true)
111 #endif // OM_HGUARD_TESTUTILS_H