summaryrefslogtreecommitdiff
path: root/gentoobrowse-api/unittests/mockDefs.h
blob: 327f293d5f656dfbcea1f09ab0ee1f7c099e39b2 (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
#ifndef MOCKDEFS_H
#define MOCKDEFS_H

#include <boost/test/unit_test.hpp>
#include <dryice.h>
#include <maintenance.h>
#include <mimeImpl.h>
#include <notifications.h>
#include <portage.h>
#include <pq-mock.h>
#include <selectcommandUtil.impl.h>
#include <users.h>
#include <visibility.h>

class DLL_PUBLIC DbAlias {
public:
	DbAlias();
	virtual ~DbAlias();
};

class DLL_PUBLIC Service : public IceTray::DryIce, DB::PluginMock<PQ::Mock>, DbAlias {
public:
	Service();
};

class DLL_PUBLIC Maintenance : public IceTray::DryIce, DB::PluginMock<PQ::Mock>, DbAlias {
public:
	Maintenance();
};

class DLL_PUBLIC Mail : public IceTray::DryIce {
public:
	Mail();
};

class DLL_PUBLIC TestClient : public IceTray::DryIceClient {
public:
	TestClient();

	Gentoo::MaintenancePrxPtr m;
	Gentoo::PortagePrxPtr p;
	Gentoo::NotificationsPtr n;
	IceTray::Mail::MailServerPtr ms;
	Gentoo::UsersPrxPtr u;

	void lintable_test_files(std::string_view name, IceTray::Mail::EmailPtr e);
	std::pair<IceTray::Mime::TextPart *, IceTray::Mime::TextPart *> humanReadableParts(IceTray::Mail::EmailPtr e);
};

#define SQL_REQUIRE_EQUAL(sql, type, expected) \
	BOOST_TEST_CONTEXT(sql) { \
		sqlRequireEqual<type>(db, sql, expected); \
	}
template<typename T>
void
sqlRequireEqual(DB::ConnectionPtr db, const char * const sql, const T & expected)
{
	int assertedRows = 0;
	db->select(sql)->forEachRow<T>([expected, &assertedRows](const auto & n) {
		BOOST_REQUIRE_EQUAL(expected, n);
		assertedRows += 1;
	});
	BOOST_REQUIRE_EQUAL(assertedRows, 1);
}

#endif