~brianaker/libmemcached/1164440

« back to all changes in this revision

Viewing changes to libtest/comparison.hpp

  • Committer: Continuous Integration
  • Date: 2012-03-14 16:53:36 UTC
  • mfrom: (990.2.1 workspace)
  • Revision ID: ci@tangent.org-20120314165336-mjrg2hwmb6sx1er2
jenkins-promote-staging-trunk-libmemcached-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
2
 * 
 
3
 *  libtest
 
4
 *
 
5
 *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
 
6
 *
 
7
 *  This library is free software; you can redistribute it and/or
 
8
 *  modify it under the terms of the GNU Lesser General Public
 
9
 *  License as published by the Free Software Foundation; either
 
10
 *  version 3 of the License, or (at your option) any later version.
 
11
 *
 
12
 *  This library 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 GNU
 
15
 *  Lesser General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU Lesser General Public
 
18
 *  License along with this library; if not, write to the Free Software
 
19
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
20
 */
 
21
 
 
22
#pragma once
 
23
 
 
24
#include <typeinfo>
 
25
 
 
26
#if defined(HAVE_LIBMEMCACHED) && HAVE_LIBMEMCACHED
 
27
#include <libmemcached-1.0/memcached.h>
 
28
#include <libmemcachedutil-1.0/ostream.hpp>
 
29
#endif
 
30
 
 
31
#if defined(HAVE_LIBGEARMAN) && HAVE_LIBGEARMAN
 
32
#include <libgearman-1.0/ostream.hpp>
 
33
#endif
 
34
 
 
35
namespace libtest {
 
36
 
 
37
bool _in_valgrind(const char *file, int line, const char *func);
 
38
 
 
39
template <class T_comparable, class T_hint>
 
40
bool _compare_truth_hint(const char *file, int line, const char *func, T_comparable __expected, const char *assertation_label,  T_hint __hint)
 
41
{
 
42
  if (__expected == false)
 
43
  {
 
44
    libtest::stream::make_cerr(file, line, func) << "Assertation  \"" << assertation_label << "\" failed, hint: " << __hint;
 
45
    return false;
 
46
  }
 
47
 
 
48
  return true;
 
49
}
 
50
 
 
51
template <class T1_comparable, class T2_comparable>
 
52
bool _compare(const char *file, int line, const char *func, const T1_comparable& __expected, const T2_comparable& __actual, bool use_io)
 
53
{
 
54
  if (__expected != __actual)
 
55
  {
 
56
    if (use_io)
 
57
    {
 
58
      libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\"";
 
59
    }
 
60
 
 
61
    return false;
 
62
  }
 
63
 
 
64
  return true;
 
65
}
 
66
 
 
67
template <class T_comparable>
 
68
bool _compare_zero(const char *file, int line, const char *func, T_comparable __actual)
 
69
{
 
70
  if (T_comparable(0) != __actual)
 
71
  {
 
72
    libtest::stream::make_cerr(file, line, func) << "Expected 0 got \"" << __actual << "\"";
 
73
    return false;
 
74
  }
 
75
 
 
76
  return true;
 
77
}
 
78
 
 
79
template <class T_comparable>
 
80
bool _truth(const char *file, int line, const char *func, T_comparable __truth)
 
81
{
 
82
  if (bool(__truth))
 
83
  {
 
84
    libtest::stream::make_cerr(file, line, func) << "Assertion failed for " << func << "() with \"" << __truth << "\"";
 
85
    return false;
 
86
  }
 
87
 
 
88
  return true;
 
89
}
 
90
 
 
91
template <class T1_comparable, class T2_comparable, class T_hint>
 
92
bool _compare_hint(const char *file, int line, const char *func, T1_comparable __expected, T2_comparable __actual, T_hint __hint, bool io_error= true)
 
93
{
 
94
  if (__expected != __actual)
 
95
  {
 
96
    if (io_error)
 
97
    {
 
98
      libtest::stream::make_cerr(file, line, func) << "Expected \"" << __expected << "\" got \"" << __actual << "\"" << " Additionally: \"" << __hint << "\"";
 
99
    }
 
100
 
 
101
    return false;
 
102
  }
 
103
 
 
104
  return true;
 
105
}
 
106
 
 
107
} // namespace libtest