summaryrefslogtreecommitdiff
path: root/tests/logic_.h
blob: e5e393490ef0b21cfb2913e7d3cfb384cc216ee5 (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
/*
 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
/*
 * @file        logic_.h
 * @author      Janusz Kozerski (j.kozerski@samsung.com)
 * @author      Sangwan Kwon (sangwan.kwon@samsung.com)
 * @version     1.0
 * @brief       This file is the tesst implementation of Logic class
 */

#ifndef CCHECKER_LOGIC__H
#define CCHECKER_LOGIC__H

/*
 * This Class makes all methods from Logic Class public - for testing purpose.
 * Some of methods are stubbed, and some of them just calls corresponding methods from Logic Class.
 */

#include "service/logic.h"

namespace CCHECKER {

class Logic_ : public Logic {
public:
	Logic_(void);
	virtual ~Logic_(void);
	virtual void clean(void);

	// For tests only
	void connman_callback_manual_(bool state);
	void pkgmgr_install_manual_(const app_t &app);
	void pkgmgr_uninstall_manual_(const app_t &app);
	const std::list<app_t> &get_buffer_();

	void reset_cnt();
	void wait_for_worker(int installCnt, int uninstallCnt, int bufferCnt);

protected:
	void job(void) override;

private:
	int m_installCnt;
	int m_uninstallCnt;
	int m_bufferCnt;

	void process_event(const event_t &event);
	void app_processed() override;
	std::condition_variable _m_wait_for_process;
	std::mutex _m_mutex_wait_cv;
};

class LogicWrapper {
public:
	LogicWrapper() {}
	~LogicWrapper()
	{
		m_logic.clean();
	}

	error_t setup()
	{
		return m_logic.setup();
	}
	void clean()
	{
		m_logic.clean();
	}
	void connman_callback_manual_(bool state)
	{
		m_logic.connman_callback_manual_(state);
	}
	void pkgmgr_install_manual_(const app_t &app)
	{
		m_logic.pkgmgr_install_manual_(app);
	}
	void pkgmgr_uninstall_manual_(const app_t &app)
	{
		m_logic.pkgmgr_uninstall_manual_(app);
	}
	const std::list<app_t> &get_buffer_()
	{
		return m_logic.get_buffer_();
	}

	void wait_for_worker(int installCnt = 0, int uninstallCnt = 0, int bufferCnt = 0)
	{
		m_logic.wait_for_worker(installCnt, uninstallCnt, bufferCnt);
	}

	// timer operation
	void timerStart(int interval)
	{
		m_logic.timerStart(interval);
	}
	void timerStop()
	{
		m_logic.timerStop();
	}

	// gio operation
	void run(guint timeout)
	{
		m_logic.run(timeout);
	}
	bool is_running()
	{
		return m_logic.is_running();
	}

private:
	Logic_ m_logic;
};

} // CCHECKER

#endif //CCHECKER_LOGIC__H