blob: 83bf56f1e464eb540e62e393331932533e61175f (
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
|
// Copyright (c) 2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_TEST_APPTESTS_H
#define BITCOIN_QT_TEST_APPTESTS_H
#include <QObject>
#include <set>
#include <string>
#include <utility>
class BitcoinApplication;
class BitcoinGUI;
class RPCConsole;
class AppTests : public QObject
{
Q_OBJECT
public:
explicit AppTests(BitcoinApplication& app) : m_app(app) {}
private Q_SLOTS:
void appTests();
void guiTests(BitcoinGUI* window);
void consoleTests(RPCConsole* console);
private:
//! Add expected callback name to list of pending callbacks.
void expectCallback(std::string callback) { m_callbacks.emplace(std::move(callback)); }
//! RAII helper to remove no-longer-pending callback.
struct HandleCallback
{
std::string m_callback;
AppTests& m_app_tests;
~HandleCallback();
};
//! Bitcoin application.
BitcoinApplication& m_app;
//! Set of pending callback names. Used to track expected callbacks and shut
//! down the app after the last callback has been handled and all tests have
//! either run or thrown exceptions. This could be a simple int counter
//! instead of a set of names, but the names might be useful for debugging.
std::multiset<std::string> m_callbacks;
};
#endif // BITCOIN_QT_TEST_APPTESTS_H
|