forked from libcpr/cpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy_auth_tests.cpp
94 lines (82 loc) · 3.64 KB
/
proxy_auth_tests.cpp
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
#include <gtest/gtest.h>
#include <string>
#include "cpr/cpr.h"
#include "httpServer.hpp"
// TODO: This requires a local proxy server (squid). This should be replaced with a source
// code implementation.
#define HTTP_PROXY "127.0.0.1:3128"
#define HTTPS_PROXY "127.0.0.1:3128"
#define PROXY_USER "u$er"
#define PROXY_PASS "p@ss"
using namespace cpr;
static HttpServer* server = new HttpServer();
// TODO: These should be fixed after a source code implementation of a proxy
#if defined(false)
TEST(ProxyAuthTests, SingleProxyTest) {
Url url{server->GetBaseUrl() + "/hello.html"};
Response response = cpr::Get(url, Proxies{{"http", HTTP_PROXY}}, ProxyAuthentication{{"http", EncodedAuthentication{PROXY_USER, PROXY_PASS}}});
std::string expected_text{"Hello world!"};
EXPECT_EQ(expected_text, response.text);
EXPECT_EQ(url, response.url);
EXPECT_EQ(std::string{"text/html"}, response.header["content-type"]);
EXPECT_EQ(200, response.status_code);
EXPECT_EQ(ErrorCode::OK, response.error.code);
}
TEST(ProxyAuthTests, MultipleProxyHttpTest) {
Url url{server->GetBaseUrl() + "/hello.html"};
Response response = cpr::Get(url, Proxies{{"https", HTTPS_PROXY}, {"http", HTTP_PROXY}}, ProxyAuthentication{{"http", EncodedAuthentication{PROXY_USER, PROXY_PASS}}, {"https", EncodedAuthentication{PROXY_USER, PROXY_PASS}}});
std::string expected_text{"Hello world!"};
EXPECT_EQ(expected_text, response.text);
EXPECT_EQ(url, response.url);
EXPECT_EQ(std::string{"text/html"}, response.header["content-type"]);
EXPECT_EQ(200, response.status_code);
EXPECT_EQ(ErrorCode::OK, response.error.code);
}
TEST(ProxyAuthTests, CopyProxyTest) {
Url url{server->GetBaseUrl() + "/hello.html"};
Proxies proxies{{"http", HTTP_PROXY}};
ProxyAuthentication proxy_auth{{"http", EncodedAuthentication{PROXY_USER, PROXY_PASS}}};
Response response = cpr::Get(url, proxies, proxy_auth);
std::string expected_text{"Hello world!"};
EXPECT_EQ(expected_text, response.text);
EXPECT_EQ(url, response.url);
EXPECT_EQ(std::string{"text/html"}, response.header["content-type"]);
EXPECT_EQ(200, response.status_code);
EXPECT_EQ(ErrorCode::OK, response.error.code);
}
TEST(ProxyAuthTests, ProxySessionTest) {
Url url{server->GetBaseUrl() + "/hello.html"};
Session session;
session.SetUrl(url);
session.SetProxies(Proxies{{"http", HTTP_PROXY}});
session.SetProxyAuth(ProxyAuthentication{{"http", EncodedAuthentication{PROXY_USER, PROXY_PASS}}});
Response response = session.Get();
std::string expected_text{"Hello world!"};
EXPECT_EQ(expected_text, response.text);
EXPECT_EQ(url, response.url);
EXPECT_EQ(std::string{"text/html"}, response.header["content-type"]);
EXPECT_EQ(200, response.status_code);
EXPECT_EQ(ErrorCode::OK, response.error.code);
}
TEST(ProxyAuthTests, ReferenceProxySessionTest) {
Url url{server->GetBaseUrl() + "/hello.html"};
Proxies proxies{{"http", HTTP_PROXY}};
ProxyAuthentication proxy_auth{{"http", EncodedAuthentication{PROXY_USER, PROXY_PASS}}};
Session session;
session.SetUrl(url);
session.SetProxies(proxies);
session.SetProxyAuth(proxy_auth);
Response response = session.Get();
std::string expected_text{"Hello world!"};
EXPECT_EQ(expected_text, response.text);
EXPECT_EQ(url, response.url);
EXPECT_EQ(std::string{"text/html"}, response.header["content-type"]);
EXPECT_EQ(200, response.status_code);
EXPECT_EQ(ErrorCode::OK, response.error.code);
}
#endif
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
::testing::AddGlobalTestEnvironment(server);
return RUN_ALL_TESTS();
}