aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/cpr/test/error_tests.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-24 19:32:01 +0200
committerGitHub Enterprise <[email protected]>2025-10-24 19:32:01 +0200
commit4cba4eb3f122c7a1a49b629b1c0656d7f817f001 (patch)
treee184821073167f6e81a75193efca91013d7b359b /thirdparty/cpr/test/error_tests.cpp
parentfixed progress bar when scanning changed local files (#608) (diff)
downloadzen-4cba4eb3f122c7a1a49b629b1c0656d7f817f001.tar.xz
zen-4cba4eb3f122c7a1a49b629b1c0656d7f817f001.zip
move cpr in-tree (#605)
* added cpr 1.10.5 in-tree to allow updates to vcpkg without breaking the build * added asio 1.29.0 in-tree to remove one more vcpkg dependency * bumped vcpkg to 2024.06.15 to address failure to build due to use of deprecated binaries in vcpkg (404 error: `https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-pkgconf-1~2.1.0-1-any.pkg.tar.zst` during build)
Diffstat (limited to 'thirdparty/cpr/test/error_tests.cpp')
-rw-r--r--thirdparty/cpr/test/error_tests.cpp97
1 files changed, 97 insertions, 0 deletions
diff --git a/thirdparty/cpr/test/error_tests.cpp b/thirdparty/cpr/test/error_tests.cpp
new file mode 100644
index 000000000..13831ef5f
--- /dev/null
+++ b/thirdparty/cpr/test/error_tests.cpp
@@ -0,0 +1,97 @@
+#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::INVALID_URL_FORMAT, 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 CONNECTION_FAILURE happens before the OPERATION_TIMEDOUT:
+ EXPECT_TRUE(response.error.code == ErrorCode::OPERATION_TIMEDOUT || response.error.code == ErrorCode::CONNECTION_FAILURE);
+}
+
+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 CONNECTION_FAILURE happens before the OPERATION_TIMEDOUT:
+ EXPECT_TRUE(response.error.code == ErrorCode::OPERATION_TIMEDOUT || response.error.code == ErrorCode::CONNECTION_FAILURE);
+}
+
+TEST(ErrorTests, LowSpeedTimeFailure) {
+ Url url{server->GetBaseUrl() + "/low_speed.html"};
+ Response response = cpr::Get(url, cpr::LowSpeed{1000, 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, 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/"}});
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(0, response.status_code);
+ EXPECT_EQ(ErrorCode::PROXY_RESOLUTION_FAILURE, response.error.code);
+}
+
+TEST(ErrorTests, BoolFalseTest) {
+ Error error;
+ EXPECT_FALSE(error);
+}
+
+TEST(ErrorTests, BoolTrueTest) {
+ Error error;
+ error.code = ErrorCode::UNSUPPORTED_PROTOCOL;
+ EXPECT_TRUE(error);
+}
+
+int main(int argc, char** argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ ::testing::AddGlobalTestEnvironment(server);
+ return RUN_ALL_TESTS();
+}