blob: ad2ade5c6bd7f4dd8a4126b6be82a054e2a857c9 (
plain) (
blame)
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
|
/*
* Copyright (C) 2008-2021 The QXmpp developers
*
* Authors:
* Linus Jahn
*
* Source:
* https://github.com/qxmpp-project/qxmpp
*
* This file is a part of QXmpp library.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
*/
#ifndef INTEGRATIONTESTING_H
#define INTEGRATIONTESTING_H
#include <QtGlobal>
#include <QDebug>
#include "QXmppConfiguration.h"
#define ENV_ENABLED "QXMPP_TESTS_INTEGRATION_ENABLED"
#define ENV_JID "QXMPP_TESTS_JID"
#define ENV_PASSWORD "QXMPP_TESTS_PASSWORD"
#define SKIP_IF_INTEGRATION_TESTS_DISABLED() \
if (!IntegrationTests::enabled()) { \
QSKIP("Export 'QXMPP_TESTS_INTEGRATION_ENABLED=1' to enable."); \
} else if (!IntegrationTests::credentialsAvailable()) { \
QFAIL("No credentials for integration tests provided! " \
"Export 'QXMPP_TESTS_JID' and 'QXMPP_TESTS_PASSWORD'."); \
}
class IntegrationTests
{
public:
static QString environmentVariable(const char *varName, const QString &defaultValue = {})
{
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
return qEnvironmentVariable(varName, defaultValue);
#else
return qEnvironmentVariableIsSet(varName) ? QString::fromLocal8Bit(qgetenv(varName)) : QString();
#endif
}
static bool enabled()
{
return environmentVariable(ENV_ENABLED, "0") == "1";
}
static bool credentialsAvailable()
{
return !qEnvironmentVariableIsEmpty(ENV_JID) && !qEnvironmentVariableIsEmpty(ENV_PASSWORD);
}
static QXmppConfiguration clientConfiguration()
{
QXmppConfiguration config;
config.setJid(environmentVariable(ENV_JID));
config.setPassword(environmentVariable(ENV_PASSWORD));
return config;
}
};
#undef ENV_ENABLED
#undef ENV_JID
#undef ENV_PASSWORD
#endif // INTEGRATIONTESTING_H
|