Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testing.hpp « testing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3effe3537bee294bb3d44722c59a5d4c63ba726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#pragma once

#include "testing/testregister.hpp"

#include "base/exception.hpp"
#include "base/logging.hpp"
#include "base/math.hpp"
#include "base/src_point.hpp"

#include <string>

#define UNIT_TEST(name)                                                  \
  void UnitTest_##name();                                                \
  TestRegister g_testRegister_##name(#name, __FILE__, &UnitTest_##name); \
  void UnitTest_##name()

#define UNIT_CLASS_TEST(CLASS, NAME)               \
  struct UnitClass_##CLASS##_##NAME : public CLASS \
  {                                                \
  public:                                          \
    void NAME();                                   \
  };                                               \
  UNIT_TEST(CLASS##_##NAME)                        \
  {                                                \
    UnitClass_##CLASS##_##NAME instance;           \
    instance.NAME();                               \
  }                                                \
  void UnitClass_##CLASS##_##NAME::NAME()

DECLARE_EXCEPTION(TestFailureException, RootException);

namespace base
{
inline void OnTestFailed(SrcPoint const & srcPoint, std::string const & msg)
{
  LOG(LINFO, ("FAILED"));
  LOG(LINFO, (::DebugPrint(srcPoint.FileName()) + ":" + ::DebugPrint(srcPoint.Line()), msg));
  MYTHROW(TestFailureException, (srcPoint.FileName(), srcPoint.Line(), msg));
}
}  // namespace base

namespace testing
{
void RunEventLoop();
void StopEventLoop();

void Wait();
void Notify();
}  // namespace testing

// This struct contains parsed command line options. It may contain pointers to argc contents.
struct CommandLineOptions
{
  CommandLineOptions() = default;

  char const * m_filterRegExp = nullptr;
  char const * m_suppressRegExp = nullptr;
  char const * m_dataPath = nullptr;
  char const * m_resourcePath = nullptr;

  bool m_help = false;
  bool m_listTests = false;
};
CommandLineOptions const & GetTestingOptions();

#define TEST(X, msg)                                                                     \
  do                                                                                     \
  {                                                                                      \
    if (X)                                                                               \
    {                                                                                    \
    }                                                                                    \
    else                                                                                 \
    {                                                                                    \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X ")", ::base::Message msg)); \
    }                                                                                    \
  } while (0)

#define TEST_EQUAL(X, Y, msg)                                                                      \
  do                                                                                               \
  {                                                                                                \
    if ((X) == (Y))                                                                                \
    {                                                                                              \
    }                                                                                              \
    else                                                                                           \
    {                                                                                              \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " == " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                           \
    }                                                                                              \
  } while (0)

#define TEST_NOT_EQUAL(X, Y, msg)                                                                  \
  do                                                                                               \
  {                                                                                                \
    if ((X) != (Y))                                                                                \
    {                                                                                              \
    }                                                                                              \
    else                                                                                           \
    {                                                                                              \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " != " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                           \
    }                                                                                              \
  } while (0)

#define TEST_LESS(X, Y, msg)                                                                      \
  do                                                                                              \
  {                                                                                               \
    if ((X) < (Y))                                                                                \
    {                                                                                             \
    }                                                                                             \
    else                                                                                          \
    {                                                                                             \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " < " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                          \
    }                                                                                             \
  } while (0)

#define TEST_LESS_OR_EQUAL(X, Y, msg)                                                              \
  do                                                                                               \
  {                                                                                                \
    if ((X) <= (Y))                                                                                \
    {                                                                                              \
    }                                                                                              \
    else                                                                                           \
    {                                                                                              \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " <= " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                           \
    }                                                                                              \
  } while (0)

#define TEST_GREATER(X, Y, msg)                                                                   \
  do                                                                                              \
  {                                                                                               \
    if ((X) > (Y))                                                                                \
    {                                                                                             \
    }                                                                                             \
    else                                                                                          \
    {                                                                                             \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " > " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                          \
    }                                                                                             \
  } while (0)

#define TEST_GREATER_OR_EQUAL(X, Y, msg)                                                           \
  do                                                                                               \
  {                                                                                                \
    if ((X) >= (Y))                                                                                \
    {                                                                                              \
    }                                                                                              \
    else                                                                                           \
    {                                                                                              \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(" #X " >= " #Y ")", ::base::Message(X, Y), \
                                                  ::base::Message msg));                           \
    }                                                                                              \
  } while (0)

#define TEST_ALMOST_EQUAL_ULPS(X, Y, msg)                                                       \
  do                                                                                            \
  {                                                                                             \
    if (::base::AlmostEqualULPs(X, Y))                                                          \
    {                                                                                           \
    }                                                                                           \
    else                                                                                        \
    {                                                                                           \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(base::AlmostEqualULPs(" #X ", " #Y ")", \
                                                  ::base::Message(X, Y), ::base::Message msg)); \
    }                                                                                           \
  } while (0)

#define TEST_NOT_ALMOST_EQUAL_ULPS(X, Y, msg)                                                    \
  do                                                                                             \
  {                                                                                              \
    if (!::base::AlmostEqualULPs(X, Y))                                                          \
    {                                                                                            \
    }                                                                                            \
    else                                                                                         \
    {                                                                                            \
      ::base::OnTestFailed(SRC(), ::base::Message("TEST(!base::AlmostEqualULPs(" #X ", " #Y ")", \
                                                  ::base::Message(X, Y), ::base::Message msg));  \
    }                                                                                            \
  } while (0)

#define TEST_ALMOST_EQUAL_ABS(X, Y, eps, msg)                                                      \
  do                                                                                               \
  {                                                                                                \
    if (::base::AlmostEqualAbs(X, Y, eps))                                                         \
    {                                                                                              \
    }                                                                                              \
    else                                                                                           \
    {                                                                                              \
      ::base::OnTestFailed(SRC(),                                                                  \
                           ::base::Message("TEST(!base::AlmostEqualAbs(" #X ", " #Y ", " #eps ")", \
                           ::base::Message(X, Y, eps), ::base::Message msg));                      \
    }                                                                                              \
  } while (0)

// TODO(AlexZ): Add more cool macroses (or switch all unit tests to gtest).
#define TEST_THROW(X, exception, msg)                                                           \
  do                                                                                            \
  {                                                                                             \
    bool expected_exception = false;                                                            \
    try                                                                                         \
    {                                                                                           \
      X;                                                                                        \
    }                                                                                           \
    catch (exception const &)                                                                   \
    {                                                                                           \
      expected_exception = true;                                                                \
    }                                                                                           \
    catch (...)                                                                                 \
    {                                                                                           \
      ::base::OnTestFailed(                                                                     \
          SRC(), ::base::Message("Unexpected exception at TEST(" #X ")", ::base::Message msg)); \
    }                                                                                           \
    if (!expected_exception)                                                                    \
      ::base::OnTestFailed(SRC(), ::base::Message("Expected exception " #exception              \
                                                  " was not thrown in TEST(" #X ")",            \
                                                  ::base::Message msg));                        \
  } while (0)

#define TEST_NO_THROW(X, msg)                                                                   \
  do                                                                                            \
  {                                                                                             \
    try                                                                                         \
    {                                                                                           \
      X;                                                                                        \
    }                                                                                           \
    catch (...)                                                                                 \
    {                                                                                           \
      ::base::OnTestFailed(                                                                     \
          SRC(), ::base::Message("Unexpected exception at TEST(" #X ")", ::base::Message msg)); \
    }                                                                                           \
  } while (0)

#define TEST_ANY_THROW(X, msg)                                                                 \
  do                                                                                           \
  {                                                                                            \
    bool was_exception = false;                                                                \
    try                                                                                        \
    {                                                                                          \
      X;                                                                                       \
    }                                                                                          \
    catch (...)                                                                                \
    {                                                                                          \
      was_exception = true;                                                                    \
    }                                                                                          \
    if (!was_exception)                                                                        \
      ::base::OnTestFailed(SRC(), ::base::Message("No exceptions were thrown in TEST(" #X ")", \
                                                  ::base::Message msg));                       \
  } while (0)