aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/cpr/test/resolve_tests.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-27 12:03:02 +0100
committerGitHub Enterprise <[email protected]>2026-03-27 12:03:02 +0100
commitfa3b5090e94ee1386ca6ed6c4ddf886fa46dca54 (patch)
treec574405fc12dd2af9fcb02353df10adb29587f6c /thirdparty/cpr/test/resolve_tests.cpp
parentidle deprovision in hub (#895) (diff)
downloadzen-fa3b5090e94ee1386ca6ed6c4ddf886fa46dca54.tar.xz
zen-fa3b5090e94ee1386ca6ed6c4ddf886fa46dca54.zip
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.
Diffstat (limited to 'thirdparty/cpr/test/resolve_tests.cpp')
-rw-r--r--thirdparty/cpr/test/resolve_tests.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/thirdparty/cpr/test/resolve_tests.cpp b/thirdparty/cpr/test/resolve_tests.cpp
deleted file mode 100644
index bf6754140..000000000
--- a/thirdparty/cpr/test/resolve_tests.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-#include <gtest/gtest.h>
-
-#include <string>
-
-#include "cpr/cpr.h"
-#include "httpServer.hpp"
-
-using namespace cpr;
-
-static HttpServer* server = new HttpServer();
-
-TEST(ResolveTests, HelloWorldTest) {
- Url url{"http://www.example.com:" + std::to_string(server->GetPort()) + "/hello.html"};
- Resolve resolve{"www.example.com", "127.0.0.1", {server->GetPort()}};
- Response response = cpr::Get(url, resolve);
- 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(ResolveTests, RedirectMultiple) {
- Url url1{"http://www.example0.com:" + std::to_string(server->GetPort()) + "/resolve_permanent_redirect.html"};
- Url url2{"http://www.example1.com:" + std::to_string(server->GetPort()) + "/hello.html"};
- Resolve resolve1{"www.example0.com", "127.0.0.1", {server->GetPort()}};
- Resolve resolve2{"www.example1.com", "127.0.0.1", {server->GetPort()}};
-
- Response response = cpr::Get(url1, std::vector<Resolve>{resolve1, resolve2}, Header{{"RedirectLocation", url2.str()}});
-
- std::string expected_text{"Hello world!"};
- EXPECT_EQ(expected_text, response.text);
- EXPECT_EQ(url2, 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);
-}
-
-int main(int argc, char** argv) {
- ::testing::InitGoogleTest(&argc, argv);
- ::testing::AddGlobalTestEnvironment(server);
- return RUN_ALL_TESTS();
-}