summaryrefslogtreecommitdiffstats
path: root/tests/HTTP/UrlClientTest.cpp
blob: 5f70855fb0710f496e813e328128c9e3f4e986ed (plain) (blame)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162

#include "Globals.h"
#include "HTTP/UrlClient.h"
#include "OSSupport/NetworkSingleton.h"





class cCallbacks:
	public cUrlClient::cCallbacks
{
public:
	cCallbacks(cEvent & a_Event):
		m_Event(a_Event)
	{
	}

	virtual void OnConnected(cTCPLink & a_Link) override
	{
		LOG("Link connected to %s:%u", a_Link.GetRemoteIP().c_str(), a_Link.GetRemotePort());
	}

	virtual bool OnCertificateReceived() override
	{
		LOG("Server certificate received");
		return true;
	}

	virtual void OnRequestSent() override
	{
		LOG("Request has been sent");
	}

	virtual void OnHeader(const AString & a_Key, const AString & a_Value) override
	{
		LOG("HTTP Header: \"%s\" -> \"%s\"", a_Key.c_str(), a_Value.c_str());
	}

	virtual void OnHeadersFinished() override
	{
		LOG("HTTP headers finished.");
	}

	virtual void OnBodyData(const void * a_Data, size_t a_Size) override
	{
		AString body(reinterpret_cast<const char *>(a_Data), a_Size);
		LOG("Body part:\n%s", body.c_str());
	}

	/** Called after the response body has been fully reported by OnBody() calls.
	There will be no more OnBody() calls. */
	virtual void OnBodyFinished() override
	{
		LOG("Body finished.");
		m_Event.Set();
	}

	virtual void OnRedirecting(const AString & a_RedirectUrl) override
	{
		LOG("Redirecting to \"%s\".", a_RedirectUrl.c_str());
	}

	virtual void OnError(const AString & a_ErrorMsg) override
	{
		LOG("Error: %s", a_ErrorMsg.c_str());
		m_Event.Set();
	}

protected:
	cEvent & m_Event;
};





int TestRequest1()
{
	LOG("Running test 1");
	cEvent evtFinished;
	cCallbacks callbacks(evtFinished);
	AStringMap options;
	options["MaxRedirects"] = "0";
	auto res = cUrlClient::Get("http://github.com", callbacks, AStringMap(), AString(), options);
	if (res.first)
	{
		evtFinished.Wait();
	}
	else
	{
		LOG("Immediate error: %s", res.second.c_str());
		return 1;
	}
	return 0;
}





int TestRequest2()
{
	LOG("Running test 2");
	cEvent evtFinished;
	cCallbacks callbacks(evtFinished);
	auto res = cUrlClient::Get("http://github.com", callbacks);
	if (res.first)
	{
		evtFinished.Wait();
	}
	else
	{
		LOG("Immediate error: %s", res.second.c_str());
		return 1;
	}
	return 0;
}





int TestRequests()
{
	auto res = TestRequest1();
	if (res != 0)
	{
		return res;
	}
	res = TestRequest2();
	if (res != 0)
	{
		return res;
	}
	return 0;
}





int main()
{
	LOGD("Test started");

	LOGD("Initializing cNetwork...");
	cNetworkSingleton::Get().Initialise();

	LOGD("Testing...");
	auto res = TestRequests();

	LOGD("Terminating cNetwork...");
	cNetworkSingleton::Get().Terminate();
	LOGD("cUrlClient test finished");

	return res;
}