aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/cpr/test/structures_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/structures_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/structures_tests.cpp')
-rw-r--r--thirdparty/cpr/test/structures_tests.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/thirdparty/cpr/test/structures_tests.cpp b/thirdparty/cpr/test/structures_tests.cpp
new file mode 100644
index 000000000..026362e49
--- /dev/null
+++ b/thirdparty/cpr/test/structures_tests.cpp
@@ -0,0 +1,62 @@
+#include "cpr/cprtypes.h"
+#include <gtest/gtest.h>
+
+#include <string>
+
+#include <cpr/parameters.h>
+#include <cpr/payload.h>
+
+using namespace cpr;
+
+TEST(PayloadTests, UseStringVariableTest) {
+ std::string value1 = "hello";
+ std::string key2 = "key2";
+ Payload payload{{"key1", value1}, {key2, "world"}};
+
+ std::string expected = "key1=hello&key2=world";
+ EXPECT_EQ(payload.GetContent(CurlHolder()), expected);
+}
+
+TEST(PayloadTests, DisableEncodingTest) {
+ std::string key1 = "key1";
+ std::string key2 = "key2§$%&/";
+ std::string value1 = "hello.,.,";
+ std::string value2 = "hello";
+ Payload payload{{key1, value1}, {key2, value2}};
+ payload.encode = false;
+
+ std::string expected = key1 + '=' + value1 + '&' + key2 + '=' + value2;
+ EXPECT_EQ(payload.GetContent(CurlHolder()), expected);
+}
+
+TEST(ParametersTests, UseStringVariableTest) {
+ std::string value1 = "hello";
+ std::string key2 = "key2";
+ Parameters parameters{{"key1", value1}, {key2, "world"}};
+
+ std::string expected = "key1=hello&key2=world";
+ EXPECT_EQ(parameters.GetContent(CurlHolder()), expected);
+}
+
+TEST(ParametersTests, DisableEncodingTest) {
+ std::string key1 = "key1";
+ std::string key2 = "key2§$%&/";
+ std::string value1 = "hello.,.,";
+ std::string value2 = "hello";
+ Parameters parameters{{key1, value1}, {key2, value2}};
+ parameters.encode = false;
+
+ std::string expected = key1 + '=' + value1 + '&' + key2 + '=' + value2;
+ EXPECT_EQ(parameters.GetContent(CurlHolder()), expected);
+}
+
+TEST(UrlToAndFromString, UrlTests) {
+ std::string s{"https://github.com/whoshuu/cpr"};
+ cpr::Url url = s;
+ EXPECT_EQ(s, url.str());
+}
+
+int main(int argc, char** argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}