From fa3b5090e94ee1386ca6ed6c4ddf886fa46dca54 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 27 Mar 2026 12:03:02 +0100 Subject: remove CPR HTTP client backend (#894) CPR is no longer needed now that HttpClient has fully transitioned to raw libcurl. This removes the CPR library, its build integration, implementation files, and all conditional compilation guards, leaving curl as the sole HTTP client backend. --- thirdparty/cpr/test/options_tests.cpp | 73 ----------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 thirdparty/cpr/test/options_tests.cpp (limited to 'thirdparty/cpr/test/options_tests.cpp') diff --git a/thirdparty/cpr/test/options_tests.cpp b/thirdparty/cpr/test/options_tests.cpp deleted file mode 100644 index ee3176f7c..000000000 --- a/thirdparty/cpr/test/options_tests.cpp +++ /dev/null @@ -1,73 +0,0 @@ -#include - -#include - -#include - -#include "httpServer.hpp" - -using namespace cpr; - -static HttpServer* server = new HttpServer(); - -TEST(OptionsTests, BaseUrlTest) { - Url url{server->GetBaseUrl() + "/"}; - Response response = cpr::Options(url); - std::string expected_text{""}; - EXPECT_EQ(expected_text, response.text); - EXPECT_EQ(url, response.url); - EXPECT_EQ(std::string{"GET, POST, PUT, DELETE, PATCH, OPTIONS"}, response.header["Access-Control-Allow-Methods"]); - EXPECT_EQ(200, response.status_code); - EXPECT_EQ(ErrorCode::OK, response.error.code); -} - -TEST(OptionsTests, SpecificUrlTest) { - Url url{server->GetBaseUrl() + "/hello.html"}; - Response response = cpr::Options(url); - std::string expected_text{""}; - EXPECT_EQ(expected_text, response.text); - EXPECT_EQ(url, response.url); - EXPECT_EQ(std::string{"GET, POST, PUT, DELETE, PATCH, OPTIONS"}, response.header["Access-Control-Allow-Methods"]); - EXPECT_EQ(200, response.status_code); - EXPECT_EQ(ErrorCode::OK, response.error.code); -} - -TEST(OptionsTests, AsyncBaseUrlTest) { - Url url{server->GetBaseUrl() + "/"}; - std::vector responses; - for (size_t i = 0; i < 10; ++i) { - responses.emplace_back(cpr::OptionsAsync(url)); - } - for (cpr::AsyncResponse& future_response : responses) { - cpr::Response response = future_response.get(); - std::string expected_text{""}; - EXPECT_EQ(expected_text, response.text); - EXPECT_EQ(url, response.url); - EXPECT_EQ(std::string{"GET, POST, PUT, DELETE, PATCH, OPTIONS"}, response.header["Access-Control-Allow-Methods"]); - EXPECT_EQ(200, response.status_code); - EXPECT_EQ(ErrorCode::OK, response.error.code); - } -} - -TEST(OptionsTests, AsyncSpecificUrlTest) { - Url url{server->GetBaseUrl() + "/hello.html"}; - std::vector responses; - for (size_t i = 0; i < 10; ++i) { - responses.emplace_back(cpr::OptionsAsync(url)); - } - for (cpr::AsyncResponse& future_response : responses) { - cpr::Response response = future_response.get(); - std::string expected_text{""}; - EXPECT_EQ(expected_text, response.text); - EXPECT_EQ(url, response.url); - EXPECT_EQ(std::string{"GET, POST, PUT, DELETE, PATCH, OPTIONS"}, response.header["Access-Control-Allow-Methods"]); - EXPECT_EQ(200, response.status_code); - EXPECT_EQ(ErrorCode::OK, response.error.code); - } -} - -int main(int argc, char** argv) { - ::testing::InitGoogleTest(&argc, argv); - ::testing::AddGlobalTestEnvironment(server); - return RUN_ALL_TESTS(); -} -- cgit v1.2.3