- Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathtest.h
426 lines (331 loc) · 9.68 KB
/
test.h
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
* Copyright (c) 2015, 2024, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0, as
* published by the Free Software Foundation.
*
* This program is designed to work with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms, as
* designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an additional
* permission to link the program and your derivative works with the
* separately licensed software that they have either included with
* the program or referenced in the documentation.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* https://oss.oracle.com/licenses/universal-foss-exception.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License, version 2.0, for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef MYSQLX_TESTING_TEST_H
#defineMYSQLX_TESTING_TEST_H
#include<gtest/gtest.h>
#include<iostream>
#include<string>
#include<vector>
#include<list>
#undef _CRT_SECURE_NO_WARNINGS
#define_CRT_SECURE_NO_WARNINGS
namespacemysqlx {
namespacetest {
/*
Fixture for tests that speak to xplugin. The xplugin port should be set
with XPLUGIN_PORT env variable.
*/
classXplugin : public ::testing::Test
{
public:
using string = std::string;
usingresult_t = std::list< std::vector<string> >;
private:
virtualvoidsql_exec(string query) = 0;
virtualresult_tsql_query(string query) = 0;
// Note: These are set from environment (see SetUpTestCase) and
// shared by all tests.
static string m_status;
staticconstchar *m_host;
staticunsignedshort m_port;
static string m_user;
static string m_password;
staticconstchar *m_socket;
staticconstchar *m_srv;
static string m_ca;
static string m_version;
protected:
// Per-test-case set-up.
// Called before the first test in this test case.
// Can be omitted if not needed.
staticvoidSetUpTestCase()
{
// Note: XPLUGIN_PORT must be defined.
testing::Message() << "foo";
constchar *xplugin_port = getenv("XPLUGIN_PORT");
if (!xplugin_port)
{
m_status = "XPLUGIN_PORT not set";
return;
}
m_port = (short)atoi(xplugin_port);
if (!m_port)
m_status = "invalid port number in XPLUGIN_PORT";
m_socket = getenv("MYSQLX_SOCKET");
m_host = getenv("XPLUGIN_HOST");
constchar *user = getenv("XPLUGIN_USER");
constchar *password = getenv("XPLUGIN_PASSWORD");
m_srv = getenv("MYSQLX_SRV"); // FIXME: What it is?
constchar *ca = getenv("MYSQLX_CA");
if (user)
m_user = user;
if (password)
m_password = password;
if (ca)
m_ca = ca;
// Default values.
if (!m_host || !strlen(m_host))
m_host = "localhost";
// By default use "root" user without any password.
if (m_user.empty())
m_user = "root";
}
// Per-test-case tear-down.
// Called after the last test in this test case.
// Can be omitted if not needed.
staticvoidTearDownTestCase()
{}
string m_save_user;
string m_save_pwd;
// You can define per-test set-up and tear-down logic as usual.
virtualvoidSetUp()
{
// Note: We save and restore user and password to be on the safe side,
// because it can be changed by Use_native_pwd (see below).
m_save_user = m_user;
m_save_pwd = m_password;
if (!has_xplugin())
return;
// Drop and re-create test schema to clear up after previous tests.
sql_exec("DROP SCHEMA IF EXISTS test");
sql_exec("CREATE SCHEMA test");
// Get server version if not already done.
if (m_version.empty())
{
// Note: version number is in 2-nd column.
auto version = sql_query("SHOW VARIABLES LIKE 'version'");
if (!version.empty())
m_version = version.front()[1];
}
// Try to get server CA location, if not set.
if (m_ca.empty())
{
auto res = sql_query(
"select if("
"@@ssl_ca REGEXP '^([^:]+:)?[/\\\\\\\\]'"
", @@ssl_ca"
", concat(ifnull(@@ssl_capath,@@datadir), @@ssl_ca))"
);
if (res.empty())
return;
m_ca = res.front()[0];
}
}
virtualvoidTearDown()
{
m_user = m_save_user;
m_password = m_save_pwd;
}
voidset_status(std::string val)
{
m_status = std::move(val);
}
public:
boolhas_xplugin() const
{
return m_status.empty();
}
constchar* get_status() const
{
return m_status.c_str();
}
constchar* get_host() const
{
return m_host;
}
constchar* get_socket() const
{
return m_socket;
}
constchar* get_srv() const
{
return m_srv;
}
unsignedshortget_port() const
{
return m_port;
}
constchar* get_user() const
{
return m_user.c_str();
}
constchar* get_password() const
{
return m_password.empty() ? nullptr : m_password.c_str();
}
constchar* get_ca() const
{
return m_ca.empty() ? nullptr : m_ca.c_str();
}
std::string get_uri() const
{
std::stringstream uri;
uri << "mysqlx://" << get_user();
if (get_password() && *get_password())
uri << ":" << get_password();
uri << "@" << get_host() << ":" << get_port();
return uri.str();
}
boolis_server_version_less(int test_upper_version,
int test_lower_version,
int test_release_version)
{
if (m_version.empty())
throwstd::logic_error("Unknown server version");
std::stringstream version;
version << m_version;
int upper_version, minor_version, release_version;
char sep;
version >> upper_version;
version >> sep;
version >> minor_version;
version >> sep;
version >> release_version;
if ((upper_version < test_upper_version) ||
(upper_version == test_upper_version &&
minor_version < test_lower_version) ||
(upper_version == test_upper_version &&
minor_version == test_lower_version &&
release_version < test_release_version))
{
returntrue;
}
returnfalse;
}
friendclassTest_user;
};
classTest_user
{
Xplugin& m_xplugin;
std::string m_user;
std::string m_password;
public:
Test_user(Xplugin &xplugin)
: Test_user(xplugin, "test_user")
{}
Test_user(Xplugin &xplugin, std::string name)
: Test_user(xplugin, std::move(name), {})
{}
Test_user(Xplugin &xplugin, std::string name, std::string pwd)
: Test_user(
xplugin, std::move(name), std::move(pwd), "caching_sha2_password"
)
{}
Test_user(
Xplugin &xplugin,
std::string name, std::string pwd,
std::string auth
)
: m_xplugin(xplugin), m_user(name), m_password(pwd)
{
m_xplugin.sql_exec("DROP USER IF EXISTS `" + m_user + "`");
m_xplugin.sql_exec("CREATE USER `" + m_user + "` IDENTIFIED WITH '" + auth + "'" + (m_password.empty() ? "" : " BY '" + m_password + "'"));
m_xplugin.sql_exec("grant all on *.* to `" + m_user + "`");
}
~Test_user()
{
m_xplugin.sql_exec("DROP USER IF EXISTS `" + m_user + "`");
}
std::string name()
{
return m_user;
}
std::string pwd()
{
return m_password;
}
};
}} // mysqlx::test
/*
Usage:
LOG() << "The value of x is: " << x;
This prints items to `std::cout` adding end of line at the end.
Note: The trick used is that expression
lo += lo << x1 << x2 << ...;
is parsed as
lo += (lo << x1 << x2 << ...);
Therefore first operator<<() are invoked printing items to cout and
then operator+=() which ends the line.
*/
#defineLOG() \
::mysqlx::test::Line_output{} += ::mysqlx::test::Line_output{std::cout}
namespacemysqlx {
namespacetest {
structLine_output
{
Line_output() = default;
Line_output(std::ostream& out)
: out{&out}
{}
template <typename T>
Line_output& operator <<(T&& x)
{
if (out)
(*out) << std::forward<T>(x);
return *this;
}
voidoperator +=(Line_output& out)
{
out.endl();
}
voidendl()
{
if (out)
(*out) << std::endl;
}
private:
std::ostream *out = nullptr;
};
}} // mysqlx::test
#defineSKIP_IF_NO_XPLUGIN \
if (!has_xplugin()) { std::cerr <<"SKIPPED: No server: " <<get_status() <<std::endl; return; }
#defineSKIP_IF_NO_SOCKET \
if (!get_socket()) { std::cerr <<"SKIPPED: No unix socket" <<std::endl; return; }
#defineSKIP_IF_NO_SRV_SERVICE \
if (!get_srv()) { std::cerr <<"SKIPPED: No MYSQLX_SRV defined." <<std::endl; return; }
#defineSKIP_IF_SERVER_VERSION_LESS(x,y,z)\
if (is_server_version_less(x, y, z)) \
{\
std::cerr <<"SKIPPED: " << \
"Server version not supported (" \
<< x << "." << y <<"." << ")" << z <<std::endl; \
return; \
}
#defineSKIP_TEST(A) \
do { std::cerr << "SKIPPED: " << A << std::endl; return; } while (0)
#defineEXPECT_ERR(Code) \
do { \
try { Code; FAIL() << "Expected an error"; } \
catch (const std::exception &e) \
{ cout << "Expected error: " << e.what() << endl; } \
catch (constchar *e) { FAIL() << "Bad exception: " << e; } \
catch (...) { FAIL() << "Bad exception"; } \
} while(false)
#endif