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
|
#include <gtest/gtest.h>
#include <chrono>
#include <string>
#include "cpr/cpr.h"
#include <curl/curl.h>
#include "httpServer.hpp"
#include "httpsServer.hpp"
using namespace cpr;
static HttpServer* server = new HttpServer();
TEST(ErrorTests, UnsupportedProtocolFailure) {
Url url{"urk://wat.is.this"};
Response response = cpr::Get(url);
EXPECT_EQ(0, response.status_code);
EXPECT_EQ(ErrorCode::UNSUPPORTED_PROTOCOL, response.error.code);
}
TEST(ErrorTests, InvalidURLFailure) {
Url url{"???"};
Response response = cpr::Get(url);
EXPECT_EQ(0, response.status_code);
EXPECT_EQ(ErrorCode::URL_MALFORMAT, response.error.code);
}
TEST(ErrorTests, TimeoutFailure) {
Url url{server->GetBaseUrl() + "/timeout.html"};
Response response = cpr::Get(url, cpr::Timeout{1});
EXPECT_EQ(0, response.status_code);
EXPECT_EQ(ErrorCode::OPERATION_TIMEDOUT, response.error.code);
}
TEST(ErrorTests, ChronoTimeoutFailure) {
Url url{server->GetBaseUrl() + "/timeout.html"};
Response response = cpr::Get(url, cpr::Timeout{std::chrono::milliseconds{1}});
EXPECT_EQ(0, response.status_code);
EXPECT_EQ(ErrorCode::OPERATION_TIMEDOUT, response.error.code);
}
TEST(ErrorTests, ConnectTimeoutFailure) {
Url url{"http://localhost:67"};
Response response = cpr::Get(url, cpr::ConnectTimeout{1});
EXPECT_EQ(0, response.status_code);
// Sometimes a COULDNT_CONNECT happens before the OPERATION_TIMEDOUT:
EXPECT_TRUE(response.error.code == ErrorCode::OPERATION_TIMEDOUT || response.error.code == ErrorCode::COULDNT_CONNECT);
}
TEST(ErrorTests, ChronoConnectTimeoutFailure) {
Url url{"http://localhost:67"};
Response response = cpr::Get(url, cpr::ConnectTimeout{std::chrono::milliseconds{1}});
EXPECT_EQ(0, response.status_code);
// Sometimes a COULDNT_CONNECT happens before the OPERATION_TIMEDOUT:
EXPECT_TRUE(response.error.code == ErrorCode::OPERATION_TIMEDOUT || response.error.code == ErrorCode::COULDNT_CONNECT);
}
TEST(ErrorTests, LowSpeedTimeFailure) {
Url url{server->GetBaseUrl() + "/low_speed.html"};
Response response = cpr::Get(url, cpr::LowSpeed{1000, std::chrono::seconds(1)});
// Do not check for the HTTP status code, since libcurl always provides the status code of the header if it was received
EXPECT_EQ(ErrorCode::OPERATION_TIMEDOUT, response.error.code);
}
TEST(ErrorTests, LowSpeedBytesFailure) {
Url url{server->GetBaseUrl() + "/low_speed_bytes.html"};
Response response = cpr::Get(url, cpr::LowSpeed{1000, std::chrono::seconds(1)});
// Do not check for the HTTP status code, since libcurl always provides the status code of the header if it was received
EXPECT_EQ(ErrorCode::OPERATION_TIMEDOUT, response.error.code);
}
TEST(ErrorTests, ProxyFailure) {
Url url{server->GetBaseUrl() + "/hello.html"};
Response response = cpr::Get(url, cpr::Proxies{{"http", "http://bad_host.libcpr.org"}});
EXPECT_EQ(url, response.url);
EXPECT_EQ(0, response.status_code);
// Sometimes the DNS server returns a fake address instead of an NXDOMAIN response, leading to COULDNT_CONNECT.
EXPECT_TRUE(response.error.code == ErrorCode::COULDNT_RESOLVE_PROXY || response.error.code == ErrorCode::COULDNT_CONNECT);
}
TEST(ErrorTests, BoolFalseTest) {
Error error;
EXPECT_FALSE(error);
}
TEST(ErrorTests, BoolTrueTest) {
Error error;
error.code = ErrorCode::UNSUPPORTED_PROTOCOL;
EXPECT_TRUE(error);
}
TEST(ErrorTests, StringReprTest) {
Error error;
error.code = ErrorCode::UNSUPPORTED_PROTOCOL;
EXPECT_EQ(std::to_string(error.code), "UNSUPPORTED_PROTOCOL");
}
TEST(ErrorTests, StringReprUnknownTest) {
Error error;
error.code = ErrorCode::UNKNOWN_ERROR;
EXPECT_EQ(std::to_string(error.code), "UNKNOWN_ERROR");
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
::testing::AddGlobalTestEnvironment(server);
return RUN_ALL_TESTS();
}
|