summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceAsync/test/testRoutingInterfaceAsync.h
blob: f55b62e7570d7bb6a4cab047277156543436a1c7 (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
/*
 * testRoutingInterfaceAsync.h
 *
 *  Created on: Dec 27, 2011
 *      Author: christian
 */

#ifndef TESTROUTINGINTERFACEASYNC_H_
#define TESTROUTINGINTERFACEASYNC_H_

#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <dlt/dlt.h>
#include "mocklnterfaces.h"
#include "SocketHandler.h"
#include "../../AudioManagerDaemon/include/RoutingSender.h"

#define UNIT_TEST 1

namespace am {

class testRoutingInterfaceAsync :public ::testing::Test
{
public:
	static std::vector<std::string> pListRoutingPluginDirs;
	SocketHandler pSocketHandler;
	MockRoutingReceiveInterface pReceiveInterface;
	static RoutingSender pRoutingSender;
	static std::vector<std::string> returnListPlugins();
	static am_Error_e handleDomainRegister (const am_Domain_s& domainData, am_domainID_t& domainID);
	static am_Error_e handleSourceRegister (const am_Source_s& sourceData, am_sourceID_t& sourceID);
	static am_Error_e handleSinkRegister(const am_Sink_s& sinkData, am_sinkID_t& sinkID);
	void timerCallback(sh_timerHandle_t handle, void* userData);
	shTimerCallBack_T<testRoutingInterfaceAsync> ptimerCallback;
	testRoutingInterfaceAsync();
	virtual ~testRoutingInterfaceAsync();

	void SetUp();
	void TearDown();
private:
	static am_domainID_t mDomainIDCount;
};

} /* namespace am */
#endif /* TESTROUTINGINTERFACEASYNC_H_ */