test.cc 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838
  1. #include <httplib.h>
  2. #include <gtest/gtest.h>
  3. #include <chrono>
  4. #include <future>
  5. #include <thread>
  6. #define SERVER_CERT_FILE "./cert.pem"
  7. #define SERVER_PRIVATE_KEY_FILE "./key.pem"
  8. #define CA_CERT_FILE "./ca-bundle.crt"
  9. #define CLIENT_CA_CERT_FILE "./rootCA.cert.pem"
  10. #define CLIENT_CA_CERT_DIR "."
  11. #define CLIENT_CERT_FILE "./client.cert.pem"
  12. #define CLIENT_PRIVATE_KEY_FILE "./client.key.pem"
  13. using namespace std;
  14. using namespace httplib;
  15. const char *HOST = "localhost";
  16. const int PORT = 1234;
  17. const string LONG_QUERY_VALUE = string(25000, '@');
  18. const string LONG_QUERY_URL = "/long-query-value?key=" + LONG_QUERY_VALUE;
  19. const std::string JSON_DATA = "{\"hello\":\"world\"}";
  20. const string LARGE_DATA = string(1024 * 1024 * 100, '@'); // 100MB
  21. MultipartFormData &get_file_value(MultipartFormDataItems &files,
  22. const char *key) {
  23. auto it = std::find_if(
  24. files.begin(), files.end(),
  25. [&](const MultipartFormData &file) { return file.name == key; });
  26. if (it != files.end()) { return *it; }
  27. throw std::runtime_error("invalid mulitpart form data name error");
  28. }
  29. #ifdef _WIN32
  30. TEST(StartupTest, WSAStartup) {
  31. WSADATA wsaData;
  32. int ret = WSAStartup(0x0002, &wsaData);
  33. ASSERT_EQ(0, ret);
  34. }
  35. #endif
  36. TEST(SplitTest, ParseQueryString) {
  37. string s = "key1=val1&key2=val2&key3=val3";
  38. Params dic;
  39. detail::split(s.c_str(), s.c_str() + s.size(), '&',
  40. [&](const char *b, const char *e) {
  41. string key, val;
  42. detail::split(b, e, '=', [&](const char *b, const char *e) {
  43. if (key.empty()) {
  44. key.assign(b, e);
  45. } else {
  46. val.assign(b, e);
  47. }
  48. });
  49. dic.emplace(key, val);
  50. });
  51. EXPECT_EQ("val1", dic.find("key1")->second);
  52. EXPECT_EQ("val2", dic.find("key2")->second);
  53. EXPECT_EQ("val3", dic.find("key3")->second);
  54. }
  55. TEST(ParseQueryTest, ParseQueryString) {
  56. string s = "key1=val1&key2=val2&key3=val3";
  57. Params dic;
  58. detail::parse_query_text(s, dic);
  59. EXPECT_EQ("val1", dic.find("key1")->second);
  60. EXPECT_EQ("val2", dic.find("key2")->second);
  61. EXPECT_EQ("val3", dic.find("key3")->second);
  62. }
  63. TEST(ParamsToQueryTest, ConvertParamsToQuery) {
  64. Params dic;
  65. EXPECT_EQ(detail::params_to_query_str(dic), "");
  66. dic.emplace("key1", "val1");
  67. EXPECT_EQ(detail::params_to_query_str(dic), "key1=val1");
  68. dic.emplace("key2", "val2");
  69. dic.emplace("key3", "val3");
  70. EXPECT_EQ(detail::params_to_query_str(dic), "key1=val1&key2=val2&key3=val3");
  71. }
  72. TEST(GetHeaderValueTest, DefaultValue) {
  73. Headers headers = {{"Dummy", "Dummy"}};
  74. auto val = detail::get_header_value(headers, "Content-Type", 0, "text/plain");
  75. EXPECT_STREQ("text/plain", val);
  76. }
  77. TEST(GetHeaderValueTest, DefaultValueInt) {
  78. Headers headers = {{"Dummy", "Dummy"}};
  79. auto val = detail::get_header_value_uint64(headers, "Content-Length", 100);
  80. EXPECT_EQ(100ull, val);
  81. }
  82. TEST(GetHeaderValueTest, RegularValue) {
  83. Headers headers = {{"Content-Type", "text/html"}, {"Dummy", "Dummy"}};
  84. auto val = detail::get_header_value(headers, "Content-Type", 0, "text/plain");
  85. EXPECT_STREQ("text/html", val);
  86. }
  87. TEST(GetHeaderValueTest, RegularValueInt) {
  88. Headers headers = {{"Content-Length", "100"}, {"Dummy", "Dummy"}};
  89. auto val = detail::get_header_value_uint64(headers, "Content-Length", 0);
  90. EXPECT_EQ(100ull, val);
  91. }
  92. TEST(GetHeaderValueTest, Range) {
  93. {
  94. Headers headers = {make_range_header({{1, -1}})};
  95. auto val = detail::get_header_value(headers, "Range", 0, 0);
  96. EXPECT_STREQ("bytes=1-", val);
  97. }
  98. {
  99. Headers headers = {make_range_header({{-1, 1}})};
  100. auto val = detail::get_header_value(headers, "Range", 0, 0);
  101. EXPECT_STREQ("bytes=-1", val);
  102. }
  103. {
  104. Headers headers = {make_range_header({{1, 10}})};
  105. auto val = detail::get_header_value(headers, "Range", 0, 0);
  106. EXPECT_STREQ("bytes=1-10", val);
  107. }
  108. {
  109. Headers headers = {make_range_header({{1, 10}, {100, -1}})};
  110. auto val = detail::get_header_value(headers, "Range", 0, 0);
  111. EXPECT_STREQ("bytes=1-10, 100-", val);
  112. }
  113. {
  114. Headers headers = {make_range_header({{1, 10}, {100, 200}})};
  115. auto val = detail::get_header_value(headers, "Range", 0, 0);
  116. EXPECT_STREQ("bytes=1-10, 100-200", val);
  117. }
  118. {
  119. Headers headers = {make_range_header({{0, 0}, {-1, 1}})};
  120. auto val = detail::get_header_value(headers, "Range", 0, 0);
  121. EXPECT_STREQ("bytes=0-0, -1", val);
  122. }
  123. }
  124. TEST(ParseHeaderValueTest, Range) {
  125. {
  126. Ranges ranges;
  127. auto ret = detail::parse_range_header("bytes=1-", ranges);
  128. EXPECT_TRUE(ret);
  129. EXPECT_EQ(1u, ranges.size());
  130. EXPECT_EQ(1u, ranges[0].first);
  131. EXPECT_EQ(-1, ranges[0].second);
  132. }
  133. {
  134. Ranges ranges;
  135. auto ret = detail::parse_range_header("bytes=-1", ranges);
  136. EXPECT_TRUE(ret);
  137. EXPECT_EQ(1u, ranges.size());
  138. EXPECT_EQ(-1, ranges[0].first);
  139. EXPECT_EQ(1u, ranges[0].second);
  140. }
  141. {
  142. Ranges ranges;
  143. auto ret = detail::parse_range_header("bytes=1-10", ranges);
  144. EXPECT_TRUE(ret);
  145. EXPECT_EQ(1u, ranges.size());
  146. EXPECT_EQ(1u, ranges[0].first);
  147. EXPECT_EQ(10u, ranges[0].second);
  148. }
  149. {
  150. Ranges ranges;
  151. auto ret = detail::parse_range_header("bytes=10-1", ranges);
  152. EXPECT_FALSE(ret);
  153. }
  154. {
  155. Ranges ranges;
  156. auto ret = detail::parse_range_header("bytes=1-10, 100-", ranges);
  157. EXPECT_TRUE(ret);
  158. EXPECT_EQ(2u, ranges.size());
  159. EXPECT_EQ(1u, ranges[0].first);
  160. EXPECT_EQ(10u, ranges[0].second);
  161. EXPECT_EQ(100u, ranges[1].first);
  162. EXPECT_EQ(-1, ranges[1].second);
  163. }
  164. {
  165. Ranges ranges;
  166. auto ret =
  167. detail::parse_range_header("bytes=1-10, 100-200, 300-400", ranges);
  168. EXPECT_TRUE(ret);
  169. EXPECT_EQ(3u, ranges.size());
  170. EXPECT_EQ(1u, ranges[0].first);
  171. EXPECT_EQ(10u, ranges[0].second);
  172. EXPECT_EQ(100u, ranges[1].first);
  173. EXPECT_EQ(200u, ranges[1].second);
  174. EXPECT_EQ(300u, ranges[2].first);
  175. EXPECT_EQ(400u, ranges[2].second);
  176. }
  177. }
  178. TEST(BufferStreamTest, read) {
  179. detail::BufferStream strm1;
  180. Stream &strm = strm1;
  181. EXPECT_EQ(5, strm.write("hello"));
  182. char buf[512];
  183. EXPECT_EQ(2, strm.read(buf, 2));
  184. EXPECT_EQ('h', buf[0]);
  185. EXPECT_EQ('e', buf[1]);
  186. EXPECT_EQ(2, strm.read(buf, 2));
  187. EXPECT_EQ('l', buf[0]);
  188. EXPECT_EQ('l', buf[1]);
  189. EXPECT_EQ(1, strm.read(buf, 1));
  190. EXPECT_EQ('o', buf[0]);
  191. EXPECT_EQ(0, strm.read(buf, 1));
  192. }
  193. TEST(ChunkedEncodingTest, FromHTTPWatch) {
  194. auto host = "www.httpwatch.com";
  195. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  196. auto port = 443;
  197. httplib::SSLClient cli(host, port);
  198. #else
  199. auto port = 80;
  200. httplib::Client cli(host, port);
  201. #endif
  202. cli.set_timeout_sec(2);
  203. auto res =
  204. cli.Get("/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137");
  205. ASSERT_TRUE(res != nullptr);
  206. std::string out;
  207. httplib::detail::read_file("./image.jpg", out);
  208. EXPECT_EQ(200, res->status);
  209. EXPECT_EQ(out, res->body);
  210. }
  211. TEST(ChunkedEncodingTest, WithContentReceiver) {
  212. auto host = "www.httpwatch.com";
  213. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  214. auto port = 443;
  215. httplib::SSLClient cli(host, port);
  216. #else
  217. auto port = 80;
  218. httplib::Client cli(host, port);
  219. #endif
  220. cli.set_timeout_sec(2);
  221. std::string body;
  222. auto res =
  223. cli.Get("/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137",
  224. [&](const char *data, size_t data_length) {
  225. body.append(data, data_length);
  226. return true;
  227. });
  228. ASSERT_TRUE(res != nullptr);
  229. std::string out;
  230. httplib::detail::read_file("./image.jpg", out);
  231. EXPECT_EQ(200, res->status);
  232. EXPECT_EQ(out, body);
  233. }
  234. TEST(ChunkedEncodingTest, WithResponseHandlerAndContentReceiver) {
  235. auto host = "www.httpwatch.com";
  236. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  237. auto port = 443;
  238. httplib::SSLClient cli(host, port);
  239. #else
  240. auto port = 80;
  241. httplib::Client cli(host, port);
  242. #endif
  243. cli.set_timeout_sec(2);
  244. std::string body;
  245. auto res = cli.Get(
  246. "/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137", Headers(),
  247. [&](const Response &response) {
  248. EXPECT_EQ(200, response.status);
  249. return true;
  250. },
  251. [&](const char *data, size_t data_length) {
  252. body.append(data, data_length);
  253. return true;
  254. });
  255. ASSERT_TRUE(res != nullptr);
  256. std::string out;
  257. httplib::detail::read_file("./image.jpg", out);
  258. EXPECT_EQ(200, res->status);
  259. EXPECT_EQ(out, body);
  260. }
  261. TEST(RangeTest, FromHTTPBin) {
  262. auto host = "httpbin.org";
  263. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  264. auto port = 443;
  265. httplib::SSLClient cli(host, port);
  266. #else
  267. auto port = 80;
  268. httplib::Client cli(host, port);
  269. #endif
  270. cli.set_timeout_sec(5);
  271. {
  272. httplib::Headers headers;
  273. auto res = cli.Get("/range/32", headers);
  274. ASSERT_TRUE(res != nullptr);
  275. EXPECT_EQ(res->body, "abcdefghijklmnopqrstuvwxyzabcdef");
  276. EXPECT_EQ(200, res->status);
  277. }
  278. {
  279. httplib::Headers headers = {httplib::make_range_header({{1, -1}})};
  280. auto res = cli.Get("/range/32", headers);
  281. ASSERT_TRUE(res != nullptr);
  282. EXPECT_EQ(res->body, "bcdefghijklmnopqrstuvwxyzabcdef");
  283. EXPECT_EQ(206, res->status);
  284. }
  285. {
  286. httplib::Headers headers = {httplib::make_range_header({{1, 10}})};
  287. auto res = cli.Get("/range/32", headers);
  288. ASSERT_TRUE(res != nullptr);
  289. EXPECT_EQ(res->body, "bcdefghijk");
  290. EXPECT_EQ(206, res->status);
  291. }
  292. {
  293. httplib::Headers headers = {httplib::make_range_header({{0, 31}})};
  294. auto res = cli.Get("/range/32", headers);
  295. ASSERT_TRUE(res != nullptr);
  296. EXPECT_EQ(res->body, "abcdefghijklmnopqrstuvwxyzabcdef");
  297. EXPECT_EQ(200, res->status);
  298. }
  299. {
  300. httplib::Headers headers = {httplib::make_range_header({{0, -1}})};
  301. auto res = cli.Get("/range/32", headers);
  302. ASSERT_TRUE(res != nullptr);
  303. EXPECT_EQ(res->body, "abcdefghijklmnopqrstuvwxyzabcdef");
  304. EXPECT_EQ(200, res->status);
  305. }
  306. {
  307. httplib::Headers headers = {httplib::make_range_header({{0, 32}})};
  308. auto res = cli.Get("/range/32", headers);
  309. ASSERT_TRUE(res != nullptr);
  310. EXPECT_EQ(416, res->status);
  311. }
  312. }
  313. TEST(ConnectionErrorTest, InvalidHost) {
  314. auto host = "-abcde.com";
  315. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  316. auto port = 443;
  317. httplib::SSLClient cli(host, port);
  318. #else
  319. auto port = 80;
  320. httplib::Client cli(host, port);
  321. #endif
  322. cli.set_timeout_sec(2);
  323. auto res = cli.Get("/");
  324. ASSERT_TRUE(res == nullptr);
  325. }
  326. TEST(ConnectionErrorTest, InvalidPort) {
  327. auto host = "localhost";
  328. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  329. auto port = 44380;
  330. httplib::SSLClient cli(host, port);
  331. #else
  332. auto port = 8080;
  333. httplib::Client cli(host, port);
  334. #endif
  335. cli.set_timeout_sec(2);
  336. auto res = cli.Get("/");
  337. ASSERT_TRUE(res == nullptr);
  338. }
  339. TEST(ConnectionErrorTest, Timeout) {
  340. auto host = "google.com";
  341. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  342. auto port = 44380;
  343. httplib::SSLClient cli(host, port);
  344. #else
  345. auto port = 8080;
  346. httplib::Client cli(host, port);
  347. #endif
  348. cli.set_timeout_sec(2);
  349. auto res = cli.Get("/");
  350. ASSERT_TRUE(res == nullptr);
  351. }
  352. TEST(CancelTest, NoCancel) {
  353. auto host = "httpbin.org";
  354. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  355. auto port = 443;
  356. httplib::SSLClient cli(host, port);
  357. #else
  358. auto port = 80;
  359. httplib::Client cli(host, port);
  360. #endif
  361. cli.set_timeout_sec(5);
  362. auto res = cli.Get("/range/32", [](uint64_t, uint64_t) { return true; });
  363. ASSERT_TRUE(res != nullptr);
  364. EXPECT_EQ(res->body, "abcdefghijklmnopqrstuvwxyzabcdef");
  365. EXPECT_EQ(200, res->status);
  366. }
  367. TEST(CancelTest, WithCancelSmallPayload) {
  368. auto host = "httpbin.org";
  369. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  370. auto port = 443;
  371. httplib::SSLClient cli(host, port);
  372. #else
  373. auto port = 80;
  374. httplib::Client cli(host, port);
  375. #endif
  376. auto res = cli.Get("/range/32", [](uint64_t, uint64_t) { return false; });
  377. cli.set_timeout_sec(5);
  378. ASSERT_TRUE(res == nullptr);
  379. }
  380. TEST(CancelTest, WithCancelLargePayload) {
  381. auto host = "httpbin.org";
  382. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  383. auto port = 443;
  384. httplib::SSLClient cli(host, port);
  385. #else
  386. auto port = 80;
  387. httplib::Client cli(host, port);
  388. #endif
  389. cli.set_timeout_sec(5);
  390. uint32_t count = 0;
  391. httplib::Headers headers;
  392. auto res = cli.Get("/range/65536", headers,
  393. [&count](uint64_t, uint64_t) { return (count++ == 0); });
  394. ASSERT_TRUE(res == nullptr);
  395. }
  396. TEST(BaseAuthTest, FromHTTPWatch) {
  397. auto host = "httpbin.org";
  398. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  399. auto port = 443;
  400. httplib::SSLClient cli(host, port);
  401. #else
  402. auto port = 80;
  403. httplib::Client cli(host, port);
  404. #endif
  405. {
  406. auto res = cli.Get("/basic-auth/hello/world");
  407. ASSERT_TRUE(res != nullptr);
  408. EXPECT_EQ(401, res->status);
  409. }
  410. {
  411. auto res =
  412. cli.Get("/basic-auth/hello/world",
  413. {httplib::make_basic_authentication_header("hello", "world")});
  414. ASSERT_TRUE(res != nullptr);
  415. EXPECT_EQ(res->body,
  416. "{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n");
  417. EXPECT_EQ(200, res->status);
  418. }
  419. {
  420. cli.set_basic_auth("hello", "world");
  421. auto res = cli.Get("/basic-auth/hello/world");
  422. ASSERT_TRUE(res != nullptr);
  423. EXPECT_EQ(res->body,
  424. "{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n");
  425. EXPECT_EQ(200, res->status);
  426. }
  427. {
  428. cli.set_basic_auth("hello", "bad");
  429. auto res = cli.Get("/basic-auth/hello/world");
  430. ASSERT_TRUE(res != nullptr);
  431. EXPECT_EQ(401, res->status);
  432. }
  433. {
  434. cli.set_basic_auth("bad", "world");
  435. auto res = cli.Get("/basic-auth/hello/world");
  436. ASSERT_TRUE(res != nullptr);
  437. EXPECT_EQ(401, res->status);
  438. }
  439. }
  440. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  441. TEST(DigestAuthTest, FromHTTPWatch) {
  442. auto host = "httpbin.org";
  443. auto port = 443;
  444. httplib::SSLClient cli(host, port);
  445. {
  446. auto res = cli.Get("/digest-auth/auth/hello/world");
  447. ASSERT_TRUE(res != nullptr);
  448. EXPECT_EQ(401, res->status);
  449. }
  450. {
  451. std::vector<std::string> paths = {
  452. "/digest-auth/auth/hello/world/MD5",
  453. "/digest-auth/auth/hello/world/SHA-256",
  454. "/digest-auth/auth/hello/world/SHA-512",
  455. "/digest-auth/auth-int/hello/world/MD5",
  456. };
  457. cli.set_digest_auth("hello", "world");
  458. for (auto path : paths) {
  459. auto res = cli.Get(path.c_str());
  460. ASSERT_TRUE(res != nullptr);
  461. EXPECT_EQ(res->body,
  462. "{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n");
  463. EXPECT_EQ(200, res->status);
  464. }
  465. cli.set_digest_auth("hello", "bad");
  466. for (auto path : paths) {
  467. auto res = cli.Get(path.c_str());
  468. ASSERT_TRUE(res != nullptr);
  469. EXPECT_EQ(400, res->status);
  470. }
  471. cli.set_digest_auth("bad", "world");
  472. for (auto path : paths) {
  473. auto res = cli.Get(path.c_str());
  474. ASSERT_TRUE(res != nullptr);
  475. EXPECT_EQ(400, res->status);
  476. }
  477. }
  478. }
  479. #endif
  480. TEST(AbsoluteRedirectTest, Redirect) {
  481. auto host = "httpbin.org";
  482. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  483. httplib::SSLClient cli(host);
  484. #else
  485. httplib::Client cli(host);
  486. #endif
  487. cli.set_follow_location(true);
  488. auto res = cli.Get("/absolute-redirect/3");
  489. ASSERT_TRUE(res != nullptr);
  490. EXPECT_EQ(200, res->status);
  491. }
  492. TEST(RedirectTest, Redirect) {
  493. auto host = "httpbin.org";
  494. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  495. httplib::SSLClient cli(host);
  496. #else
  497. httplib::Client cli(host);
  498. #endif
  499. cli.set_follow_location(true);
  500. auto res = cli.Get("/redirect/3");
  501. ASSERT_TRUE(res != nullptr);
  502. EXPECT_EQ(200, res->status);
  503. }
  504. TEST(RelativeRedirectTest, Redirect) {
  505. auto host = "httpbin.org";
  506. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  507. httplib::SSLClient cli(host);
  508. #else
  509. httplib::Client cli(host);
  510. #endif
  511. cli.set_follow_location(true);
  512. auto res = cli.Get("/relative-redirect/3");
  513. ASSERT_TRUE(res != nullptr);
  514. EXPECT_EQ(200, res->status);
  515. }
  516. TEST(TooManyRedirectTest, Redirect) {
  517. auto host = "httpbin.org";
  518. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  519. httplib::SSLClient cli(host);
  520. #else
  521. httplib::Client cli(host);
  522. #endif
  523. cli.set_follow_location(true);
  524. auto res = cli.Get("/redirect/21");
  525. ASSERT_TRUE(res == nullptr);
  526. }
  527. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  528. TEST(YahooRedirectTest, Redirect) {
  529. httplib::Client cli("yahoo.com");
  530. auto res = cli.Get("/");
  531. ASSERT_TRUE(res != nullptr);
  532. EXPECT_EQ(301, res->status);
  533. cli.set_follow_location(true);
  534. res = cli.Get("/");
  535. ASSERT_TRUE(res != nullptr);
  536. EXPECT_EQ(200, res->status);
  537. }
  538. TEST(YahooRedirectTestWithURL, Redirect) {
  539. auto res = httplib::url::Get("http://yahoo.com");
  540. ASSERT_TRUE(res != nullptr);
  541. EXPECT_EQ(301, res->status);
  542. httplib::url::Options options;
  543. options.follow_location = true;
  544. res = httplib::url::Get("http://yahoo.com", options);
  545. ASSERT_TRUE(res != nullptr);
  546. EXPECT_EQ(200, res->status);
  547. }
  548. TEST(HttpsToHttpRedirectTest, Redirect) {
  549. httplib::SSLClient cli("httpbin.org");
  550. cli.set_follow_location(true);
  551. auto res =
  552. cli.Get("/redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302");
  553. ASSERT_TRUE(res != nullptr);
  554. EXPECT_EQ(200, res->status);
  555. }
  556. TEST(HttpsToHttpRedirectTestWithURL, Redirect) {
  557. httplib::url::Options options;
  558. options.follow_location = true;
  559. auto res = httplib::url::Get(
  560. "https://httpbin.org/"
  561. "redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302",
  562. options);
  563. ASSERT_TRUE(res != nullptr);
  564. EXPECT_EQ(200, res->status);
  565. }
  566. TEST(RedirectToDifferentPort, Redirect) {
  567. Server svr8080;
  568. Server svr8081;
  569. svr8080.Get("/1", [&](const Request & /*req*/, Response &res) {
  570. res.set_redirect("http://localhost:8081/2");
  571. });
  572. svr8081.Get("/2", [&](const Request & /*req*/, Response &res) {
  573. res.set_content("Hello World!", "text/plain");
  574. });
  575. auto thread8080 = std::thread([&]() { svr8080.listen("localhost", 8080); });
  576. auto thread8081 = std::thread([&]() { svr8081.listen("localhost", 8081); });
  577. while (!svr8080.is_running() || !svr8081.is_running()) {
  578. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  579. }
  580. // Give GET time to get a few messages.
  581. std::this_thread::sleep_for(std::chrono::seconds(1));
  582. Client cli("localhost", 8080);
  583. cli.set_follow_location(true);
  584. auto res = cli.Get("/1");
  585. ASSERT_TRUE(res != nullptr);
  586. EXPECT_EQ(200, res->status);
  587. EXPECT_EQ(res->body, "Hello World!");
  588. svr8080.stop();
  589. svr8081.stop();
  590. thread8080.join();
  591. thread8081.join();
  592. ASSERT_FALSE(svr8080.is_running());
  593. ASSERT_FALSE(svr8081.is_running());
  594. }
  595. #endif
  596. TEST(Server, BindAndListenSeparately) {
  597. Server svr;
  598. int port = svr.bind_to_any_port("0.0.0.0");
  599. ASSERT_TRUE(svr.is_valid());
  600. ASSERT_TRUE(port > 0);
  601. svr.stop();
  602. }
  603. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  604. TEST(SSLServer, BindAndListenSeparately) {
  605. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  606. CLIENT_CA_CERT_DIR);
  607. int port = svr.bind_to_any_port("0.0.0.0");
  608. ASSERT_TRUE(svr.is_valid());
  609. ASSERT_TRUE(port > 0);
  610. svr.stop();
  611. }
  612. #endif
  613. class ServerTest : public ::testing::Test {
  614. protected:
  615. ServerTest()
  616. : cli_(HOST, PORT)
  617. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  618. ,
  619. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  620. #endif
  621. {
  622. }
  623. virtual void SetUp() {
  624. svr_.set_mount_point("/", "./www");
  625. svr_.set_mount_point("/mount", "./www2");
  626. svr_.set_file_extension_and_mimetype_mapping("abcde", "text/abcde");
  627. svr_.Get("/hi",
  628. [&](const Request & /*req*/, Response &res) {
  629. res.set_content("Hello World!", "text/plain");
  630. })
  631. .Get("/http_response_splitting",
  632. [&](const Request & /*req*/, Response &res) {
  633. res.set_header("a", "1\r\nSet-Cookie: a=1");
  634. EXPECT_EQ(0, res.headers.size());
  635. EXPECT_FALSE(res.has_header("a"));
  636. res.set_header("a", "1\nSet-Cookie: a=1");
  637. EXPECT_EQ(0, res.headers.size());
  638. EXPECT_FALSE(res.has_header("a"));
  639. res.set_header("a", "1\rSet-Cookie: a=1");
  640. EXPECT_EQ(0, res.headers.size());
  641. EXPECT_FALSE(res.has_header("a"));
  642. res.set_header("a\r\nb", "0");
  643. EXPECT_EQ(0, res.headers.size());
  644. EXPECT_FALSE(res.has_header("a"));
  645. res.set_header("a\rb", "0");
  646. EXPECT_EQ(0, res.headers.size());
  647. EXPECT_FALSE(res.has_header("a"));
  648. res.set_header("a\nb", "0");
  649. EXPECT_EQ(0, res.headers.size());
  650. EXPECT_FALSE(res.has_header("a"));
  651. res.set_redirect("1\r\nSet-Cookie: a=1");
  652. EXPECT_EQ(0, res.headers.size());
  653. EXPECT_FALSE(res.has_header("Location"));
  654. })
  655. .Get("/slow",
  656. [&](const Request & /*req*/, Response &res) {
  657. std::this_thread::sleep_for(std::chrono::seconds(2));
  658. res.set_content("slow", "text/plain");
  659. })
  660. .Get("/remote_addr",
  661. [&](const Request &req, Response &res) {
  662. auto remote_addr = req.headers.find("REMOTE_ADDR")->second;
  663. EXPECT_TRUE(req.has_header("REMOTE_PORT"));
  664. EXPECT_EQ(req.remote_addr, req.get_header_value("REMOTE_ADDR"));
  665. EXPECT_EQ(req.remote_port,
  666. std::stoi(req.get_header_value("REMOTE_PORT")));
  667. res.set_content(remote_addr.c_str(), "text/plain");
  668. })
  669. .Get("/endwith%",
  670. [&](const Request & /*req*/, Response &res) {
  671. res.set_content("Hello World!", "text/plain");
  672. })
  673. .Get("/a\\+\\+b",
  674. [&](const Request &req, Response &res) {
  675. ASSERT_TRUE(req.has_param("a +b"));
  676. auto val = req.get_param_value("a +b");
  677. res.set_content(val, "text/plain");
  678. })
  679. .Get("/", [&](const Request & /*req*/,
  680. Response &res) { res.set_redirect("/hi"); })
  681. .Post("/1", [](const Request & /*req*/,
  682. Response &res) { res.set_redirect("/2", 303); })
  683. .Get("/2",
  684. [](const Request & /*req*/, Response &res) {
  685. res.set_content("redirected.", "text/plain");
  686. res.status = 200;
  687. })
  688. .Post("/person",
  689. [&](const Request &req, Response &res) {
  690. if (req.has_param("name") && req.has_param("note")) {
  691. persons_[req.get_param_value("name")] =
  692. req.get_param_value("note");
  693. } else {
  694. res.status = 400;
  695. }
  696. })
  697. .Put("/person",
  698. [&](const Request &req, Response &res) {
  699. if (req.has_param("name") && req.has_param("note")) {
  700. persons_[req.get_param_value("name")] =
  701. req.get_param_value("note");
  702. } else {
  703. res.status = 400;
  704. }
  705. })
  706. .Get("/person/(.*)",
  707. [&](const Request &req, Response &res) {
  708. string name = req.matches[1];
  709. if (persons_.find(name) != persons_.end()) {
  710. auto note = persons_[name];
  711. res.set_content(note, "text/plain");
  712. } else {
  713. res.status = 404;
  714. }
  715. })
  716. .Post("/x-www-form-urlencoded-json",
  717. [&](const Request &req, Response &res) {
  718. auto json = req.get_param_value("json");
  719. ASSERT_EQ(JSON_DATA, json);
  720. res.set_content(json, "appliation/json");
  721. res.status = 200;
  722. })
  723. .Get("/streamed-chunked",
  724. [&](const Request & /*req*/, Response &res) {
  725. res.set_chunked_content_provider(
  726. [](uint64_t /*offset*/, DataSink &sink) {
  727. ASSERT_TRUE(sink.is_writable());
  728. sink.write("123", 3);
  729. sink.write("456", 3);
  730. sink.write("789", 3);
  731. sink.done();
  732. });
  733. })
  734. .Get("/streamed-chunked2",
  735. [&](const Request & /*req*/, Response &res) {
  736. auto i = new int(0);
  737. res.set_chunked_content_provider(
  738. [i](uint64_t /*offset*/, DataSink &sink) {
  739. ASSERT_TRUE(sink.is_writable());
  740. switch (*i) {
  741. case 0: sink.write("123", 3); break;
  742. case 1: sink.write("456", 3); break;
  743. case 2: sink.write("789", 3); break;
  744. case 3: sink.done(); break;
  745. }
  746. (*i)++;
  747. },
  748. [i] { delete i; });
  749. })
  750. .Get("/streamed",
  751. [&](const Request & /*req*/, Response &res) {
  752. res.set_content_provider(
  753. 6, [](uint64_t offset, uint64_t /*length*/, DataSink &sink) {
  754. sink.write(offset < 3 ? "a" : "b", 1);
  755. });
  756. })
  757. .Get("/streamed-with-range",
  758. [&](const Request & /*req*/, Response &res) {
  759. auto data = new std::string("abcdefg");
  760. res.set_content_provider(
  761. data->size(),
  762. [data](uint64_t offset, uint64_t length, DataSink &sink) {
  763. ASSERT_TRUE(sink.is_writable());
  764. size_t DATA_CHUNK_SIZE = 4;
  765. const auto &d = *data;
  766. auto out_len =
  767. std::min(static_cast<size_t>(length), DATA_CHUNK_SIZE);
  768. sink.write(&d[static_cast<size_t>(offset)], out_len);
  769. },
  770. [data] { delete data; });
  771. })
  772. .Get("/streamed-cancel",
  773. [&](const Request & /*req*/, Response &res) {
  774. res.set_content_provider(size_t(-1), [](uint64_t /*offset*/,
  775. uint64_t /*length*/,
  776. DataSink &sink) {
  777. ASSERT_TRUE(sink.is_writable());
  778. std::string data = "data_chunk";
  779. sink.write(data.data(), data.size());
  780. });
  781. })
  782. .Get("/with-range",
  783. [&](const Request & /*req*/, Response &res) {
  784. res.set_content("abcdefg", "text/plain");
  785. })
  786. .Post("/chunked",
  787. [&](const Request &req, Response & /*res*/) {
  788. EXPECT_EQ(req.body, "dechunked post body");
  789. })
  790. .Post("/large-chunked",
  791. [&](const Request &req, Response & /*res*/) {
  792. std::string expected(6 * 30 * 1024u, 'a');
  793. EXPECT_EQ(req.body, expected);
  794. })
  795. .Post("/multipart",
  796. [&](const Request &req, Response & /*res*/) {
  797. EXPECT_EQ(5u, req.files.size());
  798. ASSERT_TRUE(!req.has_file("???"));
  799. ASSERT_TRUE(req.body.empty());
  800. {
  801. const auto &file = req.get_file_value("text1");
  802. EXPECT_TRUE(file.filename.empty());
  803. EXPECT_EQ("text default", file.content);
  804. }
  805. {
  806. const auto &file = req.get_file_value("text2");
  807. EXPECT_TRUE(file.filename.empty());
  808. EXPECT_EQ("aωb", file.content);
  809. }
  810. {
  811. const auto &file = req.get_file_value("file1");
  812. EXPECT_EQ("hello.txt", file.filename);
  813. EXPECT_EQ("text/plain", file.content_type);
  814. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  815. }
  816. {
  817. const auto &file = req.get_file_value("file3");
  818. EXPECT_TRUE(file.filename.empty());
  819. EXPECT_EQ("application/octet-stream", file.content_type);
  820. EXPECT_EQ(0u, file.content.size());
  821. }
  822. })
  823. .Post("/empty",
  824. [&](const Request &req, Response &res) {
  825. EXPECT_EQ(req.body, "");
  826. EXPECT_EQ("text/plain", req.get_header_value("Content-Type"));
  827. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  828. res.set_content("empty", "text/plain");
  829. })
  830. .Post("/empty-no-content-type",
  831. [&](const Request &req, Response &res) {
  832. EXPECT_EQ(req.body, "");
  833. EXPECT_FALSE(req.has_header("Content-Type"));
  834. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  835. res.set_content("empty-no-content-type", "text/plain");
  836. })
  837. .Put("/empty-no-content-type",
  838. [&](const Request &req, Response &res) {
  839. EXPECT_EQ(req.body, "");
  840. EXPECT_FALSE(req.has_header("Content-Type"));
  841. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  842. res.set_content("empty-no-content-type", "text/plain");
  843. })
  844. .Put("/put",
  845. [&](const Request &req, Response &res) {
  846. EXPECT_EQ(req.body, "PUT");
  847. res.set_content(req.body, "text/plain");
  848. })
  849. .Put("/put-large",
  850. [&](const Request &req, Response &res) {
  851. EXPECT_EQ(req.body, LARGE_DATA);
  852. res.set_content(req.body, "text/plain");
  853. })
  854. .Patch("/patch",
  855. [&](const Request &req, Response &res) {
  856. EXPECT_EQ(req.body, "PATCH");
  857. res.set_content(req.body, "text/plain");
  858. })
  859. .Delete("/delete",
  860. [&](const Request & /*req*/, Response &res) {
  861. res.set_content("DELETE", "text/plain");
  862. })
  863. .Delete("/delete-body",
  864. [&](const Request &req, Response &res) {
  865. EXPECT_EQ(req.body, "content");
  866. res.set_content(req.body, "text/plain");
  867. })
  868. .Options(R"(\*)",
  869. [&](const Request & /*req*/, Response &res) {
  870. res.set_header("Allow", "GET, POST, HEAD, OPTIONS");
  871. })
  872. .Get("/request-target",
  873. [&](const Request &req, Response & /*res*/) {
  874. EXPECT_EQ("/request-target?aaa=bbb&ccc=ddd", req.target);
  875. EXPECT_EQ("bbb", req.get_param_value("aaa"));
  876. EXPECT_EQ("ddd", req.get_param_value("ccc"));
  877. })
  878. .Get("/long-query-value",
  879. [&](const Request &req, Response & /*res*/) {
  880. EXPECT_EQ(LONG_QUERY_URL, req.target);
  881. EXPECT_EQ(LONG_QUERY_VALUE, req.get_param_value("key"));
  882. })
  883. .Get("/array-param",
  884. [&](const Request &req, Response & /*res*/) {
  885. EXPECT_EQ(3u, req.get_param_value_count("array"));
  886. EXPECT_EQ("value1", req.get_param_value("array", 0));
  887. EXPECT_EQ("value2", req.get_param_value("array", 1));
  888. EXPECT_EQ("value3", req.get_param_value("array", 2));
  889. })
  890. .Post("/validate-no-multiple-headers",
  891. [&](const Request &req, Response & /*res*/) {
  892. EXPECT_EQ(1u, req.get_header_value_count("Content-Length"));
  893. EXPECT_EQ("5", req.get_header_value("Content-Length"));
  894. })
  895. .Post("/content_receiver",
  896. [&](const Request &req, Response &res,
  897. const ContentReader &content_reader) {
  898. if (req.is_multipart_form_data()) {
  899. MultipartFormDataItems files;
  900. content_reader(
  901. [&](const MultipartFormData &file) {
  902. files.push_back(file);
  903. return true;
  904. },
  905. [&](const char *data, size_t data_length) {
  906. files.back().content.append(data, data_length);
  907. return true;
  908. });
  909. EXPECT_EQ(5u, files.size());
  910. {
  911. const auto &file = get_file_value(files, "text1");
  912. EXPECT_TRUE(file.filename.empty());
  913. EXPECT_EQ("text default", file.content);
  914. }
  915. {
  916. const auto &file = get_file_value(files, "text2");
  917. EXPECT_TRUE(file.filename.empty());
  918. EXPECT_EQ("aωb", file.content);
  919. }
  920. {
  921. const auto &file = get_file_value(files, "file1");
  922. EXPECT_EQ("hello.txt", file.filename);
  923. EXPECT_EQ("text/plain", file.content_type);
  924. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  925. }
  926. {
  927. const auto &file = get_file_value(files, "file3");
  928. EXPECT_TRUE(file.filename.empty());
  929. EXPECT_EQ("application/octet-stream", file.content_type);
  930. EXPECT_EQ(0u, file.content.size());
  931. }
  932. } else {
  933. std::string body;
  934. content_reader([&](const char *data, size_t data_length) {
  935. EXPECT_EQ(data_length, 7);
  936. body.append(data, data_length);
  937. return true;
  938. });
  939. EXPECT_EQ(body, "content");
  940. res.set_content(body, "text/plain");
  941. }
  942. })
  943. .Put("/content_receiver",
  944. [&](const Request & /*req*/, Response &res,
  945. const ContentReader &content_reader) {
  946. std::string body;
  947. content_reader([&](const char *data, size_t data_length) {
  948. body.append(data, data_length);
  949. return true;
  950. });
  951. EXPECT_EQ(body, "content");
  952. res.set_content(body, "text/plain");
  953. })
  954. .Patch("/content_receiver",
  955. [&](const Request & /*req*/, Response &res,
  956. const ContentReader &content_reader) {
  957. std::string body;
  958. content_reader([&](const char *data, size_t data_length) {
  959. body.append(data, data_length);
  960. return true;
  961. });
  962. EXPECT_EQ(body, "content");
  963. res.set_content(body, "text/plain");
  964. })
  965. .Post("/query-string-and-body",
  966. [&](const Request &req, Response & /*res*/) {
  967. ASSERT_TRUE(req.has_param("key"));
  968. EXPECT_EQ(req.get_param_value("key"), "value");
  969. EXPECT_EQ(req.body, "content");
  970. })
  971. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  972. .Get("/gzip",
  973. [&](const Request & /*req*/, Response &res) {
  974. res.set_content(
  975. "12345678901234567890123456789012345678901234567890123456789"
  976. "01234567890123456789012345678901234567890",
  977. "text/plain");
  978. })
  979. .Get("/nogzip",
  980. [&](const Request & /*req*/, Response &res) {
  981. res.set_content(
  982. "12345678901234567890123456789012345678901234567890123456789"
  983. "01234567890123456789012345678901234567890",
  984. "application/octet-stream");
  985. })
  986. .Post("/gzipmultipart",
  987. [&](const Request &req, Response & /*res*/) {
  988. EXPECT_EQ(2u, req.files.size());
  989. ASSERT_TRUE(!req.has_file("???"));
  990. {
  991. const auto &file = req.get_file_value("key1");
  992. EXPECT_TRUE(file.filename.empty());
  993. EXPECT_EQ("test", file.content);
  994. }
  995. {
  996. const auto &file = req.get_file_value("key2");
  997. EXPECT_TRUE(file.filename.empty());
  998. EXPECT_EQ("--abcdefg123", file.content);
  999. }
  1000. })
  1001. #endif
  1002. ;
  1003. persons_["john"] = "programmer";
  1004. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  1005. while (!svr_.is_running()) {
  1006. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1007. }
  1008. }
  1009. virtual void TearDown() {
  1010. svr_.stop();
  1011. for (auto &t : request_threads_) {
  1012. t.join();
  1013. }
  1014. t_.join();
  1015. }
  1016. map<string, string> persons_;
  1017. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1018. SSLClient cli_;
  1019. SSLServer svr_;
  1020. #else
  1021. Client cli_;
  1022. Server svr_;
  1023. #endif
  1024. thread t_;
  1025. std::vector<thread> request_threads_;
  1026. };
  1027. TEST_F(ServerTest, GetMethod200) {
  1028. auto res = cli_.Get("/hi");
  1029. ASSERT_TRUE(res != nullptr);
  1030. EXPECT_EQ("HTTP/1.1", res->version);
  1031. EXPECT_EQ(200, res->status);
  1032. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1033. EXPECT_EQ(1, res->get_header_value_count("Content-Type"));
  1034. EXPECT_EQ("Hello World!", res->body);
  1035. }
  1036. TEST_F(ServerTest, GetMethod200withPercentEncoding) {
  1037. auto res = cli_.Get("/%68%69"); // auto res = cli_.Get("/hi");
  1038. ASSERT_TRUE(res != nullptr);
  1039. EXPECT_EQ("HTTP/1.1", res->version);
  1040. EXPECT_EQ(200, res->status);
  1041. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1042. EXPECT_EQ(1, res->get_header_value_count("Content-Type"));
  1043. EXPECT_EQ("Hello World!", res->body);
  1044. }
  1045. TEST_F(ServerTest, GetMethod302) {
  1046. auto res = cli_.Get("/");
  1047. ASSERT_TRUE(res != nullptr);
  1048. EXPECT_EQ(302, res->status);
  1049. EXPECT_EQ("/hi", res->get_header_value("Location"));
  1050. }
  1051. TEST_F(ServerTest, GetMethod302Redirect) {
  1052. cli_.set_follow_location(true);
  1053. auto res = cli_.Get("/");
  1054. ASSERT_TRUE(res != nullptr);
  1055. EXPECT_EQ(200, res->status);
  1056. EXPECT_EQ("Hello World!", res->body);
  1057. }
  1058. TEST_F(ServerTest, GetMethod404) {
  1059. auto res = cli_.Get("/invalid");
  1060. ASSERT_TRUE(res != nullptr);
  1061. EXPECT_EQ(404, res->status);
  1062. }
  1063. TEST_F(ServerTest, HeadMethod200) {
  1064. auto res = cli_.Head("/hi");
  1065. ASSERT_TRUE(res != nullptr);
  1066. EXPECT_EQ(200, res->status);
  1067. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1068. EXPECT_TRUE(res->body.empty());
  1069. }
  1070. TEST_F(ServerTest, HeadMethod200Static) {
  1071. auto res = cli_.Head("/mount/dir/index.html");
  1072. ASSERT_TRUE(res != nullptr);
  1073. EXPECT_EQ(200, res->status);
  1074. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1075. EXPECT_EQ(104, std::stoi(res->get_header_value("Content-Length")));
  1076. EXPECT_TRUE(res->body.empty());
  1077. }
  1078. TEST_F(ServerTest, HeadMethod404) {
  1079. auto res = cli_.Head("/invalid");
  1080. ASSERT_TRUE(res != nullptr);
  1081. EXPECT_EQ(404, res->status);
  1082. EXPECT_TRUE(res->body.empty());
  1083. }
  1084. TEST_F(ServerTest, GetMethodPersonJohn) {
  1085. auto res = cli_.Get("/person/john");
  1086. ASSERT_TRUE(res != nullptr);
  1087. EXPECT_EQ(200, res->status);
  1088. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1089. EXPECT_EQ("programmer", res->body);
  1090. }
  1091. TEST_F(ServerTest, PostMethod1) {
  1092. auto res = cli_.Get("/person/john1");
  1093. ASSERT_TRUE(res != nullptr);
  1094. ASSERT_EQ(404, res->status);
  1095. res = cli_.Post("/person", "name=john1&note=coder",
  1096. "application/x-www-form-urlencoded");
  1097. ASSERT_TRUE(res != nullptr);
  1098. ASSERT_EQ(200, res->status);
  1099. res = cli_.Get("/person/john1");
  1100. ASSERT_TRUE(res != nullptr);
  1101. ASSERT_EQ(200, res->status);
  1102. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1103. ASSERT_EQ("coder", res->body);
  1104. }
  1105. TEST_F(ServerTest, PostMethod2) {
  1106. auto res = cli_.Get("/person/john2");
  1107. ASSERT_TRUE(res != nullptr);
  1108. ASSERT_EQ(404, res->status);
  1109. Params params;
  1110. params.emplace("name", "john2");
  1111. params.emplace("note", "coder");
  1112. res = cli_.Post("/person", params);
  1113. ASSERT_TRUE(res != nullptr);
  1114. ASSERT_EQ(200, res->status);
  1115. res = cli_.Get("/person/john2");
  1116. ASSERT_TRUE(res != nullptr);
  1117. ASSERT_EQ(200, res->status);
  1118. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1119. ASSERT_EQ("coder", res->body);
  1120. }
  1121. TEST_F(ServerTest, PutMethod3) {
  1122. auto res = cli_.Get("/person/john3");
  1123. ASSERT_TRUE(res != nullptr);
  1124. ASSERT_EQ(404, res->status);
  1125. Params params;
  1126. params.emplace("name", "john3");
  1127. params.emplace("note", "coder");
  1128. res = cli_.Put("/person", params);
  1129. ASSERT_TRUE(res != nullptr);
  1130. ASSERT_EQ(200, res->status);
  1131. res = cli_.Get("/person/john3");
  1132. ASSERT_TRUE(res != nullptr);
  1133. ASSERT_EQ(200, res->status);
  1134. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1135. ASSERT_EQ("coder", res->body);
  1136. }
  1137. TEST_F(ServerTest, PostWwwFormUrlEncodedJson) {
  1138. Params params;
  1139. params.emplace("json", JSON_DATA);
  1140. auto res = cli_.Post("/x-www-form-urlencoded-json", params);
  1141. ASSERT_TRUE(res != nullptr);
  1142. ASSERT_EQ(200, res->status);
  1143. ASSERT_EQ(JSON_DATA, res->body);
  1144. }
  1145. TEST_F(ServerTest, PostEmptyContent) {
  1146. auto res = cli_.Post("/empty", "", "text/plain");
  1147. ASSERT_TRUE(res != nullptr);
  1148. ASSERT_EQ(200, res->status);
  1149. ASSERT_EQ("empty", res->body);
  1150. }
  1151. TEST_F(ServerTest, PostEmptyContentWithNoContentType) {
  1152. auto res = cli_.Post("/empty-no-content-type");
  1153. ASSERT_TRUE(res != nullptr);
  1154. ASSERT_EQ(200, res->status);
  1155. ASSERT_EQ("empty-no-content-type", res->body);
  1156. }
  1157. TEST_F(ServerTest, PutEmptyContentWithNoContentType) {
  1158. auto res = cli_.Put("/empty-no-content-type");
  1159. ASSERT_TRUE(res != nullptr);
  1160. ASSERT_EQ(200, res->status);
  1161. ASSERT_EQ("empty-no-content-type", res->body);
  1162. }
  1163. TEST_F(ServerTest, GetMethodDir) {
  1164. auto res = cli_.Get("/dir/");
  1165. ASSERT_TRUE(res != nullptr);
  1166. EXPECT_EQ(200, res->status);
  1167. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1168. auto body = R"(<html>
  1169. <head>
  1170. </head>
  1171. <body>
  1172. <a href="/dir/test.html">Test</a>
  1173. <a href="/hi">hi</a>
  1174. </body>
  1175. </html>
  1176. )";
  1177. EXPECT_EQ(body, res->body);
  1178. }
  1179. TEST_F(ServerTest, GetMethodDirTest) {
  1180. auto res = cli_.Get("/dir/test.html");
  1181. ASSERT_TRUE(res != nullptr);
  1182. EXPECT_EQ(200, res->status);
  1183. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1184. EXPECT_EQ("test.html", res->body);
  1185. }
  1186. TEST_F(ServerTest, GetMethodDirTestWithDoubleDots) {
  1187. auto res = cli_.Get("/dir/../dir/test.html");
  1188. ASSERT_TRUE(res != nullptr);
  1189. EXPECT_EQ(200, res->status);
  1190. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1191. EXPECT_EQ("test.html", res->body);
  1192. }
  1193. TEST_F(ServerTest, GetMethodInvalidPath) {
  1194. auto res = cli_.Get("/dir/../test.html");
  1195. ASSERT_TRUE(res != nullptr);
  1196. EXPECT_EQ(404, res->status);
  1197. }
  1198. TEST_F(ServerTest, GetMethodOutOfBaseDir) {
  1199. auto res = cli_.Get("/../www/dir/test.html");
  1200. ASSERT_TRUE(res != nullptr);
  1201. EXPECT_EQ(404, res->status);
  1202. }
  1203. TEST_F(ServerTest, GetMethodOutOfBaseDir2) {
  1204. auto res = cli_.Get("/dir/../../www/dir/test.html");
  1205. ASSERT_TRUE(res != nullptr);
  1206. EXPECT_EQ(404, res->status);
  1207. }
  1208. TEST_F(ServerTest, GetMethodDirMountTest) {
  1209. auto res = cli_.Get("/mount/dir/test.html");
  1210. ASSERT_TRUE(res != nullptr);
  1211. EXPECT_EQ(200, res->status);
  1212. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1213. EXPECT_EQ("test.html", res->body);
  1214. }
  1215. TEST_F(ServerTest, GetMethodDirMountTestWithDoubleDots) {
  1216. auto res = cli_.Get("/mount/dir/../dir/test.html");
  1217. ASSERT_TRUE(res != nullptr);
  1218. EXPECT_EQ(200, res->status);
  1219. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1220. EXPECT_EQ("test.html", res->body);
  1221. }
  1222. TEST_F(ServerTest, GetMethodInvalidMountPath) {
  1223. auto res = cli_.Get("/mount/dir/../test.html");
  1224. ASSERT_TRUE(res != nullptr);
  1225. EXPECT_EQ(404, res->status);
  1226. }
  1227. TEST_F(ServerTest, GetMethodOutOfBaseDirMount) {
  1228. auto res = cli_.Get("/mount/../www2/dir/test.html");
  1229. ASSERT_TRUE(res != nullptr);
  1230. EXPECT_EQ(404, res->status);
  1231. }
  1232. TEST_F(ServerTest, GetMethodOutOfBaseDirMount2) {
  1233. auto res = cli_.Get("/mount/dir/../../www2/dir/test.html");
  1234. ASSERT_TRUE(res != nullptr);
  1235. EXPECT_EQ(404, res->status);
  1236. }
  1237. TEST_F(ServerTest, PostMethod303) {
  1238. auto res = cli_.Post("/1", "body", "text/plain");
  1239. ASSERT_TRUE(res != nullptr);
  1240. EXPECT_EQ(303, res->status);
  1241. EXPECT_EQ("/2", res->get_header_value("Location"));
  1242. }
  1243. TEST_F(ServerTest, PostMethod303Redirect) {
  1244. cli_.set_follow_location(true);
  1245. auto res = cli_.Post("/1", "body", "text/plain");
  1246. ASSERT_TRUE(res != nullptr);
  1247. EXPECT_EQ(200, res->status);
  1248. EXPECT_EQ("redirected.", res->body);
  1249. }
  1250. TEST_F(ServerTest, UserDefinedMIMETypeMapping) {
  1251. auto res = cli_.Get("/dir/test.abcde");
  1252. ASSERT_TRUE(res != nullptr);
  1253. EXPECT_EQ(200, res->status);
  1254. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1255. EXPECT_EQ("abcde", res->body);
  1256. }
  1257. TEST_F(ServerTest, InvalidBaseDirMount) {
  1258. EXPECT_EQ(false, svr_.set_mount_point("invalid_mount_point", "./www3"));
  1259. }
  1260. TEST_F(ServerTest, EmptyRequest) {
  1261. auto res = cli_.Get("");
  1262. ASSERT_TRUE(res == nullptr);
  1263. }
  1264. TEST_F(ServerTest, LongRequest) {
  1265. std::string request;
  1266. for (size_t i = 0; i < 545; i++) {
  1267. request += "/TooLongRequest";
  1268. }
  1269. request += "OK";
  1270. auto res = cli_.Get(request.c_str());
  1271. ASSERT_TRUE(res != nullptr);
  1272. EXPECT_EQ(404, res->status);
  1273. }
  1274. TEST_F(ServerTest, TooLongRequest) {
  1275. std::string request;
  1276. for (size_t i = 0; i < 545; i++) {
  1277. request += "/TooLongRequest";
  1278. }
  1279. request += "_NG";
  1280. auto res = cli_.Get(request.c_str());
  1281. ASSERT_TRUE(res != nullptr);
  1282. EXPECT_EQ(414, res->status);
  1283. }
  1284. TEST_F(ServerTest, LongHeader) {
  1285. Request req;
  1286. req.method = "GET";
  1287. req.path = "/hi";
  1288. std::string host_and_port;
  1289. host_and_port += HOST;
  1290. host_and_port += ":";
  1291. host_and_port += std::to_string(PORT);
  1292. req.headers.emplace("Host", host_and_port.c_str());
  1293. req.headers.emplace("Accept", "*/*");
  1294. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1295. req.headers.emplace(
  1296. "Header-Name",
  1297. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1298. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1299. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1300. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1301. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1302. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1303. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1304. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1305. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1306. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1307. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1308. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1309. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1310. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1311. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1312. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1313. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1314. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1315. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1316. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1317. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1318. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1319. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1320. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1321. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1322. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1323. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1324. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1325. "@@@@@@@@@@@@@@@@");
  1326. auto res = std::make_shared<Response>();
  1327. auto ret = cli_.send(req, *res);
  1328. ASSERT_TRUE(ret);
  1329. EXPECT_EQ(200, res->status);
  1330. }
  1331. TEST_F(ServerTest, LongQueryValue) {
  1332. auto res = cli_.Get(LONG_QUERY_URL.c_str());
  1333. ASSERT_TRUE(res != nullptr);
  1334. EXPECT_EQ(414, res->status);
  1335. }
  1336. TEST_F(ServerTest, TooLongHeader) {
  1337. Request req;
  1338. req.method = "GET";
  1339. req.path = "/hi";
  1340. std::string host_and_port;
  1341. host_and_port += HOST;
  1342. host_and_port += ":";
  1343. host_and_port += std::to_string(PORT);
  1344. req.headers.emplace("Host", host_and_port.c_str());
  1345. req.headers.emplace("Accept", "*/*");
  1346. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1347. req.headers.emplace(
  1348. "Header-Name",
  1349. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1350. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1351. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1352. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1353. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1354. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1355. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1356. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1357. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1358. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1359. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1360. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1361. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1362. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1363. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1364. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1365. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1366. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1367. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1368. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1369. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1370. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1371. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1372. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1373. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1374. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1375. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1376. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1377. "@@@@@@@@@@@@@@@@@");
  1378. auto res = std::make_shared<Response>();
  1379. auto ret = cli_.send(req, *res);
  1380. ASSERT_TRUE(ret);
  1381. EXPECT_EQ(200, res->status);
  1382. }
  1383. TEST_F(ServerTest, PercentEncoding) {
  1384. auto res = cli_.Get("/e%6edwith%");
  1385. ASSERT_TRUE(res != nullptr);
  1386. EXPECT_EQ(200, res->status);
  1387. }
  1388. TEST_F(ServerTest, PercentEncodingUnicode) {
  1389. auto res = cli_.Get("/e%u006edwith%");
  1390. ASSERT_TRUE(res != nullptr);
  1391. EXPECT_EQ(200, res->status);
  1392. }
  1393. TEST_F(ServerTest, InvalidPercentEncoding) {
  1394. auto res = cli_.Get("/%endwith%");
  1395. ASSERT_TRUE(res != nullptr);
  1396. EXPECT_EQ(404, res->status);
  1397. }
  1398. TEST_F(ServerTest, InvalidPercentEncodingUnicode) {
  1399. auto res = cli_.Get("/%uendwith%");
  1400. ASSERT_TRUE(res != nullptr);
  1401. EXPECT_EQ(404, res->status);
  1402. }
  1403. TEST_F(ServerTest, EndWithPercentCharacterInQuery) {
  1404. auto res = cli_.Get("/hello?aaa=bbb%");
  1405. ASSERT_TRUE(res != nullptr);
  1406. EXPECT_EQ(404, res->status);
  1407. }
  1408. TEST_F(ServerTest, PlusSignEncoding) {
  1409. auto res = cli_.Get("/a+%2Bb?a %2bb=a %2Bb");
  1410. ASSERT_TRUE(res != nullptr);
  1411. EXPECT_EQ(200, res->status);
  1412. EXPECT_EQ("a +b", res->body);
  1413. }
  1414. TEST_F(ServerTest, MultipartFormData) {
  1415. MultipartFormDataItems items = {
  1416. {"text1", "text default", "", ""},
  1417. {"text2", "aωb", "", ""},
  1418. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  1419. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  1420. {"file3", "", "", "application/octet-stream"},
  1421. };
  1422. auto res = cli_.Post("/multipart", items);
  1423. ASSERT_TRUE(res != nullptr);
  1424. EXPECT_EQ(200, res->status);
  1425. }
  1426. TEST_F(ServerTest, CaseInsensitiveHeaderName) {
  1427. auto res = cli_.Get("/hi");
  1428. ASSERT_TRUE(res != nullptr);
  1429. EXPECT_EQ(200, res->status);
  1430. EXPECT_EQ("text/plain", res->get_header_value("content-type"));
  1431. EXPECT_EQ("Hello World!", res->body);
  1432. }
  1433. TEST_F(ServerTest, CaseInsensitiveTransferEncoding) {
  1434. Request req;
  1435. req.method = "POST";
  1436. req.path = "/chunked";
  1437. std::string host_and_port;
  1438. host_and_port += HOST;
  1439. host_and_port += ":";
  1440. host_and_port += std::to_string(PORT);
  1441. req.headers.emplace("Host", host_and_port.c_str());
  1442. req.headers.emplace("Accept", "*/*");
  1443. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1444. req.headers.emplace("Content-Type", "text/plain");
  1445. req.headers.emplace("Content-Length", "0");
  1446. req.headers.emplace(
  1447. "Transfer-Encoding",
  1448. "Chunked"); // Note, "Chunked" rather than typical "chunked".
  1449. // Client does not chunk, so make a chunked body manually.
  1450. req.body = "4\r\ndech\r\nf\r\nunked post body\r\n0\r\n\r\n";
  1451. auto res = std::make_shared<Response>();
  1452. auto ret = cli_.send(req, *res);
  1453. ASSERT_TRUE(ret);
  1454. EXPECT_EQ(200, res->status);
  1455. }
  1456. TEST_F(ServerTest, GetStreamed2) {
  1457. auto res = cli_.Get("/streamed", {{make_range_header({{2, 3}})}});
  1458. ASSERT_TRUE(res != nullptr);
  1459. EXPECT_EQ(206, res->status);
  1460. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1461. EXPECT_EQ(std::string("ab"), res->body);
  1462. }
  1463. TEST_F(ServerTest, GetStreamed) {
  1464. auto res = cli_.Get("/streamed");
  1465. ASSERT_TRUE(res != nullptr);
  1466. EXPECT_EQ(200, res->status);
  1467. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1468. EXPECT_EQ(std::string("aaabbb"), res->body);
  1469. }
  1470. TEST_F(ServerTest, GetStreamedWithRange1) {
  1471. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{3, 5}})}});
  1472. ASSERT_TRUE(res != nullptr);
  1473. EXPECT_EQ(206, res->status);
  1474. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  1475. EXPECT_EQ(true, res->has_header("Content-Range"));
  1476. EXPECT_EQ(std::string("def"), res->body);
  1477. }
  1478. TEST_F(ServerTest, GetStreamedWithRange2) {
  1479. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{1, -1}})}});
  1480. ASSERT_TRUE(res != nullptr);
  1481. EXPECT_EQ(206, res->status);
  1482. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1483. EXPECT_EQ(true, res->has_header("Content-Range"));
  1484. EXPECT_EQ(std::string("bcdefg"), res->body);
  1485. }
  1486. TEST_F(ServerTest, GetStreamedWithRangeMultipart) {
  1487. auto res =
  1488. cli_.Get("/streamed-with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  1489. ASSERT_TRUE(res != nullptr);
  1490. EXPECT_EQ(206, res->status);
  1491. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  1492. EXPECT_EQ(false, res->has_header("Content-Range"));
  1493. EXPECT_EQ(269, res->body.size());
  1494. }
  1495. TEST_F(ServerTest, GetStreamedEndless) {
  1496. uint64_t offset = 0;
  1497. auto res = cli_.Get("/streamed-cancel",
  1498. [&](const char * /*data*/, uint64_t data_length) {
  1499. if (offset < 100) {
  1500. offset += data_length;
  1501. return true;
  1502. }
  1503. return false;
  1504. });
  1505. ASSERT_TRUE(res == nullptr);
  1506. }
  1507. TEST_F(ServerTest, ClientStop) {
  1508. thread t = thread([&]() {
  1509. auto res = cli_.Get("/streamed-cancel",
  1510. [&](const char *, uint64_t) { return true; });
  1511. ASSERT_TRUE(res == nullptr);
  1512. });
  1513. std::this_thread::sleep_for(std::chrono::seconds(1));
  1514. cli_.stop();
  1515. t.join();
  1516. }
  1517. TEST_F(ServerTest, GetWithRange1) {
  1518. auto res = cli_.Get("/with-range", {{make_range_header({{3, 5}})}});
  1519. ASSERT_TRUE(res != nullptr);
  1520. EXPECT_EQ(206, res->status);
  1521. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  1522. EXPECT_EQ(true, res->has_header("Content-Range"));
  1523. EXPECT_EQ(std::string("def"), res->body);
  1524. }
  1525. TEST_F(ServerTest, GetWithRange2) {
  1526. auto res = cli_.Get("/with-range", {{make_range_header({{1, -1}})}});
  1527. ASSERT_TRUE(res != nullptr);
  1528. EXPECT_EQ(206, res->status);
  1529. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1530. EXPECT_EQ(true, res->has_header("Content-Range"));
  1531. EXPECT_EQ(std::string("bcdefg"), res->body);
  1532. }
  1533. TEST_F(ServerTest, GetWithRange3) {
  1534. auto res = cli_.Get("/with-range", {{make_range_header({{0, 0}})}});
  1535. ASSERT_TRUE(res != nullptr);
  1536. EXPECT_EQ(206, res->status);
  1537. EXPECT_EQ("1", res->get_header_value("Content-Length"));
  1538. EXPECT_EQ(true, res->has_header("Content-Range"));
  1539. EXPECT_EQ(std::string("a"), res->body);
  1540. }
  1541. TEST_F(ServerTest, GetWithRange4) {
  1542. auto res = cli_.Get("/with-range", {{make_range_header({{-1, 2}})}});
  1543. ASSERT_TRUE(res != nullptr);
  1544. EXPECT_EQ(206, res->status);
  1545. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1546. EXPECT_EQ(true, res->has_header("Content-Range"));
  1547. EXPECT_EQ(std::string("fg"), res->body);
  1548. }
  1549. TEST_F(ServerTest, GetWithRangeMultipart) {
  1550. auto res = cli_.Get("/with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  1551. ASSERT_TRUE(res != nullptr);
  1552. EXPECT_EQ(206, res->status);
  1553. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  1554. EXPECT_EQ(false, res->has_header("Content-Range"));
  1555. EXPECT_EQ(269, res->body.size());
  1556. }
  1557. TEST_F(ServerTest, GetStreamedChunked) {
  1558. auto res = cli_.Get("/streamed-chunked");
  1559. ASSERT_TRUE(res != nullptr);
  1560. EXPECT_EQ(200, res->status);
  1561. EXPECT_EQ(std::string("123456789"), res->body);
  1562. }
  1563. TEST_F(ServerTest, GetStreamedChunked2) {
  1564. auto res = cli_.Get("/streamed-chunked2");
  1565. ASSERT_TRUE(res != nullptr);
  1566. EXPECT_EQ(200, res->status);
  1567. EXPECT_EQ(std::string("123456789"), res->body);
  1568. }
  1569. TEST_F(ServerTest, LargeChunkedPost) {
  1570. Request req;
  1571. req.method = "POST";
  1572. req.path = "/large-chunked";
  1573. std::string host_and_port;
  1574. host_and_port += HOST;
  1575. host_and_port += ":";
  1576. host_and_port += std::to_string(PORT);
  1577. req.headers.emplace("Host", host_and_port.c_str());
  1578. req.headers.emplace("Accept", "*/*");
  1579. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1580. req.headers.emplace("Content-Type", "text/plain");
  1581. req.headers.emplace("Content-Length", "0");
  1582. req.headers.emplace("Transfer-Encoding", "chunked");
  1583. std::string long_string(30 * 1024u, 'a');
  1584. std::string chunk = "7800\r\n" + long_string + "\r\n";
  1585. // Attempt to make a large enough post to exceed OS buffers, to test that
  1586. // the server handles short reads if the full chunk data isn't available.
  1587. req.body = chunk + chunk + chunk + chunk + chunk + chunk + "0\r\n\r\n";
  1588. auto res = std::make_shared<Response>();
  1589. auto ret = cli_.send(req, *res);
  1590. ASSERT_TRUE(ret);
  1591. EXPECT_EQ(200, res->status);
  1592. }
  1593. TEST_F(ServerTest, GetMethodRemoteAddr) {
  1594. auto res = cli_.Get("/remote_addr");
  1595. ASSERT_TRUE(res != nullptr);
  1596. EXPECT_EQ(200, res->status);
  1597. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1598. EXPECT_TRUE(res->body == "::1" || res->body == "127.0.0.1");
  1599. }
  1600. TEST_F(ServerTest, HTTPResponseSplitting) {
  1601. auto res = cli_.Get("/http_response_splitting");
  1602. ASSERT_TRUE(res != nullptr);
  1603. EXPECT_EQ(200, res->status);
  1604. }
  1605. TEST_F(ServerTest, SlowRequest) {
  1606. request_threads_.push_back(
  1607. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1608. request_threads_.push_back(
  1609. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1610. request_threads_.push_back(
  1611. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1612. std::this_thread::sleep_for(std::chrono::milliseconds(100));
  1613. }
  1614. TEST_F(ServerTest, Put) {
  1615. auto res = cli_.Put("/put", "PUT", "text/plain");
  1616. ASSERT_TRUE(res != nullptr);
  1617. EXPECT_EQ(200, res->status);
  1618. EXPECT_EQ("PUT", res->body);
  1619. }
  1620. TEST_F(ServerTest, PutWithContentProvider) {
  1621. auto res = cli_.Put(
  1622. "/put", 3,
  1623. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1624. ASSERT_TRUE(sink.is_writable());
  1625. sink.write("PUT", 3);
  1626. },
  1627. "text/plain");
  1628. ASSERT_TRUE(res != nullptr);
  1629. EXPECT_EQ(200, res->status);
  1630. EXPECT_EQ("PUT", res->body);
  1631. }
  1632. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1633. TEST_F(ServerTest, PutWithContentProviderWithGzip) {
  1634. cli_.set_compress(true);
  1635. auto res = cli_.Put(
  1636. "/put", 3,
  1637. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1638. ASSERT_TRUE(sink.is_writable());
  1639. sink.write("PUT", 3);
  1640. },
  1641. "text/plain");
  1642. ASSERT_TRUE(res != nullptr);
  1643. EXPECT_EQ(200, res->status);
  1644. EXPECT_EQ("PUT", res->body);
  1645. }
  1646. TEST_F(ServerTest, PutLargeFileWithGzip) {
  1647. cli_.set_compress(true);
  1648. auto res = cli_.Put("/put-large", LARGE_DATA, "text/plain");
  1649. ASSERT_TRUE(res != nullptr);
  1650. EXPECT_EQ(200, res->status);
  1651. EXPECT_EQ(LARGE_DATA, res->body);
  1652. }
  1653. TEST_F(ServerTest, PutContentWithDeflate) {
  1654. cli_.set_compress(false);
  1655. httplib::Headers headers;
  1656. headers.emplace("Content-Encoding", "deflate");
  1657. // PUT in deflate format:
  1658. auto res = cli_.Put("/put", headers,
  1659. "\170\234\013\010\015\001\0\001\361\0\372", "text/plain");
  1660. ASSERT_TRUE(res != nullptr);
  1661. EXPECT_EQ(200, res->status);
  1662. EXPECT_EQ("PUT", res->body);
  1663. }
  1664. #endif
  1665. TEST_F(ServerTest, Patch) {
  1666. auto res = cli_.Patch("/patch", "PATCH", "text/plain");
  1667. ASSERT_TRUE(res != nullptr);
  1668. EXPECT_EQ(200, res->status);
  1669. EXPECT_EQ("PATCH", res->body);
  1670. }
  1671. TEST_F(ServerTest, Delete) {
  1672. auto res = cli_.Delete("/delete");
  1673. ASSERT_TRUE(res != nullptr);
  1674. EXPECT_EQ(200, res->status);
  1675. EXPECT_EQ("DELETE", res->body);
  1676. }
  1677. TEST_F(ServerTest, DeleteContentReceiver) {
  1678. auto res = cli_.Delete("/delete-body", "content", "text/plain");
  1679. ASSERT_TRUE(res != nullptr);
  1680. EXPECT_EQ(200, res->status);
  1681. EXPECT_EQ("content", res->body);
  1682. }
  1683. TEST_F(ServerTest, Options) {
  1684. auto res = cli_.Options("*");
  1685. ASSERT_TRUE(res != nullptr);
  1686. EXPECT_EQ(200, res->status);
  1687. EXPECT_EQ("GET, POST, HEAD, OPTIONS", res->get_header_value("Allow"));
  1688. EXPECT_TRUE(res->body.empty());
  1689. }
  1690. TEST_F(ServerTest, URL) {
  1691. auto res = cli_.Get("/request-target?aaa=bbb&ccc=ddd");
  1692. ASSERT_TRUE(res != nullptr);
  1693. EXPECT_EQ(200, res->status);
  1694. }
  1695. TEST_F(ServerTest, ArrayParam) {
  1696. auto res = cli_.Get("/array-param?array=value1&array=value2&array=value3");
  1697. ASSERT_TRUE(res != nullptr);
  1698. EXPECT_EQ(200, res->status);
  1699. }
  1700. TEST_F(ServerTest, NoMultipleHeaders) {
  1701. Headers headers = {{"Content-Length", "5"}};
  1702. auto res = cli_.Post("/validate-no-multiple-headers", headers, "hello",
  1703. "text/plain");
  1704. ASSERT_TRUE(res != nullptr);
  1705. EXPECT_EQ(200, res->status);
  1706. }
  1707. TEST_F(ServerTest, PostContentReceiver) {
  1708. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  1709. ASSERT_TRUE(res != nullptr);
  1710. ASSERT_EQ(200, res->status);
  1711. ASSERT_EQ("content", res->body);
  1712. }
  1713. TEST_F(ServerTest, PostMulitpartFilsContentReceiver) {
  1714. MultipartFormDataItems items = {
  1715. {"text1", "text default", "", ""},
  1716. {"text2", "aωb", "", ""},
  1717. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  1718. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  1719. {"file3", "", "", "application/octet-stream"},
  1720. };
  1721. auto res = cli_.Post("/content_receiver", items);
  1722. ASSERT_TRUE(res != nullptr);
  1723. EXPECT_EQ(200, res->status);
  1724. }
  1725. TEST_F(ServerTest, PostContentReceiverGzip) {
  1726. cli_.set_compress(true);
  1727. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  1728. ASSERT_TRUE(res != nullptr);
  1729. ASSERT_EQ(200, res->status);
  1730. ASSERT_EQ("content", res->body);
  1731. }
  1732. TEST_F(ServerTest, PutContentReceiver) {
  1733. auto res = cli_.Put("/content_receiver", "content", "text/plain");
  1734. ASSERT_TRUE(res != nullptr);
  1735. ASSERT_EQ(200, res->status);
  1736. ASSERT_EQ("content", res->body);
  1737. }
  1738. TEST_F(ServerTest, PatchContentReceiver) {
  1739. auto res = cli_.Patch("/content_receiver", "content", "text/plain");
  1740. ASSERT_TRUE(res != nullptr);
  1741. ASSERT_EQ(200, res->status);
  1742. ASSERT_EQ("content", res->body);
  1743. }
  1744. TEST_F(ServerTest, PostQueryStringAndBody) {
  1745. auto res =
  1746. cli_.Post("/query-string-and-body?key=value", "content", "text/plain");
  1747. ASSERT_TRUE(res != nullptr);
  1748. ASSERT_EQ(200, res->status);
  1749. }
  1750. TEST_F(ServerTest, HTTP2Magic) {
  1751. Request req;
  1752. req.method = "PRI";
  1753. req.path = "*";
  1754. req.body = "SM";
  1755. auto res = std::make_shared<Response>();
  1756. auto ret = cli_.send(req, *res);
  1757. ASSERT_TRUE(ret);
  1758. EXPECT_EQ(400, res->status);
  1759. }
  1760. TEST_F(ServerTest, KeepAlive) {
  1761. cli_.set_keep_alive_max_count(4);
  1762. std::vector<Request> requests;
  1763. Get(requests, "/hi");
  1764. Get(requests, "/hi");
  1765. Get(requests, "/hi");
  1766. Get(requests, "/not-exist");
  1767. Post(requests, "/empty", "", "text/plain");
  1768. std::vector<Response> responses;
  1769. auto ret = cli_.send(requests, responses);
  1770. ASSERT_TRUE(ret == true);
  1771. ASSERT_TRUE(requests.size() == responses.size());
  1772. for (size_t i = 0; i < 3; i++) {
  1773. auto &res = responses[i];
  1774. EXPECT_EQ(200, res.status);
  1775. EXPECT_EQ("text/plain", res.get_header_value("Content-Type"));
  1776. EXPECT_EQ("Hello World!", res.body);
  1777. }
  1778. {
  1779. auto &res = responses[3];
  1780. EXPECT_EQ(404, res.status);
  1781. }
  1782. {
  1783. auto &res = responses[4];
  1784. EXPECT_EQ(200, res.status);
  1785. EXPECT_EQ("text/plain", res.get_header_value("Content-Type"));
  1786. EXPECT_EQ("empty", res.body);
  1787. }
  1788. }
  1789. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1790. TEST_F(ServerTest, Gzip) {
  1791. Headers headers;
  1792. headers.emplace("Accept-Encoding", "gzip, deflate");
  1793. auto res = cli_.Get("/gzip", headers);
  1794. ASSERT_TRUE(res != nullptr);
  1795. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  1796. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1797. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  1798. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1799. "7890123456789012345678901234567890",
  1800. res->body);
  1801. EXPECT_EQ(200, res->status);
  1802. }
  1803. TEST_F(ServerTest, GzipWithoutAcceptEncoding) {
  1804. Headers headers;
  1805. auto res = cli_.Get("/gzip", headers);
  1806. ASSERT_TRUE(res != nullptr);
  1807. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  1808. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1809. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1810. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1811. "7890123456789012345678901234567890",
  1812. res->body);
  1813. EXPECT_EQ(200, res->status);
  1814. }
  1815. TEST_F(ServerTest, GzipWithContentReceiver) {
  1816. Headers headers;
  1817. headers.emplace("Accept-Encoding", "gzip, deflate");
  1818. std::string body;
  1819. auto res =
  1820. cli_.Get("/gzip", headers, [&](const char *data, uint64_t data_length) {
  1821. EXPECT_EQ(data_length, 100);
  1822. body.append(data, data_length);
  1823. return true;
  1824. });
  1825. ASSERT_TRUE(res != nullptr);
  1826. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  1827. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1828. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  1829. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1830. "7890123456789012345678901234567890",
  1831. body);
  1832. EXPECT_EQ(200, res->status);
  1833. }
  1834. TEST_F(ServerTest, GzipWithContentReceiverWithoutAcceptEncoding) {
  1835. Headers headers;
  1836. std::string body;
  1837. auto res =
  1838. cli_.Get("/gzip", headers, [&](const char *data, uint64_t data_length) {
  1839. EXPECT_EQ(data_length, 100);
  1840. body.append(data, data_length);
  1841. return true;
  1842. });
  1843. ASSERT_TRUE(res != nullptr);
  1844. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  1845. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1846. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1847. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1848. "7890123456789012345678901234567890",
  1849. body);
  1850. EXPECT_EQ(200, res->status);
  1851. }
  1852. TEST_F(ServerTest, NoGzip) {
  1853. Headers headers;
  1854. headers.emplace("Accept-Encoding", "gzip, deflate");
  1855. auto res = cli_.Get("/nogzip", headers);
  1856. ASSERT_TRUE(res != nullptr);
  1857. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  1858. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  1859. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1860. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1861. "7890123456789012345678901234567890",
  1862. res->body);
  1863. EXPECT_EQ(200, res->status);
  1864. }
  1865. TEST_F(ServerTest, NoGzipWithContentReceiver) {
  1866. Headers headers;
  1867. headers.emplace("Accept-Encoding", "gzip, deflate");
  1868. std::string body;
  1869. auto res =
  1870. cli_.Get("/nogzip", headers, [&](const char *data, uint64_t data_length) {
  1871. EXPECT_EQ(data_length, 100);
  1872. body.append(data, data_length);
  1873. return true;
  1874. });
  1875. ASSERT_TRUE(res != nullptr);
  1876. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  1877. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  1878. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1879. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1880. "7890123456789012345678901234567890",
  1881. body);
  1882. EXPECT_EQ(200, res->status);
  1883. }
  1884. TEST_F(ServerTest, MultipartFormDataGzip) {
  1885. MultipartFormDataItems items = {
  1886. {"key1", "test", "", ""},
  1887. {"key2", "--abcdefg123", "", ""},
  1888. };
  1889. cli_.set_compress(true);
  1890. auto res = cli_.Post("/gzipmultipart", items);
  1891. ASSERT_TRUE(res != nullptr);
  1892. EXPECT_EQ(200, res->status);
  1893. }
  1894. #endif
  1895. // Sends a raw request to a server listening at HOST:PORT.
  1896. static bool send_request(time_t read_timeout_sec, const std::string &req,
  1897. std::string *resp = nullptr) {
  1898. auto client_sock = detail::create_client_socket(HOST, PORT, /*timeout_sec=*/5,
  1899. std::string());
  1900. if (client_sock == INVALID_SOCKET) { return false; }
  1901. return detail::process_and_close_socket(
  1902. true, client_sock, 1, read_timeout_sec, 0,
  1903. [&](Stream &strm, bool /*last_connection*/, bool &
  1904. /*connection_close*/) -> bool {
  1905. if (req.size() !=
  1906. static_cast<size_t>(strm.write(req.data(), req.size()))) {
  1907. return false;
  1908. }
  1909. char buf[512];
  1910. detail::stream_line_reader line_reader(strm, buf, sizeof(buf));
  1911. while (line_reader.getline()) {
  1912. if (resp) { *resp += line_reader.ptr(); }
  1913. }
  1914. return true;
  1915. });
  1916. }
  1917. TEST(ServerRequestParsingTest, TrimWhitespaceFromHeaderValues) {
  1918. Server svr;
  1919. std::string header_value;
  1920. svr.Get("/validate-ws-in-headers", [&](const Request &req, Response &res) {
  1921. header_value = req.get_header_value("foo");
  1922. res.set_content("ok", "text/plain");
  1923. });
  1924. thread t = thread([&] { svr.listen(HOST, PORT); });
  1925. while (!svr.is_running()) {
  1926. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1927. }
  1928. // Only space and horizontal tab are whitespace. Make sure other whitespace-
  1929. // like characters are not treated the same - use vertical tab and escape.
  1930. const std::string req = "GET /validate-ws-in-headers HTTP/1.1\r\n"
  1931. "foo: \t \v bar \e\t \r\n"
  1932. "Connection: close\r\n"
  1933. "\r\n";
  1934. ASSERT_TRUE(send_request(5, req));
  1935. svr.stop();
  1936. t.join();
  1937. EXPECT_EQ(header_value, "\v bar \e");
  1938. }
  1939. // Sends a raw request and verifies that there isn't a crash or exception.
  1940. static void test_raw_request(const std::string &req,
  1941. std::string *out = nullptr) {
  1942. Server svr;
  1943. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  1944. res.set_content("ok", "text/plain");
  1945. });
  1946. svr.Put("/put_hi", [&](const Request & /*req*/, Response &res) {
  1947. res.set_content("ok", "text/plain");
  1948. });
  1949. // Server read timeout must be longer than the client read timeout for the
  1950. // bug to reproduce, probably to force the server to process a request
  1951. // without a trailing blank line.
  1952. const time_t client_read_timeout_sec = 1;
  1953. svr.set_read_timeout(client_read_timeout_sec + 1, 0);
  1954. bool listen_thread_ok = false;
  1955. thread t = thread([&] { listen_thread_ok = svr.listen(HOST, PORT); });
  1956. while (!svr.is_running()) {
  1957. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1958. }
  1959. ASSERT_TRUE(send_request(client_read_timeout_sec, req, out));
  1960. svr.stop();
  1961. t.join();
  1962. EXPECT_TRUE(listen_thread_ok);
  1963. }
  1964. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity) {
  1965. // A certain header line causes an exception if the header property is parsed
  1966. // naively with a single regex. This occurs with libc++ but not libstdc++.
  1967. test_raw_request(
  1968. "GET /hi HTTP/1.1\r\n"
  1969. " : "
  1970. " "
  1971. " ");
  1972. }
  1973. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity2) {
  1974. // A certain header line causes an exception if the header property *name* is
  1975. // parsed with a regular expression starting with "(.+?):" - this is a non-
  1976. // greedy matcher and requires backtracking when there are a lot of ":"
  1977. // characters.
  1978. // This occurs with libc++ but not libstdc++.
  1979. test_raw_request(
  1980. "GET /hi HTTP/1.1\r\n"
  1981. ":-:::::::::::::::::::::::::::-::::::::::::::::::::::::@-&&&&&&&&&&&"
  1982. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  1983. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-:::::"
  1984. "::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::::::::::::::::::::"
  1985. ":::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::"
  1986. "::::::::-:::::::::::::::::@-&&&&&&&--:::::::-::::::::::::::::::::::"
  1987. ":::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::"
  1988. "::::::::::-:::::::::::::::::@-&&&&&::::::::::::-:::::::::::::::::@-"
  1989. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  1990. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  1991. "::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::@-&&"
  1992. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  1993. "::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&"
  1994. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  1995. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&"
  1996. "&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&"
  1997. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  1998. "-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::"
  1999. "::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::"
  2000. ":::::@-&&&&&&&&&&&::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::"
  2001. ":::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::"
  2002. "::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-"
  2003. ":::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&---&&:&"
  2004. "&&.0------------:-:::::::::::::::::::::::::::::-:::::::::::::::::@-"
  2005. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  2006. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  2007. "::::@-&&&&&&&&&&&---&&:&&&.0------------O--------\rH PUTHTTP/1.1\r\n"
  2008. "&&&%%%");
  2009. }
  2010. TEST(ServerRequestParsingTest, ExcessiveWhitespaceInUnparseableHeaderLine) {
  2011. // Make sure this doesn't crash the server.
  2012. // In a previous version of the header line regex, the "\r" rendered the line
  2013. // unparseable and the regex engine repeatedly backtracked, trying to look for
  2014. // a new position where the leading white space ended and the field value
  2015. // began.
  2016. // The crash occurs with libc++ but not libstdc++.
  2017. test_raw_request("GET /hi HTTP/1.1\r\n"
  2018. "a:" +
  2019. std::string(2000, ' ') + '\r' + std::string(20, 'z') +
  2020. "\r\n"
  2021. "\r\n");
  2022. }
  2023. TEST(ServerRequestParsingTest, InvalidFirstChunkLengthInRequest) {
  2024. std::string out;
  2025. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2026. "Content-Type: text/plain\r\n"
  2027. "Transfer-Encoding: chunked\r\n"
  2028. "\r\n"
  2029. "nothex\r\n",
  2030. &out);
  2031. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2032. }
  2033. TEST(ServerRequestParsingTest, InvalidSecondChunkLengthInRequest) {
  2034. std::string out;
  2035. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2036. "Content-Type: text/plain\r\n"
  2037. "Transfer-Encoding: chunked\r\n"
  2038. "\r\n"
  2039. "3\r\n"
  2040. "xyz\r\n"
  2041. "NaN\r\n",
  2042. &out);
  2043. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2044. }
  2045. TEST(ServerRequestParsingTest, ChunkLengthTooHighInRequest) {
  2046. std::string out;
  2047. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2048. "Content-Type: text/plain\r\n"
  2049. "Transfer-Encoding: chunked\r\n"
  2050. "\r\n"
  2051. // Length is too large for 64 bits.
  2052. "1ffffffffffffffff\r\n"
  2053. "xyz\r\n",
  2054. &out);
  2055. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2056. }
  2057. TEST(ServerRequestParsingTest, InvalidHeaderTextWithExtraCR) {
  2058. test_raw_request("GET /hi HTTP/1.1\r\n"
  2059. "Content-Type: text/plain\r\n\r");
  2060. }
  2061. TEST(ServerStopTest, StopServerWithChunkedTransmission) {
  2062. Server svr;
  2063. svr.Get("/events", [](const Request & /*req*/, Response &res) {
  2064. res.set_header("Content-Type", "text/event-stream");
  2065. res.set_header("Cache-Control", "no-cache");
  2066. res.set_chunked_content_provider([](size_t offset, const DataSink &sink) {
  2067. char buffer[27];
  2068. auto size = static_cast<size_t>(sprintf(buffer, "data:%ld\n\n", offset));
  2069. sink.write(buffer, size);
  2070. std::this_thread::sleep_for(std::chrono::seconds(1));
  2071. });
  2072. });
  2073. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2074. while (!svr.is_running()) {
  2075. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2076. }
  2077. Client client(HOST, PORT);
  2078. const Headers headers = {{"Accept", "text/event-stream"},
  2079. {"Connection", "Keep-Alive"}};
  2080. auto get_thread = std::thread([&client, &headers]() {
  2081. std::shared_ptr<Response> res = client.Get(
  2082. "/events", headers,
  2083. [](const char * /*data*/, size_t /*len*/) -> bool { return true; });
  2084. });
  2085. // Give GET time to get a few messages.
  2086. std::this_thread::sleep_for(std::chrono::seconds(2));
  2087. svr.stop();
  2088. listen_thread.join();
  2089. get_thread.join();
  2090. ASSERT_FALSE(svr.is_running());
  2091. }
  2092. TEST(MountTest, Unmount) {
  2093. Server svr;
  2094. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2095. while (!svr.is_running()) {
  2096. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2097. }
  2098. // Give GET time to get a few messages.
  2099. std::this_thread::sleep_for(std::chrono::seconds(1));
  2100. Client cli("localhost", PORT);
  2101. svr.set_mount_point("/mount2", "./www2");
  2102. auto res = cli.Get("/");
  2103. ASSERT_TRUE(res != nullptr);
  2104. EXPECT_EQ(404, res->status);
  2105. res = cli.Get("/mount2/dir/test.html");
  2106. ASSERT_TRUE(res != nullptr);
  2107. EXPECT_EQ(200, res->status);
  2108. svr.set_mount_point("/", "./www");
  2109. res = cli.Get("/dir/");
  2110. ASSERT_TRUE(res != nullptr);
  2111. EXPECT_EQ(200, res->status);
  2112. svr.remove_mount_point("/");
  2113. res = cli.Get("/dir/");
  2114. ASSERT_TRUE(res != nullptr);
  2115. EXPECT_EQ(404, res->status);
  2116. svr.remove_mount_point("/mount2");
  2117. res = cli.Get("/mount2/dir/test.html");
  2118. ASSERT_TRUE(res != nullptr);
  2119. EXPECT_EQ(404, res->status);
  2120. svr.stop();
  2121. listen_thread.join();
  2122. ASSERT_FALSE(svr.is_running());
  2123. }
  2124. TEST(ExceptionTest, ThrowExceptionInHandler) {
  2125. Server svr;
  2126. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  2127. throw std::runtime_error("exception...");
  2128. res.set_content("Hello World!", "text/plain");
  2129. });
  2130. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2131. while (!svr.is_running()) {
  2132. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2133. }
  2134. // Give GET time to get a few messages.
  2135. std::this_thread::sleep_for(std::chrono::seconds(1));
  2136. Client cli("localhost", PORT);
  2137. auto res = cli.Get("/hi");
  2138. ASSERT_TRUE(res != nullptr);
  2139. EXPECT_EQ(500, res->status);
  2140. ASSERT_FALSE(res->has_header("EXCEPTION_WHAT"));
  2141. svr.stop();
  2142. listen_thread.join();
  2143. ASSERT_FALSE(svr.is_running());
  2144. }
  2145. class ServerTestWithAI_PASSIVE : public ::testing::Test {
  2146. protected:
  2147. ServerTestWithAI_PASSIVE()
  2148. : cli_(HOST, PORT)
  2149. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2150. ,
  2151. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  2152. #endif
  2153. {
  2154. }
  2155. virtual void SetUp() {
  2156. svr_.Get("/hi", [&](const Request & /*req*/, Response &res) {
  2157. res.set_content("Hello World!", "text/plain");
  2158. });
  2159. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(nullptr, PORT, AI_PASSIVE)); });
  2160. while (!svr_.is_running()) {
  2161. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2162. }
  2163. }
  2164. virtual void TearDown() {
  2165. svr_.stop();
  2166. t_.join();
  2167. }
  2168. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2169. SSLClient cli_;
  2170. SSLServer svr_;
  2171. #else
  2172. Client cli_;
  2173. Server svr_;
  2174. #endif
  2175. thread t_;
  2176. };
  2177. TEST_F(ServerTestWithAI_PASSIVE, GetMethod200) {
  2178. auto res = cli_.Get("/hi");
  2179. ASSERT_TRUE(res != nullptr);
  2180. EXPECT_EQ(200, res->status);
  2181. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2182. EXPECT_EQ("Hello World!", res->body);
  2183. }
  2184. class ServerUpDownTest : public ::testing::Test {
  2185. protected:
  2186. ServerUpDownTest() : cli_(HOST, PORT) {}
  2187. virtual void SetUp() {
  2188. t_ = thread([&]() {
  2189. svr_.bind_to_any_port(HOST);
  2190. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  2191. ASSERT_TRUE(svr_.listen_after_bind());
  2192. });
  2193. while (!svr_.is_running()) {
  2194. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2195. }
  2196. }
  2197. virtual void TearDown() {
  2198. svr_.stop();
  2199. t_.join();
  2200. }
  2201. Client cli_;
  2202. Server svr_;
  2203. thread t_;
  2204. };
  2205. TEST_F(ServerUpDownTest, QuickStartStop) {
  2206. // Should not crash, especially when run with
  2207. // --gtest_filter=ServerUpDownTest.QuickStartStop --gtest_repeat=1000
  2208. }
  2209. class PayloadMaxLengthTest : public ::testing::Test {
  2210. protected:
  2211. PayloadMaxLengthTest()
  2212. : cli_(HOST, PORT)
  2213. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2214. ,
  2215. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  2216. #endif
  2217. {
  2218. }
  2219. virtual void SetUp() {
  2220. svr_.set_payload_max_length(8);
  2221. svr_.Post("/test", [&](const Request & /*req*/, Response &res) {
  2222. res.set_content("test", "text/plain");
  2223. });
  2224. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  2225. while (!svr_.is_running()) {
  2226. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2227. }
  2228. }
  2229. virtual void TearDown() {
  2230. svr_.stop();
  2231. t_.join();
  2232. }
  2233. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2234. SSLClient cli_;
  2235. SSLServer svr_;
  2236. #else
  2237. Client cli_;
  2238. Server svr_;
  2239. #endif
  2240. thread t_;
  2241. };
  2242. TEST_F(PayloadMaxLengthTest, ExceedLimit) {
  2243. auto res = cli_.Post("/test", "123456789", "text/plain");
  2244. ASSERT_TRUE(res != nullptr);
  2245. EXPECT_EQ(413, res->status);
  2246. res = cli_.Post("/test", "12345678", "text/plain");
  2247. ASSERT_TRUE(res != nullptr);
  2248. EXPECT_EQ(200, res->status);
  2249. }
  2250. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2251. TEST(SSLClientTest, ServerNameIndication) {
  2252. SSLClient cli("httpbin.org", 443);
  2253. auto res = cli.Get("/get");
  2254. ASSERT_TRUE(res != nullptr);
  2255. ASSERT_EQ(200, res->status);
  2256. }
  2257. TEST(SSLClientTest, ServerCertificateVerification) {
  2258. SSLClient cli("google.com");
  2259. auto res = cli.Get("/");
  2260. ASSERT_TRUE(res != nullptr);
  2261. ASSERT_EQ(301, res->status);
  2262. cli.enable_server_certificate_verification(true);
  2263. res = cli.Get("/");
  2264. ASSERT_TRUE(res == nullptr);
  2265. cli.set_ca_cert_path(CA_CERT_FILE);
  2266. res = cli.Get("/");
  2267. ASSERT_TRUE(res != nullptr);
  2268. ASSERT_EQ(301, res->status);
  2269. }
  2270. TEST(SSLClientTest, WildcardHostNameMatch) {
  2271. SSLClient cli("www.youtube.com");
  2272. cli.set_ca_cert_path(CA_CERT_FILE);
  2273. cli.enable_server_certificate_verification(true);
  2274. auto res = cli.Get("/");
  2275. ASSERT_TRUE(res != nullptr);
  2276. ASSERT_EQ(200, res->status);
  2277. }
  2278. TEST(SSLClientServerTest, ClientCertPresent) {
  2279. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  2280. CLIENT_CA_CERT_DIR);
  2281. ASSERT_TRUE(svr.is_valid());
  2282. svr.Get("/test", [&](const Request &req, Response &res) {
  2283. res.set_content("test", "text/plain");
  2284. svr.stop();
  2285. ASSERT_TRUE(true);
  2286. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  2287. ASSERT_TRUE(peer_cert != nullptr);
  2288. auto subject_name = X509_get_subject_name(peer_cert);
  2289. ASSERT_TRUE(subject_name != nullptr);
  2290. std::string common_name;
  2291. {
  2292. char name[BUFSIZ];
  2293. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  2294. name, sizeof(name));
  2295. common_name.assign(name, static_cast<size_t>(name_len));
  2296. }
  2297. EXPECT_EQ("Common Name", common_name);
  2298. X509_free(peer_cert);
  2299. });
  2300. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2301. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2302. httplib::SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  2303. auto res = cli.Get("/test");
  2304. cli.set_timeout_sec(30);
  2305. ASSERT_TRUE(res != nullptr);
  2306. ASSERT_EQ(200, res->status);
  2307. t.join();
  2308. }
  2309. TEST(SSLClientServerTest, MemoryClientCertPresent) {
  2310. X509 *server_cert;
  2311. EVP_PKEY *server_private_key;
  2312. X509_STORE *client_ca_cert_store;
  2313. X509 *client_cert;
  2314. EVP_PKEY *client_private_key;
  2315. FILE *f = fopen(SERVER_CERT_FILE, "r+");
  2316. server_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2317. fclose(f);
  2318. f = fopen(SERVER_PRIVATE_KEY_FILE, "r+");
  2319. server_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  2320. fclose(f);
  2321. f = fopen(CLIENT_CA_CERT_FILE, "r+");
  2322. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2323. client_ca_cert_store = X509_STORE_new();
  2324. X509_STORE_add_cert(client_ca_cert_store, client_cert);
  2325. X509_free(client_cert);
  2326. fclose(f);
  2327. f = fopen(CLIENT_CERT_FILE, "r+");
  2328. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2329. fclose(f);
  2330. f = fopen(CLIENT_PRIVATE_KEY_FILE, "r+");
  2331. client_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  2332. fclose(f);
  2333. SSLServer svr(server_cert, server_private_key, client_ca_cert_store);
  2334. ASSERT_TRUE(svr.is_valid());
  2335. svr.Get("/test", [&](const Request &req, Response &res) {
  2336. res.set_content("test", "text/plain");
  2337. svr.stop();
  2338. ASSERT_TRUE(true);
  2339. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  2340. ASSERT_TRUE(peer_cert != nullptr);
  2341. auto subject_name = X509_get_subject_name(peer_cert);
  2342. ASSERT_TRUE(subject_name != nullptr);
  2343. std::string common_name;
  2344. {
  2345. char name[BUFSIZ];
  2346. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  2347. name, sizeof(name));
  2348. common_name.assign(name, static_cast<size_t>(name_len));
  2349. }
  2350. EXPECT_EQ("Common Name", common_name);
  2351. X509_free(peer_cert);
  2352. });
  2353. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2354. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2355. httplib::SSLClient cli(HOST, PORT, client_cert, client_private_key);
  2356. auto res = cli.Get("/test");
  2357. cli.set_timeout_sec(30);
  2358. ASSERT_TRUE(res != nullptr);
  2359. ASSERT_EQ(200, res->status);
  2360. X509_free(server_cert);
  2361. EVP_PKEY_free(server_private_key);
  2362. X509_free(client_cert);
  2363. EVP_PKEY_free(client_private_key);
  2364. t.join();
  2365. }
  2366. TEST(SSLClientServerTest, ClientCertMissing) {
  2367. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  2368. CLIENT_CA_CERT_DIR);
  2369. ASSERT_TRUE(svr.is_valid());
  2370. svr.Get("/test", [&](const Request &, Response &) { ASSERT_TRUE(false); });
  2371. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2372. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2373. httplib::SSLClient cli(HOST, PORT);
  2374. auto res = cli.Get("/test");
  2375. cli.set_timeout_sec(30);
  2376. ASSERT_TRUE(res == nullptr);
  2377. svr.stop();
  2378. t.join();
  2379. }
  2380. TEST(SSLClientServerTest, TrustDirOptional) {
  2381. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE);
  2382. ASSERT_TRUE(svr.is_valid());
  2383. svr.Get("/test", [&](const Request &, Response &res) {
  2384. res.set_content("test", "text/plain");
  2385. svr.stop();
  2386. });
  2387. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2388. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2389. httplib::SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  2390. auto res = cli.Get("/test");
  2391. cli.set_timeout_sec(30);
  2392. ASSERT_TRUE(res != nullptr);
  2393. ASSERT_EQ(200, res->status);
  2394. t.join();
  2395. }
  2396. /* Cannot test this case as there is no external access to SSL object to check
  2397. SSL_get_peer_certificate() == NULL TEST(SSLClientServerTest,
  2398. ClientCAPathRequired) { SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE,
  2399. nullptr, CLIENT_CA_CERT_DIR);
  2400. }
  2401. */
  2402. #endif
  2403. #ifdef _WIN32
  2404. TEST(CleanupTest, WSACleanup) {
  2405. int ret = WSACleanup();
  2406. ASSERT_EQ(0, ret);
  2407. }
  2408. #endif