summaryrefslogtreecommitdiff
path: root/unittest/gtest_hal_extcon.cpp
blob: 86e023c1da07ae24db0abf6620d228e2022dce05 (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

#include <iostream>
#include <gtest/gtest.h>
#include "hw/common.h"
#include "hw/external_connection.h"

using namespace std;

/*
 * main class
 */
struct external_connection_device *ext_dev;

class EXTCONHalTest : public testing::Test
{
	public:
		virtual void SetUp()
		{
			struct hw_info *info;
			int ret;
			ret = hw_get_info(EXTERNAL_CONNECTION_HARDWARE_DEVICE_ID,
					(const struct hw_info **)&info);

			if (ret < 0) {
			// access(EXTCON_PATH, R_OK)?
				cout << "Fail to load extcon hal(" << ret << ")" << endl;
				assert(true);
				return;
			}
			if (!info->open) {
				cout << "Failed to open extcon device; open(NULL)" << endl;
				assert(true);
				return;
			}

			ret = info->open(info, NULL, (struct hw_common**)&ext_dev);
			if (ret < 0 || !ext_dev) {
				cout << "Failed to get extcon device structure (" << ret << ")" << endl;
				assert(true);
				return;
			}

			return;
		}

		virtual void TearDown()
		{
			struct hw_info *info;

			info = ext_dev->common.info;
			if (!info)
				free(ext_dev);
			else
				info->close((struct hw_common *)ext_dev);
			ext_dev = NULL;

			return;
		}
};

/*
 * testcase
 */
TEST_F(EXTCONHalTest, InitP)
{
	EXPECT_NE(ext_dev, nullptr);
}

TEST_F(EXTCONHalTest, DeinitP)
{
	struct external_connection_device *tmp;
	struct hw_info *info;
	int ret;

	hw_get_info(EXTERNAL_CONNECTION_HARDWARE_DEVICE_ID,
			(const struct hw_info **)&info);

	EXPECT_NE(info, nullptr);
	if (!info->open || !info->close)
		return;
	info->open(info, NULL, (struct hw_common**)&tmp);

	ret = info->close((struct hw_common *)tmp);
	EXPECT_EQ(ret, 0);
}

static void updated_cb(struct connection_info *info, void *data)
{
}

TEST_F(EXTCONHalTest, RegisterChangedEventP)
{
	int ret;

	EXPECT_NE(ext_dev, nullptr);
	if (!ext_dev->register_changed_event)
		return;
	ret = ext_dev->register_changed_event(updated_cb, NULL);
	ext_dev->unregister_changed_event(updated_cb);
	EXPECT_EQ(ret, 0);
}

TEST_F(EXTCONHalTest, UnregisterChangedEventP)
{
	EXPECT_NE(ext_dev, nullptr);
	if (!ext_dev->unregister_changed_event)
		return;
	ext_dev->register_changed_event(updated_cb, NULL);
	ext_dev->unregister_changed_event(updated_cb);
}

TEST_F(EXTCONHalTest, GetCurrentStateP)
{
	int ret;

	EXPECT_NE(ext_dev, nullptr);
	if (!ext_dev->get_current_state)
		return;
	ret = ext_dev->get_current_state(updated_cb, NULL);
	EXPECT_EQ(ret, 0);
}

int main(int argc, char **argv)
{
	testing::InitGoogleTest(&argc, argv);

	return RUN_ALL_TESTS();
}