test.cc 86 KB

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