test.cc 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871
  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, BindDualStack) {
  597. Server svr;
  598. svr.Get("/1", [&](const Request & /*req*/, Response &res) {
  599. res.set_content("Hello World!", "text/plain");
  600. });
  601. auto thread = std::thread([&]() { svr.listen("::", PORT); });
  602. // Give GET time to get a few messages.
  603. std::this_thread::sleep_for(std::chrono::seconds(1));
  604. {
  605. Client cli("127.0.0.1", PORT);
  606. auto res = cli.Get("/1");
  607. ASSERT_TRUE(res != nullptr);
  608. EXPECT_EQ(200, res->status);
  609. EXPECT_EQ(res->body, "Hello World!");
  610. }
  611. {
  612. Client cli("::1", PORT);
  613. auto res = cli.Get("/1");
  614. ASSERT_TRUE(res != nullptr);
  615. EXPECT_EQ(200, res->status);
  616. EXPECT_EQ(res->body, "Hello World!");
  617. }
  618. svr.stop();
  619. thread.join();
  620. ASSERT_FALSE(svr.is_running());
  621. }
  622. TEST(Server, BindAndListenSeparately) {
  623. Server svr;
  624. int port = svr.bind_to_any_port("0.0.0.0");
  625. ASSERT_TRUE(svr.is_valid());
  626. ASSERT_TRUE(port > 0);
  627. svr.stop();
  628. }
  629. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  630. TEST(SSLServer, BindAndListenSeparately) {
  631. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  632. CLIENT_CA_CERT_DIR);
  633. int port = svr.bind_to_any_port("0.0.0.0");
  634. ASSERT_TRUE(svr.is_valid());
  635. ASSERT_TRUE(port > 0);
  636. svr.stop();
  637. }
  638. #endif
  639. class ServerTest : public ::testing::Test {
  640. protected:
  641. ServerTest()
  642. : cli_(HOST, PORT)
  643. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  644. ,
  645. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  646. #endif
  647. {
  648. }
  649. virtual void SetUp() {
  650. svr_.set_mount_point("/", "./www");
  651. svr_.set_mount_point("/mount", "./www2");
  652. svr_.set_file_extension_and_mimetype_mapping("abcde", "text/abcde");
  653. svr_.Get("/hi",
  654. [&](const Request & /*req*/, Response &res) {
  655. res.set_content("Hello World!", "text/plain");
  656. })
  657. .Get("/http_response_splitting",
  658. [&](const Request & /*req*/, Response &res) {
  659. res.set_header("a", "1\r\nSet-Cookie: a=1");
  660. EXPECT_EQ(0, res.headers.size());
  661. EXPECT_FALSE(res.has_header("a"));
  662. res.set_header("a", "1\nSet-Cookie: a=1");
  663. EXPECT_EQ(0, res.headers.size());
  664. EXPECT_FALSE(res.has_header("a"));
  665. res.set_header("a", "1\rSet-Cookie: a=1");
  666. EXPECT_EQ(0, res.headers.size());
  667. EXPECT_FALSE(res.has_header("a"));
  668. res.set_header("a\r\nb", "0");
  669. EXPECT_EQ(0, res.headers.size());
  670. EXPECT_FALSE(res.has_header("a"));
  671. res.set_header("a\rb", "0");
  672. EXPECT_EQ(0, res.headers.size());
  673. EXPECT_FALSE(res.has_header("a"));
  674. res.set_header("a\nb", "0");
  675. EXPECT_EQ(0, res.headers.size());
  676. EXPECT_FALSE(res.has_header("a"));
  677. res.set_redirect("1\r\nSet-Cookie: a=1");
  678. EXPECT_EQ(0, res.headers.size());
  679. EXPECT_FALSE(res.has_header("Location"));
  680. })
  681. .Get("/slow",
  682. [&](const Request & /*req*/, Response &res) {
  683. std::this_thread::sleep_for(std::chrono::seconds(2));
  684. res.set_content("slow", "text/plain");
  685. })
  686. .Get("/remote_addr",
  687. [&](const Request &req, Response &res) {
  688. auto remote_addr = req.headers.find("REMOTE_ADDR")->second;
  689. EXPECT_TRUE(req.has_header("REMOTE_PORT"));
  690. EXPECT_EQ(req.remote_addr, req.get_header_value("REMOTE_ADDR"));
  691. EXPECT_EQ(req.remote_port,
  692. std::stoi(req.get_header_value("REMOTE_PORT")));
  693. res.set_content(remote_addr.c_str(), "text/plain");
  694. })
  695. .Get("/endwith%",
  696. [&](const Request & /*req*/, Response &res) {
  697. res.set_content("Hello World!", "text/plain");
  698. })
  699. .Get("/a\\+\\+b",
  700. [&](const Request &req, Response &res) {
  701. ASSERT_TRUE(req.has_param("a +b"));
  702. auto val = req.get_param_value("a +b");
  703. res.set_content(val, "text/plain");
  704. })
  705. .Get("/", [&](const Request & /*req*/,
  706. Response &res) { res.set_redirect("/hi"); })
  707. .Post("/1", [](const Request & /*req*/,
  708. Response &res) { res.set_redirect("/2", 303); })
  709. .Get("/2",
  710. [](const Request & /*req*/, Response &res) {
  711. res.set_content("redirected.", "text/plain");
  712. res.status = 200;
  713. })
  714. .Post("/person",
  715. [&](const Request &req, Response &res) {
  716. if (req.has_param("name") && req.has_param("note")) {
  717. persons_[req.get_param_value("name")] =
  718. req.get_param_value("note");
  719. } else {
  720. res.status = 400;
  721. }
  722. })
  723. .Put("/person",
  724. [&](const Request &req, Response &res) {
  725. if (req.has_param("name") && req.has_param("note")) {
  726. persons_[req.get_param_value("name")] =
  727. req.get_param_value("note");
  728. } else {
  729. res.status = 400;
  730. }
  731. })
  732. .Get("/person/(.*)",
  733. [&](const Request &req, Response &res) {
  734. string name = req.matches[1];
  735. if (persons_.find(name) != persons_.end()) {
  736. auto note = persons_[name];
  737. res.set_content(note, "text/plain");
  738. } else {
  739. res.status = 404;
  740. }
  741. })
  742. .Post("/x-www-form-urlencoded-json",
  743. [&](const Request &req, Response &res) {
  744. auto json = req.get_param_value("json");
  745. ASSERT_EQ(JSON_DATA, json);
  746. res.set_content(json, "appliation/json");
  747. res.status = 200;
  748. })
  749. .Get("/streamed-chunked",
  750. [&](const Request & /*req*/, Response &res) {
  751. res.set_chunked_content_provider(
  752. [](uint64_t /*offset*/, DataSink &sink) {
  753. ASSERT_TRUE(sink.is_writable());
  754. sink.write("123", 3);
  755. sink.write("456", 3);
  756. sink.write("789", 3);
  757. sink.done();
  758. });
  759. })
  760. .Get("/streamed-chunked2",
  761. [&](const Request & /*req*/, Response &res) {
  762. auto i = new int(0);
  763. res.set_chunked_content_provider(
  764. [i](uint64_t /*offset*/, DataSink &sink) {
  765. ASSERT_TRUE(sink.is_writable());
  766. switch (*i) {
  767. case 0: sink.write("123", 3); break;
  768. case 1: sink.write("456", 3); break;
  769. case 2: sink.write("789", 3); break;
  770. case 3: sink.done(); break;
  771. }
  772. (*i)++;
  773. },
  774. [i] { delete i; });
  775. })
  776. .Get("/streamed",
  777. [&](const Request & /*req*/, Response &res) {
  778. res.set_content_provider(
  779. 6, [](uint64_t offset, uint64_t /*length*/, DataSink &sink) {
  780. sink.write(offset < 3 ? "a" : "b", 1);
  781. });
  782. })
  783. .Get("/streamed-with-range",
  784. [&](const Request & /*req*/, Response &res) {
  785. auto data = new std::string("abcdefg");
  786. res.set_content_provider(
  787. data->size(),
  788. [data](uint64_t offset, uint64_t length, DataSink &sink) {
  789. ASSERT_TRUE(sink.is_writable());
  790. size_t DATA_CHUNK_SIZE = 4;
  791. const auto &d = *data;
  792. auto out_len =
  793. std::min(static_cast<size_t>(length), DATA_CHUNK_SIZE);
  794. sink.write(&d[static_cast<size_t>(offset)], out_len);
  795. },
  796. [data] { delete data; });
  797. })
  798. .Get("/streamed-cancel",
  799. [&](const Request & /*req*/, Response &res) {
  800. res.set_content_provider(size_t(-1), [](uint64_t /*offset*/,
  801. uint64_t /*length*/,
  802. DataSink &sink) {
  803. ASSERT_TRUE(sink.is_writable());
  804. std::string data = "data_chunk";
  805. sink.write(data.data(), data.size());
  806. });
  807. })
  808. .Get("/with-range",
  809. [&](const Request & /*req*/, Response &res) {
  810. res.set_content("abcdefg", "text/plain");
  811. })
  812. .Post("/chunked",
  813. [&](const Request &req, Response & /*res*/) {
  814. EXPECT_EQ(req.body, "dechunked post body");
  815. })
  816. .Post("/large-chunked",
  817. [&](const Request &req, Response & /*res*/) {
  818. std::string expected(6 * 30 * 1024u, 'a');
  819. EXPECT_EQ(req.body, expected);
  820. })
  821. .Post("/multipart",
  822. [&](const Request &req, Response & /*res*/) {
  823. EXPECT_EQ(5u, req.files.size());
  824. ASSERT_TRUE(!req.has_file("???"));
  825. ASSERT_TRUE(req.body.empty());
  826. {
  827. const auto &file = req.get_file_value("text1");
  828. EXPECT_TRUE(file.filename.empty());
  829. EXPECT_EQ("text default", file.content);
  830. }
  831. {
  832. const auto &file = req.get_file_value("text2");
  833. EXPECT_TRUE(file.filename.empty());
  834. EXPECT_EQ("aωb", file.content);
  835. }
  836. {
  837. const auto &file = req.get_file_value("file1");
  838. EXPECT_EQ("hello.txt", file.filename);
  839. EXPECT_EQ("text/plain", file.content_type);
  840. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  841. }
  842. {
  843. const auto &file = req.get_file_value("file3");
  844. EXPECT_TRUE(file.filename.empty());
  845. EXPECT_EQ("application/octet-stream", file.content_type);
  846. EXPECT_EQ(0u, file.content.size());
  847. }
  848. })
  849. .Post("/empty",
  850. [&](const Request &req, Response &res) {
  851. EXPECT_EQ(req.body, "");
  852. EXPECT_EQ("text/plain", req.get_header_value("Content-Type"));
  853. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  854. res.set_content("empty", "text/plain");
  855. })
  856. .Post("/empty-no-content-type",
  857. [&](const Request &req, Response &res) {
  858. EXPECT_EQ(req.body, "");
  859. EXPECT_FALSE(req.has_header("Content-Type"));
  860. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  861. res.set_content("empty-no-content-type", "text/plain");
  862. })
  863. .Put("/empty-no-content-type",
  864. [&](const Request &req, Response &res) {
  865. EXPECT_EQ(req.body, "");
  866. EXPECT_FALSE(req.has_header("Content-Type"));
  867. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  868. res.set_content("empty-no-content-type", "text/plain");
  869. })
  870. .Put("/put",
  871. [&](const Request &req, Response &res) {
  872. EXPECT_EQ(req.body, "PUT");
  873. res.set_content(req.body, "text/plain");
  874. })
  875. .Put("/put-large",
  876. [&](const Request &req, Response &res) {
  877. EXPECT_EQ(req.body, LARGE_DATA);
  878. res.set_content(req.body, "text/plain");
  879. })
  880. .Patch("/patch",
  881. [&](const Request &req, Response &res) {
  882. EXPECT_EQ(req.body, "PATCH");
  883. res.set_content(req.body, "text/plain");
  884. })
  885. .Delete("/delete",
  886. [&](const Request & /*req*/, Response &res) {
  887. res.set_content("DELETE", "text/plain");
  888. })
  889. .Delete("/delete-body",
  890. [&](const Request &req, Response &res) {
  891. EXPECT_EQ(req.body, "content");
  892. res.set_content(req.body, "text/plain");
  893. })
  894. .Options(R"(\*)",
  895. [&](const Request & /*req*/, Response &res) {
  896. res.set_header("Allow", "GET, POST, HEAD, OPTIONS");
  897. })
  898. .Get("/request-target",
  899. [&](const Request &req, Response & /*res*/) {
  900. EXPECT_EQ("/request-target?aaa=bbb&ccc=ddd", req.target);
  901. EXPECT_EQ("bbb", req.get_param_value("aaa"));
  902. EXPECT_EQ("ddd", req.get_param_value("ccc"));
  903. })
  904. .Get("/long-query-value",
  905. [&](const Request &req, Response & /*res*/) {
  906. EXPECT_EQ(LONG_QUERY_URL, req.target);
  907. EXPECT_EQ(LONG_QUERY_VALUE, req.get_param_value("key"));
  908. })
  909. .Get("/array-param",
  910. [&](const Request &req, Response & /*res*/) {
  911. EXPECT_EQ(3u, req.get_param_value_count("array"));
  912. EXPECT_EQ("value1", req.get_param_value("array", 0));
  913. EXPECT_EQ("value2", req.get_param_value("array", 1));
  914. EXPECT_EQ("value3", req.get_param_value("array", 2));
  915. })
  916. .Post("/validate-no-multiple-headers",
  917. [&](const Request &req, Response & /*res*/) {
  918. EXPECT_EQ(1u, req.get_header_value_count("Content-Length"));
  919. EXPECT_EQ("5", req.get_header_value("Content-Length"));
  920. })
  921. .Post("/content_receiver",
  922. [&](const Request &req, Response &res,
  923. const ContentReader &content_reader) {
  924. if (req.is_multipart_form_data()) {
  925. MultipartFormDataItems files;
  926. content_reader(
  927. [&](const MultipartFormData &file) {
  928. files.push_back(file);
  929. return true;
  930. },
  931. [&](const char *data, size_t data_length) {
  932. files.back().content.append(data, data_length);
  933. return true;
  934. });
  935. EXPECT_EQ(5u, files.size());
  936. {
  937. const auto &file = get_file_value(files, "text1");
  938. EXPECT_TRUE(file.filename.empty());
  939. EXPECT_EQ("text default", file.content);
  940. }
  941. {
  942. const auto &file = get_file_value(files, "text2");
  943. EXPECT_TRUE(file.filename.empty());
  944. EXPECT_EQ("aωb", file.content);
  945. }
  946. {
  947. const auto &file = get_file_value(files, "file1");
  948. EXPECT_EQ("hello.txt", file.filename);
  949. EXPECT_EQ("text/plain", file.content_type);
  950. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  951. }
  952. {
  953. const auto &file = get_file_value(files, "file3");
  954. EXPECT_TRUE(file.filename.empty());
  955. EXPECT_EQ("application/octet-stream", file.content_type);
  956. EXPECT_EQ(0u, file.content.size());
  957. }
  958. } else {
  959. std::string body;
  960. content_reader([&](const char *data, size_t data_length) {
  961. EXPECT_EQ(data_length, 7);
  962. body.append(data, data_length);
  963. return true;
  964. });
  965. EXPECT_EQ(body, "content");
  966. res.set_content(body, "text/plain");
  967. }
  968. })
  969. .Put("/content_receiver",
  970. [&](const Request & /*req*/, Response &res,
  971. const ContentReader &content_reader) {
  972. std::string body;
  973. content_reader([&](const char *data, size_t data_length) {
  974. body.append(data, data_length);
  975. return true;
  976. });
  977. EXPECT_EQ(body, "content");
  978. res.set_content(body, "text/plain");
  979. })
  980. .Patch("/content_receiver",
  981. [&](const Request & /*req*/, Response &res,
  982. const ContentReader &content_reader) {
  983. std::string body;
  984. content_reader([&](const char *data, size_t data_length) {
  985. body.append(data, data_length);
  986. return true;
  987. });
  988. EXPECT_EQ(body, "content");
  989. res.set_content(body, "text/plain");
  990. })
  991. .Post("/query-string-and-body",
  992. [&](const Request &req, Response & /*res*/) {
  993. ASSERT_TRUE(req.has_param("key"));
  994. EXPECT_EQ(req.get_param_value("key"), "value");
  995. EXPECT_EQ(req.body, "content");
  996. })
  997. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  998. .Get("/gzip",
  999. [&](const Request & /*req*/, Response &res) {
  1000. res.set_content(
  1001. "12345678901234567890123456789012345678901234567890123456789"
  1002. "01234567890123456789012345678901234567890",
  1003. "text/plain");
  1004. })
  1005. .Get("/nogzip",
  1006. [&](const Request & /*req*/, Response &res) {
  1007. res.set_content(
  1008. "12345678901234567890123456789012345678901234567890123456789"
  1009. "01234567890123456789012345678901234567890",
  1010. "application/octet-stream");
  1011. })
  1012. .Post("/gzipmultipart",
  1013. [&](const Request &req, Response & /*res*/) {
  1014. EXPECT_EQ(2u, req.files.size());
  1015. ASSERT_TRUE(!req.has_file("???"));
  1016. {
  1017. const auto &file = req.get_file_value("key1");
  1018. EXPECT_TRUE(file.filename.empty());
  1019. EXPECT_EQ("test", file.content);
  1020. }
  1021. {
  1022. const auto &file = req.get_file_value("key2");
  1023. EXPECT_TRUE(file.filename.empty());
  1024. EXPECT_EQ("--abcdefg123", file.content);
  1025. }
  1026. })
  1027. #endif
  1028. ;
  1029. persons_["john"] = "programmer";
  1030. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  1031. while (!svr_.is_running()) {
  1032. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1033. }
  1034. }
  1035. virtual void TearDown() {
  1036. svr_.stop();
  1037. for (auto &t : request_threads_) {
  1038. t.join();
  1039. }
  1040. t_.join();
  1041. }
  1042. map<string, string> persons_;
  1043. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1044. SSLClient cli_;
  1045. SSLServer svr_;
  1046. #else
  1047. Client cli_;
  1048. Server svr_;
  1049. #endif
  1050. thread t_;
  1051. std::vector<thread> request_threads_;
  1052. };
  1053. TEST_F(ServerTest, GetMethod200) {
  1054. auto res = cli_.Get("/hi");
  1055. ASSERT_TRUE(res != nullptr);
  1056. EXPECT_EQ("HTTP/1.1", res->version);
  1057. EXPECT_EQ(200, res->status);
  1058. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1059. EXPECT_EQ(1, res->get_header_value_count("Content-Type"));
  1060. EXPECT_EQ("Hello World!", res->body);
  1061. }
  1062. TEST_F(ServerTest, GetMethod200withPercentEncoding) {
  1063. auto res = cli_.Get("/%68%69"); // auto res = cli_.Get("/hi");
  1064. ASSERT_TRUE(res != nullptr);
  1065. EXPECT_EQ("HTTP/1.1", res->version);
  1066. EXPECT_EQ(200, res->status);
  1067. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1068. EXPECT_EQ(1, res->get_header_value_count("Content-Type"));
  1069. EXPECT_EQ("Hello World!", res->body);
  1070. }
  1071. TEST_F(ServerTest, GetMethod302) {
  1072. auto res = cli_.Get("/");
  1073. ASSERT_TRUE(res != nullptr);
  1074. EXPECT_EQ(302, res->status);
  1075. EXPECT_EQ("/hi", res->get_header_value("Location"));
  1076. }
  1077. TEST_F(ServerTest, GetMethod302Redirect) {
  1078. cli_.set_follow_location(true);
  1079. auto res = cli_.Get("/");
  1080. ASSERT_TRUE(res != nullptr);
  1081. EXPECT_EQ(200, res->status);
  1082. EXPECT_EQ("Hello World!", res->body);
  1083. }
  1084. TEST_F(ServerTest, GetMethod404) {
  1085. auto res = cli_.Get("/invalid");
  1086. ASSERT_TRUE(res != nullptr);
  1087. EXPECT_EQ(404, res->status);
  1088. }
  1089. TEST_F(ServerTest, HeadMethod200) {
  1090. auto res = cli_.Head("/hi");
  1091. ASSERT_TRUE(res != nullptr);
  1092. EXPECT_EQ(200, res->status);
  1093. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1094. EXPECT_TRUE(res->body.empty());
  1095. }
  1096. TEST_F(ServerTest, HeadMethod200Static) {
  1097. auto res = cli_.Head("/mount/dir/index.html");
  1098. ASSERT_TRUE(res != nullptr);
  1099. EXPECT_EQ(200, res->status);
  1100. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1101. EXPECT_EQ(104, std::stoi(res->get_header_value("Content-Length")));
  1102. EXPECT_TRUE(res->body.empty());
  1103. }
  1104. TEST_F(ServerTest, HeadMethod404) {
  1105. auto res = cli_.Head("/invalid");
  1106. ASSERT_TRUE(res != nullptr);
  1107. EXPECT_EQ(404, res->status);
  1108. EXPECT_TRUE(res->body.empty());
  1109. }
  1110. TEST_F(ServerTest, GetMethodPersonJohn) {
  1111. auto res = cli_.Get("/person/john");
  1112. ASSERT_TRUE(res != nullptr);
  1113. EXPECT_EQ(200, res->status);
  1114. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1115. EXPECT_EQ("programmer", res->body);
  1116. }
  1117. TEST_F(ServerTest, PostMethod1) {
  1118. auto res = cli_.Get("/person/john1");
  1119. ASSERT_TRUE(res != nullptr);
  1120. ASSERT_EQ(404, res->status);
  1121. res = cli_.Post("/person", "name=john1&note=coder",
  1122. "application/x-www-form-urlencoded");
  1123. ASSERT_TRUE(res != nullptr);
  1124. ASSERT_EQ(200, res->status);
  1125. res = cli_.Get("/person/john1");
  1126. ASSERT_TRUE(res != nullptr);
  1127. ASSERT_EQ(200, res->status);
  1128. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1129. ASSERT_EQ("coder", res->body);
  1130. }
  1131. TEST_F(ServerTest, PostMethod2) {
  1132. auto res = cli_.Get("/person/john2");
  1133. ASSERT_TRUE(res != nullptr);
  1134. ASSERT_EQ(404, res->status);
  1135. Params params;
  1136. params.emplace("name", "john2");
  1137. params.emplace("note", "coder");
  1138. res = cli_.Post("/person", params);
  1139. ASSERT_TRUE(res != nullptr);
  1140. ASSERT_EQ(200, res->status);
  1141. res = cli_.Get("/person/john2");
  1142. ASSERT_TRUE(res != nullptr);
  1143. ASSERT_EQ(200, res->status);
  1144. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1145. ASSERT_EQ("coder", res->body);
  1146. }
  1147. TEST_F(ServerTest, PutMethod3) {
  1148. auto res = cli_.Get("/person/john3");
  1149. ASSERT_TRUE(res != nullptr);
  1150. ASSERT_EQ(404, res->status);
  1151. Params params;
  1152. params.emplace("name", "john3");
  1153. params.emplace("note", "coder");
  1154. res = cli_.Put("/person", params);
  1155. ASSERT_TRUE(res != nullptr);
  1156. ASSERT_EQ(200, res->status);
  1157. res = cli_.Get("/person/john3");
  1158. ASSERT_TRUE(res != nullptr);
  1159. ASSERT_EQ(200, res->status);
  1160. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1161. ASSERT_EQ("coder", res->body);
  1162. }
  1163. TEST_F(ServerTest, PostWwwFormUrlEncodedJson) {
  1164. Params params;
  1165. params.emplace("json", JSON_DATA);
  1166. auto res = cli_.Post("/x-www-form-urlencoded-json", params);
  1167. ASSERT_TRUE(res != nullptr);
  1168. ASSERT_EQ(200, res->status);
  1169. ASSERT_EQ(JSON_DATA, res->body);
  1170. }
  1171. TEST_F(ServerTest, PostEmptyContent) {
  1172. auto res = cli_.Post("/empty", "", "text/plain");
  1173. ASSERT_TRUE(res != nullptr);
  1174. ASSERT_EQ(200, res->status);
  1175. ASSERT_EQ("empty", res->body);
  1176. }
  1177. TEST_F(ServerTest, PostEmptyContentWithNoContentType) {
  1178. auto res = cli_.Post("/empty-no-content-type");
  1179. ASSERT_TRUE(res != nullptr);
  1180. ASSERT_EQ(200, res->status);
  1181. ASSERT_EQ("empty-no-content-type", res->body);
  1182. }
  1183. TEST_F(ServerTest, PutEmptyContentWithNoContentType) {
  1184. auto res = cli_.Put("/empty-no-content-type");
  1185. ASSERT_TRUE(res != nullptr);
  1186. ASSERT_EQ(200, res->status);
  1187. ASSERT_EQ("empty-no-content-type", res->body);
  1188. }
  1189. TEST_F(ServerTest, GetMethodDir) {
  1190. auto res = cli_.Get("/dir/");
  1191. ASSERT_TRUE(res != nullptr);
  1192. EXPECT_EQ(200, res->status);
  1193. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1194. auto body = R"(<html>
  1195. <head>
  1196. </head>
  1197. <body>
  1198. <a href="/dir/test.html">Test</a>
  1199. <a href="/hi">hi</a>
  1200. </body>
  1201. </html>
  1202. )";
  1203. EXPECT_EQ(body, res->body);
  1204. }
  1205. TEST_F(ServerTest, GetMethodDirTest) {
  1206. auto res = cli_.Get("/dir/test.html");
  1207. ASSERT_TRUE(res != nullptr);
  1208. EXPECT_EQ(200, res->status);
  1209. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1210. EXPECT_EQ("test.html", res->body);
  1211. }
  1212. TEST_F(ServerTest, GetMethodDirTestWithDoubleDots) {
  1213. auto res = cli_.Get("/dir/../dir/test.html");
  1214. ASSERT_TRUE(res != nullptr);
  1215. EXPECT_EQ(200, res->status);
  1216. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1217. EXPECT_EQ("test.html", res->body);
  1218. }
  1219. TEST_F(ServerTest, GetMethodInvalidPath) {
  1220. auto res = cli_.Get("/dir/../test.html");
  1221. ASSERT_TRUE(res != nullptr);
  1222. EXPECT_EQ(404, res->status);
  1223. }
  1224. TEST_F(ServerTest, GetMethodOutOfBaseDir) {
  1225. auto res = cli_.Get("/../www/dir/test.html");
  1226. ASSERT_TRUE(res != nullptr);
  1227. EXPECT_EQ(404, res->status);
  1228. }
  1229. TEST_F(ServerTest, GetMethodOutOfBaseDir2) {
  1230. auto res = cli_.Get("/dir/../../www/dir/test.html");
  1231. ASSERT_TRUE(res != nullptr);
  1232. EXPECT_EQ(404, res->status);
  1233. }
  1234. TEST_F(ServerTest, GetMethodDirMountTest) {
  1235. auto res = cli_.Get("/mount/dir/test.html");
  1236. ASSERT_TRUE(res != nullptr);
  1237. EXPECT_EQ(200, res->status);
  1238. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1239. EXPECT_EQ("test.html", res->body);
  1240. }
  1241. TEST_F(ServerTest, GetMethodDirMountTestWithDoubleDots) {
  1242. auto res = cli_.Get("/mount/dir/../dir/test.html");
  1243. ASSERT_TRUE(res != nullptr);
  1244. EXPECT_EQ(200, res->status);
  1245. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1246. EXPECT_EQ("test.html", res->body);
  1247. }
  1248. TEST_F(ServerTest, GetMethodInvalidMountPath) {
  1249. auto res = cli_.Get("/mount/dir/../test.html");
  1250. ASSERT_TRUE(res != nullptr);
  1251. EXPECT_EQ(404, res->status);
  1252. }
  1253. TEST_F(ServerTest, GetMethodOutOfBaseDirMount) {
  1254. auto res = cli_.Get("/mount/../www2/dir/test.html");
  1255. ASSERT_TRUE(res != nullptr);
  1256. EXPECT_EQ(404, res->status);
  1257. }
  1258. TEST_F(ServerTest, GetMethodOutOfBaseDirMount2) {
  1259. auto res = cli_.Get("/mount/dir/../../www2/dir/test.html");
  1260. ASSERT_TRUE(res != nullptr);
  1261. EXPECT_EQ(404, res->status);
  1262. }
  1263. TEST_F(ServerTest, PostMethod303) {
  1264. auto res = cli_.Post("/1", "body", "text/plain");
  1265. ASSERT_TRUE(res != nullptr);
  1266. EXPECT_EQ(303, res->status);
  1267. EXPECT_EQ("/2", res->get_header_value("Location"));
  1268. }
  1269. TEST_F(ServerTest, PostMethod303Redirect) {
  1270. cli_.set_follow_location(true);
  1271. auto res = cli_.Post("/1", "body", "text/plain");
  1272. ASSERT_TRUE(res != nullptr);
  1273. EXPECT_EQ(200, res->status);
  1274. EXPECT_EQ("redirected.", res->body);
  1275. }
  1276. TEST_F(ServerTest, UserDefinedMIMETypeMapping) {
  1277. auto res = cli_.Get("/dir/test.abcde");
  1278. ASSERT_TRUE(res != nullptr);
  1279. EXPECT_EQ(200, res->status);
  1280. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1281. EXPECT_EQ("abcde", res->body);
  1282. }
  1283. TEST_F(ServerTest, InvalidBaseDirMount) {
  1284. EXPECT_EQ(false, svr_.set_mount_point("invalid_mount_point", "./www3"));
  1285. }
  1286. TEST_F(ServerTest, EmptyRequest) {
  1287. auto res = cli_.Get("");
  1288. ASSERT_TRUE(res == nullptr);
  1289. }
  1290. TEST_F(ServerTest, LongRequest) {
  1291. std::string request;
  1292. for (size_t i = 0; i < 545; i++) {
  1293. request += "/TooLongRequest";
  1294. }
  1295. request += "OK";
  1296. auto res = cli_.Get(request.c_str());
  1297. ASSERT_TRUE(res != nullptr);
  1298. EXPECT_EQ(404, res->status);
  1299. }
  1300. TEST_F(ServerTest, TooLongRequest) {
  1301. std::string request;
  1302. for (size_t i = 0; i < 545; i++) {
  1303. request += "/TooLongRequest";
  1304. }
  1305. request += "_NG";
  1306. auto res = cli_.Get(request.c_str());
  1307. ASSERT_TRUE(res != nullptr);
  1308. EXPECT_EQ(414, res->status);
  1309. }
  1310. TEST_F(ServerTest, LongHeader) {
  1311. Request req;
  1312. req.method = "GET";
  1313. req.path = "/hi";
  1314. std::string host_and_port;
  1315. host_and_port += HOST;
  1316. host_and_port += ":";
  1317. host_and_port += std::to_string(PORT);
  1318. req.headers.emplace("Host", host_and_port.c_str());
  1319. req.headers.emplace("Accept", "*/*");
  1320. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1321. req.headers.emplace(
  1322. "Header-Name",
  1323. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1324. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1325. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1326. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1327. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1328. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1329. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1330. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1331. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1332. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1333. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1334. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1335. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1336. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1337. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1338. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1339. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1340. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1341. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1342. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1343. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1344. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1345. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1346. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1347. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1348. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1349. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1350. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1351. "@@@@@@@@@@@@@@@@");
  1352. auto res = std::make_shared<Response>();
  1353. auto ret = cli_.send(req, *res);
  1354. ASSERT_TRUE(ret);
  1355. EXPECT_EQ(200, res->status);
  1356. }
  1357. TEST_F(ServerTest, LongQueryValue) {
  1358. auto res = cli_.Get(LONG_QUERY_URL.c_str());
  1359. ASSERT_TRUE(res != nullptr);
  1360. EXPECT_EQ(414, res->status);
  1361. }
  1362. TEST_F(ServerTest, TooLongHeader) {
  1363. Request req;
  1364. req.method = "GET";
  1365. req.path = "/hi";
  1366. std::string host_and_port;
  1367. host_and_port += HOST;
  1368. host_and_port += ":";
  1369. host_and_port += std::to_string(PORT);
  1370. req.headers.emplace("Host", host_and_port.c_str());
  1371. req.headers.emplace("Accept", "*/*");
  1372. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1373. req.headers.emplace(
  1374. "Header-Name",
  1375. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1376. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1377. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1378. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1379. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1380. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1381. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1382. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1383. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1384. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1385. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1386. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1387. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1388. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1389. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1390. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1391. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1392. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1393. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1394. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1395. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1396. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1397. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1398. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1399. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1400. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1401. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1402. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1403. "@@@@@@@@@@@@@@@@@");
  1404. auto res = std::make_shared<Response>();
  1405. auto ret = cli_.send(req, *res);
  1406. ASSERT_TRUE(ret);
  1407. EXPECT_EQ(200, res->status);
  1408. }
  1409. TEST_F(ServerTest, PercentEncoding) {
  1410. auto res = cli_.Get("/e%6edwith%");
  1411. ASSERT_TRUE(res != nullptr);
  1412. EXPECT_EQ(200, res->status);
  1413. }
  1414. TEST_F(ServerTest, PercentEncodingUnicode) {
  1415. auto res = cli_.Get("/e%u006edwith%");
  1416. ASSERT_TRUE(res != nullptr);
  1417. EXPECT_EQ(200, res->status);
  1418. }
  1419. TEST_F(ServerTest, InvalidPercentEncoding) {
  1420. auto res = cli_.Get("/%endwith%");
  1421. ASSERT_TRUE(res != nullptr);
  1422. EXPECT_EQ(404, res->status);
  1423. }
  1424. TEST_F(ServerTest, InvalidPercentEncodingUnicode) {
  1425. auto res = cli_.Get("/%uendwith%");
  1426. ASSERT_TRUE(res != nullptr);
  1427. EXPECT_EQ(404, res->status);
  1428. }
  1429. TEST_F(ServerTest, EndWithPercentCharacterInQuery) {
  1430. auto res = cli_.Get("/hello?aaa=bbb%");
  1431. ASSERT_TRUE(res != nullptr);
  1432. EXPECT_EQ(404, res->status);
  1433. }
  1434. TEST_F(ServerTest, PlusSignEncoding) {
  1435. auto res = cli_.Get("/a+%2Bb?a %2bb=a %2Bb");
  1436. ASSERT_TRUE(res != nullptr);
  1437. EXPECT_EQ(200, res->status);
  1438. EXPECT_EQ("a +b", res->body);
  1439. }
  1440. TEST_F(ServerTest, MultipartFormData) {
  1441. MultipartFormDataItems items = {
  1442. {"text1", "text default", "", ""},
  1443. {"text2", "aωb", "", ""},
  1444. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  1445. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  1446. {"file3", "", "", "application/octet-stream"},
  1447. };
  1448. auto res = cli_.Post("/multipart", items);
  1449. ASSERT_TRUE(res != nullptr);
  1450. EXPECT_EQ(200, res->status);
  1451. }
  1452. TEST_F(ServerTest, CaseInsensitiveHeaderName) {
  1453. auto res = cli_.Get("/hi");
  1454. ASSERT_TRUE(res != nullptr);
  1455. EXPECT_EQ(200, res->status);
  1456. EXPECT_EQ("text/plain", res->get_header_value("content-type"));
  1457. EXPECT_EQ("Hello World!", res->body);
  1458. }
  1459. TEST_F(ServerTest, CaseInsensitiveTransferEncoding) {
  1460. Request req;
  1461. req.method = "POST";
  1462. req.path = "/chunked";
  1463. std::string host_and_port;
  1464. host_and_port += HOST;
  1465. host_and_port += ":";
  1466. host_and_port += std::to_string(PORT);
  1467. req.headers.emplace("Host", host_and_port.c_str());
  1468. req.headers.emplace("Accept", "*/*");
  1469. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1470. req.headers.emplace("Content-Type", "text/plain");
  1471. req.headers.emplace("Content-Length", "0");
  1472. req.headers.emplace(
  1473. "Transfer-Encoding",
  1474. "Chunked"); // Note, "Chunked" rather than typical "chunked".
  1475. // Client does not chunk, so make a chunked body manually.
  1476. req.body = "4\r\ndech\r\nf\r\nunked post body\r\n0\r\n\r\n";
  1477. auto res = std::make_shared<Response>();
  1478. auto ret = cli_.send(req, *res);
  1479. ASSERT_TRUE(ret);
  1480. EXPECT_EQ(200, res->status);
  1481. }
  1482. TEST_F(ServerTest, GetStreamed2) {
  1483. auto res = cli_.Get("/streamed", {{make_range_header({{2, 3}})}});
  1484. ASSERT_TRUE(res != nullptr);
  1485. EXPECT_EQ(206, res->status);
  1486. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1487. EXPECT_EQ(std::string("ab"), res->body);
  1488. }
  1489. TEST_F(ServerTest, GetStreamed) {
  1490. auto res = cli_.Get("/streamed");
  1491. ASSERT_TRUE(res != nullptr);
  1492. EXPECT_EQ(200, res->status);
  1493. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1494. EXPECT_EQ(std::string("aaabbb"), res->body);
  1495. }
  1496. TEST_F(ServerTest, GetStreamedWithRange1) {
  1497. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{3, 5}})}});
  1498. ASSERT_TRUE(res != nullptr);
  1499. EXPECT_EQ(206, res->status);
  1500. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  1501. EXPECT_EQ(true, res->has_header("Content-Range"));
  1502. EXPECT_EQ(std::string("def"), res->body);
  1503. }
  1504. TEST_F(ServerTest, GetStreamedWithRange2) {
  1505. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{1, -1}})}});
  1506. ASSERT_TRUE(res != nullptr);
  1507. EXPECT_EQ(206, res->status);
  1508. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1509. EXPECT_EQ(true, res->has_header("Content-Range"));
  1510. EXPECT_EQ(std::string("bcdefg"), res->body);
  1511. }
  1512. TEST_F(ServerTest, GetStreamedWithRangeMultipart) {
  1513. auto res =
  1514. cli_.Get("/streamed-with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  1515. ASSERT_TRUE(res != nullptr);
  1516. EXPECT_EQ(206, res->status);
  1517. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  1518. EXPECT_EQ(false, res->has_header("Content-Range"));
  1519. EXPECT_EQ(269, res->body.size());
  1520. }
  1521. TEST_F(ServerTest, GetStreamedEndless) {
  1522. uint64_t offset = 0;
  1523. auto res = cli_.Get("/streamed-cancel",
  1524. [&](const char * /*data*/, uint64_t data_length) {
  1525. if (offset < 100) {
  1526. offset += data_length;
  1527. return true;
  1528. }
  1529. return false;
  1530. });
  1531. ASSERT_TRUE(res == nullptr);
  1532. }
  1533. TEST_F(ServerTest, ClientStop) {
  1534. thread t = thread([&]() {
  1535. auto res = cli_.Get("/streamed-cancel",
  1536. [&](const char *, uint64_t) { return true; });
  1537. ASSERT_TRUE(res == nullptr);
  1538. });
  1539. std::this_thread::sleep_for(std::chrono::seconds(1));
  1540. cli_.stop();
  1541. t.join();
  1542. }
  1543. TEST_F(ServerTest, GetWithRange1) {
  1544. auto res = cli_.Get("/with-range", {{make_range_header({{3, 5}})}});
  1545. ASSERT_TRUE(res != nullptr);
  1546. EXPECT_EQ(206, res->status);
  1547. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  1548. EXPECT_EQ(true, res->has_header("Content-Range"));
  1549. EXPECT_EQ(std::string("def"), res->body);
  1550. }
  1551. TEST_F(ServerTest, GetWithRange2) {
  1552. auto res = cli_.Get("/with-range", {{make_range_header({{1, -1}})}});
  1553. ASSERT_TRUE(res != nullptr);
  1554. EXPECT_EQ(206, res->status);
  1555. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  1556. EXPECT_EQ(true, res->has_header("Content-Range"));
  1557. EXPECT_EQ(std::string("bcdefg"), res->body);
  1558. }
  1559. TEST_F(ServerTest, GetWithRange3) {
  1560. auto res = cli_.Get("/with-range", {{make_range_header({{0, 0}})}});
  1561. ASSERT_TRUE(res != nullptr);
  1562. EXPECT_EQ(206, res->status);
  1563. EXPECT_EQ("1", res->get_header_value("Content-Length"));
  1564. EXPECT_EQ(true, res->has_header("Content-Range"));
  1565. EXPECT_EQ(std::string("a"), res->body);
  1566. }
  1567. TEST_F(ServerTest, GetWithRange4) {
  1568. auto res = cli_.Get("/with-range", {{make_range_header({{-1, 2}})}});
  1569. ASSERT_TRUE(res != nullptr);
  1570. EXPECT_EQ(206, res->status);
  1571. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1572. EXPECT_EQ(true, res->has_header("Content-Range"));
  1573. EXPECT_EQ(std::string("fg"), res->body);
  1574. }
  1575. TEST_F(ServerTest, GetWithRangeMultipart) {
  1576. auto res = cli_.Get("/with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  1577. ASSERT_TRUE(res != nullptr);
  1578. EXPECT_EQ(206, res->status);
  1579. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  1580. EXPECT_EQ(false, res->has_header("Content-Range"));
  1581. EXPECT_EQ(269, res->body.size());
  1582. }
  1583. TEST_F(ServerTest, GetStreamedChunked) {
  1584. auto res = cli_.Get("/streamed-chunked");
  1585. ASSERT_TRUE(res != nullptr);
  1586. EXPECT_EQ(200, res->status);
  1587. EXPECT_EQ(std::string("123456789"), res->body);
  1588. }
  1589. TEST_F(ServerTest, GetStreamedChunked2) {
  1590. auto res = cli_.Get("/streamed-chunked2");
  1591. ASSERT_TRUE(res != nullptr);
  1592. EXPECT_EQ(200, res->status);
  1593. EXPECT_EQ(std::string("123456789"), res->body);
  1594. }
  1595. TEST_F(ServerTest, LargeChunkedPost) {
  1596. Request req;
  1597. req.method = "POST";
  1598. req.path = "/large-chunked";
  1599. std::string host_and_port;
  1600. host_and_port += HOST;
  1601. host_and_port += ":";
  1602. host_and_port += std::to_string(PORT);
  1603. req.headers.emplace("Host", host_and_port.c_str());
  1604. req.headers.emplace("Accept", "*/*");
  1605. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1606. req.headers.emplace("Content-Type", "text/plain");
  1607. req.headers.emplace("Content-Length", "0");
  1608. req.headers.emplace("Transfer-Encoding", "chunked");
  1609. std::string long_string(30 * 1024u, 'a');
  1610. std::string chunk = "7800\r\n" + long_string + "\r\n";
  1611. // Attempt to make a large enough post to exceed OS buffers, to test that
  1612. // the server handles short reads if the full chunk data isn't available.
  1613. req.body = chunk + chunk + chunk + chunk + chunk + chunk + "0\r\n\r\n";
  1614. auto res = std::make_shared<Response>();
  1615. auto ret = cli_.send(req, *res);
  1616. ASSERT_TRUE(ret);
  1617. EXPECT_EQ(200, res->status);
  1618. }
  1619. TEST_F(ServerTest, GetMethodRemoteAddr) {
  1620. auto res = cli_.Get("/remote_addr");
  1621. ASSERT_TRUE(res != nullptr);
  1622. EXPECT_EQ(200, res->status);
  1623. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1624. EXPECT_TRUE(res->body == "::1" || res->body == "127.0.0.1");
  1625. }
  1626. TEST_F(ServerTest, HTTPResponseSplitting) {
  1627. auto res = cli_.Get("/http_response_splitting");
  1628. ASSERT_TRUE(res != nullptr);
  1629. EXPECT_EQ(200, res->status);
  1630. }
  1631. TEST_F(ServerTest, SlowRequest) {
  1632. request_threads_.push_back(
  1633. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1634. request_threads_.push_back(
  1635. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1636. request_threads_.push_back(
  1637. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  1638. std::this_thread::sleep_for(std::chrono::milliseconds(100));
  1639. }
  1640. TEST_F(ServerTest, Put) {
  1641. auto res = cli_.Put("/put", "PUT", "text/plain");
  1642. ASSERT_TRUE(res != nullptr);
  1643. EXPECT_EQ(200, res->status);
  1644. EXPECT_EQ("PUT", res->body);
  1645. }
  1646. TEST_F(ServerTest, PutWithContentProvider) {
  1647. auto res = cli_.Put(
  1648. "/put", 3,
  1649. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1650. ASSERT_TRUE(sink.is_writable());
  1651. sink.write("PUT", 3);
  1652. },
  1653. "text/plain");
  1654. ASSERT_TRUE(res != nullptr);
  1655. EXPECT_EQ(200, res->status);
  1656. EXPECT_EQ("PUT", res->body);
  1657. }
  1658. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1659. TEST_F(ServerTest, PutWithContentProviderWithGzip) {
  1660. cli_.set_compress(true);
  1661. auto res = cli_.Put(
  1662. "/put", 3,
  1663. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1664. ASSERT_TRUE(sink.is_writable());
  1665. sink.write("PUT", 3);
  1666. },
  1667. "text/plain");
  1668. ASSERT_TRUE(res != nullptr);
  1669. EXPECT_EQ(200, res->status);
  1670. EXPECT_EQ("PUT", res->body);
  1671. }
  1672. TEST_F(ServerTest, PutLargeFileWithGzip) {
  1673. cli_.set_compress(true);
  1674. auto res = cli_.Put("/put-large", LARGE_DATA, "text/plain");
  1675. ASSERT_TRUE(res != nullptr);
  1676. EXPECT_EQ(200, res->status);
  1677. EXPECT_EQ(LARGE_DATA, res->body);
  1678. }
  1679. TEST_F(ServerTest, PutContentWithDeflate) {
  1680. cli_.set_compress(false);
  1681. httplib::Headers headers;
  1682. headers.emplace("Content-Encoding", "deflate");
  1683. // PUT in deflate format:
  1684. auto res = cli_.Put("/put", headers,
  1685. "\170\234\013\010\015\001\0\001\361\0\372", "text/plain");
  1686. ASSERT_TRUE(res != nullptr);
  1687. EXPECT_EQ(200, res->status);
  1688. EXPECT_EQ("PUT", res->body);
  1689. }
  1690. #endif
  1691. TEST_F(ServerTest, Patch) {
  1692. auto res = cli_.Patch("/patch", "PATCH", "text/plain");
  1693. ASSERT_TRUE(res != nullptr);
  1694. EXPECT_EQ(200, res->status);
  1695. EXPECT_EQ("PATCH", res->body);
  1696. }
  1697. TEST_F(ServerTest, Delete) {
  1698. auto res = cli_.Delete("/delete");
  1699. ASSERT_TRUE(res != nullptr);
  1700. EXPECT_EQ(200, res->status);
  1701. EXPECT_EQ("DELETE", res->body);
  1702. }
  1703. TEST_F(ServerTest, DeleteContentReceiver) {
  1704. auto res = cli_.Delete("/delete-body", "content", "text/plain");
  1705. ASSERT_TRUE(res != nullptr);
  1706. EXPECT_EQ(200, res->status);
  1707. EXPECT_EQ("content", res->body);
  1708. }
  1709. TEST_F(ServerTest, Options) {
  1710. auto res = cli_.Options("*");
  1711. ASSERT_TRUE(res != nullptr);
  1712. EXPECT_EQ(200, res->status);
  1713. EXPECT_EQ("GET, POST, HEAD, OPTIONS", res->get_header_value("Allow"));
  1714. EXPECT_TRUE(res->body.empty());
  1715. }
  1716. TEST_F(ServerTest, URL) {
  1717. auto res = cli_.Get("/request-target?aaa=bbb&ccc=ddd");
  1718. ASSERT_TRUE(res != nullptr);
  1719. EXPECT_EQ(200, res->status);
  1720. }
  1721. TEST_F(ServerTest, ArrayParam) {
  1722. auto res = cli_.Get("/array-param?array=value1&array=value2&array=value3");
  1723. ASSERT_TRUE(res != nullptr);
  1724. EXPECT_EQ(200, res->status);
  1725. }
  1726. TEST_F(ServerTest, NoMultipleHeaders) {
  1727. Headers headers = {{"Content-Length", "5"}};
  1728. auto res = cli_.Post("/validate-no-multiple-headers", headers, "hello",
  1729. "text/plain");
  1730. ASSERT_TRUE(res != nullptr);
  1731. EXPECT_EQ(200, res->status);
  1732. }
  1733. TEST_F(ServerTest, PostContentReceiver) {
  1734. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  1735. ASSERT_TRUE(res != nullptr);
  1736. ASSERT_EQ(200, res->status);
  1737. ASSERT_EQ("content", res->body);
  1738. }
  1739. TEST_F(ServerTest, PostMulitpartFilsContentReceiver) {
  1740. MultipartFormDataItems items = {
  1741. {"text1", "text default", "", ""},
  1742. {"text2", "aωb", "", ""},
  1743. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  1744. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  1745. {"file3", "", "", "application/octet-stream"},
  1746. };
  1747. auto res = cli_.Post("/content_receiver", items);
  1748. ASSERT_TRUE(res != nullptr);
  1749. EXPECT_EQ(200, res->status);
  1750. }
  1751. TEST_F(ServerTest, PostContentReceiverGzip) {
  1752. cli_.set_compress(true);
  1753. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  1754. ASSERT_TRUE(res != nullptr);
  1755. ASSERT_EQ(200, res->status);
  1756. ASSERT_EQ("content", res->body);
  1757. }
  1758. TEST_F(ServerTest, PutContentReceiver) {
  1759. auto res = cli_.Put("/content_receiver", "content", "text/plain");
  1760. ASSERT_TRUE(res != nullptr);
  1761. ASSERT_EQ(200, res->status);
  1762. ASSERT_EQ("content", res->body);
  1763. }
  1764. TEST_F(ServerTest, PatchContentReceiver) {
  1765. auto res = cli_.Patch("/content_receiver", "content", "text/plain");
  1766. ASSERT_TRUE(res != nullptr);
  1767. ASSERT_EQ(200, res->status);
  1768. ASSERT_EQ("content", res->body);
  1769. }
  1770. TEST_F(ServerTest, PostQueryStringAndBody) {
  1771. auto res =
  1772. cli_.Post("/query-string-and-body?key=value", "content", "text/plain");
  1773. ASSERT_TRUE(res != nullptr);
  1774. ASSERT_EQ(200, res->status);
  1775. }
  1776. TEST_F(ServerTest, HTTP2Magic) {
  1777. Request req;
  1778. req.method = "PRI";
  1779. req.path = "*";
  1780. req.body = "SM";
  1781. auto res = std::make_shared<Response>();
  1782. auto ret = cli_.send(req, *res);
  1783. ASSERT_TRUE(ret);
  1784. EXPECT_EQ(400, res->status);
  1785. }
  1786. TEST_F(ServerTest, KeepAlive) {
  1787. cli_.set_keep_alive_max_count(4);
  1788. std::vector<Request> requests;
  1789. Get(requests, "/hi");
  1790. Get(requests, "/hi");
  1791. Get(requests, "/hi");
  1792. Get(requests, "/not-exist");
  1793. Post(requests, "/empty", "", "text/plain");
  1794. std::vector<Response> responses;
  1795. auto ret = cli_.send(requests, responses);
  1796. ASSERT_TRUE(ret == true);
  1797. ASSERT_TRUE(requests.size() == responses.size());
  1798. for (size_t i = 0; i < 3; i++) {
  1799. auto &res = responses[i];
  1800. EXPECT_EQ(200, res.status);
  1801. EXPECT_EQ("text/plain", res.get_header_value("Content-Type"));
  1802. EXPECT_EQ("Hello World!", res.body);
  1803. }
  1804. {
  1805. auto &res = responses[3];
  1806. EXPECT_EQ(404, res.status);
  1807. }
  1808. {
  1809. auto &res = responses[4];
  1810. EXPECT_EQ(200, res.status);
  1811. EXPECT_EQ("text/plain", res.get_header_value("Content-Type"));
  1812. EXPECT_EQ("empty", res.body);
  1813. }
  1814. }
  1815. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1816. TEST_F(ServerTest, Gzip) {
  1817. Headers headers;
  1818. headers.emplace("Accept-Encoding", "gzip, deflate");
  1819. auto res = cli_.Get("/gzip", headers);
  1820. ASSERT_TRUE(res != nullptr);
  1821. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  1822. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1823. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  1824. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1825. "7890123456789012345678901234567890",
  1826. res->body);
  1827. EXPECT_EQ(200, res->status);
  1828. }
  1829. TEST_F(ServerTest, GzipWithoutAcceptEncoding) {
  1830. Headers headers;
  1831. auto res = cli_.Get("/gzip", headers);
  1832. ASSERT_TRUE(res != nullptr);
  1833. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  1834. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1835. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1836. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1837. "7890123456789012345678901234567890",
  1838. res->body);
  1839. EXPECT_EQ(200, res->status);
  1840. }
  1841. TEST_F(ServerTest, GzipWithContentReceiver) {
  1842. Headers headers;
  1843. headers.emplace("Accept-Encoding", "gzip, deflate");
  1844. std::string body;
  1845. auto res =
  1846. cli_.Get("/gzip", headers, [&](const char *data, uint64_t data_length) {
  1847. EXPECT_EQ(data_length, 100);
  1848. body.append(data, data_length);
  1849. return true;
  1850. });
  1851. ASSERT_TRUE(res != nullptr);
  1852. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  1853. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1854. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  1855. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1856. "7890123456789012345678901234567890",
  1857. body);
  1858. EXPECT_EQ(200, res->status);
  1859. }
  1860. TEST_F(ServerTest, GzipWithContentReceiverWithoutAcceptEncoding) {
  1861. Headers headers;
  1862. std::string body;
  1863. auto res =
  1864. cli_.Get("/gzip", headers, [&](const char *data, uint64_t data_length) {
  1865. EXPECT_EQ(data_length, 100);
  1866. body.append(data, data_length);
  1867. return true;
  1868. });
  1869. ASSERT_TRUE(res != nullptr);
  1870. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  1871. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1872. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1873. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1874. "7890123456789012345678901234567890",
  1875. body);
  1876. EXPECT_EQ(200, res->status);
  1877. }
  1878. TEST_F(ServerTest, NoGzip) {
  1879. Headers headers;
  1880. headers.emplace("Accept-Encoding", "gzip, deflate");
  1881. auto res = cli_.Get("/nogzip", headers);
  1882. ASSERT_TRUE(res != nullptr);
  1883. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  1884. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  1885. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1886. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1887. "7890123456789012345678901234567890",
  1888. res->body);
  1889. EXPECT_EQ(200, res->status);
  1890. }
  1891. TEST_F(ServerTest, NoGzipWithContentReceiver) {
  1892. Headers headers;
  1893. headers.emplace("Accept-Encoding", "gzip, deflate");
  1894. std::string body;
  1895. auto res =
  1896. cli_.Get("/nogzip", headers, [&](const char *data, uint64_t data_length) {
  1897. EXPECT_EQ(data_length, 100);
  1898. body.append(data, data_length);
  1899. return true;
  1900. });
  1901. ASSERT_TRUE(res != nullptr);
  1902. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  1903. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  1904. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  1905. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  1906. "7890123456789012345678901234567890",
  1907. body);
  1908. EXPECT_EQ(200, res->status);
  1909. }
  1910. TEST_F(ServerTest, MultipartFormDataGzip) {
  1911. MultipartFormDataItems items = {
  1912. {"key1", "test", "", ""},
  1913. {"key2", "--abcdefg123", "", ""},
  1914. };
  1915. cli_.set_compress(true);
  1916. auto res = cli_.Post("/gzipmultipart", items);
  1917. ASSERT_TRUE(res != nullptr);
  1918. EXPECT_EQ(200, res->status);
  1919. }
  1920. #endif
  1921. // Sends a raw request to a server listening at HOST:PORT.
  1922. static bool send_request(time_t read_timeout_sec, const std::string &req,
  1923. std::string *resp = nullptr) {
  1924. auto client_sock = detail::create_client_socket(HOST, PORT, /*timeout_sec=*/5,
  1925. std::string());
  1926. if (client_sock == INVALID_SOCKET) { return false; }
  1927. return detail::process_and_close_socket(
  1928. true, client_sock, 1, read_timeout_sec, 0,
  1929. [&](Stream &strm, bool /*last_connection*/, bool &
  1930. /*connection_close*/) -> bool {
  1931. if (req.size() !=
  1932. static_cast<size_t>(strm.write(req.data(), req.size()))) {
  1933. return false;
  1934. }
  1935. char buf[512];
  1936. detail::stream_line_reader line_reader(strm, buf, sizeof(buf));
  1937. while (line_reader.getline()) {
  1938. if (resp) { *resp += line_reader.ptr(); }
  1939. }
  1940. return true;
  1941. });
  1942. }
  1943. TEST(ServerRequestParsingTest, TrimWhitespaceFromHeaderValues) {
  1944. Server svr;
  1945. std::string header_value;
  1946. svr.Get("/validate-ws-in-headers", [&](const Request &req, Response &res) {
  1947. header_value = req.get_header_value("foo");
  1948. res.set_content("ok", "text/plain");
  1949. });
  1950. thread t = thread([&] { svr.listen(HOST, PORT); });
  1951. while (!svr.is_running()) {
  1952. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1953. }
  1954. // Only space and horizontal tab are whitespace. Make sure other whitespace-
  1955. // like characters are not treated the same - use vertical tab and escape.
  1956. const std::string req = "GET /validate-ws-in-headers HTTP/1.1\r\n"
  1957. "foo: \t \v bar \e\t \r\n"
  1958. "Connection: close\r\n"
  1959. "\r\n";
  1960. ASSERT_TRUE(send_request(5, req));
  1961. svr.stop();
  1962. t.join();
  1963. EXPECT_EQ(header_value, "\v bar \e");
  1964. }
  1965. // Sends a raw request and verifies that there isn't a crash or exception.
  1966. static void test_raw_request(const std::string &req,
  1967. std::string *out = nullptr) {
  1968. Server svr;
  1969. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  1970. res.set_content("ok", "text/plain");
  1971. });
  1972. svr.Put("/put_hi", [&](const Request & /*req*/, Response &res) {
  1973. res.set_content("ok", "text/plain");
  1974. });
  1975. // Server read timeout must be longer than the client read timeout for the
  1976. // bug to reproduce, probably to force the server to process a request
  1977. // without a trailing blank line.
  1978. const time_t client_read_timeout_sec = 1;
  1979. svr.set_read_timeout(client_read_timeout_sec + 1, 0);
  1980. bool listen_thread_ok = false;
  1981. thread t = thread([&] { listen_thread_ok = svr.listen(HOST, PORT); });
  1982. while (!svr.is_running()) {
  1983. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1984. }
  1985. ASSERT_TRUE(send_request(client_read_timeout_sec, req, out));
  1986. svr.stop();
  1987. t.join();
  1988. EXPECT_TRUE(listen_thread_ok);
  1989. }
  1990. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity) {
  1991. // A certain header line causes an exception if the header property is parsed
  1992. // naively with a single regex. This occurs with libc++ but not libstdc++.
  1993. test_raw_request(
  1994. "GET /hi HTTP/1.1\r\n"
  1995. " : "
  1996. " "
  1997. " ");
  1998. }
  1999. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity2) {
  2000. // A certain header line causes an exception if the header property *name* is
  2001. // parsed with a regular expression starting with "(.+?):" - this is a non-
  2002. // greedy matcher and requires backtracking when there are a lot of ":"
  2003. // characters.
  2004. // This occurs with libc++ but not libstdc++.
  2005. test_raw_request(
  2006. "GET /hi HTTP/1.1\r\n"
  2007. ":-:::::::::::::::::::::::::::-::::::::::::::::::::::::@-&&&&&&&&&&&"
  2008. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  2009. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-:::::"
  2010. "::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::::::::::::::::::::"
  2011. ":::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::"
  2012. "::::::::-:::::::::::::::::@-&&&&&&&--:::::::-::::::::::::::::::::::"
  2013. ":::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::"
  2014. "::::::::::-:::::::::::::::::@-&&&&&::::::::::::-:::::::::::::::::@-"
  2015. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  2016. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  2017. "::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::@-&&"
  2018. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  2019. "::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&"
  2020. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  2021. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&"
  2022. "&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&"
  2023. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  2024. "-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::"
  2025. "::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::"
  2026. ":::::@-&&&&&&&&&&&::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::"
  2027. ":::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::"
  2028. "::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-"
  2029. ":::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&---&&:&"
  2030. "&&.0------------:-:::::::::::::::::::::::::::::-:::::::::::::::::@-"
  2031. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  2032. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  2033. "::::@-&&&&&&&&&&&---&&:&&&.0------------O--------\rH PUTHTTP/1.1\r\n"
  2034. "&&&%%%");
  2035. }
  2036. TEST(ServerRequestParsingTest, ExcessiveWhitespaceInUnparseableHeaderLine) {
  2037. // Make sure this doesn't crash the server.
  2038. // In a previous version of the header line regex, the "\r" rendered the line
  2039. // unparseable and the regex engine repeatedly backtracked, trying to look for
  2040. // a new position where the leading white space ended and the field value
  2041. // began.
  2042. // The crash occurs with libc++ but not libstdc++.
  2043. test_raw_request("GET /hi HTTP/1.1\r\n"
  2044. "a:" +
  2045. std::string(2000, ' ') + '\r' + std::string(20, 'z') +
  2046. "\r\n"
  2047. "\r\n");
  2048. }
  2049. TEST(ServerRequestParsingTest, InvalidFirstChunkLengthInRequest) {
  2050. std::string out;
  2051. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2052. "Content-Type: text/plain\r\n"
  2053. "Transfer-Encoding: chunked\r\n"
  2054. "\r\n"
  2055. "nothex\r\n",
  2056. &out);
  2057. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2058. }
  2059. TEST(ServerRequestParsingTest, InvalidSecondChunkLengthInRequest) {
  2060. std::string out;
  2061. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2062. "Content-Type: text/plain\r\n"
  2063. "Transfer-Encoding: chunked\r\n"
  2064. "\r\n"
  2065. "3\r\n"
  2066. "xyz\r\n"
  2067. "NaN\r\n",
  2068. &out);
  2069. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2070. }
  2071. TEST(ServerRequestParsingTest, ChunkLengthTooHighInRequest) {
  2072. std::string out;
  2073. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  2074. "Content-Type: text/plain\r\n"
  2075. "Transfer-Encoding: chunked\r\n"
  2076. "\r\n"
  2077. // Length is too large for 64 bits.
  2078. "1ffffffffffffffff\r\n"
  2079. "xyz\r\n",
  2080. &out);
  2081. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  2082. }
  2083. TEST(ServerRequestParsingTest, InvalidHeaderTextWithExtraCR) {
  2084. test_raw_request("GET /hi HTTP/1.1\r\n"
  2085. "Content-Type: text/plain\r\n\r");
  2086. }
  2087. TEST(ServerStopTest, StopServerWithChunkedTransmission) {
  2088. Server svr;
  2089. svr.Get("/events", [](const Request & /*req*/, Response &res) {
  2090. res.set_header("Content-Type", "text/event-stream");
  2091. res.set_header("Cache-Control", "no-cache");
  2092. res.set_chunked_content_provider([](size_t offset, const DataSink &sink) {
  2093. char buffer[27];
  2094. auto size = static_cast<size_t>(sprintf(buffer, "data:%ld\n\n", offset));
  2095. sink.write(buffer, size);
  2096. std::this_thread::sleep_for(std::chrono::seconds(1));
  2097. });
  2098. });
  2099. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2100. while (!svr.is_running()) {
  2101. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2102. }
  2103. Client client(HOST, PORT);
  2104. const Headers headers = {{"Accept", "text/event-stream"},
  2105. {"Connection", "Keep-Alive"}};
  2106. auto get_thread = std::thread([&client, &headers]() {
  2107. std::shared_ptr<Response> res = client.Get(
  2108. "/events", headers,
  2109. [](const char * /*data*/, size_t /*len*/) -> bool { return true; });
  2110. });
  2111. // Give GET time to get a few messages.
  2112. std::this_thread::sleep_for(std::chrono::seconds(2));
  2113. svr.stop();
  2114. listen_thread.join();
  2115. get_thread.join();
  2116. ASSERT_FALSE(svr.is_running());
  2117. }
  2118. TEST(MountTest, Unmount) {
  2119. Server svr;
  2120. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2121. while (!svr.is_running()) {
  2122. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2123. }
  2124. // Give GET time to get a few messages.
  2125. std::this_thread::sleep_for(std::chrono::seconds(1));
  2126. Client cli("localhost", PORT);
  2127. svr.set_mount_point("/mount2", "./www2");
  2128. auto res = cli.Get("/");
  2129. ASSERT_TRUE(res != nullptr);
  2130. EXPECT_EQ(404, res->status);
  2131. res = cli.Get("/mount2/dir/test.html");
  2132. ASSERT_TRUE(res != nullptr);
  2133. EXPECT_EQ(200, res->status);
  2134. svr.set_mount_point("/", "./www");
  2135. res = cli.Get("/dir/");
  2136. ASSERT_TRUE(res != nullptr);
  2137. EXPECT_EQ(200, res->status);
  2138. svr.remove_mount_point("/");
  2139. res = cli.Get("/dir/");
  2140. ASSERT_TRUE(res != nullptr);
  2141. EXPECT_EQ(404, res->status);
  2142. svr.remove_mount_point("/mount2");
  2143. res = cli.Get("/mount2/dir/test.html");
  2144. ASSERT_TRUE(res != nullptr);
  2145. EXPECT_EQ(404, res->status);
  2146. svr.stop();
  2147. listen_thread.join();
  2148. ASSERT_FALSE(svr.is_running());
  2149. }
  2150. TEST(ExceptionTest, ThrowExceptionInHandler) {
  2151. Server svr;
  2152. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  2153. throw std::runtime_error("exception...");
  2154. res.set_content("Hello World!", "text/plain");
  2155. });
  2156. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  2157. while (!svr.is_running()) {
  2158. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2159. }
  2160. // Give GET time to get a few messages.
  2161. std::this_thread::sleep_for(std::chrono::seconds(1));
  2162. Client cli("localhost", PORT);
  2163. auto res = cli.Get("/hi");
  2164. ASSERT_TRUE(res != nullptr);
  2165. EXPECT_EQ(500, res->status);
  2166. ASSERT_FALSE(res->has_header("EXCEPTION_WHAT"));
  2167. svr.stop();
  2168. listen_thread.join();
  2169. ASSERT_FALSE(svr.is_running());
  2170. }
  2171. class ServerTestWithAI_PASSIVE : public ::testing::Test {
  2172. protected:
  2173. ServerTestWithAI_PASSIVE()
  2174. : cli_(HOST, PORT)
  2175. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2176. ,
  2177. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  2178. #endif
  2179. {
  2180. }
  2181. virtual void SetUp() {
  2182. svr_.Get("/hi", [&](const Request & /*req*/, Response &res) {
  2183. res.set_content("Hello World!", "text/plain");
  2184. });
  2185. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(nullptr, PORT, AI_PASSIVE)); });
  2186. while (!svr_.is_running()) {
  2187. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2188. }
  2189. }
  2190. virtual void TearDown() {
  2191. svr_.stop();
  2192. t_.join();
  2193. }
  2194. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2195. SSLClient cli_;
  2196. SSLServer svr_;
  2197. #else
  2198. Client cli_;
  2199. Server svr_;
  2200. #endif
  2201. thread t_;
  2202. };
  2203. TEST_F(ServerTestWithAI_PASSIVE, GetMethod200) {
  2204. auto res = cli_.Get("/hi");
  2205. ASSERT_TRUE(res != nullptr);
  2206. EXPECT_EQ(200, res->status);
  2207. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2208. EXPECT_EQ("Hello World!", res->body);
  2209. }
  2210. class ServerUpDownTest : public ::testing::Test {
  2211. protected:
  2212. ServerUpDownTest() : cli_(HOST, PORT) {}
  2213. virtual void SetUp() {
  2214. t_ = thread([&]() {
  2215. svr_.bind_to_any_port(HOST);
  2216. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  2217. ASSERT_TRUE(svr_.listen_after_bind());
  2218. });
  2219. while (!svr_.is_running()) {
  2220. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2221. }
  2222. }
  2223. virtual void TearDown() {
  2224. svr_.stop();
  2225. t_.join();
  2226. }
  2227. Client cli_;
  2228. Server svr_;
  2229. thread t_;
  2230. };
  2231. TEST_F(ServerUpDownTest, QuickStartStop) {
  2232. // Should not crash, especially when run with
  2233. // --gtest_filter=ServerUpDownTest.QuickStartStop --gtest_repeat=1000
  2234. }
  2235. class PayloadMaxLengthTest : public ::testing::Test {
  2236. protected:
  2237. PayloadMaxLengthTest()
  2238. : cli_(HOST, PORT)
  2239. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2240. ,
  2241. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  2242. #endif
  2243. {
  2244. }
  2245. virtual void SetUp() {
  2246. svr_.set_payload_max_length(8);
  2247. svr_.Post("/test", [&](const Request & /*req*/, Response &res) {
  2248. res.set_content("test", "text/plain");
  2249. });
  2250. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  2251. while (!svr_.is_running()) {
  2252. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2253. }
  2254. }
  2255. virtual void TearDown() {
  2256. svr_.stop();
  2257. t_.join();
  2258. }
  2259. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2260. SSLClient cli_;
  2261. SSLServer svr_;
  2262. #else
  2263. Client cli_;
  2264. Server svr_;
  2265. #endif
  2266. thread t_;
  2267. };
  2268. TEST_F(PayloadMaxLengthTest, ExceedLimit) {
  2269. auto res = cli_.Post("/test", "123456789", "text/plain");
  2270. ASSERT_TRUE(res != nullptr);
  2271. EXPECT_EQ(413, res->status);
  2272. res = cli_.Post("/test", "12345678", "text/plain");
  2273. ASSERT_TRUE(res != nullptr);
  2274. EXPECT_EQ(200, res->status);
  2275. }
  2276. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2277. TEST(SSLClientTest, ServerNameIndication) {
  2278. SSLClient cli("httpbin.org", 443);
  2279. auto res = cli.Get("/get");
  2280. ASSERT_TRUE(res != nullptr);
  2281. ASSERT_EQ(200, res->status);
  2282. }
  2283. TEST(SSLClientTest, ServerCertificateVerification) {
  2284. SSLClient cli("google.com");
  2285. auto res = cli.Get("/");
  2286. ASSERT_TRUE(res != nullptr);
  2287. ASSERT_EQ(301, res->status);
  2288. cli.enable_server_certificate_verification(true);
  2289. res = cli.Get("/");
  2290. ASSERT_TRUE(res == nullptr);
  2291. cli.set_ca_cert_path(CA_CERT_FILE);
  2292. res = cli.Get("/");
  2293. ASSERT_TRUE(res != nullptr);
  2294. ASSERT_EQ(301, res->status);
  2295. }
  2296. TEST(SSLClientTest, WildcardHostNameMatch) {
  2297. SSLClient cli("www.youtube.com");
  2298. cli.set_ca_cert_path(CA_CERT_FILE);
  2299. cli.enable_server_certificate_verification(true);
  2300. auto res = cli.Get("/");
  2301. ASSERT_TRUE(res != nullptr);
  2302. ASSERT_EQ(200, res->status);
  2303. }
  2304. TEST(SSLClientServerTest, ClientCertPresent) {
  2305. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  2306. CLIENT_CA_CERT_DIR);
  2307. ASSERT_TRUE(svr.is_valid());
  2308. svr.Get("/test", [&](const Request &req, Response &res) {
  2309. res.set_content("test", "text/plain");
  2310. svr.stop();
  2311. ASSERT_TRUE(true);
  2312. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  2313. ASSERT_TRUE(peer_cert != nullptr);
  2314. auto subject_name = X509_get_subject_name(peer_cert);
  2315. ASSERT_TRUE(subject_name != nullptr);
  2316. std::string common_name;
  2317. {
  2318. char name[BUFSIZ];
  2319. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  2320. name, sizeof(name));
  2321. common_name.assign(name, static_cast<size_t>(name_len));
  2322. }
  2323. EXPECT_EQ("Common Name", common_name);
  2324. X509_free(peer_cert);
  2325. });
  2326. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2327. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2328. httplib::SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  2329. auto res = cli.Get("/test");
  2330. cli.set_timeout_sec(30);
  2331. ASSERT_TRUE(res != nullptr);
  2332. ASSERT_EQ(200, res->status);
  2333. t.join();
  2334. }
  2335. TEST(SSLClientServerTest, MemoryClientCertPresent) {
  2336. X509 *server_cert;
  2337. EVP_PKEY *server_private_key;
  2338. X509_STORE *client_ca_cert_store;
  2339. X509 *client_cert;
  2340. EVP_PKEY *client_private_key;
  2341. FILE *f = fopen(SERVER_CERT_FILE, "r+");
  2342. server_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2343. fclose(f);
  2344. f = fopen(SERVER_PRIVATE_KEY_FILE, "r+");
  2345. server_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  2346. fclose(f);
  2347. f = fopen(CLIENT_CA_CERT_FILE, "r+");
  2348. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2349. client_ca_cert_store = X509_STORE_new();
  2350. X509_STORE_add_cert(client_ca_cert_store, client_cert);
  2351. X509_free(client_cert);
  2352. fclose(f);
  2353. f = fopen(CLIENT_CERT_FILE, "r+");
  2354. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  2355. fclose(f);
  2356. f = fopen(CLIENT_PRIVATE_KEY_FILE, "r+");
  2357. client_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  2358. fclose(f);
  2359. SSLServer svr(server_cert, server_private_key, client_ca_cert_store);
  2360. ASSERT_TRUE(svr.is_valid());
  2361. svr.Get("/test", [&](const Request &req, Response &res) {
  2362. res.set_content("test", "text/plain");
  2363. svr.stop();
  2364. ASSERT_TRUE(true);
  2365. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  2366. ASSERT_TRUE(peer_cert != nullptr);
  2367. auto subject_name = X509_get_subject_name(peer_cert);
  2368. ASSERT_TRUE(subject_name != nullptr);
  2369. std::string common_name;
  2370. {
  2371. char name[BUFSIZ];
  2372. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  2373. name, sizeof(name));
  2374. common_name.assign(name, static_cast<size_t>(name_len));
  2375. }
  2376. EXPECT_EQ("Common Name", common_name);
  2377. X509_free(peer_cert);
  2378. });
  2379. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2380. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2381. httplib::SSLClient cli(HOST, PORT, client_cert, client_private_key);
  2382. auto res = cli.Get("/test");
  2383. cli.set_timeout_sec(30);
  2384. ASSERT_TRUE(res != nullptr);
  2385. ASSERT_EQ(200, res->status);
  2386. X509_free(server_cert);
  2387. EVP_PKEY_free(server_private_key);
  2388. X509_free(client_cert);
  2389. EVP_PKEY_free(client_private_key);
  2390. t.join();
  2391. }
  2392. TEST(SSLClientServerTest, ClientCertMissing) {
  2393. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  2394. CLIENT_CA_CERT_DIR);
  2395. ASSERT_TRUE(svr.is_valid());
  2396. svr.Get("/test", [&](const Request &, Response &) { ASSERT_TRUE(false); });
  2397. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2398. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2399. httplib::SSLClient cli(HOST, PORT);
  2400. auto res = cli.Get("/test");
  2401. cli.set_timeout_sec(30);
  2402. ASSERT_TRUE(res == nullptr);
  2403. svr.stop();
  2404. t.join();
  2405. }
  2406. TEST(SSLClientServerTest, TrustDirOptional) {
  2407. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE);
  2408. ASSERT_TRUE(svr.is_valid());
  2409. svr.Get("/test", [&](const Request &, Response &res) {
  2410. res.set_content("test", "text/plain");
  2411. svr.stop();
  2412. });
  2413. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  2414. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2415. httplib::SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  2416. auto res = cli.Get("/test");
  2417. cli.set_timeout_sec(30);
  2418. ASSERT_TRUE(res != nullptr);
  2419. ASSERT_EQ(200, res->status);
  2420. t.join();
  2421. }
  2422. /* Cannot test this case as there is no external access to SSL object to check
  2423. SSL_get_peer_certificate() == NULL TEST(SSLClientServerTest,
  2424. ClientCAPathRequired) { SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE,
  2425. nullptr, CLIENT_CA_CERT_DIR);
  2426. }
  2427. */
  2428. #endif
  2429. #ifdef _WIN32
  2430. TEST(CleanupTest, WSACleanup) {
  2431. int ret = WSACleanup();
  2432. ASSERT_EQ(0, ret);
  2433. }
  2434. #endif