aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/cpr/test/raw_body_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/raw_body_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/raw_body_tests.cpp')
-rw-r--r--thirdparty/cpr/test/raw_body_tests.cpp134
1 files changed, 134 insertions, 0 deletions
diff --git a/thirdparty/cpr/test/raw_body_tests.cpp b/thirdparty/cpr/test/raw_body_tests.cpp
new file mode 100644
index 000000000..2416e4eb9
--- /dev/null
+++ b/thirdparty/cpr/test/raw_body_tests.cpp
@@ -0,0 +1,134 @@
+#include <gtest/gtest.h>
+
+#include <cstdio>
+#include <fstream>
+#include <string>
+
+#include <cpr/cpr.h>
+#include <cpr/multipart.h>
+
+#include "httpServer.hpp"
+
+using namespace cpr;
+
+static HttpServer* server = new HttpServer();
+
+TEST(BodyPostTests, DefaultUrlEncodedPostTest) {
+ Url url{server->GetBaseUrl() + "/url_post.html"};
+ Response response = cpr::Post(url, Body{"x=5"});
+ std::string expected_text = "{\n \"x\": 5\n}";
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, TextUrlEncodedPostTest) {
+ Url url{server->GetBaseUrl() + "/url_post.html"};
+ Response response = cpr::Post(url, Body{"x=hello world!!~"});
+ std::string expected_text{
+ "{\n"
+ " \"x\": hello world!!~\n"
+ "}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, TextUrlEncodedNoCopyPostTest) {
+ Url url{server->GetBaseUrl() + "/url_post.html"};
+ Body body{"x=hello world!!~"};
+ // body lives through the lifetime of Post, so it doesn't need to be copied
+ Response response = cpr::Post(url, body);
+ std::string expected_text{
+ "{\n"
+ " \"x\": hello world!!~\n"
+ "}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, UrlEncodedManyPostTest) {
+ Url url{server->GetBaseUrl() + "/url_post.html"};
+ Response response = cpr::Post(url, Body{"x=5&y=13"});
+ std::string expected_text{
+ "{\n"
+ " \"x\": 5,\n"
+ " \"y\": 13,\n"
+ " \"sum\": 18\n"
+ "}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, CustomHeaderNumberPostTest) {
+ Url url{server->GetBaseUrl() + "/json_post.html"};
+ Response response = cpr::Post(url, Body{"{\"x\":5}"}, Header{{"Content-Type", "application/json"}});
+ std::string expected_text{"{\"x\":5}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, CustomHeaderTextPostTest) {
+ Url url{server->GetBaseUrl() + "/json_post.html"};
+ Response response = cpr::Post(url, Body{"{\"x\":\"hello world!!~\"}"}, Header{{"Content-Type", "application/json"}});
+ std::string expected_text{"{\"x\":\"hello world!!~\"}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, CustomWrongHeaderPostTest) {
+ Url url{server->GetBaseUrl() + "/json_post.html"};
+ Response response = cpr::Post(url, Body{"{\"x\":5}"}, Header{{"Content-Type", "text/plain"}});
+ std::string expected_text{"Unsupported Media Type"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"text/plain"}, response.header["content-type"]);
+ EXPECT_EQ(415, response.status_code);
+ EXPECT_EQ(ErrorCode::OK, response.error.code);
+}
+
+TEST(BodyPostTests, UrlPostBadHostTest) {
+ Url url{"http://bad_host/"};
+ Response response = cpr::Post(url, Body{"hello=world"});
+ EXPECT_EQ(std::string{}, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{}, response.header["content-type"]);
+ EXPECT_EQ(0, response.status_code);
+ EXPECT_EQ(ErrorCode::HOST_RESOLUTION_FAILURE, response.error.code);
+}
+
+TEST(BodyPostTests, StringMoveBodyTest) {
+ Url url{server->GetBaseUrl() + "/url_post.html"};
+ Response response = cpr::Post(url, Body{std::string{"x=5"}});
+ std::string expected_text{
+ "{\n"
+ " \"x\": 5\n"
+ "}"};
+ EXPECT_EQ(expected_text, response.text);
+ EXPECT_EQ(url, response.url);
+ EXPECT_EQ(std::string{"application/json"}, response.header["content-type"]);
+ EXPECT_EQ(201, 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();
+}