OSX fixes, make memcapable a test.
[awesomized/libmemcached] / libtest / comparison.hpp
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * libtest
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 */
36
37 #pragma once
38
39 #include <typeinfo>
40 #include <libtest/strerror.h>
41 #include <libmemcached/memcached.h>
42
43 namespace libtest {
44
45 template <class T_comparable, class T_hint>
46 bool _compare_true_hint(const char *file, int line, const char *func, T_comparable __expected, const char *assertation_label, T_hint __hint)
47 {
48 if (__expected == false)
49 {
50 libtest::stream::make_cerr(file, line, func) << "Assertation \"" << assertation_label << "\" failed, hint: " << __hint;
51 return false;
52 }
53
54 return true;
55 }
56
57 template <class T_comparable>
58 bool _compare(const char *file, int line, const char *func, T_comparable __expected, T_comparable __actual)
59 {
60 if (__expected != __actual)
61 {
62 if (typeid(__expected) == typeid(memcached_return_t))
63 {
64 libtest::stream::make_cerr(file, line, func) << "Expected \""
65 << memcached_strerror(NULL, memcached_return_t(__expected))
66 << "\" got \""
67 << memcached_strerror(NULL, memcached_return_t(__actual)) << "\"";
68 }
69 else if (typeid(__expected) == typeid(test_return_t))
70 {
71 libtest::stream::make_cerr(file, line, func) << "Expected \""
72 << test_strerror(test_return_t(__expected))
73 << "\" got \""
74 << test_strerror(test_return_t(__actual)) << "\"";
75 }
76 else
77 {
78 libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\"";
79 }
80 return false;
81 }
82
83 return true;
84 }
85
86 template <class T_comparable>
87 bool _compare_zero(const char *file, int line, const char *func, T_comparable __actual)
88 {
89 if (T_comparable(0) != __actual)
90 {
91 libtest::stream::make_cerr(file, line, func) << "Expected 0 got \"" << __actual << "\"";
92 return false;
93 }
94
95 return true;
96 }
97
98 template <class T_comparable, class T_hint>
99 bool _compare_hint(const char *file, int line, const char *func, T_comparable __expected, T_comparable __actual, T_hint __hint)
100 {
101 if (__expected != __actual)
102 {
103 libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\" Additionally: \"" << __hint << "\"";
104
105 return false;
106 }
107
108 return true;
109 }
110
111 } // namespace libtest