test.cc 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794
  1. #include <httplib.h>
  2. #include <gtest/gtest.h>
  3. #include <atomic>
  4. #include <chrono>
  5. #include <future>
  6. #include <sstream>
  7. #include <stdexcept>
  8. #include <thread>
  9. #include <type_traits>
  10. #define SERVER_CERT_FILE "./cert.pem"
  11. #define SERVER_CERT2_FILE "./cert2.pem"
  12. #define SERVER_PRIVATE_KEY_FILE "./key.pem"
  13. #define CA_CERT_FILE "./ca-bundle.crt"
  14. #define CLIENT_CA_CERT_FILE "./rootCA.cert.pem"
  15. #define CLIENT_CA_CERT_DIR "."
  16. #define CLIENT_CERT_FILE "./client.cert.pem"
  17. #define CLIENT_PRIVATE_KEY_FILE "./client.key.pem"
  18. #define SERVER_ENCRYPTED_CERT_FILE "./cert_encrypted.pem"
  19. #define SERVER_ENCRYPTED_PRIVATE_KEY_FILE "./key_encrypted.pem"
  20. #define SERVER_ENCRYPTED_PRIVATE_KEY_PASS "test123!"
  21. using namespace std;
  22. using namespace httplib;
  23. const char *HOST = "localhost";
  24. const int PORT = 1234;
  25. const string LONG_QUERY_VALUE = string(25000, '@');
  26. const string LONG_QUERY_URL = "/long-query-value?key=" + LONG_QUERY_VALUE;
  27. const std::string JSON_DATA = "{\"hello\":\"world\"}";
  28. const string LARGE_DATA = string(1024 * 1024 * 100, '@'); // 100MB
  29. MultipartFormData &get_file_value(MultipartFormDataItems &files,
  30. const char *key) {
  31. auto it = std::find_if(
  32. files.begin(), files.end(),
  33. [&](const MultipartFormData &file) { return file.name == key; });
  34. #ifdef CPPHTTPLIB_NO_EXCEPTIONS
  35. return *it;
  36. #else
  37. if (it != files.end()) { return *it; }
  38. throw std::runtime_error("invalid mulitpart form data name error");
  39. #endif
  40. }
  41. TEST(ConstructorTest, MoveConstructible) {
  42. EXPECT_FALSE(std::is_copy_constructible<Client>::value);
  43. EXPECT_TRUE(std::is_nothrow_move_constructible<Client>::value);
  44. }
  45. #ifdef _WIN32
  46. TEST(StartupTest, WSAStartup) {
  47. WSADATA wsaData;
  48. int ret = WSAStartup(0x0002, &wsaData);
  49. ASSERT_EQ(0, ret);
  50. }
  51. #endif
  52. TEST(DecodeURLTest, PercentCharacter) {
  53. EXPECT_EQ(
  54. detail::decode_url(
  55. R"(descrip=Gastos%20%C3%A1%C3%A9%C3%AD%C3%B3%C3%BA%C3%B1%C3%91%206)",
  56. false),
  57. R"(descrip=Gastos áéíóúñÑ 6)");
  58. }
  59. TEST(EncodeQueryParamTest, ParseUnescapedChararactersTest) {
  60. string unescapedCharacters = "-_.!~*'()";
  61. EXPECT_EQ(detail::encode_query_param(unescapedCharacters), "-_.!~*'()");
  62. }
  63. TEST(EncodeQueryParamTest, ParseReservedCharactersTest) {
  64. string reservedCharacters = ";,/?:@&=+$";
  65. EXPECT_EQ(detail::encode_query_param(reservedCharacters),
  66. "%3B%2C%2F%3F%3A%40%26%3D%2B%24");
  67. }
  68. TEST(EncodeQueryParamTest, TestUTF8Characters) {
  69. string chineseCharacters = "中国語";
  70. string russianCharacters = "дом";
  71. string brazilianCharacters = "óculos";
  72. EXPECT_EQ(detail::encode_query_param(chineseCharacters),
  73. "%E4%B8%AD%E5%9B%BD%E8%AA%9E");
  74. EXPECT_EQ(detail::encode_query_param(russianCharacters),
  75. "%D0%B4%D0%BE%D0%BC");
  76. EXPECT_EQ(detail::encode_query_param(brazilianCharacters), "%C3%B3culos");
  77. }
  78. TEST(TrimTests, TrimStringTests) {
  79. EXPECT_EQ("abc", detail::trim_copy("abc"));
  80. EXPECT_EQ("abc", detail::trim_copy(" abc "));
  81. EXPECT_TRUE(detail::trim_copy("").empty());
  82. }
  83. TEST(SplitTest, ParseQueryString) {
  84. string s = "key1=val1&key2=val2&key3=val3";
  85. Params dic;
  86. detail::split(s.c_str(), s.c_str() + s.size(), '&',
  87. [&](const char *b, const char *e) {
  88. string key, val;
  89. detail::split(b, e, '=', [&](const char *b, const char *e) {
  90. if (key.empty()) {
  91. key.assign(b, e);
  92. } else {
  93. val.assign(b, e);
  94. }
  95. });
  96. dic.emplace(key, val);
  97. });
  98. EXPECT_EQ("val1", dic.find("key1")->second);
  99. EXPECT_EQ("val2", dic.find("key2")->second);
  100. EXPECT_EQ("val3", dic.find("key3")->second);
  101. }
  102. TEST(SplitTest, ParseInvalidQueryTests) {
  103. {
  104. string s = " ";
  105. Params dict;
  106. detail::parse_query_text(s, dict);
  107. EXPECT_TRUE(dict.empty());
  108. }
  109. {
  110. string s = " = =";
  111. Params dict;
  112. detail::parse_query_text(s, dict);
  113. EXPECT_TRUE(dict.empty());
  114. }
  115. }
  116. TEST(ParseQueryTest, ParseQueryString) {
  117. string s = "key1=val1&key2=val2&key3=val3";
  118. Params dic;
  119. detail::parse_query_text(s, dic);
  120. EXPECT_EQ("val1", dic.find("key1")->second);
  121. EXPECT_EQ("val2", dic.find("key2")->second);
  122. EXPECT_EQ("val3", dic.find("key3")->second);
  123. }
  124. TEST(ParamsToQueryTest, ConvertParamsToQuery) {
  125. Params dic;
  126. EXPECT_EQ(detail::params_to_query_str(dic), "");
  127. dic.emplace("key1", "val1");
  128. EXPECT_EQ(detail::params_to_query_str(dic), "key1=val1");
  129. dic.emplace("key2", "val2");
  130. dic.emplace("key3", "val3");
  131. EXPECT_EQ(detail::params_to_query_str(dic), "key1=val1&key2=val2&key3=val3");
  132. }
  133. TEST(GetHeaderValueTest, DefaultValue) {
  134. Headers headers = {{"Dummy", "Dummy"}};
  135. auto val = detail::get_header_value(headers, "Content-Type", 0, "text/plain");
  136. EXPECT_STREQ("text/plain", val);
  137. }
  138. TEST(GetHeaderValueTest, DefaultValueInt) {
  139. Headers headers = {{"Dummy", "Dummy"}};
  140. auto val =
  141. detail::get_header_value<uint64_t>(headers, "Content-Length", 0, 100);
  142. EXPECT_EQ(100ull, val);
  143. }
  144. TEST(GetHeaderValueTest, RegularValue) {
  145. Headers headers = {{"Content-Type", "text/html"}, {"Dummy", "Dummy"}};
  146. auto val = detail::get_header_value(headers, "Content-Type", 0, "text/plain");
  147. EXPECT_STREQ("text/html", val);
  148. }
  149. TEST(GetHeaderValueTest, RegularValueWithDifferentCase) {
  150. Headers headers = {{"Content-Type", "text/html"}, {"Dummy", "Dummy"}};
  151. auto val = detail::get_header_value(headers, "content-type", 0, "text/plain");
  152. EXPECT_STREQ("text/html", val);
  153. }
  154. TEST(GetHeaderValueTest, SetContent) {
  155. Response res;
  156. res.set_content("html", "text/html");
  157. EXPECT_EQ("text/html", res.get_header_value("Content-Type"));
  158. res.set_content("text", "text/plain");
  159. EXPECT_EQ(1U, res.get_header_value_count("Content-Type"));
  160. EXPECT_EQ("text/plain", res.get_header_value("Content-Type"));
  161. }
  162. TEST(GetHeaderValueTest, RegularValueInt) {
  163. Headers headers = {{"Content-Length", "100"}, {"Dummy", "Dummy"}};
  164. auto val =
  165. detail::get_header_value<uint64_t>(headers, "Content-Length", 0, 0);
  166. EXPECT_EQ(100ull, val);
  167. }
  168. TEST(GetHeaderValueTest, Range) {
  169. {
  170. Headers headers = {make_range_header({{1, -1}})};
  171. auto val = detail::get_header_value(headers, "Range", 0, 0);
  172. EXPECT_STREQ("bytes=1-", val);
  173. }
  174. {
  175. Headers headers = {make_range_header({{-1, 1}})};
  176. auto val = detail::get_header_value(headers, "Range", 0, 0);
  177. EXPECT_STREQ("bytes=-1", val);
  178. }
  179. {
  180. Headers headers = {make_range_header({{1, 10}})};
  181. auto val = detail::get_header_value(headers, "Range", 0, 0);
  182. EXPECT_STREQ("bytes=1-10", val);
  183. }
  184. {
  185. Headers headers = {make_range_header({{1, 10}, {100, -1}})};
  186. auto val = detail::get_header_value(headers, "Range", 0, 0);
  187. EXPECT_STREQ("bytes=1-10, 100-", val);
  188. }
  189. {
  190. Headers headers = {make_range_header({{1, 10}, {100, 200}})};
  191. auto val = detail::get_header_value(headers, "Range", 0, 0);
  192. EXPECT_STREQ("bytes=1-10, 100-200", val);
  193. }
  194. {
  195. Headers headers = {make_range_header({{0, 0}, {-1, 1}})};
  196. auto val = detail::get_header_value(headers, "Range", 0, 0);
  197. EXPECT_STREQ("bytes=0-0, -1", val);
  198. }
  199. }
  200. TEST(ParseHeaderValueTest, Range) {
  201. {
  202. Ranges ranges;
  203. auto ret = detail::parse_range_header("bytes=1-", ranges);
  204. EXPECT_TRUE(ret);
  205. EXPECT_EQ(1u, ranges.size());
  206. EXPECT_EQ(1u, ranges[0].first);
  207. EXPECT_EQ(-1, ranges[0].second);
  208. }
  209. {
  210. Ranges ranges;
  211. auto ret = detail::parse_range_header("bytes=-1", ranges);
  212. EXPECT_TRUE(ret);
  213. EXPECT_EQ(1u, ranges.size());
  214. EXPECT_EQ(-1, ranges[0].first);
  215. EXPECT_EQ(1u, ranges[0].second);
  216. }
  217. {
  218. Ranges ranges;
  219. auto ret = detail::parse_range_header("bytes=1-10", ranges);
  220. EXPECT_TRUE(ret);
  221. EXPECT_EQ(1u, ranges.size());
  222. EXPECT_EQ(1u, ranges[0].first);
  223. EXPECT_EQ(10u, ranges[0].second);
  224. }
  225. {
  226. Ranges ranges;
  227. auto ret = detail::parse_range_header("bytes=10-1", ranges);
  228. EXPECT_FALSE(ret);
  229. }
  230. {
  231. Ranges ranges;
  232. auto ret = detail::parse_range_header("bytes=1-10, 100-", ranges);
  233. EXPECT_TRUE(ret);
  234. EXPECT_EQ(2u, ranges.size());
  235. EXPECT_EQ(1u, ranges[0].first);
  236. EXPECT_EQ(10u, ranges[0].second);
  237. EXPECT_EQ(100u, ranges[1].first);
  238. EXPECT_EQ(-1, ranges[1].second);
  239. }
  240. {
  241. Ranges ranges;
  242. auto ret =
  243. detail::parse_range_header("bytes=1-10, 100-200, 300-400", ranges);
  244. EXPECT_TRUE(ret);
  245. EXPECT_EQ(3u, ranges.size());
  246. EXPECT_EQ(1u, ranges[0].first);
  247. EXPECT_EQ(10u, ranges[0].second);
  248. EXPECT_EQ(100u, ranges[1].first);
  249. EXPECT_EQ(200u, ranges[1].second);
  250. EXPECT_EQ(300u, ranges[2].first);
  251. EXPECT_EQ(400u, ranges[2].second);
  252. }
  253. }
  254. TEST(ParseAcceptEncoding1, AcceptEncoding) {
  255. Request req;
  256. req.set_header("Accept-Encoding", "gzip");
  257. Response res;
  258. res.set_header("Content-Type", "text/plain");
  259. auto ret = detail::encoding_type(req, res);
  260. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  261. EXPECT_TRUE(ret == detail::EncodingType::Gzip);
  262. #else
  263. EXPECT_TRUE(ret == detail::EncodingType::None);
  264. #endif
  265. }
  266. TEST(ParseAcceptEncoding2, AcceptEncoding) {
  267. Request req;
  268. req.set_header("Accept-Encoding", "gzip, deflate, br");
  269. Response res;
  270. res.set_header("Content-Type", "text/plain");
  271. auto ret = detail::encoding_type(req, res);
  272. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  273. EXPECT_TRUE(ret == detail::EncodingType::Brotli);
  274. #elif CPPHTTPLIB_ZLIB_SUPPORT
  275. EXPECT_TRUE(ret == detail::EncodingType::Gzip);
  276. #else
  277. EXPECT_TRUE(ret == detail::EncodingType::None);
  278. #endif
  279. }
  280. TEST(ParseAcceptEncoding3, AcceptEncoding) {
  281. Request req;
  282. req.set_header("Accept-Encoding", "br;q=1.0, gzip;q=0.8, *;q=0.1");
  283. Response res;
  284. res.set_header("Content-Type", "text/plain");
  285. auto ret = detail::encoding_type(req, res);
  286. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  287. EXPECT_TRUE(ret == detail::EncodingType::Brotli);
  288. #elif CPPHTTPLIB_ZLIB_SUPPORT
  289. EXPECT_TRUE(ret == detail::EncodingType::Gzip);
  290. #else
  291. EXPECT_TRUE(ret == detail::EncodingType::None);
  292. #endif
  293. }
  294. TEST(BufferStreamTest, read) {
  295. detail::BufferStream strm1;
  296. Stream &strm = strm1;
  297. EXPECT_EQ(5, strm.write("hello"));
  298. char buf[512];
  299. EXPECT_EQ(2, strm.read(buf, 2));
  300. EXPECT_EQ('h', buf[0]);
  301. EXPECT_EQ('e', buf[1]);
  302. EXPECT_EQ(2, strm.read(buf, 2));
  303. EXPECT_EQ('l', buf[0]);
  304. EXPECT_EQ('l', buf[1]);
  305. EXPECT_EQ(1, strm.read(buf, 1));
  306. EXPECT_EQ('o', buf[0]);
  307. EXPECT_EQ(0, strm.read(buf, 1));
  308. }
  309. TEST(ChunkedEncodingTest, FromHTTPWatch_Online) {
  310. auto host = "www.httpwatch.com";
  311. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  312. auto port = 443;
  313. SSLClient cli(host, port);
  314. #else
  315. auto port = 80;
  316. Client cli(host, port);
  317. #endif
  318. cli.set_connection_timeout(2);
  319. auto res =
  320. cli.Get("/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137");
  321. ASSERT_TRUE(res);
  322. std::string out;
  323. detail::read_file("./image.jpg", out);
  324. EXPECT_EQ(200, res->status);
  325. EXPECT_EQ(out, res->body);
  326. }
  327. TEST(HostnameToIPConversionTest, HTTPWatch_Online) {
  328. auto host = "www.httpwatch.com";
  329. auto ip = hosted_at(host);
  330. EXPECT_EQ("191.236.16.12", ip);
  331. std::vector<std::string> addrs;
  332. hosted_at(host, addrs);
  333. EXPECT_EQ(1u, addrs.size());
  334. }
  335. #if 0 // It depends on each test environment...
  336. TEST(HostnameToIPConversionTest, YouTube_Online) {
  337. auto host = "www.youtube.com";
  338. std::vector<std::string> addrs;
  339. hosted_at(host, addrs);
  340. EXPECT_EQ(20u, addrs.size());
  341. auto it = std::find(addrs.begin(), addrs.end(), "2607:f8b0:4006:809::200e");
  342. EXPECT_TRUE(it != addrs.end());
  343. }
  344. #endif
  345. TEST(ChunkedEncodingTest, WithContentReceiver_Online) {
  346. auto host = "www.httpwatch.com";
  347. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  348. auto port = 443;
  349. SSLClient cli(host, port);
  350. #else
  351. auto port = 80;
  352. Client cli(host, port);
  353. #endif
  354. cli.set_connection_timeout(2);
  355. std::string body;
  356. auto res =
  357. cli.Get("/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137",
  358. [&](const char *data, size_t data_length) {
  359. body.append(data, data_length);
  360. return true;
  361. });
  362. ASSERT_TRUE(res);
  363. std::string out;
  364. detail::read_file("./image.jpg", out);
  365. EXPECT_EQ(200, res->status);
  366. EXPECT_EQ(out, body);
  367. }
  368. TEST(ChunkedEncodingTest, WithResponseHandlerAndContentReceiver_Online) {
  369. auto host = "www.httpwatch.com";
  370. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  371. auto port = 443;
  372. SSLClient cli(host, port);
  373. #else
  374. auto port = 80;
  375. Client cli(host, port);
  376. #endif
  377. cli.set_connection_timeout(2);
  378. std::string body;
  379. auto res = cli.Get(
  380. "/httpgallery/chunked/chunkedimage.aspx?0.4153841143030137",
  381. [&](const Response &response) {
  382. EXPECT_EQ(200, response.status);
  383. return true;
  384. },
  385. [&](const char *data, size_t data_length) {
  386. body.append(data, data_length);
  387. return true;
  388. });
  389. ASSERT_TRUE(res);
  390. std::string out;
  391. detail::read_file("./image.jpg", out);
  392. EXPECT_EQ(200, res->status);
  393. EXPECT_EQ(out, body);
  394. }
  395. TEST(RangeTest, FromHTTPBin_Online) {
  396. auto host = "httpbin.org";
  397. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  398. auto port = 443;
  399. SSLClient cli(host, port);
  400. #else
  401. auto port = 80;
  402. Client cli(host, port);
  403. #endif
  404. cli.set_connection_timeout(5);
  405. {
  406. auto res = cli.Get("/range/32");
  407. ASSERT_TRUE(res);
  408. EXPECT_EQ("abcdefghijklmnopqrstuvwxyzabcdef", res->body);
  409. EXPECT_EQ(200, res->status);
  410. }
  411. {
  412. Headers headers = {make_range_header({{1, -1}})};
  413. auto res = cli.Get("/range/32", headers);
  414. ASSERT_TRUE(res);
  415. EXPECT_EQ("bcdefghijklmnopqrstuvwxyzabcdef", res->body);
  416. EXPECT_EQ(206, res->status);
  417. }
  418. {
  419. Headers headers = {make_range_header({{1, 10}})};
  420. auto res = cli.Get("/range/32", headers);
  421. ASSERT_TRUE(res);
  422. EXPECT_EQ("bcdefghijk", res->body);
  423. EXPECT_EQ(206, res->status);
  424. }
  425. {
  426. Headers headers = {make_range_header({{0, 31}})};
  427. auto res = cli.Get("/range/32", headers);
  428. ASSERT_TRUE(res);
  429. EXPECT_EQ("abcdefghijklmnopqrstuvwxyzabcdef", res->body);
  430. EXPECT_EQ(200, res->status);
  431. }
  432. {
  433. Headers headers = {make_range_header({{0, -1}})};
  434. auto res = cli.Get("/range/32", headers);
  435. ASSERT_TRUE(res);
  436. EXPECT_EQ("abcdefghijklmnopqrstuvwxyzabcdef", res->body);
  437. EXPECT_EQ(200, res->status);
  438. }
  439. {
  440. Headers headers = {make_range_header({{0, 32}})};
  441. auto res = cli.Get("/range/32", headers);
  442. ASSERT_TRUE(res);
  443. EXPECT_EQ(416, res->status);
  444. }
  445. }
  446. TEST(ConnectionErrorTest, InvalidHost) {
  447. auto host = "-abcde.com";
  448. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  449. auto port = 443;
  450. SSLClient cli(host, port);
  451. #else
  452. auto port = 80;
  453. Client cli(host, port);
  454. #endif
  455. cli.set_connection_timeout(std::chrono::seconds(2));
  456. auto res = cli.Get("/");
  457. ASSERT_TRUE(!res);
  458. EXPECT_EQ(Error::Connection, res.error());
  459. }
  460. TEST(ConnectionErrorTest, InvalidHost2) {
  461. auto host = "httpbin.org/";
  462. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  463. SSLClient cli(host);
  464. #else
  465. Client cli(host);
  466. #endif
  467. cli.set_connection_timeout(std::chrono::seconds(2));
  468. auto res = cli.Get("/");
  469. ASSERT_TRUE(!res);
  470. EXPECT_EQ(Error::Connection, res.error());
  471. }
  472. TEST(ConnectionErrorTest, InvalidHostCheckResultErrorToString) {
  473. auto host = "httpbin.org/";
  474. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  475. SSLClient cli(host);
  476. #else
  477. Client cli(host);
  478. #endif
  479. cli.set_connection_timeout(std::chrono::seconds(2));
  480. auto res = cli.Get("/");
  481. ASSERT_TRUE(!res);
  482. stringstream s;
  483. s << "error code: " << res.error();
  484. EXPECT_EQ("error code: Connection (2)", s.str());
  485. }
  486. TEST(ConnectionErrorTest, InvalidPort) {
  487. auto host = "localhost";
  488. auto port = 44380;
  489. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  490. SSLClient cli(host, port);
  491. #else
  492. Client cli(host, port);
  493. #endif
  494. cli.set_connection_timeout(std::chrono::seconds(2));
  495. auto res = cli.Get("/");
  496. ASSERT_TRUE(!res);
  497. EXPECT_TRUE(Error::Connection == res.error() ||
  498. Error::ConnectionTimeout == res.error());
  499. }
  500. TEST(ConnectionErrorTest, Timeout_Online) {
  501. auto host = "google.com";
  502. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  503. auto port = 44380;
  504. SSLClient cli(host, port);
  505. #else
  506. auto port = 8080;
  507. Client cli(host, port);
  508. #endif
  509. cli.set_connection_timeout(std::chrono::seconds(2));
  510. // only probe one address type so that the error reason
  511. // correlates to the timed-out IPv4, not the unsupported
  512. // IPv6 connection attempt
  513. cli.set_address_family(AF_INET);
  514. auto res = cli.Get("/");
  515. ASSERT_TRUE(!res);
  516. EXPECT_EQ(Error::ConnectionTimeout, res.error());
  517. }
  518. TEST(CancelTest, NoCancel_Online) {
  519. auto host = "httpbin.org";
  520. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  521. auto port = 443;
  522. SSLClient cli(host, port);
  523. #else
  524. auto port = 80;
  525. Client cli(host, port);
  526. #endif
  527. cli.set_connection_timeout(std::chrono::seconds(5));
  528. auto res = cli.Get("/range/32", [](uint64_t, uint64_t) { return true; });
  529. ASSERT_TRUE(res);
  530. EXPECT_EQ("abcdefghijklmnopqrstuvwxyzabcdef", res->body);
  531. EXPECT_EQ(200, res->status);
  532. }
  533. TEST(CancelTest, WithCancelSmallPayload_Online) {
  534. auto host = "httpbin.org";
  535. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  536. auto port = 443;
  537. SSLClient cli(host, port);
  538. #else
  539. auto port = 80;
  540. Client cli(host, port);
  541. #endif
  542. auto res = cli.Get("/range/32", [](uint64_t, uint64_t) { return false; });
  543. cli.set_connection_timeout(std::chrono::seconds(5));
  544. ASSERT_TRUE(!res);
  545. EXPECT_EQ(Error::Canceled, res.error());
  546. }
  547. TEST(CancelTest, WithCancelLargePayload_Online) {
  548. auto host = "httpbin.org";
  549. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  550. auto port = 443;
  551. SSLClient cli(host, port);
  552. #else
  553. auto port = 80;
  554. Client cli(host, port);
  555. #endif
  556. cli.set_connection_timeout(std::chrono::seconds(5));
  557. uint32_t count = 0;
  558. auto res = cli.Get("/range/65536",
  559. [&count](uint64_t, uint64_t) { return (count++ == 0); });
  560. ASSERT_TRUE(!res);
  561. EXPECT_EQ(Error::Canceled, res.error());
  562. }
  563. TEST(BaseAuthTest, FromHTTPWatch_Online) {
  564. auto host = "httpbin.org";
  565. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  566. auto port = 443;
  567. SSLClient cli(host, port);
  568. #else
  569. auto port = 80;
  570. Client cli(host, port);
  571. #endif
  572. {
  573. auto res = cli.Get("/basic-auth/hello/world");
  574. ASSERT_TRUE(res);
  575. EXPECT_EQ(401, res->status);
  576. }
  577. {
  578. auto res = cli.Get("/basic-auth/hello/world",
  579. {make_basic_authentication_header("hello", "world")});
  580. ASSERT_TRUE(res);
  581. EXPECT_EQ("{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n",
  582. res->body);
  583. EXPECT_EQ(200, res->status);
  584. }
  585. {
  586. cli.set_basic_auth("hello", "world");
  587. auto res = cli.Get("/basic-auth/hello/world");
  588. ASSERT_TRUE(res);
  589. EXPECT_EQ("{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n",
  590. res->body);
  591. EXPECT_EQ(200, res->status);
  592. }
  593. {
  594. cli.set_basic_auth("hello", "bad");
  595. auto res = cli.Get("/basic-auth/hello/world");
  596. ASSERT_TRUE(res);
  597. EXPECT_EQ(401, res->status);
  598. }
  599. {
  600. cli.set_basic_auth("bad", "world");
  601. auto res = cli.Get("/basic-auth/hello/world");
  602. ASSERT_TRUE(res);
  603. EXPECT_EQ(401, res->status);
  604. }
  605. }
  606. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  607. TEST(DigestAuthTest, FromHTTPWatch_Online) {
  608. auto host = "httpbin.org";
  609. auto port = 443;
  610. SSLClient cli(host, port);
  611. {
  612. auto res = cli.Get("/digest-auth/auth/hello/world");
  613. ASSERT_TRUE(res);
  614. EXPECT_EQ(401, res->status);
  615. }
  616. {
  617. std::vector<std::string> paths = {
  618. "/digest-auth/auth/hello/world/MD5",
  619. "/digest-auth/auth/hello/world/SHA-256",
  620. "/digest-auth/auth/hello/world/SHA-512",
  621. "/digest-auth/auth-int/hello/world/MD5",
  622. };
  623. cli.set_digest_auth("hello", "world");
  624. for (auto path : paths) {
  625. auto res = cli.Get(path.c_str());
  626. ASSERT_TRUE(res);
  627. EXPECT_EQ("{\n \"authenticated\": true, \n \"user\": \"hello\"\n}\n",
  628. res->body);
  629. EXPECT_EQ(200, res->status);
  630. }
  631. cli.set_digest_auth("hello", "bad");
  632. for (auto path : paths) {
  633. auto res = cli.Get(path.c_str());
  634. ASSERT_TRUE(res);
  635. EXPECT_EQ(401, res->status);
  636. }
  637. // NOTE: Until httpbin.org fixes issue #46, the following test is commented
  638. // out. Plese see https://httpbin.org/digest-auth/auth/hello/world
  639. // cli.set_digest_auth("bad", "world");
  640. // for (auto path : paths) {
  641. // auto res = cli.Get(path.c_str());
  642. // ASSERT_TRUE(res);
  643. // EXPECT_EQ(400, res->status);
  644. // }
  645. }
  646. }
  647. #endif
  648. TEST(SpecifyServerIPAddressTest, AnotherHostname_Online) {
  649. auto host = "google.com";
  650. auto another_host = "example.com";
  651. auto wrong_ip = "0.0.0.0";
  652. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  653. SSLClient cli(host);
  654. #else
  655. Client cli(host);
  656. #endif
  657. cli.set_hostname_addr_map({{another_host, wrong_ip}});
  658. auto res = cli.Get("/");
  659. ASSERT_TRUE(res);
  660. ASSERT_EQ(301, res->status);
  661. }
  662. TEST(SpecifyServerIPAddressTest, RealHostname_Online) {
  663. auto host = "google.com";
  664. auto wrong_ip = "0.0.0.0";
  665. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  666. SSLClient cli(host);
  667. #else
  668. Client cli(host);
  669. #endif
  670. cli.set_hostname_addr_map({{host, wrong_ip}});
  671. auto res = cli.Get("/");
  672. ASSERT_TRUE(!res);
  673. EXPECT_EQ(Error::Connection, res.error());
  674. }
  675. TEST(AbsoluteRedirectTest, Redirect_Online) {
  676. auto host = "nghttp2.org";
  677. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  678. SSLClient cli(host);
  679. #else
  680. Client cli(host);
  681. #endif
  682. cli.set_follow_location(true);
  683. auto res = cli.Get("/httpbin/absolute-redirect/3");
  684. ASSERT_TRUE(res);
  685. EXPECT_EQ(200, res->status);
  686. }
  687. TEST(RedirectTest, Redirect_Online) {
  688. auto host = "nghttp2.org";
  689. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  690. SSLClient cli(host);
  691. #else
  692. Client cli(host);
  693. #endif
  694. cli.set_follow_location(true);
  695. auto res = cli.Get("/httpbin/redirect/3");
  696. ASSERT_TRUE(res);
  697. EXPECT_EQ(200, res->status);
  698. }
  699. TEST(RelativeRedirectTest, Redirect_Online) {
  700. auto host = "nghttp2.org";
  701. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  702. SSLClient cli(host);
  703. #else
  704. Client cli(host);
  705. #endif
  706. cli.set_follow_location(true);
  707. auto res = cli.Get("/httpbin/relative-redirect/3");
  708. ASSERT_TRUE(res);
  709. EXPECT_EQ(200, res->status);
  710. }
  711. TEST(TooManyRedirectTest, Redirect_Online) {
  712. auto host = "nghttp2.org";
  713. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  714. SSLClient cli(host);
  715. #else
  716. Client cli(host);
  717. #endif
  718. cli.set_follow_location(true);
  719. auto res = cli.Get("/httpbin/redirect/21");
  720. ASSERT_TRUE(!res);
  721. EXPECT_EQ(Error::ExceedRedirectCount, res.error());
  722. }
  723. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  724. TEST(YahooRedirectTest, Redirect_Online) {
  725. Client cli("yahoo.com");
  726. auto res = cli.Get("/");
  727. ASSERT_TRUE(res);
  728. EXPECT_EQ(301, res->status);
  729. cli.set_follow_location(true);
  730. res = cli.Get("/");
  731. ASSERT_TRUE(res);
  732. EXPECT_EQ(200, res->status);
  733. EXPECT_EQ("https://yahoo.com/", res->location);
  734. }
  735. TEST(HttpsToHttpRedirectTest, Redirect_Online) {
  736. SSLClient cli("nghttp2.org");
  737. cli.set_follow_location(true);
  738. auto res = cli.Get(
  739. "/httpbin/redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302");
  740. ASSERT_TRUE(res);
  741. EXPECT_EQ(200, res->status);
  742. }
  743. TEST(HttpsToHttpRedirectTest2, Redirect_Online) {
  744. SSLClient cli("nghttp2.org");
  745. cli.set_follow_location(true);
  746. Params params;
  747. params.emplace("url", "http://www.google.com");
  748. params.emplace("status_code", "302");
  749. auto res = cli.Get("/httpbin/redirect-to", params, Headers{});
  750. ASSERT_TRUE(res);
  751. EXPECT_EQ(200, res->status);
  752. }
  753. TEST(HttpsToHttpRedirectTest3, Redirect_Online) {
  754. SSLClient cli("nghttp2.org");
  755. cli.set_follow_location(true);
  756. Params params;
  757. params.emplace("url", "http://www.google.com");
  758. auto res = cli.Get("/httpbin/redirect-to?status_code=302", params, Headers{});
  759. ASSERT_TRUE(res);
  760. EXPECT_EQ(200, res->status);
  761. }
  762. TEST(UrlWithSpace, Redirect_Online) {
  763. SSLClient cli("edge.forgecdn.net");
  764. cli.set_follow_location(true);
  765. auto res = cli.Get("/files/2595/310/Neat 1.4-17.jar");
  766. ASSERT_TRUE(res);
  767. EXPECT_EQ(200, res->status);
  768. EXPECT_EQ(18527U, res->get_header_value<uint64_t>("Content-Length"));
  769. }
  770. #endif
  771. TEST(RedirectToDifferentPort, Redirect) {
  772. Server svr1;
  773. svr1.Get("/1", [&](const Request & /*req*/, Response &res) {
  774. res.set_content("Hello World!", "text/plain");
  775. });
  776. int svr1_port = 0;
  777. auto thread1 = std::thread([&]() {
  778. svr1_port = svr1.bind_to_any_port("localhost");
  779. svr1.listen_after_bind();
  780. });
  781. Server svr2;
  782. svr2.Get("/2", [&](const Request & /*req*/, Response &res) {
  783. res.set_redirect("http://localhost:" + std::to_string(svr1_port) + "/1");
  784. });
  785. int svr2_port = 0;
  786. auto thread2 = std::thread([&]() {
  787. svr2_port = svr2.bind_to_any_port("localhost");
  788. svr2.listen_after_bind();
  789. });
  790. while (!svr1.is_running() || !svr2.is_running()) {
  791. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  792. }
  793. // Give GET time to get a few messages.
  794. std::this_thread::sleep_for(std::chrono::seconds(1));
  795. Client cli("localhost", svr2_port);
  796. cli.set_follow_location(true);
  797. auto res = cli.Get("/2");
  798. ASSERT_TRUE(res);
  799. EXPECT_EQ(200, res->status);
  800. EXPECT_EQ("Hello World!", res->body);
  801. svr1.stop();
  802. svr2.stop();
  803. thread1.join();
  804. thread2.join();
  805. ASSERT_FALSE(svr1.is_running());
  806. ASSERT_FALSE(svr2.is_running());
  807. }
  808. TEST(RedirectFromPageWithContent, Redirect) {
  809. Server svr;
  810. svr.Get("/1", [&](const Request & /*req*/, Response &res) {
  811. res.set_content("___", "text/plain");
  812. res.set_redirect("/2");
  813. });
  814. svr.Get("/2", [&](const Request & /*req*/, Response &res) {
  815. res.set_content("Hello World!", "text/plain");
  816. });
  817. auto th = std::thread([&]() { svr.listen("localhost", PORT); });
  818. while (!svr.is_running()) {
  819. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  820. }
  821. // Give GET time to get a few messages.
  822. std::this_thread::sleep_for(std::chrono::seconds(1));
  823. {
  824. Client cli("localhost", PORT);
  825. cli.set_follow_location(true);
  826. std::string body;
  827. auto res = cli.Get("/1", [&](const char *data, size_t data_length) {
  828. body.append(data, data_length);
  829. return true;
  830. });
  831. ASSERT_TRUE(res);
  832. EXPECT_EQ(200, res->status);
  833. EXPECT_EQ("Hello World!", body);
  834. }
  835. {
  836. Client cli("localhost", PORT);
  837. std::string body;
  838. auto res = cli.Get("/1", [&](const char *data, size_t data_length) {
  839. body.append(data, data_length);
  840. return true;
  841. });
  842. ASSERT_TRUE(res);
  843. EXPECT_EQ(302, res->status);
  844. EXPECT_EQ("___", body);
  845. }
  846. svr.stop();
  847. th.join();
  848. ASSERT_FALSE(svr.is_running());
  849. }
  850. TEST(RedirectFromPageWithContentIP6, Redirect) {
  851. Server svr;
  852. svr.Get("/1", [&](const Request & /*req*/, Response &res) {
  853. res.set_content("___", "text/plain");
  854. // res.set_redirect("/2");
  855. res.set_redirect("http://[::1]:1234/2");
  856. });
  857. svr.Get("/2", [&](const Request &req, Response &res) {
  858. auto host_header = req.headers.find("Host");
  859. ASSERT_TRUE(host_header != req.headers.end());
  860. EXPECT_EQ("[::1]:1234", host_header->second);
  861. res.set_content("Hello World!", "text/plain");
  862. });
  863. auto th = std::thread([&]() { svr.listen("::1", 1234); });
  864. // When IPV6 support isn't available svr.listen("::1", 1234) never
  865. // actually starts anything, so the condition !svr.is_running() will
  866. // always remain true, and the loop never stops.
  867. // This basically counts how many milliseconds have passed since the
  868. // call to svr.listen(), and if after 5 seconds nothing started yet
  869. // aborts the test.
  870. for (unsigned int milliseconds = 0; !svr.is_running(); milliseconds++) {
  871. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  872. ASSERT_LT(milliseconds, 5000U);
  873. }
  874. // Give GET time to get a few messages.
  875. std::this_thread::sleep_for(std::chrono::seconds(1));
  876. {
  877. Client cli("http://[::1]:1234");
  878. cli.set_follow_location(true);
  879. std::string body;
  880. auto res = cli.Get("/1", [&](const char *data, size_t data_length) {
  881. body.append(data, data_length);
  882. return true;
  883. });
  884. ASSERT_TRUE(res);
  885. EXPECT_EQ(200, res->status);
  886. EXPECT_EQ("Hello World!", body);
  887. }
  888. {
  889. Client cli("http://[::1]:1234");
  890. std::string body;
  891. auto res = cli.Get("/1", [&](const char *data, size_t data_length) {
  892. body.append(data, data_length);
  893. return true;
  894. });
  895. ASSERT_TRUE(res);
  896. EXPECT_EQ(302, res->status);
  897. EXPECT_EQ("___", body);
  898. }
  899. svr.stop();
  900. th.join();
  901. ASSERT_FALSE(svr.is_running());
  902. }
  903. TEST(PathUrlEncodeTest, PathUrlEncode) {
  904. Server svr;
  905. svr.Get("/foo", [](const Request &req, Response &res) {
  906. auto a = req.params.find("a");
  907. if (a != req.params.end()) {
  908. res.set_content((*a).second, "text/plain");
  909. res.status = 200;
  910. } else {
  911. res.status = 400;
  912. }
  913. });
  914. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  915. // Give GET time to get a few messages.
  916. std::this_thread::sleep_for(std::chrono::seconds(1));
  917. {
  918. Client cli(HOST, PORT);
  919. cli.set_url_encode(false);
  920. auto res = cli.Get("/foo?a=explicitly+encoded");
  921. ASSERT_TRUE(res);
  922. EXPECT_EQ(200, res->status);
  923. // This expects it back with a space, as the `+` won't have been
  924. // url-encoded, and server-side the params get decoded turning `+`
  925. // into spaces.
  926. EXPECT_EQ("explicitly encoded", res->body);
  927. }
  928. svr.stop();
  929. thread.join();
  930. ASSERT_FALSE(svr.is_running());
  931. }
  932. TEST(BindServerTest, BindDualStack) {
  933. Server svr;
  934. svr.Get("/1", [&](const Request & /*req*/, Response &res) {
  935. res.set_content("Hello World!", "text/plain");
  936. });
  937. auto thread = std::thread([&]() { svr.listen("::", PORT); });
  938. // Give GET time to get a few messages.
  939. std::this_thread::sleep_for(std::chrono::seconds(1));
  940. {
  941. Client cli("127.0.0.1", PORT);
  942. auto res = cli.Get("/1");
  943. ASSERT_TRUE(res);
  944. EXPECT_EQ(200, res->status);
  945. EXPECT_EQ("Hello World!", res->body);
  946. }
  947. {
  948. Client cli("::1", PORT);
  949. auto res = cli.Get("/1");
  950. ASSERT_TRUE(res);
  951. EXPECT_EQ(200, res->status);
  952. EXPECT_EQ("Hello World!", res->body);
  953. }
  954. svr.stop();
  955. thread.join();
  956. ASSERT_FALSE(svr.is_running());
  957. }
  958. TEST(BindServerTest, BindAndListenSeparately) {
  959. Server svr;
  960. int port = svr.bind_to_any_port("0.0.0.0");
  961. ASSERT_TRUE(svr.is_valid());
  962. ASSERT_TRUE(port > 0);
  963. svr.stop();
  964. }
  965. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  966. TEST(BindServerTest, BindAndListenSeparatelySSL) {
  967. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  968. CLIENT_CA_CERT_DIR);
  969. int port = svr.bind_to_any_port("0.0.0.0");
  970. ASSERT_TRUE(svr.is_valid());
  971. ASSERT_TRUE(port > 0);
  972. svr.stop();
  973. }
  974. #endif
  975. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  976. TEST(BindServerTest, BindAndListenSeparatelySSLEncryptedKey) {
  977. SSLServer svr(SERVER_ENCRYPTED_CERT_FILE, SERVER_ENCRYPTED_PRIVATE_KEY_FILE,
  978. nullptr, nullptr, SERVER_ENCRYPTED_PRIVATE_KEY_PASS);
  979. int port = svr.bind_to_any_port("0.0.0.0");
  980. ASSERT_TRUE(svr.is_valid());
  981. ASSERT_TRUE(port > 0);
  982. svr.stop();
  983. }
  984. #endif
  985. TEST(ErrorHandlerTest, ContentLength) {
  986. Server svr;
  987. svr.set_error_handler([](const Request & /*req*/, Response &res) {
  988. res.status = 200;
  989. res.set_content("abcdefghijklmnopqrstuvwxyz",
  990. "text/html"); // <= Content-Length still 13
  991. });
  992. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  993. res.set_content("Hello World!\n", "text/plain");
  994. res.status = 524;
  995. });
  996. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  997. // Give GET time to get a few messages.
  998. std::this_thread::sleep_for(std::chrono::seconds(1));
  999. {
  1000. Client cli(HOST, PORT);
  1001. auto res = cli.Get("/hi");
  1002. ASSERT_TRUE(res);
  1003. EXPECT_EQ(200, res->status);
  1004. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1005. EXPECT_EQ("26", res->get_header_value("Content-Length"));
  1006. EXPECT_EQ("abcdefghijklmnopqrstuvwxyz", res->body);
  1007. }
  1008. svr.stop();
  1009. thread.join();
  1010. ASSERT_FALSE(svr.is_running());
  1011. }
  1012. #ifndef CPPHTTPLIB_NO_EXCEPTIONS
  1013. TEST(ExceptionHandlerTest, ContentLength) {
  1014. Server svr;
  1015. svr.set_exception_handler([](const Request & /*req*/, Response &res,
  1016. std::exception &e) {
  1017. EXPECT_EQ("abc", std::string(e.what()));
  1018. res.status = 500;
  1019. res.set_content("abcdefghijklmnopqrstuvwxyz",
  1020. "text/html"); // <= Content-Length still 13 at this point
  1021. });
  1022. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1023. res.set_content("Hello World!\n", "text/plain");
  1024. throw std::runtime_error("abc");
  1025. });
  1026. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1027. // Give GET time to get a few messages.
  1028. std::this_thread::sleep_for(std::chrono::seconds(1));
  1029. for (size_t i = 0; i < 10; i++) {
  1030. Client cli(HOST, PORT);
  1031. for (size_t j = 0; j < 100; j++) {
  1032. auto res = cli.Get("/hi");
  1033. ASSERT_TRUE(res);
  1034. EXPECT_EQ(500, res->status);
  1035. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1036. EXPECT_EQ("26", res->get_header_value("Content-Length"));
  1037. EXPECT_EQ("abcdefghijklmnopqrstuvwxyz", res->body);
  1038. }
  1039. cli.set_keep_alive(true);
  1040. for (size_t j = 0; j < 100; j++) {
  1041. auto res = cli.Get("/hi");
  1042. ASSERT_TRUE(res);
  1043. EXPECT_EQ(500, res->status);
  1044. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1045. EXPECT_EQ("26", res->get_header_value("Content-Length"));
  1046. EXPECT_EQ("abcdefghijklmnopqrstuvwxyz", res->body);
  1047. }
  1048. }
  1049. svr.stop();
  1050. thread.join();
  1051. ASSERT_FALSE(svr.is_running());
  1052. }
  1053. #endif
  1054. TEST(NoContentTest, ContentLength) {
  1055. Server svr;
  1056. svr.Get("/hi",
  1057. [](const Request & /*req*/, Response &res) { res.status = 204; });
  1058. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1059. // Give GET time to get a few messages.
  1060. std::this_thread::sleep_for(std::chrono::seconds(1));
  1061. {
  1062. Client cli(HOST, PORT);
  1063. auto res = cli.Get("/hi");
  1064. ASSERT_TRUE(res);
  1065. EXPECT_EQ(204, res->status);
  1066. EXPECT_EQ("0", res->get_header_value("Content-Length"));
  1067. }
  1068. svr.stop();
  1069. thread.join();
  1070. ASSERT_FALSE(svr.is_running());
  1071. }
  1072. TEST(RoutingHandlerTest, PreRoutingHandler) {
  1073. Server svr;
  1074. svr.set_pre_routing_handler([](const Request &req, Response &res) {
  1075. if (req.path == "/routing_handler") {
  1076. res.set_header("PRE_ROUTING", "on");
  1077. res.set_content("Routing Handler", "text/plain");
  1078. return httplib::Server::HandlerResponse::Handled;
  1079. }
  1080. return httplib::Server::HandlerResponse::Unhandled;
  1081. });
  1082. svr.set_error_handler([](const Request & /*req*/, Response &res) {
  1083. res.set_content("Error", "text/html");
  1084. });
  1085. svr.set_post_routing_handler([](const Request &req, Response &res) {
  1086. if (req.path == "/routing_handler") {
  1087. res.set_header("POST_ROUTING", "on");
  1088. }
  1089. });
  1090. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1091. res.set_content("Hello World!\n", "text/plain");
  1092. });
  1093. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1094. // Give GET time to get a few messages.
  1095. std::this_thread::sleep_for(std::chrono::seconds(1));
  1096. {
  1097. Client cli(HOST, PORT);
  1098. auto res = cli.Get("/routing_handler");
  1099. ASSERT_TRUE(res);
  1100. EXPECT_EQ(200, res->status);
  1101. EXPECT_EQ("Routing Handler", res->body);
  1102. EXPECT_EQ(1U, res->get_header_value_count("PRE_ROUTING"));
  1103. EXPECT_EQ("on", res->get_header_value("PRE_ROUTING"));
  1104. EXPECT_EQ(1U, res->get_header_value_count("POST_ROUTING"));
  1105. EXPECT_EQ("on", res->get_header_value("POST_ROUTING"));
  1106. }
  1107. {
  1108. Client cli(HOST, PORT);
  1109. auto res = cli.Get("/hi");
  1110. ASSERT_TRUE(res);
  1111. EXPECT_EQ(200, res->status);
  1112. EXPECT_EQ("Hello World!\n", res->body);
  1113. EXPECT_EQ(0U, res->get_header_value_count("PRE_ROUTING"));
  1114. EXPECT_EQ(0U, res->get_header_value_count("POST_ROUTING"));
  1115. }
  1116. {
  1117. Client cli(HOST, PORT);
  1118. auto res = cli.Get("/aaa");
  1119. ASSERT_TRUE(res);
  1120. EXPECT_EQ(404, res->status);
  1121. EXPECT_EQ("Error", res->body);
  1122. EXPECT_EQ(0U, res->get_header_value_count("PRE_ROUTING"));
  1123. EXPECT_EQ(0U, res->get_header_value_count("POST_ROUTING"));
  1124. }
  1125. svr.stop();
  1126. thread.join();
  1127. ASSERT_FALSE(svr.is_running());
  1128. }
  1129. TEST(InvalidFormatTest, StatusCode) {
  1130. Server svr;
  1131. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1132. res.set_content("Hello World!\n", "text/plain");
  1133. res.status = 9999; // Status should be a three-digit code...
  1134. });
  1135. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1136. // Give GET time to get a few messages.
  1137. std::this_thread::sleep_for(std::chrono::seconds(1));
  1138. {
  1139. Client cli(HOST, PORT);
  1140. auto res = cli.Get("/hi");
  1141. ASSERT_FALSE(res);
  1142. }
  1143. svr.stop();
  1144. thread.join();
  1145. ASSERT_FALSE(svr.is_running());
  1146. }
  1147. class ServerTest : public ::testing::Test {
  1148. protected:
  1149. ServerTest()
  1150. : cli_(HOST, PORT)
  1151. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1152. ,
  1153. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  1154. #endif
  1155. {
  1156. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1157. cli_.enable_server_certificate_verification(false);
  1158. #endif
  1159. }
  1160. virtual void SetUp() {
  1161. svr_.set_mount_point("/", "./www");
  1162. svr_.set_mount_point("/mount", "./www2");
  1163. svr_.set_file_extension_and_mimetype_mapping("abcde", "text/abcde");
  1164. svr_.Get("/hi",
  1165. [&](const Request & /*req*/, Response &res) {
  1166. res.set_content("Hello World!", "text/plain");
  1167. })
  1168. .Get("/http_response_splitting",
  1169. [&](const Request & /*req*/, Response &res) {
  1170. res.set_header("a", "1\r\nSet-Cookie: a=1");
  1171. EXPECT_EQ(0U, res.headers.size());
  1172. EXPECT_FALSE(res.has_header("a"));
  1173. res.set_header("a", "1\nSet-Cookie: a=1");
  1174. EXPECT_EQ(0U, res.headers.size());
  1175. EXPECT_FALSE(res.has_header("a"));
  1176. res.set_header("a", "1\rSet-Cookie: a=1");
  1177. EXPECT_EQ(0U, res.headers.size());
  1178. EXPECT_FALSE(res.has_header("a"));
  1179. res.set_header("a\r\nb", "0");
  1180. EXPECT_EQ(0U, res.headers.size());
  1181. EXPECT_FALSE(res.has_header("a"));
  1182. res.set_header("a\rb", "0");
  1183. EXPECT_EQ(0U, res.headers.size());
  1184. EXPECT_FALSE(res.has_header("a"));
  1185. res.set_header("a\nb", "0");
  1186. EXPECT_EQ(0U, res.headers.size());
  1187. EXPECT_FALSE(res.has_header("a"));
  1188. res.set_redirect("1\r\nSet-Cookie: a=1");
  1189. EXPECT_EQ(0U, res.headers.size());
  1190. EXPECT_FALSE(res.has_header("Location"));
  1191. })
  1192. .Get("/slow",
  1193. [&](const Request & /*req*/, Response &res) {
  1194. std::this_thread::sleep_for(std::chrono::seconds(2));
  1195. res.set_content("slow", "text/plain");
  1196. })
  1197. #if 0
  1198. .Post("/slowpost",
  1199. [&](const Request & /*req*/, Response &res) {
  1200. std::this_thread::sleep_for(std::chrono::seconds(2));
  1201. res.set_content("slow", "text/plain");
  1202. })
  1203. #endif
  1204. .Get("/remote_addr",
  1205. [&](const Request &req, Response &res) {
  1206. auto remote_addr = req.headers.find("REMOTE_ADDR")->second;
  1207. EXPECT_TRUE(req.has_header("REMOTE_PORT"));
  1208. EXPECT_EQ(req.remote_addr, req.get_header_value("REMOTE_ADDR"));
  1209. EXPECT_EQ(req.remote_port,
  1210. std::stoi(req.get_header_value("REMOTE_PORT")));
  1211. res.set_content(remote_addr.c_str(), "text/plain");
  1212. })
  1213. .Get("/endwith%",
  1214. [&](const Request & /*req*/, Response &res) {
  1215. res.set_content("Hello World!", "text/plain");
  1216. })
  1217. .Get("/a\\+\\+b",
  1218. [&](const Request &req, Response &res) {
  1219. ASSERT_TRUE(req.has_param("a +b"));
  1220. auto val = req.get_param_value("a +b");
  1221. res.set_content(val, "text/plain");
  1222. })
  1223. .Get("/", [&](const Request & /*req*/,
  1224. Response &res) { res.set_redirect("/hi"); })
  1225. .Post("/1", [](const Request & /*req*/,
  1226. Response &res) { res.set_redirect("/2", 303); })
  1227. .Get("/2",
  1228. [](const Request & /*req*/, Response &res) {
  1229. res.set_content("redirected.", "text/plain");
  1230. res.status = 200;
  1231. })
  1232. .Post("/person",
  1233. [&](const Request &req, Response &res) {
  1234. if (req.has_param("name") && req.has_param("note")) {
  1235. persons_[req.get_param_value("name")] =
  1236. req.get_param_value("note");
  1237. } else {
  1238. res.status = 400;
  1239. }
  1240. })
  1241. .Put("/person",
  1242. [&](const Request &req, Response &res) {
  1243. if (req.has_param("name") && req.has_param("note")) {
  1244. persons_[req.get_param_value("name")] =
  1245. req.get_param_value("note");
  1246. } else {
  1247. res.status = 400;
  1248. }
  1249. })
  1250. .Get("/person/(.*)",
  1251. [&](const Request &req, Response &res) {
  1252. string name = req.matches[1];
  1253. if (persons_.find(name) != persons_.end()) {
  1254. auto note = persons_[name];
  1255. res.set_content(note, "text/plain");
  1256. } else {
  1257. res.status = 404;
  1258. }
  1259. })
  1260. .Post("/x-www-form-urlencoded-json",
  1261. [&](const Request &req, Response &res) {
  1262. auto json = req.get_param_value("json");
  1263. ASSERT_EQ(JSON_DATA, json);
  1264. res.set_content(json, "appliation/json");
  1265. res.status = 200;
  1266. })
  1267. .Get("/streamed-chunked",
  1268. [&](const Request & /*req*/, Response &res) {
  1269. res.set_chunked_content_provider(
  1270. "text/plain", [](size_t /*offset*/, DataSink &sink) {
  1271. EXPECT_TRUE(sink.is_writable());
  1272. sink.os << "123";
  1273. sink.os << "456";
  1274. sink.os << "789";
  1275. sink.done();
  1276. return true;
  1277. });
  1278. })
  1279. .Get("/streamed-chunked2",
  1280. [&](const Request & /*req*/, Response &res) {
  1281. auto i = new int(0);
  1282. res.set_chunked_content_provider(
  1283. "text/plain",
  1284. [i](size_t /*offset*/, DataSink &sink) {
  1285. EXPECT_TRUE(sink.is_writable());
  1286. switch (*i) {
  1287. case 0: sink.os << "123"; break;
  1288. case 1: sink.os << "456"; break;
  1289. case 2: sink.os << "789"; break;
  1290. case 3: sink.done(); break;
  1291. }
  1292. (*i)++;
  1293. return true;
  1294. },
  1295. [i](bool success) {
  1296. EXPECT_TRUE(success);
  1297. delete i;
  1298. });
  1299. })
  1300. .Get("/streamed",
  1301. [&](const Request & /*req*/, Response &res) {
  1302. res.set_content_provider(
  1303. 6, "text/plain",
  1304. [](size_t offset, size_t /*length*/, DataSink &sink) {
  1305. sink.os << (offset < 3 ? "a" : "b");
  1306. return true;
  1307. });
  1308. })
  1309. .Get("/streamed-with-range",
  1310. [&](const Request & /*req*/, Response &res) {
  1311. auto data = new std::string("abcdefg");
  1312. res.set_content_provider(
  1313. data->size(), "text/plain",
  1314. [data](size_t offset, size_t length, DataSink &sink) {
  1315. EXPECT_TRUE(sink.is_writable());
  1316. size_t DATA_CHUNK_SIZE = 4;
  1317. const auto &d = *data;
  1318. auto out_len =
  1319. std::min(static_cast<size_t>(length), DATA_CHUNK_SIZE);
  1320. auto ret =
  1321. sink.write(&d[static_cast<size_t>(offset)], out_len);
  1322. EXPECT_TRUE(ret);
  1323. return true;
  1324. },
  1325. [data](bool success) {
  1326. EXPECT_TRUE(success);
  1327. delete data;
  1328. });
  1329. })
  1330. .Get("/streamed-cancel",
  1331. [&](const Request & /*req*/, Response &res) {
  1332. res.set_content_provider(
  1333. size_t(-1), "text/plain",
  1334. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1335. EXPECT_TRUE(sink.is_writable());
  1336. sink.os << "data_chunk";
  1337. return true;
  1338. });
  1339. })
  1340. .Get("/with-range",
  1341. [&](const Request & /*req*/, Response &res) {
  1342. res.set_content("abcdefg", "text/plain");
  1343. })
  1344. .Post("/chunked",
  1345. [&](const Request &req, Response & /*res*/) {
  1346. EXPECT_EQ(req.body, "dechunked post body");
  1347. })
  1348. .Post("/large-chunked",
  1349. [&](const Request &req, Response & /*res*/) {
  1350. std::string expected(6 * 30 * 1024u, 'a');
  1351. EXPECT_EQ(req.body, expected);
  1352. })
  1353. .Post("/multipart",
  1354. [&](const Request &req, Response & /*res*/) {
  1355. EXPECT_EQ(6u, req.files.size());
  1356. ASSERT_TRUE(!req.has_file("???"));
  1357. ASSERT_TRUE(req.body.empty());
  1358. {
  1359. const auto &file = req.get_file_value("text1");
  1360. EXPECT_TRUE(file.filename.empty());
  1361. EXPECT_EQ("text default", file.content);
  1362. }
  1363. {
  1364. const auto &file = req.get_file_value("text2");
  1365. EXPECT_TRUE(file.filename.empty());
  1366. EXPECT_EQ("aωb", file.content);
  1367. }
  1368. {
  1369. const auto &file = req.get_file_value("file1");
  1370. EXPECT_EQ("hello.txt", file.filename);
  1371. EXPECT_EQ("text/plain", file.content_type);
  1372. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  1373. }
  1374. {
  1375. const auto &file = req.get_file_value("file3");
  1376. EXPECT_TRUE(file.filename.empty());
  1377. EXPECT_EQ("application/octet-stream", file.content_type);
  1378. EXPECT_EQ(0u, file.content.size());
  1379. }
  1380. {
  1381. const auto &file = req.get_file_value("file4");
  1382. EXPECT_TRUE(file.filename.empty());
  1383. EXPECT_EQ(0u, file.content.size());
  1384. EXPECT_EQ("application/json tmp-string", file.content_type);
  1385. }
  1386. })
  1387. .Post("/empty",
  1388. [&](const Request &req, Response &res) {
  1389. EXPECT_EQ(req.body, "");
  1390. EXPECT_EQ("text/plain", req.get_header_value("Content-Type"));
  1391. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1392. res.set_content("empty", "text/plain");
  1393. })
  1394. .Post("/empty-no-content-type",
  1395. [&](const Request &req, Response &res) {
  1396. EXPECT_EQ(req.body, "");
  1397. EXPECT_FALSE(req.has_header("Content-Type"));
  1398. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1399. res.set_content("empty-no-content-type", "text/plain");
  1400. })
  1401. .Post("/post-large",
  1402. [&](const Request &req, Response &res) {
  1403. EXPECT_EQ(req.body, LARGE_DATA);
  1404. res.set_content(req.body, "text/plain");
  1405. })
  1406. .Put("/empty-no-content-type",
  1407. [&](const Request &req, Response &res) {
  1408. EXPECT_EQ(req.body, "");
  1409. EXPECT_FALSE(req.has_header("Content-Type"));
  1410. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1411. res.set_content("empty-no-content-type", "text/plain");
  1412. })
  1413. .Put("/put",
  1414. [&](const Request &req, Response &res) {
  1415. EXPECT_EQ(req.body, "PUT");
  1416. res.set_content(req.body, "text/plain");
  1417. })
  1418. .Put("/put-large",
  1419. [&](const Request &req, Response &res) {
  1420. EXPECT_EQ(req.body, LARGE_DATA);
  1421. res.set_content(req.body, "text/plain");
  1422. })
  1423. .Patch("/patch",
  1424. [&](const Request &req, Response &res) {
  1425. EXPECT_EQ(req.body, "PATCH");
  1426. res.set_content(req.body, "text/plain");
  1427. })
  1428. .Delete("/delete",
  1429. [&](const Request & /*req*/, Response &res) {
  1430. res.set_content("DELETE", "text/plain");
  1431. })
  1432. .Delete("/delete-body",
  1433. [&](const Request &req, Response &res) {
  1434. EXPECT_EQ(req.body, "content");
  1435. res.set_content(req.body, "text/plain");
  1436. })
  1437. .Options(R"(\*)",
  1438. [&](const Request & /*req*/, Response &res) {
  1439. res.set_header("Allow", "GET, POST, HEAD, OPTIONS");
  1440. })
  1441. .Get("/request-target",
  1442. [&](const Request &req, Response & /*res*/) {
  1443. EXPECT_EQ("/request-target?aaa=bbb&ccc=ddd", req.target);
  1444. EXPECT_EQ("bbb", req.get_param_value("aaa"));
  1445. EXPECT_EQ("ddd", req.get_param_value("ccc"));
  1446. })
  1447. .Get("/long-query-value",
  1448. [&](const Request &req, Response & /*res*/) {
  1449. EXPECT_EQ(LONG_QUERY_URL, req.target);
  1450. EXPECT_EQ(LONG_QUERY_VALUE, req.get_param_value("key"));
  1451. })
  1452. .Get("/array-param",
  1453. [&](const Request &req, Response & /*res*/) {
  1454. EXPECT_EQ(3u, req.get_param_value_count("array"));
  1455. EXPECT_EQ("value1", req.get_param_value("array", 0));
  1456. EXPECT_EQ("value2", req.get_param_value("array", 1));
  1457. EXPECT_EQ("value3", req.get_param_value("array", 2));
  1458. })
  1459. .Post("/validate-no-multiple-headers",
  1460. [&](const Request &req, Response & /*res*/) {
  1461. EXPECT_EQ(1u, req.get_header_value_count("Content-Length"));
  1462. EXPECT_EQ("5", req.get_header_value("Content-Length"));
  1463. })
  1464. .Post("/content_receiver",
  1465. [&](const Request &req, Response &res,
  1466. const ContentReader &content_reader) {
  1467. if (req.is_multipart_form_data()) {
  1468. MultipartFormDataItems files;
  1469. content_reader(
  1470. [&](const MultipartFormData &file) {
  1471. files.push_back(file);
  1472. return true;
  1473. },
  1474. [&](const char *data, size_t data_length) {
  1475. files.back().content.append(data, data_length);
  1476. return true;
  1477. });
  1478. EXPECT_EQ(5u, files.size());
  1479. {
  1480. const auto &file = get_file_value(files, "text1");
  1481. EXPECT_TRUE(file.filename.empty());
  1482. EXPECT_EQ("text default", file.content);
  1483. }
  1484. {
  1485. const auto &file = get_file_value(files, "text2");
  1486. EXPECT_TRUE(file.filename.empty());
  1487. EXPECT_EQ("aωb", file.content);
  1488. }
  1489. {
  1490. const auto &file = get_file_value(files, "file1");
  1491. EXPECT_EQ("hello.txt", file.filename);
  1492. EXPECT_EQ("text/plain", file.content_type);
  1493. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  1494. }
  1495. {
  1496. const auto &file = get_file_value(files, "file3");
  1497. EXPECT_TRUE(file.filename.empty());
  1498. EXPECT_EQ("application/octet-stream", file.content_type);
  1499. EXPECT_EQ(0u, file.content.size());
  1500. }
  1501. } else {
  1502. std::string body;
  1503. content_reader([&](const char *data, size_t data_length) {
  1504. EXPECT_EQ(7U, data_length);
  1505. body.append(data, data_length);
  1506. return true;
  1507. });
  1508. EXPECT_EQ(body, "content");
  1509. res.set_content(body, "text/plain");
  1510. }
  1511. })
  1512. .Put("/content_receiver",
  1513. [&](const Request & /*req*/, Response &res,
  1514. const ContentReader &content_reader) {
  1515. std::string body;
  1516. content_reader([&](const char *data, size_t data_length) {
  1517. body.append(data, data_length);
  1518. return true;
  1519. });
  1520. EXPECT_EQ(body, "content");
  1521. res.set_content(body, "text/plain");
  1522. })
  1523. .Patch("/content_receiver",
  1524. [&](const Request & /*req*/, Response &res,
  1525. const ContentReader &content_reader) {
  1526. std::string body;
  1527. content_reader([&](const char *data, size_t data_length) {
  1528. body.append(data, data_length);
  1529. return true;
  1530. });
  1531. EXPECT_EQ(body, "content");
  1532. res.set_content(body, "text/plain");
  1533. })
  1534. .Post("/query-string-and-body",
  1535. [&](const Request &req, Response & /*res*/) {
  1536. ASSERT_TRUE(req.has_param("key"));
  1537. EXPECT_EQ(req.get_param_value("key"), "value");
  1538. EXPECT_EQ(req.body, "content");
  1539. })
  1540. .Get("/last-request",
  1541. [&](const Request &req, Response & /*res*/) {
  1542. EXPECT_EQ("close", req.get_header_value("Connection"));
  1543. })
  1544. .Get(R"(/redirect/(\d+))",
  1545. [&](const Request &req, Response &res) {
  1546. auto num = std::stoi(req.matches[1]) + 1;
  1547. std::string url = "/redirect/" + std::to_string(num);
  1548. res.set_redirect(url);
  1549. })
  1550. .Post("/binary",
  1551. [&](const Request &req, Response &res) {
  1552. EXPECT_EQ(4U, req.body.size());
  1553. EXPECT_EQ("application/octet-stream",
  1554. req.get_header_value("Content-Type"));
  1555. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1556. res.set_content(req.body, "application/octet-stream");
  1557. })
  1558. .Put("/binary",
  1559. [&](const Request &req, Response &res) {
  1560. EXPECT_EQ(4U, req.body.size());
  1561. EXPECT_EQ("application/octet-stream",
  1562. req.get_header_value("Content-Type"));
  1563. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1564. res.set_content(req.body, "application/octet-stream");
  1565. })
  1566. .Patch("/binary",
  1567. [&](const Request &req, Response &res) {
  1568. EXPECT_EQ(4U, req.body.size());
  1569. EXPECT_EQ("application/octet-stream",
  1570. req.get_header_value("Content-Type"));
  1571. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1572. res.set_content(req.body, "application/octet-stream");
  1573. })
  1574. .Delete("/binary",
  1575. [&](const Request &req, Response &res) {
  1576. EXPECT_EQ(4U, req.body.size());
  1577. EXPECT_EQ("application/octet-stream",
  1578. req.get_header_value("Content-Type"));
  1579. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1580. res.set_content(req.body, "application/octet-stream");
  1581. })
  1582. #if defined(CPPHTTPLIB_ZLIB_SUPPORT) || defined(CPPHTTPLIB_BROTLI_SUPPORT)
  1583. .Get("/compress",
  1584. [&](const Request & /*req*/, Response &res) {
  1585. res.set_content(
  1586. "12345678901234567890123456789012345678901234567890123456789"
  1587. "01234567890123456789012345678901234567890",
  1588. "text/plain");
  1589. })
  1590. .Get("/nocompress",
  1591. [&](const Request & /*req*/, Response &res) {
  1592. res.set_content(
  1593. "12345678901234567890123456789012345678901234567890123456789"
  1594. "01234567890123456789012345678901234567890",
  1595. "application/octet-stream");
  1596. })
  1597. .Post("/compress-multipart",
  1598. [&](const Request &req, Response & /*res*/) {
  1599. EXPECT_EQ(2u, req.files.size());
  1600. ASSERT_TRUE(!req.has_file("???"));
  1601. {
  1602. const auto &file = req.get_file_value("key1");
  1603. EXPECT_TRUE(file.filename.empty());
  1604. EXPECT_EQ("test", file.content);
  1605. }
  1606. {
  1607. const auto &file = req.get_file_value("key2");
  1608. EXPECT_TRUE(file.filename.empty());
  1609. EXPECT_EQ("--abcdefg123", file.content);
  1610. }
  1611. })
  1612. #endif
  1613. ;
  1614. persons_["john"] = "programmer";
  1615. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  1616. while (!svr_.is_running()) {
  1617. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1618. }
  1619. }
  1620. virtual void TearDown() {
  1621. svr_.stop();
  1622. if (!request_threads_.empty()) {
  1623. std::this_thread::sleep_for(std::chrono::seconds(1));
  1624. for (auto &t : request_threads_) {
  1625. t.join();
  1626. }
  1627. }
  1628. t_.join();
  1629. }
  1630. map<string, string> persons_;
  1631. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1632. SSLClient cli_;
  1633. SSLServer svr_;
  1634. #else
  1635. Client cli_;
  1636. Server svr_;
  1637. #endif
  1638. thread t_;
  1639. std::vector<thread> request_threads_;
  1640. };
  1641. TEST_F(ServerTest, GetMethod200) {
  1642. auto res = cli_.Get("/hi");
  1643. ASSERT_TRUE(res);
  1644. EXPECT_EQ("HTTP/1.1", res->version);
  1645. EXPECT_EQ(200, res->status);
  1646. EXPECT_EQ("OK", res->reason);
  1647. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1648. EXPECT_EQ(1U, res->get_header_value_count("Content-Type"));
  1649. EXPECT_EQ("Hello World!", res->body);
  1650. }
  1651. TEST_F(ServerTest, GetMethod200withPercentEncoding) {
  1652. auto res = cli_.Get("/%68%69"); // auto res = cli_.Get("/hi");
  1653. ASSERT_TRUE(res);
  1654. EXPECT_EQ("HTTP/1.1", res->version);
  1655. EXPECT_EQ(200, res->status);
  1656. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1657. EXPECT_EQ(1U, res->get_header_value_count("Content-Type"));
  1658. EXPECT_EQ("Hello World!", res->body);
  1659. }
  1660. TEST_F(ServerTest, GetMethod302) {
  1661. auto res = cli_.Get("/");
  1662. ASSERT_TRUE(res);
  1663. EXPECT_EQ(302, res->status);
  1664. EXPECT_EQ("/hi", res->get_header_value("Location"));
  1665. }
  1666. TEST_F(ServerTest, GetMethod302Redirect) {
  1667. cli_.set_follow_location(true);
  1668. auto res = cli_.Get("/");
  1669. ASSERT_TRUE(res);
  1670. EXPECT_EQ(200, res->status);
  1671. EXPECT_EQ("Hello World!", res->body);
  1672. EXPECT_EQ("/hi", res->location);
  1673. }
  1674. TEST_F(ServerTest, GetMethod404) {
  1675. auto res = cli_.Get("/invalid");
  1676. ASSERT_TRUE(res);
  1677. EXPECT_EQ(404, res->status);
  1678. }
  1679. TEST_F(ServerTest, HeadMethod200) {
  1680. auto res = cli_.Head("/hi");
  1681. ASSERT_TRUE(res);
  1682. EXPECT_EQ(200, res->status);
  1683. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1684. EXPECT_TRUE(res->body.empty());
  1685. }
  1686. TEST_F(ServerTest, HeadMethod200Static) {
  1687. auto res = cli_.Head("/mount/dir/index.html");
  1688. ASSERT_TRUE(res);
  1689. EXPECT_EQ(200, res->status);
  1690. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1691. EXPECT_EQ(104, std::stoi(res->get_header_value("Content-Length")));
  1692. EXPECT_TRUE(res->body.empty());
  1693. }
  1694. TEST_F(ServerTest, HeadMethod404) {
  1695. auto res = cli_.Head("/invalid");
  1696. ASSERT_TRUE(res);
  1697. EXPECT_EQ(404, res->status);
  1698. EXPECT_TRUE(res->body.empty());
  1699. }
  1700. TEST_F(ServerTest, GetMethodPersonJohn) {
  1701. auto res = cli_.Get("/person/john");
  1702. ASSERT_TRUE(res);
  1703. EXPECT_EQ(200, res->status);
  1704. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1705. EXPECT_EQ("programmer", res->body);
  1706. }
  1707. TEST_F(ServerTest, PostMethod1) {
  1708. auto res = cli_.Get("/person/john1");
  1709. ASSERT_TRUE(res);
  1710. ASSERT_EQ(404, res->status);
  1711. res = cli_.Post("/person", "name=john1&note=coder",
  1712. "application/x-www-form-urlencoded");
  1713. ASSERT_TRUE(res);
  1714. ASSERT_EQ(200, res->status);
  1715. res = cli_.Get("/person/john1");
  1716. ASSERT_TRUE(res);
  1717. ASSERT_EQ(200, res->status);
  1718. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1719. ASSERT_EQ("coder", res->body);
  1720. }
  1721. TEST_F(ServerTest, PostMethod2) {
  1722. auto res = cli_.Get("/person/john2");
  1723. ASSERT_TRUE(res);
  1724. ASSERT_EQ(404, res->status);
  1725. Params params;
  1726. params.emplace("name", "john2");
  1727. params.emplace("note", "coder");
  1728. res = cli_.Post("/person", params);
  1729. ASSERT_TRUE(res);
  1730. ASSERT_EQ(200, res->status);
  1731. res = cli_.Get("/person/john2");
  1732. ASSERT_TRUE(res);
  1733. ASSERT_EQ(200, res->status);
  1734. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1735. ASSERT_EQ("coder", res->body);
  1736. }
  1737. TEST_F(ServerTest, PutMethod3) {
  1738. auto res = cli_.Get("/person/john3");
  1739. ASSERT_TRUE(res);
  1740. ASSERT_EQ(404, res->status);
  1741. Params params;
  1742. params.emplace("name", "john3");
  1743. params.emplace("note", "coder");
  1744. res = cli_.Put("/person", params);
  1745. ASSERT_TRUE(res);
  1746. ASSERT_EQ(200, res->status);
  1747. res = cli_.Get("/person/john3");
  1748. ASSERT_TRUE(res);
  1749. ASSERT_EQ(200, res->status);
  1750. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1751. ASSERT_EQ("coder", res->body);
  1752. }
  1753. TEST_F(ServerTest, PostWwwFormUrlEncodedJson) {
  1754. Params params;
  1755. params.emplace("json", JSON_DATA);
  1756. auto res = cli_.Post("/x-www-form-urlencoded-json", params);
  1757. ASSERT_TRUE(res);
  1758. ASSERT_EQ(200, res->status);
  1759. ASSERT_EQ(JSON_DATA, res->body);
  1760. }
  1761. TEST_F(ServerTest, PostEmptyContent) {
  1762. auto res = cli_.Post("/empty", "", "text/plain");
  1763. ASSERT_TRUE(res);
  1764. ASSERT_EQ(200, res->status);
  1765. ASSERT_EQ("empty", res->body);
  1766. }
  1767. TEST_F(ServerTest, PostEmptyContentWithNoContentType) {
  1768. auto res = cli_.Post("/empty-no-content-type");
  1769. ASSERT_TRUE(res);
  1770. ASSERT_EQ(200, res->status);
  1771. ASSERT_EQ("empty-no-content-type", res->body);
  1772. }
  1773. TEST_F(ServerTest, PostLarge) {
  1774. auto res = cli_.Post("/post-large", LARGE_DATA, "text/plain");
  1775. ASSERT_TRUE(res);
  1776. ASSERT_EQ(200, res->status);
  1777. EXPECT_EQ(LARGE_DATA, res->body);
  1778. }
  1779. TEST_F(ServerTest, PutEmptyContentWithNoContentType) {
  1780. auto res = cli_.Put("/empty-no-content-type");
  1781. ASSERT_TRUE(res);
  1782. ASSERT_EQ(200, res->status);
  1783. ASSERT_EQ("empty-no-content-type", res->body);
  1784. }
  1785. TEST_F(ServerTest, GetMethodDir) {
  1786. auto res = cli_.Get("/dir/");
  1787. ASSERT_TRUE(res);
  1788. EXPECT_EQ(200, res->status);
  1789. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1790. auto body = R"(<html>
  1791. <head>
  1792. </head>
  1793. <body>
  1794. <a href="/dir/test.html">Test</a>
  1795. <a href="/hi">hi</a>
  1796. </body>
  1797. </html>
  1798. )";
  1799. EXPECT_EQ(body, res->body);
  1800. }
  1801. TEST_F(ServerTest, GetMethodDirTest) {
  1802. auto res = cli_.Get("/dir/test.html");
  1803. ASSERT_TRUE(res);
  1804. EXPECT_EQ(200, res->status);
  1805. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1806. EXPECT_EQ("test.html", res->body);
  1807. }
  1808. TEST_F(ServerTest, GetMethodDirTestWithDoubleDots) {
  1809. auto res = cli_.Get("/dir/../dir/test.html");
  1810. ASSERT_TRUE(res);
  1811. EXPECT_EQ(200, res->status);
  1812. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1813. EXPECT_EQ("test.html", res->body);
  1814. }
  1815. TEST_F(ServerTest, GetMethodInvalidPath) {
  1816. auto res = cli_.Get("/dir/../test.html");
  1817. ASSERT_TRUE(res);
  1818. EXPECT_EQ(404, res->status);
  1819. }
  1820. TEST_F(ServerTest, GetMethodOutOfBaseDir) {
  1821. auto res = cli_.Get("/../www/dir/test.html");
  1822. ASSERT_TRUE(res);
  1823. EXPECT_EQ(404, res->status);
  1824. }
  1825. TEST_F(ServerTest, GetMethodOutOfBaseDir2) {
  1826. auto res = cli_.Get("/dir/../../www/dir/test.html");
  1827. ASSERT_TRUE(res);
  1828. EXPECT_EQ(404, res->status);
  1829. }
  1830. TEST_F(ServerTest, GetMethodDirMountTest) {
  1831. auto res = cli_.Get("/mount/dir/test.html");
  1832. ASSERT_TRUE(res);
  1833. EXPECT_EQ(200, res->status);
  1834. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1835. EXPECT_EQ("test.html", res->body);
  1836. }
  1837. TEST_F(ServerTest, GetMethodDirMountTestWithDoubleDots) {
  1838. auto res = cli_.Get("/mount/dir/../dir/test.html");
  1839. ASSERT_TRUE(res);
  1840. EXPECT_EQ(200, res->status);
  1841. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1842. EXPECT_EQ("test.html", res->body);
  1843. }
  1844. TEST_F(ServerTest, GetMethodInvalidMountPath) {
  1845. auto res = cli_.Get("/mount/dir/../test.html");
  1846. ASSERT_TRUE(res);
  1847. EXPECT_EQ(404, res->status);
  1848. }
  1849. TEST_F(ServerTest, GetMethodOutOfBaseDirMount) {
  1850. auto res = cli_.Get("/mount/../www2/dir/test.html");
  1851. ASSERT_TRUE(res);
  1852. EXPECT_EQ(404, res->status);
  1853. }
  1854. TEST_F(ServerTest, GetMethodOutOfBaseDirMount2) {
  1855. auto res = cli_.Get("/mount/dir/../../www2/dir/test.html");
  1856. ASSERT_TRUE(res);
  1857. EXPECT_EQ(404, res->status);
  1858. }
  1859. TEST_F(ServerTest, PostMethod303) {
  1860. auto res = cli_.Post("/1", "body", "text/plain");
  1861. ASSERT_TRUE(res);
  1862. EXPECT_EQ(303, res->status);
  1863. EXPECT_EQ("/2", res->get_header_value("Location"));
  1864. }
  1865. TEST_F(ServerTest, PostMethod303Redirect) {
  1866. cli_.set_follow_location(true);
  1867. auto res = cli_.Post("/1", "body", "text/plain");
  1868. ASSERT_TRUE(res);
  1869. EXPECT_EQ(200, res->status);
  1870. EXPECT_EQ("redirected.", res->body);
  1871. EXPECT_EQ("/2", res->location);
  1872. }
  1873. TEST_F(ServerTest, UserDefinedMIMETypeMapping) {
  1874. auto res = cli_.Get("/dir/test.abcde");
  1875. ASSERT_TRUE(res);
  1876. EXPECT_EQ(200, res->status);
  1877. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1878. EXPECT_EQ("abcde", res->body);
  1879. }
  1880. TEST_F(ServerTest, StaticFileRange) {
  1881. auto res = cli_.Get("/dir/test.abcde", {{make_range_header({{2, 3}})}});
  1882. ASSERT_TRUE(res);
  1883. EXPECT_EQ(206, res->status);
  1884. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1885. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1886. EXPECT_EQ(true, res->has_header("Content-Range"));
  1887. EXPECT_EQ(std::string("cd"), res->body);
  1888. }
  1889. TEST_F(ServerTest, InvalidBaseDirMount) {
  1890. EXPECT_EQ(false, svr_.set_mount_point("invalid_mount_point", "./www3"));
  1891. }
  1892. TEST_F(ServerTest, Binary) {
  1893. std::vector<char> binary{0x00, 0x01, 0x02, 0x03};
  1894. auto res = cli_.Post("/binary", binary.data(), binary.size(),
  1895. "application/octet-stream");
  1896. ASSERT_TRUE(res);
  1897. ASSERT_EQ(200, res->status);
  1898. ASSERT_EQ(4U, res->body.size());
  1899. res = cli_.Put("/binary", binary.data(), binary.size(),
  1900. "application/octet-stream");
  1901. ASSERT_TRUE(res);
  1902. ASSERT_EQ(200, res->status);
  1903. ASSERT_EQ(4U, res->body.size());
  1904. res = cli_.Patch("/binary", binary.data(), binary.size(),
  1905. "application/octet-stream");
  1906. ASSERT_TRUE(res);
  1907. ASSERT_EQ(200, res->status);
  1908. ASSERT_EQ(4U, res->body.size());
  1909. res = cli_.Delete("/binary", binary.data(), binary.size(),
  1910. "application/octet-stream");
  1911. ASSERT_TRUE(res);
  1912. ASSERT_EQ(200, res->status);
  1913. ASSERT_EQ(4U, res->body.size());
  1914. }
  1915. TEST_F(ServerTest, BinaryString) {
  1916. auto binary = std::string("\x00\x01\x02\x03", 4);
  1917. auto res = cli_.Post("/binary", binary, "application/octet-stream");
  1918. ASSERT_TRUE(res);
  1919. ASSERT_EQ(200, res->status);
  1920. ASSERT_EQ(4U, res->body.size());
  1921. res = cli_.Put("/binary", binary, "application/octet-stream");
  1922. ASSERT_TRUE(res);
  1923. ASSERT_EQ(200, res->status);
  1924. ASSERT_EQ(4U, res->body.size());
  1925. res = cli_.Patch("/binary", binary, "application/octet-stream");
  1926. ASSERT_TRUE(res);
  1927. ASSERT_EQ(200, res->status);
  1928. ASSERT_EQ(4U, res->body.size());
  1929. res = cli_.Delete("/binary", binary, "application/octet-stream");
  1930. ASSERT_TRUE(res);
  1931. ASSERT_EQ(200, res->status);
  1932. ASSERT_EQ(4U, res->body.size());
  1933. }
  1934. TEST_F(ServerTest, EmptyRequest) {
  1935. auto res = cli_.Get("");
  1936. ASSERT_TRUE(!res);
  1937. EXPECT_EQ(Error::Connection, res.error());
  1938. }
  1939. TEST_F(ServerTest, LongRequest) {
  1940. std::string request;
  1941. for (size_t i = 0; i < 545; i++) {
  1942. request += "/TooLongRequest";
  1943. }
  1944. request += "OK";
  1945. auto res = cli_.Get(request.c_str());
  1946. ASSERT_TRUE(res);
  1947. EXPECT_EQ(404, res->status);
  1948. }
  1949. TEST_F(ServerTest, TooLongRequest) {
  1950. std::string request;
  1951. for (size_t i = 0; i < 545; i++) {
  1952. request += "/TooLongRequest";
  1953. }
  1954. request += "_NG";
  1955. auto res = cli_.Get(request.c_str());
  1956. ASSERT_TRUE(res);
  1957. EXPECT_EQ(414, res->status);
  1958. }
  1959. TEST_F(ServerTest, LongHeader) {
  1960. Request req;
  1961. req.method = "GET";
  1962. req.path = "/hi";
  1963. std::string host_and_port;
  1964. host_and_port += HOST;
  1965. host_and_port += ":";
  1966. host_and_port += std::to_string(PORT);
  1967. req.headers.emplace("Host", host_and_port.c_str());
  1968. req.headers.emplace("Accept", "*/*");
  1969. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1970. req.headers.emplace(
  1971. "Header-Name",
  1972. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1973. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1974. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1975. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1976. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1977. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1978. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1979. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1980. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1981. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1982. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1983. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1984. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1985. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1986. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1987. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1988. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1989. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1990. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1991. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1992. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1993. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1994. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1995. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1996. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1997. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1998. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1999. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2000. "@@@@@@@@@@@@@@@@");
  2001. auto res = std::make_shared<Response>();
  2002. auto error = Error::Success;
  2003. auto ret = cli_.send(req, *res, error);
  2004. ASSERT_TRUE(ret);
  2005. EXPECT_EQ(200, res->status);
  2006. }
  2007. TEST_F(ServerTest, LongQueryValue) {
  2008. auto res = cli_.Get(LONG_QUERY_URL.c_str());
  2009. ASSERT_TRUE(res);
  2010. EXPECT_EQ(414, res->status);
  2011. }
  2012. TEST_F(ServerTest, TooLongHeader) {
  2013. Request req;
  2014. req.method = "GET";
  2015. req.path = "/hi";
  2016. std::string host_and_port;
  2017. host_and_port += HOST;
  2018. host_and_port += ":";
  2019. host_and_port += std::to_string(PORT);
  2020. req.headers.emplace("Host", host_and_port.c_str());
  2021. req.headers.emplace("Accept", "*/*");
  2022. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2023. req.headers.emplace(
  2024. "Header-Name",
  2025. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2026. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2027. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2028. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2029. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2030. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2031. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2032. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2033. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2034. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2035. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2036. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2037. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2038. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2039. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2040. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2041. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2042. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2043. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2044. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2045. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2046. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2047. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2048. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2049. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2050. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2051. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2052. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2053. "@@@@@@@@@@@@@@@@@");
  2054. auto res = std::make_shared<Response>();
  2055. auto error = Error::Success;
  2056. auto ret = cli_.send(req, *res, error);
  2057. ASSERT_TRUE(ret);
  2058. EXPECT_EQ(200, res->status);
  2059. }
  2060. TEST_F(ServerTest, PercentEncoding) {
  2061. auto res = cli_.Get("/e%6edwith%");
  2062. ASSERT_TRUE(res);
  2063. EXPECT_EQ(200, res->status);
  2064. }
  2065. TEST_F(ServerTest, PercentEncodingUnicode) {
  2066. auto res = cli_.Get("/e%u006edwith%");
  2067. ASSERT_TRUE(res);
  2068. EXPECT_EQ(200, res->status);
  2069. }
  2070. TEST_F(ServerTest, InvalidPercentEncoding) {
  2071. auto res = cli_.Get("/%endwith%");
  2072. ASSERT_TRUE(res);
  2073. EXPECT_EQ(404, res->status);
  2074. }
  2075. TEST_F(ServerTest, InvalidPercentEncodingUnicode) {
  2076. auto res = cli_.Get("/%uendwith%");
  2077. ASSERT_TRUE(res);
  2078. EXPECT_EQ(404, res->status);
  2079. }
  2080. TEST_F(ServerTest, EndWithPercentCharacterInQuery) {
  2081. auto res = cli_.Get("/hello?aaa=bbb%");
  2082. ASSERT_TRUE(res);
  2083. EXPECT_EQ(404, res->status);
  2084. }
  2085. TEST_F(ServerTest, PlusSignEncoding) {
  2086. auto res = cli_.Get("/a+%2Bb?a %2bb=a %2Bb");
  2087. ASSERT_TRUE(res);
  2088. EXPECT_EQ(200, res->status);
  2089. EXPECT_EQ("a +b", res->body);
  2090. }
  2091. TEST_F(ServerTest, MultipartFormData) {
  2092. MultipartFormDataItems items = {
  2093. {"text1", "text default", "", ""},
  2094. {"text2", "aωb", "", ""},
  2095. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2096. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2097. {"file3", "", "", "application/octet-stream"},
  2098. {"file4", "", "", " application/json tmp-string "}};
  2099. auto res = cli_.Post("/multipart", items);
  2100. ASSERT_TRUE(res);
  2101. EXPECT_EQ(200, res->status);
  2102. }
  2103. TEST_F(ServerTest, CaseInsensitiveHeaderName) {
  2104. auto res = cli_.Get("/hi");
  2105. ASSERT_TRUE(res);
  2106. EXPECT_EQ(200, res->status);
  2107. EXPECT_EQ("text/plain", res->get_header_value("content-type"));
  2108. EXPECT_EQ("Hello World!", res->body);
  2109. }
  2110. TEST_F(ServerTest, CaseInsensitiveTransferEncoding) {
  2111. Request req;
  2112. req.method = "POST";
  2113. req.path = "/chunked";
  2114. std::string host_and_port;
  2115. host_and_port += HOST;
  2116. host_and_port += ":";
  2117. host_and_port += std::to_string(PORT);
  2118. req.headers.emplace("Host", host_and_port.c_str());
  2119. req.headers.emplace("Accept", "*/*");
  2120. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2121. req.headers.emplace("Content-Type", "text/plain");
  2122. req.headers.emplace("Content-Length", "0");
  2123. req.headers.emplace(
  2124. "Transfer-Encoding",
  2125. "Chunked"); // Note, "Chunked" rather than typical "chunked".
  2126. // Client does not chunk, so make a chunked body manually.
  2127. req.body = "4\r\ndech\r\nf\r\nunked post body\r\n0\r\n\r\n";
  2128. auto res = std::make_shared<Response>();
  2129. auto error = Error::Success;
  2130. auto ret = cli_.send(req, *res, error);
  2131. ASSERT_TRUE(ret);
  2132. EXPECT_EQ(200, res->status);
  2133. }
  2134. TEST_F(ServerTest, GetStreamed2) {
  2135. auto res = cli_.Get("/streamed", {{make_range_header({{2, 3}})}});
  2136. ASSERT_TRUE(res);
  2137. EXPECT_EQ(206, res->status);
  2138. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  2139. EXPECT_EQ(std::string("ab"), res->body);
  2140. }
  2141. TEST_F(ServerTest, GetStreamed) {
  2142. auto res = cli_.Get("/streamed");
  2143. ASSERT_TRUE(res);
  2144. EXPECT_EQ(200, res->status);
  2145. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2146. EXPECT_EQ(std::string("aaabbb"), res->body);
  2147. }
  2148. TEST_F(ServerTest, GetStreamedWithRange1) {
  2149. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{3, 5}})}});
  2150. ASSERT_TRUE(res);
  2151. EXPECT_EQ(206, res->status);
  2152. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2153. EXPECT_EQ(true, res->has_header("Content-Range"));
  2154. EXPECT_EQ(std::string("def"), res->body);
  2155. }
  2156. TEST_F(ServerTest, GetStreamedWithRange2) {
  2157. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{1, -1}})}});
  2158. ASSERT_TRUE(res);
  2159. EXPECT_EQ(206, res->status);
  2160. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2161. EXPECT_EQ(true, res->has_header("Content-Range"));
  2162. EXPECT_EQ(std::string("bcdefg"), res->body);
  2163. }
  2164. TEST_F(ServerTest, GetStreamedWithRangeSuffix1) {
  2165. auto res = cli_.Get("/streamed-with-range", {{"Range", "bytes=-3"}});
  2166. ASSERT_TRUE(res);
  2167. EXPECT_EQ(206, res->status);
  2168. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2169. EXPECT_EQ(true, res->has_header("Content-Range"));
  2170. EXPECT_EQ(std::string("efg"), res->body);
  2171. }
  2172. TEST_F(ServerTest, GetStreamedWithRangeSuffix2) {
  2173. auto res = cli_.Get("/streamed-with-range", {{"Range", "bytes=-9999"}});
  2174. ASSERT_TRUE(res);
  2175. EXPECT_EQ(206, res->status);
  2176. EXPECT_EQ("7", res->get_header_value("Content-Length"));
  2177. EXPECT_EQ(true, res->has_header("Content-Range"));
  2178. EXPECT_EQ(std::string("abcdefg"), res->body);
  2179. }
  2180. TEST_F(ServerTest, GetStreamedWithRangeError) {
  2181. auto res = cli_.Get("/streamed-with-range",
  2182. {{"Range", "bytes=92233720368547758079223372036854775806-"
  2183. "92233720368547758079223372036854775807"}});
  2184. ASSERT_TRUE(res);
  2185. EXPECT_EQ(416, res->status);
  2186. }
  2187. TEST_F(ServerTest, GetRangeWithMaxLongLength) {
  2188. auto res =
  2189. cli_.Get("/with-range", {{"Range", "bytes=0-9223372036854775807"}});
  2190. EXPECT_EQ(206, res->status);
  2191. EXPECT_EQ("7", res->get_header_value("Content-Length"));
  2192. EXPECT_EQ(true, res->has_header("Content-Range"));
  2193. EXPECT_EQ(std::string("abcdefg"), res->body);
  2194. }
  2195. TEST_F(ServerTest, GetStreamedWithRangeMultipart) {
  2196. auto res =
  2197. cli_.Get("/streamed-with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  2198. ASSERT_TRUE(res);
  2199. EXPECT_EQ(206, res->status);
  2200. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  2201. EXPECT_EQ(false, res->has_header("Content-Range"));
  2202. EXPECT_EQ(269U, res->body.size());
  2203. }
  2204. TEST_F(ServerTest, GetStreamedEndless) {
  2205. uint64_t offset = 0;
  2206. auto res = cli_.Get("/streamed-cancel",
  2207. [&](const char * /*data*/, uint64_t data_length) {
  2208. if (offset < 100) {
  2209. offset += data_length;
  2210. return true;
  2211. }
  2212. return false;
  2213. });
  2214. ASSERT_TRUE(!res);
  2215. EXPECT_EQ(Error::Canceled, res.error());
  2216. }
  2217. TEST_F(ServerTest, ClientStop) {
  2218. std::vector<std::thread> threads;
  2219. for (auto i = 0; i < 3; i++) {
  2220. threads.emplace_back(thread([&]() {
  2221. auto res = cli_.Get("/streamed-cancel",
  2222. [&](const char *, uint64_t) { return true; });
  2223. ASSERT_TRUE(!res);
  2224. EXPECT_TRUE(res.error() == Error::Canceled ||
  2225. res.error() == Error::Read || res.error() == Error::Write);
  2226. }));
  2227. }
  2228. std::this_thread::sleep_for(std::chrono::seconds(2));
  2229. while (cli_.is_socket_open()) {
  2230. cli_.stop();
  2231. std::this_thread::sleep_for(std::chrono::milliseconds(10));
  2232. }
  2233. for (auto &t : threads) {
  2234. t.join();
  2235. }
  2236. }
  2237. TEST_F(ServerTest, GetWithRange1) {
  2238. auto res = cli_.Get("/with-range", {{make_range_header({{3, 5}})}});
  2239. ASSERT_TRUE(res);
  2240. EXPECT_EQ(206, res->status);
  2241. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2242. EXPECT_EQ(true, res->has_header("Content-Range"));
  2243. EXPECT_EQ(std::string("def"), res->body);
  2244. }
  2245. TEST_F(ServerTest, GetWithRange2) {
  2246. auto res = cli_.Get("/with-range", {{make_range_header({{1, -1}})}});
  2247. ASSERT_TRUE(res);
  2248. EXPECT_EQ(206, res->status);
  2249. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2250. EXPECT_EQ(true, res->has_header("Content-Range"));
  2251. EXPECT_EQ(std::string("bcdefg"), res->body);
  2252. }
  2253. TEST_F(ServerTest, GetWithRange3) {
  2254. auto res = cli_.Get("/with-range", {{make_range_header({{0, 0}})}});
  2255. ASSERT_TRUE(res);
  2256. EXPECT_EQ(206, res->status);
  2257. EXPECT_EQ("1", res->get_header_value("Content-Length"));
  2258. EXPECT_EQ(true, res->has_header("Content-Range"));
  2259. EXPECT_EQ(std::string("a"), res->body);
  2260. }
  2261. TEST_F(ServerTest, GetWithRange4) {
  2262. auto res = cli_.Get("/with-range", {{make_range_header({{-1, 2}})}});
  2263. ASSERT_TRUE(res);
  2264. EXPECT_EQ(206, res->status);
  2265. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  2266. EXPECT_EQ(true, res->has_header("Content-Range"));
  2267. EXPECT_EQ(std::string("fg"), res->body);
  2268. }
  2269. TEST_F(ServerTest, GetWithRangeOffsetGreaterThanContent) {
  2270. auto res = cli_.Get("/with-range", {{make_range_header({{10000, 20000}})}});
  2271. ASSERT_TRUE(res);
  2272. EXPECT_EQ(416, res->status);
  2273. }
  2274. TEST_F(ServerTest, GetWithRangeMultipart) {
  2275. auto res = cli_.Get("/with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  2276. ASSERT_TRUE(res);
  2277. EXPECT_EQ(206, res->status);
  2278. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  2279. EXPECT_EQ(false, res->has_header("Content-Range"));
  2280. EXPECT_EQ(269U, res->body.size());
  2281. }
  2282. TEST_F(ServerTest, GetWithRangeMultipartOffsetGreaterThanContent) {
  2283. auto res =
  2284. cli_.Get("/with-range", {{make_range_header({{-1, 2}, {10000, 30000}})}});
  2285. ASSERT_TRUE(res);
  2286. EXPECT_EQ(416, res->status);
  2287. }
  2288. TEST_F(ServerTest, GetStreamedChunked) {
  2289. auto res = cli_.Get("/streamed-chunked");
  2290. ASSERT_TRUE(res);
  2291. EXPECT_EQ(200, res->status);
  2292. EXPECT_EQ(std::string("123456789"), res->body);
  2293. }
  2294. TEST_F(ServerTest, GetStreamedChunked2) {
  2295. auto res = cli_.Get("/streamed-chunked2");
  2296. ASSERT_TRUE(res);
  2297. EXPECT_EQ(200, res->status);
  2298. EXPECT_EQ(std::string("123456789"), res->body);
  2299. }
  2300. TEST_F(ServerTest, LargeChunkedPost) {
  2301. Request req;
  2302. req.method = "POST";
  2303. req.path = "/large-chunked";
  2304. std::string host_and_port;
  2305. host_and_port += HOST;
  2306. host_and_port += ":";
  2307. host_and_port += std::to_string(PORT);
  2308. req.headers.emplace("Host", host_and_port.c_str());
  2309. req.headers.emplace("Accept", "*/*");
  2310. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2311. req.headers.emplace("Content-Type", "text/plain");
  2312. req.headers.emplace("Content-Length", "0");
  2313. req.headers.emplace("Transfer-Encoding", "chunked");
  2314. std::string long_string(30 * 1024u, 'a');
  2315. std::string chunk = "7800\r\n" + long_string + "\r\n";
  2316. // Attempt to make a large enough post to exceed OS buffers, to test that
  2317. // the server handles short reads if the full chunk data isn't available.
  2318. req.body = chunk + chunk + chunk + chunk + chunk + chunk + "0\r\n\r\n";
  2319. auto res = std::make_shared<Response>();
  2320. auto error = Error::Success;
  2321. auto ret = cli_.send(req, *res, error);
  2322. ASSERT_TRUE(ret);
  2323. EXPECT_EQ(200, res->status);
  2324. }
  2325. TEST_F(ServerTest, GetMethodRemoteAddr) {
  2326. auto res = cli_.Get("/remote_addr");
  2327. ASSERT_TRUE(res);
  2328. EXPECT_EQ(200, res->status);
  2329. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2330. EXPECT_TRUE(res->body == "::1" || res->body == "127.0.0.1");
  2331. }
  2332. TEST_F(ServerTest, HTTPResponseSplitting) {
  2333. auto res = cli_.Get("/http_response_splitting");
  2334. ASSERT_TRUE(res);
  2335. EXPECT_EQ(200, res->status);
  2336. }
  2337. TEST_F(ServerTest, SlowRequest) {
  2338. request_threads_.push_back(
  2339. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2340. request_threads_.push_back(
  2341. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2342. request_threads_.push_back(
  2343. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2344. }
  2345. #if 0
  2346. TEST_F(ServerTest, SlowPost) {
  2347. char buffer[64 * 1024];
  2348. memset(buffer, 0x42, sizeof(buffer));
  2349. auto res = cli_.Post(
  2350. "/slowpost", 64 * 1024 * 1024,
  2351. [&](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2352. auto ret = sink.write(buffer, sizeof(buffer));
  2353. EXPECT_TRUE(ret);
  2354. return true;
  2355. },
  2356. "text/plain");
  2357. ASSERT_TRUE(res);
  2358. EXPECT_EQ(200, res->status);
  2359. }
  2360. TEST_F(ServerTest, SlowPostFail) {
  2361. char buffer[64 * 1024];
  2362. memset(buffer, 0x42, sizeof(buffer));
  2363. cli_.set_write_timeout(std::chrono::seconds(0));
  2364. auto res = cli_.Post(
  2365. "/slowpost", 64 * 1024 * 1024,
  2366. [&](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2367. sink.write(buffer, sizeof(buffer));
  2368. return true;
  2369. },
  2370. "text/plain");
  2371. ASSERT_TRUE(!res);
  2372. EXPECT_EQ(Error::Write, res.error());
  2373. }
  2374. #endif
  2375. TEST_F(ServerTest, Put) {
  2376. auto res = cli_.Put("/put", "PUT", "text/plain");
  2377. ASSERT_TRUE(res);
  2378. EXPECT_EQ(200, res->status);
  2379. EXPECT_EQ("PUT", res->body);
  2380. }
  2381. TEST_F(ServerTest, PutWithContentProvider) {
  2382. auto res = cli_.Put(
  2383. "/put", 3,
  2384. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2385. EXPECT_TRUE(sink.is_writable());
  2386. sink.os << "PUT";
  2387. return true;
  2388. },
  2389. "text/plain");
  2390. ASSERT_TRUE(res);
  2391. EXPECT_EQ(200, res->status);
  2392. EXPECT_EQ("PUT", res->body);
  2393. }
  2394. TEST_F(ServerTest, PostWithContentProviderAbort) {
  2395. auto res = cli_.Post(
  2396. "/post", 42,
  2397. [](size_t /*offset*/, size_t /*length*/, DataSink & /*sink*/) {
  2398. return false;
  2399. },
  2400. "text/plain");
  2401. ASSERT_TRUE(!res);
  2402. EXPECT_EQ(Error::Canceled, res.error());
  2403. }
  2404. TEST_F(ServerTest, PutWithContentProviderWithoutLength) {
  2405. auto res = cli_.Put(
  2406. "/put",
  2407. [](size_t /*offset*/, DataSink &sink) {
  2408. EXPECT_TRUE(sink.is_writable());
  2409. sink.os << "PUT";
  2410. sink.done();
  2411. return true;
  2412. },
  2413. "text/plain");
  2414. ASSERT_TRUE(res);
  2415. EXPECT_EQ(200, res->status);
  2416. EXPECT_EQ("PUT", res->body);
  2417. }
  2418. TEST_F(ServerTest, PostWithContentProviderWithoutLengthAbort) {
  2419. auto res = cli_.Post(
  2420. "/post", [](size_t /*offset*/, DataSink & /*sink*/) { return false; },
  2421. "text/plain");
  2422. ASSERT_TRUE(!res);
  2423. EXPECT_EQ(Error::Canceled, res.error());
  2424. }
  2425. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  2426. TEST_F(ServerTest, PutWithContentProviderWithGzip) {
  2427. cli_.set_compress(true);
  2428. auto res = cli_.Put(
  2429. "/put", 3,
  2430. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2431. EXPECT_TRUE(sink.is_writable());
  2432. sink.os << "PUT";
  2433. return true;
  2434. },
  2435. "text/plain");
  2436. ASSERT_TRUE(res);
  2437. EXPECT_EQ(200, res->status);
  2438. EXPECT_EQ("PUT", res->body);
  2439. }
  2440. TEST_F(ServerTest, PostWithContentProviderWithGzipAbort) {
  2441. cli_.set_compress(true);
  2442. auto res = cli_.Post(
  2443. "/post", 42,
  2444. [](size_t /*offset*/, size_t /*length*/, DataSink & /*sink*/) {
  2445. return false;
  2446. },
  2447. "text/plain");
  2448. ASSERT_TRUE(!res);
  2449. EXPECT_EQ(Error::Canceled, res.error());
  2450. }
  2451. TEST_F(ServerTest, PutWithContentProviderWithoutLengthWithGzip) {
  2452. cli_.set_compress(true);
  2453. auto res = cli_.Put(
  2454. "/put",
  2455. [](size_t /*offset*/, DataSink &sink) {
  2456. EXPECT_TRUE(sink.is_writable());
  2457. sink.os << "PUT";
  2458. sink.done();
  2459. return true;
  2460. },
  2461. "text/plain");
  2462. ASSERT_TRUE(res);
  2463. EXPECT_EQ(200, res->status);
  2464. EXPECT_EQ("PUT", res->body);
  2465. }
  2466. TEST_F(ServerTest, PostWithContentProviderWithoutLengthWithGzipAbort) {
  2467. cli_.set_compress(true);
  2468. auto res = cli_.Post(
  2469. "/post", [](size_t /*offset*/, DataSink & /*sink*/) { return false; },
  2470. "text/plain");
  2471. ASSERT_TRUE(!res);
  2472. EXPECT_EQ(Error::Canceled, res.error());
  2473. }
  2474. TEST_F(ServerTest, PutLargeFileWithGzip) {
  2475. cli_.set_compress(true);
  2476. auto res = cli_.Put("/put-large", LARGE_DATA, "text/plain");
  2477. ASSERT_TRUE(res);
  2478. EXPECT_EQ(200, res->status);
  2479. EXPECT_EQ(LARGE_DATA, res->body);
  2480. }
  2481. TEST_F(ServerTest, PutLargeFileWithGzip2) {
  2482. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2483. std::string s = std::string("https://") + HOST + ":" + std::to_string(PORT);
  2484. Client cli(s.c_str());
  2485. cli.enable_server_certificate_verification(false);
  2486. #else
  2487. std::string s = std::string("http://") + HOST + ":" + std::to_string(PORT);
  2488. Client cli(s.c_str());
  2489. #endif
  2490. cli.set_compress(true);
  2491. auto res = cli.Put("/put-large", LARGE_DATA, "text/plain");
  2492. ASSERT_TRUE(res);
  2493. EXPECT_EQ(200, res->status);
  2494. EXPECT_EQ(LARGE_DATA, res->body);
  2495. EXPECT_EQ(101942u, res.get_request_header_value<uint64_t>("Content-Length"));
  2496. EXPECT_EQ("gzip", res.get_request_header_value("Content-Encoding"));
  2497. }
  2498. TEST_F(ServerTest, PutContentWithDeflate) {
  2499. cli_.set_compress(false);
  2500. Headers headers;
  2501. headers.emplace("Content-Encoding", "deflate");
  2502. // PUT in deflate format:
  2503. auto res = cli_.Put("/put", headers,
  2504. "\170\234\013\010\015\001\0\001\361\0\372", "text/plain");
  2505. ASSERT_TRUE(res);
  2506. EXPECT_EQ(200, res->status);
  2507. EXPECT_EQ("PUT", res->body);
  2508. }
  2509. TEST_F(ServerTest, GetStreamedChunkedWithGzip) {
  2510. Headers headers;
  2511. headers.emplace("Accept-Encoding", "gzip, deflate");
  2512. auto res = cli_.Get("/streamed-chunked", headers);
  2513. ASSERT_TRUE(res);
  2514. EXPECT_EQ(200, res->status);
  2515. EXPECT_EQ(std::string("123456789"), res->body);
  2516. }
  2517. TEST_F(ServerTest, GetStreamedChunkedWithGzip2) {
  2518. Headers headers;
  2519. headers.emplace("Accept-Encoding", "gzip, deflate");
  2520. auto res = cli_.Get("/streamed-chunked2", headers);
  2521. ASSERT_TRUE(res);
  2522. EXPECT_EQ(200, res->status);
  2523. EXPECT_EQ(std::string("123456789"), res->body);
  2524. }
  2525. TEST(GzipDecompressor, ChunkedDecompression) {
  2526. std::string data;
  2527. for (size_t i = 0; i < 32 * 1024; ++i) {
  2528. data.push_back(static_cast<char>('a' + i % 26));
  2529. }
  2530. std::string compressed_data;
  2531. {
  2532. httplib::detail::gzip_compressor compressor;
  2533. bool result = compressor.compress(
  2534. data.data(), data.size(),
  2535. /*last=*/true, [&](const char *data, size_t size) {
  2536. compressed_data.insert(compressed_data.size(), data, size);
  2537. return true;
  2538. });
  2539. ASSERT_TRUE(result);
  2540. }
  2541. std::string decompressed_data;
  2542. {
  2543. httplib::detail::gzip_decompressor decompressor;
  2544. // Chunk size is chosen specificaly to have a decompressed chunk size equal
  2545. // to 16384 bytes 16384 bytes is the size of decompressor output buffer
  2546. size_t chunk_size = 130;
  2547. for (size_t chunk_begin = 0; chunk_begin < compressed_data.size();
  2548. chunk_begin += chunk_size) {
  2549. size_t current_chunk_size =
  2550. std::min(compressed_data.size() - chunk_begin, chunk_size);
  2551. bool result = decompressor.decompress(
  2552. compressed_data.data() + chunk_begin, current_chunk_size,
  2553. [&](const char *data, size_t size) {
  2554. decompressed_data.insert(decompressed_data.size(), data, size);
  2555. return true;
  2556. });
  2557. ASSERT_TRUE(result);
  2558. }
  2559. }
  2560. ASSERT_EQ(data, decompressed_data);
  2561. }
  2562. #ifdef _WIN32
  2563. TEST(GzipDecompressor, LargeRandomData) {
  2564. // prepare large random data that is difficult to be compressed and is
  2565. // expected to have large size even when compressed
  2566. std::random_device seed_gen;
  2567. std::mt19937 random(seed_gen());
  2568. constexpr auto large_size_byte = 4294967296UL; // 4GiB
  2569. constexpr auto data_size = large_size_byte + 134217728UL; // + 128MiB
  2570. std::vector<std::uint32_t> data(data_size / sizeof(std::uint32_t));
  2571. std::generate(data.begin(), data.end(), [&]() { return random(); });
  2572. // compress data over 4GiB
  2573. std::string compressed_data;
  2574. compressed_data.reserve(large_size_byte + 536870912UL); // + 512MiB reserved
  2575. httplib::detail::gzip_compressor compressor;
  2576. auto result = compressor.compress(reinterpret_cast<const char *>(data.data()),
  2577. data.size() * sizeof(std::uint32_t), true,
  2578. [&](const char *data, size_t size) {
  2579. compressed_data.insert(
  2580. compressed_data.size(), data, size);
  2581. return true;
  2582. });
  2583. ASSERT_TRUE(result);
  2584. // FIXME: compressed data size is expected to be greater than 4GiB,
  2585. // but there is no guarantee
  2586. // ASSERT_TRUE(compressed_data.size() >= large_size_byte);
  2587. // decompress data over 4GiB
  2588. std::string decompressed_data;
  2589. decompressed_data.reserve(data_size);
  2590. httplib::detail::gzip_decompressor decompressor;
  2591. result = decompressor.decompress(
  2592. compressed_data.data(), compressed_data.size(),
  2593. [&](const char *data, size_t size) {
  2594. decompressed_data.insert(decompressed_data.size(), data, size);
  2595. return true;
  2596. });
  2597. ASSERT_TRUE(result);
  2598. // compare
  2599. ASSERT_EQ(data_size, decompressed_data.size());
  2600. ASSERT_TRUE(std::memcmp(data.data(), decompressed_data.data(), data_size) ==
  2601. 0);
  2602. }
  2603. #endif
  2604. #endif
  2605. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  2606. TEST_F(ServerTest, GetStreamedChunkedWithBrotli) {
  2607. Headers headers;
  2608. headers.emplace("Accept-Encoding", "br");
  2609. auto res = cli_.Get("/streamed-chunked", headers);
  2610. ASSERT_TRUE(res);
  2611. EXPECT_EQ(200, res->status);
  2612. EXPECT_EQ(std::string("123456789"), res->body);
  2613. }
  2614. TEST_F(ServerTest, GetStreamedChunkedWithBrotli2) {
  2615. Headers headers;
  2616. headers.emplace("Accept-Encoding", "br");
  2617. auto res = cli_.Get("/streamed-chunked2", headers);
  2618. ASSERT_TRUE(res);
  2619. EXPECT_EQ(200, res->status);
  2620. EXPECT_EQ(std::string("123456789"), res->body);
  2621. }
  2622. #endif
  2623. TEST_F(ServerTest, Patch) {
  2624. auto res = cli_.Patch("/patch", "PATCH", "text/plain");
  2625. ASSERT_TRUE(res);
  2626. EXPECT_EQ(200, res->status);
  2627. EXPECT_EQ("PATCH", res->body);
  2628. }
  2629. TEST_F(ServerTest, Delete) {
  2630. auto res = cli_.Delete("/delete");
  2631. ASSERT_TRUE(res);
  2632. EXPECT_EQ(200, res->status);
  2633. EXPECT_EQ("DELETE", res->body);
  2634. }
  2635. TEST_F(ServerTest, DeleteContentReceiver) {
  2636. auto res = cli_.Delete("/delete-body", "content", "text/plain");
  2637. ASSERT_TRUE(res);
  2638. EXPECT_EQ(200, res->status);
  2639. EXPECT_EQ("content", res->body);
  2640. }
  2641. TEST_F(ServerTest, Options) {
  2642. auto res = cli_.Options("*");
  2643. ASSERT_TRUE(res);
  2644. EXPECT_EQ(200, res->status);
  2645. EXPECT_EQ("GET, POST, HEAD, OPTIONS", res->get_header_value("Allow"));
  2646. EXPECT_TRUE(res->body.empty());
  2647. }
  2648. TEST_F(ServerTest, URL) {
  2649. auto res = cli_.Get("/request-target?aaa=bbb&ccc=ddd");
  2650. ASSERT_TRUE(res);
  2651. EXPECT_EQ(200, res->status);
  2652. }
  2653. TEST_F(ServerTest, ArrayParam) {
  2654. auto res = cli_.Get("/array-param?array=value1&array=value2&array=value3");
  2655. ASSERT_TRUE(res);
  2656. EXPECT_EQ(200, res->status);
  2657. }
  2658. TEST_F(ServerTest, NoMultipleHeaders) {
  2659. Headers headers = {{"Content-Length", "5"}};
  2660. auto res = cli_.Post("/validate-no-multiple-headers", headers, "hello",
  2661. "text/plain");
  2662. ASSERT_TRUE(res);
  2663. EXPECT_EQ(200, res->status);
  2664. }
  2665. TEST_F(ServerTest, PostContentReceiver) {
  2666. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  2667. ASSERT_TRUE(res);
  2668. ASSERT_EQ(200, res->status);
  2669. ASSERT_EQ("content", res->body);
  2670. }
  2671. TEST_F(ServerTest, PostMulitpartFilsContentReceiver) {
  2672. MultipartFormDataItems items = {
  2673. {"text1", "text default", "", ""},
  2674. {"text2", "aωb", "", ""},
  2675. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2676. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2677. {"file3", "", "", "application/octet-stream"},
  2678. };
  2679. auto res = cli_.Post("/content_receiver", items);
  2680. ASSERT_TRUE(res);
  2681. EXPECT_EQ(200, res->status);
  2682. }
  2683. TEST_F(ServerTest, PostMulitpartPlusBoundary) {
  2684. MultipartFormDataItems items = {
  2685. {"text1", "text default", "", ""},
  2686. {"text2", "aωb", "", ""},
  2687. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2688. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2689. {"file3", "", "", "application/octet-stream"},
  2690. };
  2691. auto boundary = std::string("+++++");
  2692. std::string body;
  2693. for (const auto &item : items) {
  2694. body += "--" + boundary + "\r\n";
  2695. body += "Content-Disposition: form-data; name=\"" + item.name + "\"";
  2696. if (!item.filename.empty()) {
  2697. body += "; filename=\"" + item.filename + "\"";
  2698. }
  2699. body += "\r\n";
  2700. if (!item.content_type.empty()) {
  2701. body += "Content-Type: " + item.content_type + "\r\n";
  2702. }
  2703. body += "\r\n";
  2704. body += item.content + "\r\n";
  2705. }
  2706. body += "--" + boundary + "--\r\n";
  2707. std::string content_type = "multipart/form-data; boundary=" + boundary;
  2708. auto res = cli_.Post("/content_receiver", body, content_type.c_str());
  2709. ASSERT_TRUE(res);
  2710. EXPECT_EQ(200, res->status);
  2711. }
  2712. TEST_F(ServerTest, PostContentReceiverGzip) {
  2713. cli_.set_compress(true);
  2714. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  2715. ASSERT_TRUE(res);
  2716. ASSERT_EQ(200, res->status);
  2717. ASSERT_EQ("content", res->body);
  2718. }
  2719. TEST_F(ServerTest, PutContentReceiver) {
  2720. auto res = cli_.Put("/content_receiver", "content", "text/plain");
  2721. ASSERT_TRUE(res);
  2722. ASSERT_EQ(200, res->status);
  2723. ASSERT_EQ("content", res->body);
  2724. }
  2725. TEST_F(ServerTest, PatchContentReceiver) {
  2726. auto res = cli_.Patch("/content_receiver", "content", "text/plain");
  2727. ASSERT_TRUE(res);
  2728. ASSERT_EQ(200, res->status);
  2729. ASSERT_EQ("content", res->body);
  2730. }
  2731. TEST_F(ServerTest, PostQueryStringAndBody) {
  2732. auto res =
  2733. cli_.Post("/query-string-and-body?key=value", "content", "text/plain");
  2734. ASSERT_TRUE(res);
  2735. ASSERT_EQ(200, res->status);
  2736. }
  2737. TEST_F(ServerTest, HTTP2Magic) {
  2738. Request req;
  2739. req.method = "PRI";
  2740. req.path = "*";
  2741. req.body = "SM";
  2742. auto res = std::make_shared<Response>();
  2743. auto error = Error::Success;
  2744. auto ret = cli_.send(req, *res, error);
  2745. ASSERT_TRUE(ret);
  2746. EXPECT_EQ(400, res->status);
  2747. }
  2748. TEST_F(ServerTest, KeepAlive) {
  2749. auto res = cli_.Get("/hi");
  2750. ASSERT_TRUE(res);
  2751. EXPECT_EQ(200, res->status);
  2752. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2753. EXPECT_EQ("Hello World!", res->body);
  2754. res = cli_.Get("/hi");
  2755. ASSERT_TRUE(res);
  2756. EXPECT_EQ(200, res->status);
  2757. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2758. EXPECT_EQ("Hello World!", res->body);
  2759. res = cli_.Get("/hi");
  2760. ASSERT_TRUE(res);
  2761. EXPECT_EQ(200, res->status);
  2762. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2763. EXPECT_EQ("Hello World!", res->body);
  2764. res = cli_.Get("/not-exist");
  2765. ASSERT_TRUE(res);
  2766. EXPECT_EQ(404, res->status);
  2767. res = cli_.Post("/empty", "", "text/plain");
  2768. ASSERT_TRUE(res);
  2769. EXPECT_EQ(200, res->status);
  2770. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2771. EXPECT_EQ("empty", res->body);
  2772. EXPECT_EQ("close", res->get_header_value("Connection"));
  2773. res = cli_.Post(
  2774. "/empty", 0, [&](size_t, size_t, DataSink &) { return true; },
  2775. "text/plain");
  2776. ASSERT_TRUE(res);
  2777. EXPECT_EQ(200, res->status);
  2778. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2779. EXPECT_EQ("empty", res->body);
  2780. cli_.set_keep_alive(false);
  2781. res = cli_.Get("/last-request");
  2782. ASSERT_TRUE(res);
  2783. EXPECT_EQ(200, res->status);
  2784. EXPECT_EQ("close", res->get_header_value("Connection"));
  2785. }
  2786. TEST_F(ServerTest, TooManyRedirect) {
  2787. cli_.set_follow_location(true);
  2788. auto res = cli_.Get("/redirect/0");
  2789. ASSERT_TRUE(!res);
  2790. EXPECT_EQ(Error::ExceedRedirectCount, res.error());
  2791. }
  2792. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  2793. TEST_F(ServerTest, Gzip) {
  2794. Headers headers;
  2795. headers.emplace("Accept-Encoding", "gzip, deflate");
  2796. auto res = cli_.Get("/compress", headers);
  2797. ASSERT_TRUE(res);
  2798. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  2799. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2800. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  2801. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2802. "7890123456789012345678901234567890",
  2803. res->body);
  2804. EXPECT_EQ(200, res->status);
  2805. }
  2806. TEST_F(ServerTest, GzipWithoutAcceptEncoding) {
  2807. auto res = cli_.Get("/compress");
  2808. ASSERT_TRUE(res);
  2809. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  2810. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2811. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2812. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2813. "7890123456789012345678901234567890",
  2814. res->body);
  2815. EXPECT_EQ(200, res->status);
  2816. }
  2817. TEST_F(ServerTest, GzipWithContentReceiver) {
  2818. Headers headers;
  2819. headers.emplace("Accept-Encoding", "gzip, deflate");
  2820. std::string body;
  2821. auto res = cli_.Get("/compress", headers,
  2822. [&](const char *data, uint64_t data_length) {
  2823. EXPECT_EQ(100U, data_length);
  2824. body.append(data, data_length);
  2825. return true;
  2826. });
  2827. ASSERT_TRUE(res);
  2828. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  2829. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2830. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  2831. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2832. "7890123456789012345678901234567890",
  2833. body);
  2834. EXPECT_EQ(200, res->status);
  2835. }
  2836. TEST_F(ServerTest, GzipWithoutDecompressing) {
  2837. Headers headers;
  2838. headers.emplace("Accept-Encoding", "gzip, deflate");
  2839. cli_.set_decompress(false);
  2840. auto res = cli_.Get("/compress", headers);
  2841. ASSERT_TRUE(res);
  2842. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  2843. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2844. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  2845. EXPECT_EQ(33U, res->body.size());
  2846. EXPECT_EQ(200, res->status);
  2847. }
  2848. TEST_F(ServerTest, GzipWithContentReceiverWithoutAcceptEncoding) {
  2849. std::string body;
  2850. auto res = cli_.Get("/compress", [&](const char *data, uint64_t data_length) {
  2851. EXPECT_EQ(100U, data_length);
  2852. body.append(data, data_length);
  2853. return true;
  2854. });
  2855. ASSERT_TRUE(res);
  2856. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  2857. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2858. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2859. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2860. "7890123456789012345678901234567890",
  2861. body);
  2862. EXPECT_EQ(200, res->status);
  2863. }
  2864. TEST_F(ServerTest, NoGzip) {
  2865. Headers headers;
  2866. headers.emplace("Accept-Encoding", "gzip, deflate");
  2867. auto res = cli_.Get("/nocompress", headers);
  2868. ASSERT_TRUE(res);
  2869. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  2870. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  2871. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2872. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2873. "7890123456789012345678901234567890",
  2874. res->body);
  2875. EXPECT_EQ(200, res->status);
  2876. }
  2877. TEST_F(ServerTest, NoGzipWithContentReceiver) {
  2878. Headers headers;
  2879. headers.emplace("Accept-Encoding", "gzip, deflate");
  2880. std::string body;
  2881. auto res = cli_.Get("/nocompress", headers,
  2882. [&](const char *data, uint64_t data_length) {
  2883. EXPECT_EQ(100U, data_length);
  2884. body.append(data, data_length);
  2885. return true;
  2886. });
  2887. ASSERT_TRUE(res);
  2888. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  2889. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  2890. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2891. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2892. "7890123456789012345678901234567890",
  2893. body);
  2894. EXPECT_EQ(200, res->status);
  2895. }
  2896. TEST_F(ServerTest, MultipartFormDataGzip) {
  2897. MultipartFormDataItems items = {
  2898. {"key1", "test", "", ""},
  2899. {"key2", "--abcdefg123", "", ""},
  2900. };
  2901. cli_.set_compress(true);
  2902. auto res = cli_.Post("/compress-multipart", items);
  2903. ASSERT_TRUE(res);
  2904. EXPECT_EQ(200, res->status);
  2905. }
  2906. #endif
  2907. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  2908. TEST_F(ServerTest, Brotli) {
  2909. Headers headers;
  2910. headers.emplace("Accept-Encoding", "br");
  2911. auto res = cli_.Get("/compress", headers);
  2912. ASSERT_TRUE(res);
  2913. EXPECT_EQ("br", res->get_header_value("Content-Encoding"));
  2914. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2915. EXPECT_EQ("19", res->get_header_value("Content-Length"));
  2916. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2917. "7890123456789012345678901234567890",
  2918. res->body);
  2919. EXPECT_EQ(200, res->status);
  2920. }
  2921. #endif
  2922. // Sends a raw request to a server listening at HOST:PORT.
  2923. static bool send_request(time_t read_timeout_sec, const std::string &req,
  2924. std::string *resp = nullptr) {
  2925. auto error = Error::Success;
  2926. auto client_sock = detail::create_client_socket(
  2927. HOST, "", PORT, AF_UNSPEC, false, nullptr,
  2928. /*connection_timeout_sec=*/5, 0,
  2929. /*read_timeout_sec=*/5, 0,
  2930. /*write_timeout_sec=*/5, 0, std::string(), error);
  2931. if (client_sock == INVALID_SOCKET) { return false; }
  2932. auto ret = detail::process_client_socket(
  2933. client_sock, read_timeout_sec, 0, 0, 0, [&](Stream &strm) {
  2934. if (req.size() !=
  2935. static_cast<size_t>(strm.write(req.data(), req.size()))) {
  2936. return false;
  2937. }
  2938. char buf[512];
  2939. detail::stream_line_reader line_reader(strm, buf, sizeof(buf));
  2940. while (line_reader.getline()) {
  2941. if (resp) { *resp += line_reader.ptr(); }
  2942. }
  2943. return true;
  2944. });
  2945. detail::close_socket(client_sock);
  2946. return ret;
  2947. }
  2948. TEST(ServerRequestParsingTest, TrimWhitespaceFromHeaderValues) {
  2949. Server svr;
  2950. std::string header_value;
  2951. svr.Get("/validate-ws-in-headers", [&](const Request &req, Response &res) {
  2952. header_value = req.get_header_value("foo");
  2953. res.set_content("ok", "text/plain");
  2954. });
  2955. thread t = thread([&] { svr.listen(HOST, PORT); });
  2956. while (!svr.is_running()) {
  2957. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2958. }
  2959. // Only space and horizontal tab are whitespace. Make sure other whitespace-
  2960. // like characters are not treated the same - use vertical tab and escape.
  2961. const std::string req = "GET /validate-ws-in-headers HTTP/1.1\r\n"
  2962. "foo: \t \v bar \x1B\t \r\n"
  2963. "Connection: close\r\n"
  2964. "\r\n";
  2965. ASSERT_TRUE(send_request(5, req));
  2966. svr.stop();
  2967. t.join();
  2968. EXPECT_EQ(header_value, "\v bar \x1B");
  2969. }
  2970. // Sends a raw request and verifies that there isn't a crash or exception.
  2971. static void test_raw_request(const std::string &req,
  2972. std::string *out = nullptr) {
  2973. Server svr;
  2974. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  2975. res.set_content("ok", "text/plain");
  2976. });
  2977. svr.Put("/put_hi", [&](const Request & /*req*/, Response &res) {
  2978. res.set_content("ok", "text/plain");
  2979. });
  2980. // Server read timeout must be longer than the client read timeout for the
  2981. // bug to reproduce, probably to force the server to process a request
  2982. // without a trailing blank line.
  2983. const time_t client_read_timeout_sec = 1;
  2984. svr.set_read_timeout(std::chrono::seconds(client_read_timeout_sec + 1));
  2985. bool listen_thread_ok = false;
  2986. thread t = thread([&] { listen_thread_ok = svr.listen(HOST, PORT); });
  2987. while (!svr.is_running()) {
  2988. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2989. }
  2990. ASSERT_TRUE(send_request(client_read_timeout_sec, req, out));
  2991. svr.stop();
  2992. t.join();
  2993. EXPECT_TRUE(listen_thread_ok);
  2994. }
  2995. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity) {
  2996. // A certain header line causes an exception if the header property is parsed
  2997. // naively with a single regex. This occurs with libc++ but not libstdc++.
  2998. test_raw_request(
  2999. "GET /hi HTTP/1.1\r\n"
  3000. " : "
  3001. " "
  3002. " ");
  3003. }
  3004. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity2) {
  3005. // A certain header line causes an exception if the header property *name* is
  3006. // parsed with a regular expression starting with "(.+?):" - this is a non-
  3007. // greedy matcher and requires backtracking when there are a lot of ":"
  3008. // characters.
  3009. // This occurs with libc++ but not libstdc++.
  3010. test_raw_request(
  3011. "GET /hi HTTP/1.1\r\n"
  3012. ":-:::::::::::::::::::::::::::-::::::::::::::::::::::::@-&&&&&&&&&&&"
  3013. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  3014. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-:::::"
  3015. "::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::::::::::::::::::::"
  3016. ":::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::"
  3017. "::::::::-:::::::::::::::::@-&&&&&&&--:::::::-::::::::::::::::::::::"
  3018. ":::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::"
  3019. "::::::::::-:::::::::::::::::@-&&&&&::::::::::::-:::::::::::::::::@-"
  3020. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  3021. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  3022. "::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::@-&&"
  3023. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  3024. "::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&"
  3025. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  3026. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&"
  3027. "&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&"
  3028. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  3029. "-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::"
  3030. "::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::"
  3031. ":::::@-&&&&&&&&&&&::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::"
  3032. ":::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::"
  3033. "::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-"
  3034. ":::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&---&&:&"
  3035. "&&.0------------:-:::::::::::::::::::::::::::::-:::::::::::::::::@-"
  3036. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  3037. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  3038. "::::@-&&&&&&&&&&&---&&:&&&.0------------O--------\rH PUTHTTP/1.1\r\n"
  3039. "&&&%%%");
  3040. }
  3041. TEST(ServerRequestParsingTest, ExcessiveWhitespaceInUnparseableHeaderLine) {
  3042. // Make sure this doesn't crash the server.
  3043. // In a previous version of the header line regex, the "\r" rendered the line
  3044. // unparseable and the regex engine repeatedly backtracked, trying to look for
  3045. // a new position where the leading white space ended and the field value
  3046. // began.
  3047. // The crash occurs with libc++ but not libstdc++.
  3048. test_raw_request("GET /hi HTTP/1.1\r\n"
  3049. "a:" +
  3050. std::string(2000, ' ') + '\r' + std::string(20, 'z') +
  3051. "\r\n"
  3052. "\r\n");
  3053. }
  3054. TEST(ServerRequestParsingTest, InvalidFirstChunkLengthInRequest) {
  3055. std::string out;
  3056. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3057. "Content-Type: text/plain\r\n"
  3058. "Transfer-Encoding: chunked\r\n"
  3059. "\r\n"
  3060. "nothex\r\n",
  3061. &out);
  3062. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3063. }
  3064. TEST(ServerRequestParsingTest, InvalidSecondChunkLengthInRequest) {
  3065. std::string out;
  3066. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3067. "Content-Type: text/plain\r\n"
  3068. "Transfer-Encoding: chunked\r\n"
  3069. "\r\n"
  3070. "3\r\n"
  3071. "xyz\r\n"
  3072. "NaN\r\n",
  3073. &out);
  3074. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3075. }
  3076. TEST(ServerRequestParsingTest, ChunkLengthTooHighInRequest) {
  3077. std::string out;
  3078. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3079. "Content-Type: text/plain\r\n"
  3080. "Transfer-Encoding: chunked\r\n"
  3081. "\r\n"
  3082. // Length is too large for 64 bits.
  3083. "1ffffffffffffffff\r\n"
  3084. "xyz\r\n",
  3085. &out);
  3086. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3087. }
  3088. TEST(ServerRequestParsingTest, InvalidHeaderTextWithExtraCR) {
  3089. test_raw_request("GET /hi HTTP/1.1\r\n"
  3090. "Content-Type: text/plain\r\n\r");
  3091. }
  3092. TEST(ServerRequestParsingTest, InvalidSpaceInURL) {
  3093. std::string out;
  3094. test_raw_request("GET /h i HTTP/1.1\r\n\r\n", &out);
  3095. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3096. }
  3097. TEST(ServerStopTest, StopServerWithChunkedTransmission) {
  3098. Server svr;
  3099. svr.Get("/events", [](const Request & /*req*/, Response &res) {
  3100. res.set_header("Cache-Control", "no-cache");
  3101. res.set_chunked_content_provider("text/event-stream", [](size_t offset,
  3102. DataSink &sink) {
  3103. char buffer[27];
  3104. auto size = static_cast<size_t>(sprintf(buffer, "data:%zd\n\n", offset));
  3105. auto ret = sink.write(buffer, size);
  3106. EXPECT_TRUE(ret);
  3107. std::this_thread::sleep_for(std::chrono::seconds(1));
  3108. return true;
  3109. });
  3110. });
  3111. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3112. while (!svr.is_running()) {
  3113. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3114. }
  3115. Client client(HOST, PORT);
  3116. const Headers headers = {{"Accept", "text/event-stream"}};
  3117. auto get_thread = std::thread([&client, &headers]() {
  3118. auto res = client.Get(
  3119. "/events", headers,
  3120. [](const char * /*data*/, size_t /*len*/) -> bool { return true; });
  3121. });
  3122. // Give GET time to get a few messages.
  3123. std::this_thread::sleep_for(std::chrono::seconds(2));
  3124. svr.stop();
  3125. listen_thread.join();
  3126. get_thread.join();
  3127. ASSERT_FALSE(svr.is_running());
  3128. }
  3129. TEST(StreamingTest, NoContentLengthStreaming) {
  3130. Server svr;
  3131. svr.Get("/stream", [](const Request & /*req*/, Response &res) {
  3132. res.set_content_provider("text/plain", [](size_t offset, DataSink &sink) {
  3133. if (offset < 6) {
  3134. sink.os << (offset < 3 ? "a" : "b");
  3135. } else {
  3136. sink.done();
  3137. }
  3138. return true;
  3139. });
  3140. });
  3141. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3142. while (!svr.is_running()) {
  3143. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3144. }
  3145. Client client(HOST, PORT);
  3146. auto get_thread = std::thread([&client]() {
  3147. std::string s;
  3148. auto res =
  3149. client.Get("/stream", [&s](const char *data, size_t len) -> bool {
  3150. s += std::string(data, len);
  3151. return true;
  3152. });
  3153. EXPECT_EQ("aaabbb", s);
  3154. });
  3155. // Give GET time to get a few messages.
  3156. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  3157. svr.stop();
  3158. listen_thread.join();
  3159. get_thread.join();
  3160. ASSERT_FALSE(svr.is_running());
  3161. }
  3162. TEST(MountTest, Unmount) {
  3163. Server svr;
  3164. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3165. while (!svr.is_running()) {
  3166. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3167. }
  3168. // Give GET time to get a few messages.
  3169. std::this_thread::sleep_for(std::chrono::seconds(1));
  3170. Client cli("localhost", PORT);
  3171. svr.set_mount_point("/mount2", "./www2");
  3172. auto res = cli.Get("/");
  3173. ASSERT_TRUE(res);
  3174. EXPECT_EQ(404, res->status);
  3175. res = cli.Get("/mount2/dir/test.html");
  3176. ASSERT_TRUE(res);
  3177. EXPECT_EQ(200, res->status);
  3178. svr.set_mount_point("/", "./www");
  3179. res = cli.Get("/dir/");
  3180. ASSERT_TRUE(res);
  3181. EXPECT_EQ(200, res->status);
  3182. svr.remove_mount_point("/");
  3183. res = cli.Get("/dir/");
  3184. ASSERT_TRUE(res);
  3185. EXPECT_EQ(404, res->status);
  3186. svr.remove_mount_point("/mount2");
  3187. res = cli.Get("/mount2/dir/test.html");
  3188. ASSERT_TRUE(res);
  3189. EXPECT_EQ(404, res->status);
  3190. svr.stop();
  3191. listen_thread.join();
  3192. ASSERT_FALSE(svr.is_running());
  3193. }
  3194. #ifndef CPPHTTPLIB_NO_EXCEPTIONS
  3195. TEST(ExceptionTest, ThrowExceptionInHandler) {
  3196. Server svr;
  3197. svr.Get("/hi", [&](const Request & /*req*/, Response & /*res*/) {
  3198. throw std::runtime_error("exception...");
  3199. // res.set_content("Hello World!", "text/plain");
  3200. });
  3201. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3202. while (!svr.is_running()) {
  3203. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3204. }
  3205. // Give GET time to get a few messages.
  3206. std::this_thread::sleep_for(std::chrono::seconds(1));
  3207. Client cli("localhost", PORT);
  3208. auto res = cli.Get("/hi");
  3209. ASSERT_TRUE(res);
  3210. EXPECT_EQ(500, res->status);
  3211. ASSERT_TRUE(res->has_header("EXCEPTION_WHAT"));
  3212. EXPECT_EQ("exception...", res->get_header_value("EXCEPTION_WHAT"));
  3213. svr.stop();
  3214. listen_thread.join();
  3215. ASSERT_FALSE(svr.is_running());
  3216. }
  3217. #endif
  3218. TEST(KeepAliveTest, ReadTimeout) {
  3219. Server svr;
  3220. svr.Get("/a", [&](const Request & /*req*/, Response &res) {
  3221. std::this_thread::sleep_for(std::chrono::seconds(2));
  3222. res.set_content("a", "text/plain");
  3223. });
  3224. svr.Get("/b", [&](const Request & /*req*/, Response &res) {
  3225. res.set_content("b", "text/plain");
  3226. });
  3227. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3228. while (!svr.is_running()) {
  3229. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3230. }
  3231. // Give GET time to get a few messages.
  3232. std::this_thread::sleep_for(std::chrono::seconds(1));
  3233. Client cli("localhost", PORT);
  3234. cli.set_keep_alive(true);
  3235. cli.set_read_timeout(std::chrono::seconds(1));
  3236. auto resa = cli.Get("/a");
  3237. ASSERT_TRUE(!resa);
  3238. EXPECT_EQ(Error::Read, resa.error());
  3239. auto resb = cli.Get("/b");
  3240. ASSERT_TRUE(resb);
  3241. EXPECT_EQ(200, resb->status);
  3242. EXPECT_EQ("b", resb->body);
  3243. svr.stop();
  3244. listen_thread.join();
  3245. ASSERT_FALSE(svr.is_running());
  3246. }
  3247. TEST(KeepAliveTest, Issue1041) {
  3248. const auto resourcePath = "/hi";
  3249. Server svr;
  3250. svr.set_keep_alive_timeout(3);
  3251. svr.Get(resourcePath, [](const httplib::Request &, httplib::Response &res) {
  3252. res.set_content("Hello World!", "text/plain");
  3253. });
  3254. auto a2 = std::async(std::launch::async, [&svr] { svr.listen(HOST, PORT); });
  3255. std::this_thread::sleep_for(std::chrono::milliseconds(200));
  3256. Client cli(HOST, PORT);
  3257. cli.set_keep_alive(true);
  3258. auto result = cli.Get(resourcePath);
  3259. ASSERT_TRUE(result);
  3260. EXPECT_EQ(200, result->status);
  3261. std::this_thread::sleep_for(std::chrono::seconds(5));
  3262. result = cli.Get(resourcePath);
  3263. ASSERT_TRUE(result);
  3264. EXPECT_EQ(200, result->status);
  3265. svr.stop();
  3266. a2.wait();
  3267. }
  3268. TEST(ClientProblemDetectionTest, ContentProvider) {
  3269. Server svr;
  3270. size_t content_length = 1024 * 1024;
  3271. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  3272. res.set_content_provider(
  3273. content_length, "text/plain",
  3274. [&](size_t offset, size_t length, DataSink &sink) {
  3275. auto out_len = std::min(length, static_cast<size_t>(1024));
  3276. std::string out(out_len, '@');
  3277. sink.write(out.data(), out_len);
  3278. return offset < 4096;
  3279. },
  3280. [](bool success) { ASSERT_FALSE(success); });
  3281. });
  3282. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3283. while (!svr.is_running()) {
  3284. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3285. }
  3286. // Give GET time to get a few messages.
  3287. std::this_thread::sleep_for(std::chrono::seconds(1));
  3288. Client cli("localhost", PORT);
  3289. auto res = cli.Get("/hi", [&](const char * /*data*/, size_t /*data_length*/) {
  3290. return false;
  3291. });
  3292. ASSERT_FALSE(res);
  3293. svr.stop();
  3294. listen_thread.join();
  3295. ASSERT_FALSE(svr.is_running());
  3296. }
  3297. TEST(ErrorHandlerWithContentProviderTest, ErrorHandler) {
  3298. Server svr;
  3299. svr.set_error_handler([](Request const &, Response &res) -> void {
  3300. res.set_chunked_content_provider(
  3301. "text/plain", [](std::size_t const, DataSink &sink) -> bool {
  3302. sink.os << "hello";
  3303. sink.os << "world";
  3304. sink.done();
  3305. return true;
  3306. });
  3307. });
  3308. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3309. while (!svr.is_running()) {
  3310. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3311. }
  3312. // Give GET time to get a few messages.
  3313. std::this_thread::sleep_for(std::chrono::seconds(1));
  3314. Client cli("localhost", PORT);
  3315. auto res = cli.Get("/");
  3316. ASSERT_TRUE(res);
  3317. EXPECT_EQ(404, res->status);
  3318. EXPECT_EQ("helloworld", res->body);
  3319. svr.stop();
  3320. listen_thread.join();
  3321. ASSERT_FALSE(svr.is_running());
  3322. }
  3323. TEST(GetWithParametersTest, GetWithParameters) {
  3324. Server svr;
  3325. svr.Get("/", [&](const Request &req, Response &) {
  3326. EXPECT_EQ("world", req.get_param_value("hello"));
  3327. EXPECT_EQ("world2", req.get_param_value("hello2"));
  3328. EXPECT_EQ("world3", req.get_param_value("hello3"));
  3329. });
  3330. svr.Get("/params", [&](const Request &req, Response &) {
  3331. EXPECT_EQ("world", req.get_param_value("hello"));
  3332. EXPECT_EQ("world2", req.get_param_value("hello2"));
  3333. EXPECT_EQ("world3", req.get_param_value("hello3"));
  3334. });
  3335. svr.Get(R"(/resources/([a-z0-9\\-]+))", [&](const Request &req, Response &) {
  3336. EXPECT_EQ("resource-id", req.matches[1]);
  3337. EXPECT_EQ("foo", req.get_param_value("param1"));
  3338. EXPECT_EQ("bar", req.get_param_value("param2"));
  3339. });
  3340. auto listen_thread = std::thread([&svr]() { svr.listen(HOST, PORT); });
  3341. while (!svr.is_running()) {
  3342. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3343. }
  3344. std::this_thread::sleep_for(std::chrono::seconds(1));
  3345. {
  3346. Client cli(HOST, PORT);
  3347. Params params;
  3348. params.emplace("hello", "world");
  3349. params.emplace("hello2", "world2");
  3350. params.emplace("hello3", "world3");
  3351. auto res = cli.Get("/", params, Headers{});
  3352. ASSERT_TRUE(res);
  3353. EXPECT_EQ(200, res->status);
  3354. }
  3355. {
  3356. Client cli(HOST, PORT);
  3357. auto res = cli.Get("/params?hello=world&hello2=world2&hello3=world3");
  3358. ASSERT_TRUE(res);
  3359. EXPECT_EQ(200, res->status);
  3360. }
  3361. {
  3362. Client cli(HOST, PORT);
  3363. auto res = cli.Get("/resources/resource-id?param1=foo&param2=bar");
  3364. ASSERT_TRUE(res);
  3365. EXPECT_EQ(200, res->status);
  3366. }
  3367. svr.stop();
  3368. listen_thread.join();
  3369. ASSERT_FALSE(svr.is_running());
  3370. }
  3371. TEST(GetWithParametersTest, GetWithParameters2) {
  3372. Server svr;
  3373. svr.Get("/", [&](const Request &req, Response &res) {
  3374. auto text = req.get_param_value("hello");
  3375. res.set_content(text, "text/plain");
  3376. });
  3377. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3378. while (!svr.is_running()) {
  3379. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3380. }
  3381. std::this_thread::sleep_for(std::chrono::seconds(1));
  3382. Client cli("localhost", PORT);
  3383. Params params;
  3384. params.emplace("hello", "world");
  3385. std::string body;
  3386. auto res = cli.Get("/", params, Headers{},
  3387. [&](const char *data, size_t data_length) {
  3388. body.append(data, data_length);
  3389. return true;
  3390. });
  3391. ASSERT_TRUE(res);
  3392. EXPECT_EQ(200, res->status);
  3393. EXPECT_EQ("world", body);
  3394. svr.stop();
  3395. listen_thread.join();
  3396. ASSERT_FALSE(svr.is_running());
  3397. }
  3398. TEST(ClientDefaultHeadersTest, DefaultHeaders_Online) {
  3399. Client cli("httpbin.org");
  3400. cli.set_default_headers({make_range_header({{1, 10}})});
  3401. cli.set_connection_timeout(5);
  3402. {
  3403. auto res = cli.Get("/range/32");
  3404. ASSERT_TRUE(res);
  3405. EXPECT_EQ("bcdefghijk", res->body);
  3406. EXPECT_EQ(206, res->status);
  3407. }
  3408. {
  3409. auto res = cli.Get("/range/32");
  3410. ASSERT_TRUE(res);
  3411. EXPECT_EQ("bcdefghijk", res->body);
  3412. EXPECT_EQ(206, res->status);
  3413. }
  3414. }
  3415. TEST(ServerDefaultHeadersTest, DefaultHeaders) {
  3416. Server svr;
  3417. svr.set_default_headers({{"Hello", "World"}});
  3418. svr.Get("/", [&](const Request & /*req*/, Response &res) {
  3419. res.set_content("ok", "text/plain");
  3420. });
  3421. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3422. while (!svr.is_running()) {
  3423. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3424. }
  3425. std::this_thread::sleep_for(std::chrono::seconds(1));
  3426. Client cli("localhost", PORT);
  3427. auto res = cli.Get("/");
  3428. ASSERT_TRUE(res);
  3429. EXPECT_EQ(200, res->status);
  3430. EXPECT_EQ("ok", res->body);
  3431. EXPECT_EQ("World", res->get_header_value("Hello"));
  3432. svr.stop();
  3433. listen_thread.join();
  3434. ASSERT_FALSE(svr.is_running());
  3435. }
  3436. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3437. TEST(KeepAliveTest, ReadTimeoutSSL) {
  3438. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  3439. ASSERT_TRUE(svr.is_valid());
  3440. svr.Get("/a", [&](const Request & /*req*/, Response &res) {
  3441. std::this_thread::sleep_for(std::chrono::seconds(2));
  3442. res.set_content("a", "text/plain");
  3443. });
  3444. svr.Get("/b", [&](const Request & /*req*/, Response &res) {
  3445. res.set_content("b", "text/plain");
  3446. });
  3447. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3448. while (!svr.is_running()) {
  3449. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3450. }
  3451. // Give GET time to get a few messages.
  3452. std::this_thread::sleep_for(std::chrono::seconds(1));
  3453. SSLClient cli("localhost", PORT);
  3454. cli.enable_server_certificate_verification(false);
  3455. cli.set_keep_alive(true);
  3456. cli.set_read_timeout(std::chrono::seconds(1));
  3457. auto resa = cli.Get("/a");
  3458. ASSERT_TRUE(!resa);
  3459. EXPECT_EQ(Error::Read, resa.error());
  3460. auto resb = cli.Get("/b");
  3461. ASSERT_TRUE(resb);
  3462. EXPECT_EQ(200, resb->status);
  3463. EXPECT_EQ("b", resb->body);
  3464. svr.stop();
  3465. listen_thread.join();
  3466. ASSERT_FALSE(svr.is_running());
  3467. }
  3468. #endif
  3469. class ServerTestWithAI_PASSIVE : public ::testing::Test {
  3470. protected:
  3471. ServerTestWithAI_PASSIVE()
  3472. : cli_(HOST, PORT)
  3473. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3474. ,
  3475. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  3476. #endif
  3477. {
  3478. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3479. cli_.enable_server_certificate_verification(false);
  3480. #endif
  3481. }
  3482. virtual void SetUp() {
  3483. svr_.Get("/hi", [&](const Request & /*req*/, Response &res) {
  3484. res.set_content("Hello World!", "text/plain");
  3485. });
  3486. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(nullptr, PORT, AI_PASSIVE)); });
  3487. while (!svr_.is_running()) {
  3488. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3489. }
  3490. }
  3491. virtual void TearDown() {
  3492. svr_.stop();
  3493. t_.join();
  3494. }
  3495. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3496. SSLClient cli_;
  3497. SSLServer svr_;
  3498. #else
  3499. Client cli_;
  3500. Server svr_;
  3501. #endif
  3502. thread t_;
  3503. };
  3504. TEST_F(ServerTestWithAI_PASSIVE, GetMethod200) {
  3505. auto res = cli_.Get("/hi");
  3506. ASSERT_TRUE(res);
  3507. EXPECT_EQ(200, res->status);
  3508. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  3509. EXPECT_EQ("Hello World!", res->body);
  3510. }
  3511. class ServerUpDownTest : public ::testing::Test {
  3512. protected:
  3513. ServerUpDownTest() : cli_(HOST, PORT) {}
  3514. virtual void SetUp() {
  3515. t_ = thread([&]() {
  3516. svr_.bind_to_any_port(HOST);
  3517. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  3518. ASSERT_TRUE(svr_.listen_after_bind());
  3519. });
  3520. while (!svr_.is_running()) {
  3521. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3522. }
  3523. }
  3524. virtual void TearDown() {
  3525. svr_.stop();
  3526. t_.join();
  3527. }
  3528. Client cli_;
  3529. Server svr_;
  3530. thread t_;
  3531. };
  3532. TEST_F(ServerUpDownTest, QuickStartStop) {
  3533. // Should not crash, especially when run with
  3534. // --gtest_filter=ServerUpDownTest.QuickStartStop --gtest_repeat=1000
  3535. }
  3536. class PayloadMaxLengthTest : public ::testing::Test {
  3537. protected:
  3538. PayloadMaxLengthTest()
  3539. : cli_(HOST, PORT)
  3540. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3541. ,
  3542. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  3543. #endif
  3544. {
  3545. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3546. cli_.enable_server_certificate_verification(false);
  3547. #endif
  3548. }
  3549. virtual void SetUp() {
  3550. svr_.set_payload_max_length(8);
  3551. svr_.Post("/test", [&](const Request & /*req*/, Response &res) {
  3552. res.set_content("test", "text/plain");
  3553. });
  3554. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  3555. while (!svr_.is_running()) {
  3556. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3557. }
  3558. }
  3559. virtual void TearDown() {
  3560. svr_.stop();
  3561. t_.join();
  3562. }
  3563. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3564. SSLClient cli_;
  3565. SSLServer svr_;
  3566. #else
  3567. Client cli_;
  3568. Server svr_;
  3569. #endif
  3570. thread t_;
  3571. };
  3572. TEST_F(PayloadMaxLengthTest, ExceedLimit) {
  3573. auto res = cli_.Post("/test", "123456789", "text/plain");
  3574. ASSERT_TRUE(res);
  3575. EXPECT_EQ(413, res->status);
  3576. res = cli_.Post("/test", "12345678", "text/plain");
  3577. ASSERT_TRUE(res);
  3578. EXPECT_EQ(200, res->status);
  3579. }
  3580. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3581. TEST(SSLClientTest, UpdateCAStore) {
  3582. httplib::SSLClient httplib_client("www.google.com");
  3583. auto ca_store_1 = X509_STORE_new();
  3584. X509_STORE_load_locations(ca_store_1, "/etc/ssl/certs/ca-certificates.crt",
  3585. nullptr);
  3586. httplib_client.set_ca_cert_store(ca_store_1);
  3587. auto ca_store_2 = X509_STORE_new();
  3588. X509_STORE_load_locations(ca_store_2, "/etc/ssl/certs/ca-certificates.crt",
  3589. nullptr);
  3590. httplib_client.set_ca_cert_store(ca_store_2);
  3591. }
  3592. TEST(SSLClientTest, ServerNameIndication_Online) {
  3593. SSLClient cli("httpbin.org", 443);
  3594. auto res = cli.Get("/get");
  3595. ASSERT_TRUE(res);
  3596. ASSERT_EQ(200, res->status);
  3597. }
  3598. TEST(SSLClientTest, ServerCertificateVerification1_Online) {
  3599. SSLClient cli("google.com");
  3600. auto res = cli.Get("/");
  3601. ASSERT_TRUE(res);
  3602. ASSERT_EQ(301, res->status);
  3603. }
  3604. TEST(SSLClientTest, ServerCertificateVerification2_Online) {
  3605. SSLClient cli("google.com");
  3606. cli.enable_server_certificate_verification(true);
  3607. cli.set_ca_cert_path("hello");
  3608. auto res = cli.Get("/");
  3609. ASSERT_TRUE(!res);
  3610. EXPECT_EQ(Error::SSLLoadingCerts, res.error());
  3611. }
  3612. TEST(SSLClientTest, ServerCertificateVerification3_Online) {
  3613. SSLClient cli("google.com");
  3614. cli.set_ca_cert_path(CA_CERT_FILE);
  3615. auto res = cli.Get("/");
  3616. ASSERT_TRUE(res);
  3617. ASSERT_EQ(301, res->status);
  3618. }
  3619. TEST(SSLClientTest, ServerCertificateVerification4) {
  3620. SSLServer svr(SERVER_CERT2_FILE, SERVER_PRIVATE_KEY_FILE);
  3621. ASSERT_TRUE(svr.is_valid());
  3622. svr.Get("/test", [&](const Request &, Response &res) {
  3623. res.set_content("test", "text/plain");
  3624. svr.stop();
  3625. ASSERT_TRUE(true);
  3626. });
  3627. thread t = thread([&]() { ASSERT_TRUE(svr.listen("127.0.0.1", PORT)); });
  3628. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3629. SSLClient cli("127.0.0.1", PORT);
  3630. cli.set_ca_cert_path(SERVER_CERT2_FILE);
  3631. cli.enable_server_certificate_verification(true);
  3632. cli.set_connection_timeout(30);
  3633. auto res = cli.Get("/test");
  3634. ASSERT_TRUE(res);
  3635. ASSERT_EQ(200, res->status);
  3636. t.join();
  3637. }
  3638. TEST(SSLClientTest, WildcardHostNameMatch_Online) {
  3639. SSLClient cli("www.youtube.com");
  3640. cli.set_ca_cert_path(CA_CERT_FILE);
  3641. cli.enable_server_certificate_verification(true);
  3642. cli.set_follow_location(true);
  3643. auto res = cli.Get("/");
  3644. ASSERT_TRUE(res);
  3645. ASSERT_EQ(200, res->status);
  3646. }
  3647. TEST(SSLClientServerTest, ClientCertPresent) {
  3648. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  3649. CLIENT_CA_CERT_DIR);
  3650. ASSERT_TRUE(svr.is_valid());
  3651. svr.Get("/test", [&](const Request &req, Response &res) {
  3652. res.set_content("test", "text/plain");
  3653. svr.stop();
  3654. ASSERT_TRUE(true);
  3655. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3656. ASSERT_TRUE(peer_cert != nullptr);
  3657. auto subject_name = X509_get_subject_name(peer_cert);
  3658. ASSERT_TRUE(subject_name != nullptr);
  3659. std::string common_name;
  3660. {
  3661. char name[BUFSIZ];
  3662. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3663. name, sizeof(name));
  3664. common_name.assign(name, static_cast<size_t>(name_len));
  3665. }
  3666. EXPECT_EQ("Common Name", common_name);
  3667. X509_free(peer_cert);
  3668. });
  3669. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3670. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3671. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3672. cli.enable_server_certificate_verification(false);
  3673. cli.set_connection_timeout(30);
  3674. auto res = cli.Get("/test");
  3675. ASSERT_TRUE(res);
  3676. ASSERT_EQ(200, res->status);
  3677. t.join();
  3678. }
  3679. #if !defined(_WIN32) || defined(OPENSSL_USE_APPLINK)
  3680. TEST(SSLClientServerTest, MemoryClientCertPresent) {
  3681. X509 *server_cert;
  3682. EVP_PKEY *server_private_key;
  3683. X509_STORE *client_ca_cert_store;
  3684. X509 *client_cert;
  3685. EVP_PKEY *client_private_key;
  3686. FILE *f = fopen(SERVER_CERT_FILE, "r+");
  3687. server_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3688. fclose(f);
  3689. f = fopen(SERVER_PRIVATE_KEY_FILE, "r+");
  3690. server_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  3691. fclose(f);
  3692. f = fopen(CLIENT_CA_CERT_FILE, "r+");
  3693. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3694. client_ca_cert_store = X509_STORE_new();
  3695. X509_STORE_add_cert(client_ca_cert_store, client_cert);
  3696. X509_free(client_cert);
  3697. fclose(f);
  3698. f = fopen(CLIENT_CERT_FILE, "r+");
  3699. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3700. fclose(f);
  3701. f = fopen(CLIENT_PRIVATE_KEY_FILE, "r+");
  3702. client_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  3703. fclose(f);
  3704. SSLServer svr(server_cert, server_private_key, client_ca_cert_store);
  3705. ASSERT_TRUE(svr.is_valid());
  3706. svr.Get("/test", [&](const Request &req, Response &res) {
  3707. res.set_content("test", "text/plain");
  3708. svr.stop();
  3709. ASSERT_TRUE(true);
  3710. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3711. ASSERT_TRUE(peer_cert != nullptr);
  3712. auto subject_name = X509_get_subject_name(peer_cert);
  3713. ASSERT_TRUE(subject_name != nullptr);
  3714. std::string common_name;
  3715. {
  3716. char name[BUFSIZ];
  3717. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3718. name, sizeof(name));
  3719. common_name.assign(name, static_cast<size_t>(name_len));
  3720. }
  3721. EXPECT_EQ("Common Name", common_name);
  3722. X509_free(peer_cert);
  3723. });
  3724. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3725. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3726. SSLClient cli(HOST, PORT, client_cert, client_private_key);
  3727. cli.enable_server_certificate_verification(false);
  3728. cli.set_connection_timeout(30);
  3729. auto res = cli.Get("/test");
  3730. ASSERT_TRUE(res);
  3731. ASSERT_EQ(200, res->status);
  3732. X509_free(server_cert);
  3733. EVP_PKEY_free(server_private_key);
  3734. X509_free(client_cert);
  3735. EVP_PKEY_free(client_private_key);
  3736. t.join();
  3737. }
  3738. #endif
  3739. TEST(SSLClientServerTest, ClientCertMissing) {
  3740. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  3741. CLIENT_CA_CERT_DIR);
  3742. ASSERT_TRUE(svr.is_valid());
  3743. svr.Get("/test", [&](const Request &, Response &) { ASSERT_TRUE(false); });
  3744. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3745. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3746. SSLClient cli(HOST, PORT);
  3747. auto res = cli.Get("/test");
  3748. cli.set_connection_timeout(30);
  3749. ASSERT_TRUE(!res);
  3750. EXPECT_EQ(Error::SSLServerVerification, res.error());
  3751. svr.stop();
  3752. t.join();
  3753. }
  3754. TEST(SSLClientServerTest, TrustDirOptional) {
  3755. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE);
  3756. ASSERT_TRUE(svr.is_valid());
  3757. svr.Get("/test", [&](const Request &, Response &res) {
  3758. res.set_content("test", "text/plain");
  3759. svr.stop();
  3760. });
  3761. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3762. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3763. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3764. cli.enable_server_certificate_verification(false);
  3765. cli.set_connection_timeout(30);
  3766. auto res = cli.Get("/test");
  3767. ASSERT_TRUE(res);
  3768. ASSERT_EQ(200, res->status);
  3769. t.join();
  3770. }
  3771. TEST(SSLClientServerTest, SSLConnectTimeout) {
  3772. class NoListenSSLServer : public SSLServer {
  3773. public:
  3774. NoListenSSLServer(const char *cert_path, const char *private_key_path,
  3775. const char *client_ca_cert_file_path,
  3776. const char *client_ca_cert_dir_path = nullptr)
  3777. : SSLServer(cert_path, private_key_path, client_ca_cert_file_path,
  3778. client_ca_cert_dir_path),
  3779. stop_(false) {}
  3780. bool stop_;
  3781. private:
  3782. bool process_and_close_socket(socket_t /*sock*/) override {
  3783. // Don't create SSL context
  3784. while (!stop_) {
  3785. std::this_thread::sleep_for(std::chrono::milliseconds(100));
  3786. }
  3787. return true;
  3788. }
  3789. };
  3790. NoListenSSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE,
  3791. CLIENT_CA_CERT_FILE);
  3792. ASSERT_TRUE(svr.is_valid());
  3793. svr.Get("/test", [&](const Request &, Response &res) {
  3794. res.set_content("test", "text/plain");
  3795. });
  3796. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3797. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3798. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3799. cli.enable_server_certificate_verification(false);
  3800. cli.set_connection_timeout(1);
  3801. auto res = cli.Get("/test");
  3802. ASSERT_TRUE(!res);
  3803. EXPECT_EQ(Error::SSLConnection, res.error());
  3804. svr.stop_ = true;
  3805. svr.stop();
  3806. t.join();
  3807. }
  3808. TEST(SSLClientServerTest, CustomizeServerSSLCtx) {
  3809. auto setup_ssl_ctx_callback = [](SSL_CTX &ssl_ctx) {
  3810. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_COMPRESSION);
  3811. SSL_CTX_set_options(&ssl_ctx,
  3812. SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
  3813. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_SSLv2);
  3814. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_SSLv3);
  3815. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_TLSv1);
  3816. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_TLSv1_1);
  3817. auto ciphers = "ECDHE-RSA-AES128-SHA256:"
  3818. "ECDHE-DSS-AES128-SHA256:"
  3819. "ECDHE-RSA-AES256-SHA256:"
  3820. "ECDHE-DSS-AES256-SHA256:";
  3821. SSL_CTX_set_cipher_list(&ssl_ctx, ciphers);
  3822. if (SSL_CTX_use_certificate_chain_file(&ssl_ctx, SERVER_CERT_FILE) != 1 ||
  3823. SSL_CTX_use_PrivateKey_file(&ssl_ctx, SERVER_PRIVATE_KEY_FILE,
  3824. SSL_FILETYPE_PEM) != 1) {
  3825. return false;
  3826. }
  3827. SSL_CTX_load_verify_locations(&ssl_ctx, CLIENT_CA_CERT_FILE,
  3828. CLIENT_CA_CERT_DIR);
  3829. SSL_CTX_set_verify(
  3830. &ssl_ctx,
  3831. SSL_VERIFY_PEER |
  3832. SSL_VERIFY_FAIL_IF_NO_PEER_CERT, // SSL_VERIFY_CLIENT_ONCE,
  3833. nullptr);
  3834. return true;
  3835. };
  3836. SSLServer svr(setup_ssl_ctx_callback);
  3837. ASSERT_TRUE(svr.is_valid());
  3838. svr.Get("/test", [&](const Request &req, Response &res) {
  3839. res.set_content("test", "text/plain");
  3840. svr.stop();
  3841. ASSERT_TRUE(true);
  3842. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3843. ASSERT_TRUE(peer_cert != nullptr);
  3844. auto subject_name = X509_get_subject_name(peer_cert);
  3845. ASSERT_TRUE(subject_name != nullptr);
  3846. std::string common_name;
  3847. {
  3848. char name[BUFSIZ];
  3849. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3850. name, sizeof(name));
  3851. common_name.assign(name, static_cast<size_t>(name_len));
  3852. }
  3853. EXPECT_EQ("Common Name", common_name);
  3854. X509_free(peer_cert);
  3855. });
  3856. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3857. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3858. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3859. cli.enable_server_certificate_verification(false);
  3860. cli.set_connection_timeout(30);
  3861. auto res = cli.Get("/test");
  3862. ASSERT_TRUE(res);
  3863. ASSERT_EQ(200, res->status);
  3864. t.join();
  3865. }
  3866. #endif
  3867. #ifdef _WIN32
  3868. TEST(CleanupTest, WSACleanup) {
  3869. int ret = WSACleanup();
  3870. ASSERT_EQ(0, ret);
  3871. }
  3872. #endif
  3873. #ifndef CPPHTTPLIB_OPENSSL_SUPPORT
  3874. TEST(NoSSLSupport, SimpleInterface) {
  3875. ASSERT_ANY_THROW(Client cli("https://yahoo.com"));
  3876. }
  3877. #endif
  3878. #ifndef CPPHTTPLIB_NO_EXCEPTIONS
  3879. TEST(InvalidScheme, SimpleInterface) {
  3880. ASSERT_ANY_THROW(Client cli("scheme://yahoo.com"));
  3881. }
  3882. #endif
  3883. TEST(NoScheme, SimpleInterface) {
  3884. Client cli("yahoo.com:80");
  3885. ASSERT_TRUE(cli.is_valid());
  3886. }
  3887. TEST(SendAPI, SimpleInterface_Online) {
  3888. Client cli("http://yahoo.com");
  3889. Request req;
  3890. req.method = "GET";
  3891. req.path = "/";
  3892. auto res = cli.send(req);
  3893. ASSERT_TRUE(res);
  3894. EXPECT_EQ(301, res->status);
  3895. }
  3896. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3897. TEST(YahooRedirectTest2, SimpleInterface_Online) {
  3898. Client cli("http://yahoo.com");
  3899. auto res = cli.Get("/");
  3900. ASSERT_TRUE(res);
  3901. EXPECT_EQ(301, res->status);
  3902. cli.set_follow_location(true);
  3903. res = cli.Get("/");
  3904. ASSERT_TRUE(res);
  3905. EXPECT_EQ(200, res->status);
  3906. EXPECT_EQ("https://yahoo.com/", res->location);
  3907. }
  3908. TEST(YahooRedirectTest3, SimpleInterface_Online) {
  3909. Client cli("https://yahoo.com");
  3910. auto res = cli.Get("/");
  3911. ASSERT_TRUE(res);
  3912. EXPECT_EQ(301, res->status);
  3913. cli.set_follow_location(true);
  3914. res = cli.Get("/");
  3915. ASSERT_TRUE(res);
  3916. EXPECT_EQ(200, res->status);
  3917. EXPECT_EQ("https://www.yahoo.com/", res->location);
  3918. }
  3919. TEST(YahooRedirectTest3, NewResultInterface_Online) {
  3920. Client cli("https://yahoo.com");
  3921. auto res = cli.Get("/");
  3922. ASSERT_TRUE(res);
  3923. ASSERT_FALSE(!res);
  3924. ASSERT_TRUE(res);
  3925. ASSERT_FALSE(res == nullptr);
  3926. ASSERT_TRUE(res != nullptr);
  3927. EXPECT_EQ(Error::Success, res.error());
  3928. EXPECT_EQ(301, res.value().status);
  3929. EXPECT_EQ(301, (*res).status);
  3930. EXPECT_EQ(301, res->status);
  3931. cli.set_follow_location(true);
  3932. res = cli.Get("/");
  3933. ASSERT_TRUE(res);
  3934. EXPECT_EQ(Error::Success, res.error());
  3935. EXPECT_EQ(200, res.value().status);
  3936. EXPECT_EQ(200, (*res).status);
  3937. EXPECT_EQ(200, res->status);
  3938. EXPECT_EQ("https://www.yahoo.com/", res->location);
  3939. }
  3940. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  3941. TEST(DecodeWithChunkedEncoding, BrotliEncoding_Online) {
  3942. Client cli("https://cdnjs.cloudflare.com");
  3943. auto res =
  3944. cli.Get("/ajax/libs/jquery/3.5.1/jquery.js", {{"Accept-Encoding", "br"}});
  3945. ASSERT_TRUE(res);
  3946. EXPECT_EQ(200, res->status);
  3947. EXPECT_EQ(287630U, res->body.size());
  3948. EXPECT_EQ("application/javascript; charset=utf-8",
  3949. res->get_header_value("Content-Type"));
  3950. }
  3951. #endif
  3952. TEST(HttpsToHttpRedirectTest, SimpleInterface_Online) {
  3953. Client cli("https://nghttp2.org");
  3954. cli.set_follow_location(true);
  3955. auto res =
  3956. cli.Get("/httpbin/"
  3957. "redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302");
  3958. ASSERT_TRUE(res);
  3959. EXPECT_EQ(200, res->status);
  3960. }
  3961. TEST(HttpsToHttpRedirectTest2, SimpleInterface_Online) {
  3962. Client cli("https://nghttp2.org");
  3963. cli.set_follow_location(true);
  3964. Params params;
  3965. params.emplace("url", "http://www.google.com");
  3966. params.emplace("status_code", "302");
  3967. auto res = cli.Get("/httpbin/redirect-to", params, Headers{});
  3968. ASSERT_TRUE(res);
  3969. EXPECT_EQ(200, res->status);
  3970. }
  3971. TEST(HttpsToHttpRedirectTest3, SimpleInterface_Online) {
  3972. Client cli("https://nghttp2.org");
  3973. cli.set_follow_location(true);
  3974. Params params;
  3975. params.emplace("url", "http://www.google.com");
  3976. auto res = cli.Get("/httpbin/redirect-to?status_code=302", params, Headers{});
  3977. ASSERT_TRUE(res);
  3978. EXPECT_EQ(200, res->status);
  3979. }
  3980. TEST(HttpToHttpsRedirectTest, CertFile) {
  3981. Server svr;
  3982. ASSERT_TRUE(svr.is_valid());
  3983. svr.Get("/index", [&](const Request &, Response &res) {
  3984. res.set_redirect("https://127.0.0.1:1235/index");
  3985. svr.stop();
  3986. });
  3987. SSLServer ssl_svr(SERVER_CERT2_FILE, SERVER_PRIVATE_KEY_FILE);
  3988. ASSERT_TRUE(ssl_svr.is_valid());
  3989. ssl_svr.Get("/index", [&](const Request &, Response &res) {
  3990. res.set_content("test", "text/plain");
  3991. ssl_svr.stop();
  3992. });
  3993. thread t = thread([&]() { ASSERT_TRUE(svr.listen("127.0.0.1", PORT)); });
  3994. thread t2 = thread([&]() { ASSERT_TRUE(ssl_svr.listen("127.0.0.1", 1235)); });
  3995. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3996. Client cli("127.0.0.1", PORT);
  3997. cli.set_ca_cert_path(SERVER_CERT2_FILE);
  3998. cli.enable_server_certificate_verification(true);
  3999. cli.set_follow_location(true);
  4000. cli.set_connection_timeout(30);
  4001. auto res = cli.Get("/index");
  4002. ASSERT_TRUE(res);
  4003. ASSERT_EQ(200, res->status);
  4004. t.join();
  4005. t2.join();
  4006. }
  4007. #endif