test.cc 158 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369
  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 *b2, const char *e2) {
  90. if (key.empty()) {
  91. key.assign(b2, e2);
  92. } else {
  93. val.assign(b2, e2);
  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_ptr ep) {
  1017. EXPECT_FALSE(ep == nullptr);
  1018. try {
  1019. std::rethrow_exception(ep);
  1020. } catch (std::exception &e) { EXPECT_EQ("abc", std::string(e.what())); }
  1021. res.status = 500;
  1022. res.set_content("abcdefghijklmnopqrstuvwxyz",
  1023. "text/html"); // <= Content-Length still 13 at this point
  1024. });
  1025. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1026. res.set_content("Hello World!\n", "text/plain");
  1027. throw std::runtime_error("abc");
  1028. });
  1029. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1030. // Give GET time to get a few messages.
  1031. std::this_thread::sleep_for(std::chrono::seconds(1));
  1032. for (size_t i = 0; i < 10; i++) {
  1033. Client cli(HOST, PORT);
  1034. for (size_t j = 0; j < 100; j++) {
  1035. auto res = cli.Get("/hi");
  1036. ASSERT_TRUE(res);
  1037. EXPECT_EQ(500, res->status);
  1038. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1039. EXPECT_EQ("26", res->get_header_value("Content-Length"));
  1040. EXPECT_EQ("abcdefghijklmnopqrstuvwxyz", res->body);
  1041. }
  1042. cli.set_keep_alive(true);
  1043. for (size_t j = 0; j < 100; j++) {
  1044. auto res = cli.Get("/hi");
  1045. ASSERT_TRUE(res);
  1046. EXPECT_EQ(500, res->status);
  1047. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1048. EXPECT_EQ("26", res->get_header_value("Content-Length"));
  1049. EXPECT_EQ("abcdefghijklmnopqrstuvwxyz", res->body);
  1050. }
  1051. }
  1052. svr.stop();
  1053. thread.join();
  1054. ASSERT_FALSE(svr.is_running());
  1055. }
  1056. #endif
  1057. TEST(NoContentTest, ContentLength) {
  1058. Server svr;
  1059. svr.Get("/hi",
  1060. [](const Request & /*req*/, Response &res) { res.status = 204; });
  1061. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1062. // Give GET time to get a few messages.
  1063. std::this_thread::sleep_for(std::chrono::seconds(1));
  1064. {
  1065. Client cli(HOST, PORT);
  1066. auto res = cli.Get("/hi");
  1067. ASSERT_TRUE(res);
  1068. EXPECT_EQ(204, res->status);
  1069. EXPECT_EQ("0", res->get_header_value("Content-Length"));
  1070. }
  1071. svr.stop();
  1072. thread.join();
  1073. ASSERT_FALSE(svr.is_running());
  1074. }
  1075. TEST(RoutingHandlerTest, PreRoutingHandler) {
  1076. Server svr;
  1077. svr.set_pre_routing_handler([](const Request &req, Response &res) {
  1078. if (req.path == "/routing_handler") {
  1079. res.set_header("PRE_ROUTING", "on");
  1080. res.set_content("Routing Handler", "text/plain");
  1081. return httplib::Server::HandlerResponse::Handled;
  1082. }
  1083. return httplib::Server::HandlerResponse::Unhandled;
  1084. });
  1085. svr.set_error_handler([](const Request & /*req*/, Response &res) {
  1086. res.set_content("Error", "text/html");
  1087. });
  1088. svr.set_post_routing_handler([](const Request &req, Response &res) {
  1089. if (req.path == "/routing_handler") {
  1090. res.set_header("POST_ROUTING", "on");
  1091. }
  1092. });
  1093. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1094. res.set_content("Hello World!\n", "text/plain");
  1095. });
  1096. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1097. // Give GET time to get a few messages.
  1098. std::this_thread::sleep_for(std::chrono::seconds(1));
  1099. {
  1100. Client cli(HOST, PORT);
  1101. auto res = cli.Get("/routing_handler");
  1102. ASSERT_TRUE(res);
  1103. EXPECT_EQ(200, res->status);
  1104. EXPECT_EQ("Routing Handler", res->body);
  1105. EXPECT_EQ(1U, res->get_header_value_count("PRE_ROUTING"));
  1106. EXPECT_EQ("on", res->get_header_value("PRE_ROUTING"));
  1107. EXPECT_EQ(1U, res->get_header_value_count("POST_ROUTING"));
  1108. EXPECT_EQ("on", res->get_header_value("POST_ROUTING"));
  1109. }
  1110. {
  1111. Client cli(HOST, PORT);
  1112. auto res = cli.Get("/hi");
  1113. ASSERT_TRUE(res);
  1114. EXPECT_EQ(200, res->status);
  1115. EXPECT_EQ("Hello World!\n", res->body);
  1116. EXPECT_EQ(0U, res->get_header_value_count("PRE_ROUTING"));
  1117. EXPECT_EQ(0U, res->get_header_value_count("POST_ROUTING"));
  1118. }
  1119. {
  1120. Client cli(HOST, PORT);
  1121. auto res = cli.Get("/aaa");
  1122. ASSERT_TRUE(res);
  1123. EXPECT_EQ(404, res->status);
  1124. EXPECT_EQ("Error", res->body);
  1125. EXPECT_EQ(0U, res->get_header_value_count("PRE_ROUTING"));
  1126. EXPECT_EQ(0U, res->get_header_value_count("POST_ROUTING"));
  1127. }
  1128. svr.stop();
  1129. thread.join();
  1130. ASSERT_FALSE(svr.is_running());
  1131. }
  1132. TEST(InvalidFormatTest, StatusCode) {
  1133. Server svr;
  1134. svr.Get("/hi", [](const Request & /*req*/, Response &res) {
  1135. res.set_content("Hello World!\n", "text/plain");
  1136. res.status = 9999; // Status should be a three-digit code...
  1137. });
  1138. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1139. // Give GET time to get a few messages.
  1140. std::this_thread::sleep_for(std::chrono::seconds(1));
  1141. {
  1142. Client cli(HOST, PORT);
  1143. auto res = cli.Get("/hi");
  1144. ASSERT_FALSE(res);
  1145. }
  1146. svr.stop();
  1147. thread.join();
  1148. ASSERT_FALSE(svr.is_running());
  1149. }
  1150. TEST(URLFragmentTest, WithFragment) {
  1151. Server svr;
  1152. svr.Get("/hi", [](const Request &req, Response & /*res*/) {
  1153. EXPECT_TRUE(req.target == "/hi");
  1154. });
  1155. auto thread = std::thread([&]() { svr.listen(HOST, PORT); });
  1156. std::this_thread::sleep_for(std::chrono::seconds(1));
  1157. {
  1158. Client cli(HOST, PORT);
  1159. auto res = cli.Get("/hi#key1=val1=key2=val2");
  1160. EXPECT_TRUE(res);
  1161. EXPECT_EQ(200, res->status);
  1162. res = cli.Get("/hi%23key1=val1=key2=val2");
  1163. EXPECT_TRUE(res);
  1164. EXPECT_EQ(404, res->status);
  1165. }
  1166. svr.stop();
  1167. thread.join();
  1168. ASSERT_FALSE(svr.is_running());
  1169. }
  1170. class ServerTest : public ::testing::Test {
  1171. protected:
  1172. ServerTest()
  1173. : cli_(HOST, PORT)
  1174. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1175. ,
  1176. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  1177. #endif
  1178. {
  1179. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1180. cli_.enable_server_certificate_verification(false);
  1181. #endif
  1182. }
  1183. virtual void SetUp() {
  1184. svr_.set_mount_point("/", "./www");
  1185. svr_.set_mount_point("/mount", "./www2");
  1186. svr_.set_file_extension_and_mimetype_mapping("abcde", "text/abcde");
  1187. svr_.Get("/hi",
  1188. [&](const Request & /*req*/, Response &res) {
  1189. res.set_content("Hello World!", "text/plain");
  1190. })
  1191. .Get("/http_response_splitting",
  1192. [&](const Request & /*req*/, Response &res) {
  1193. res.set_header("a", "1\r\nSet-Cookie: a=1");
  1194. EXPECT_EQ(0U, res.headers.size());
  1195. EXPECT_FALSE(res.has_header("a"));
  1196. res.set_header("a", "1\nSet-Cookie: a=1");
  1197. EXPECT_EQ(0U, res.headers.size());
  1198. EXPECT_FALSE(res.has_header("a"));
  1199. res.set_header("a", "1\rSet-Cookie: a=1");
  1200. EXPECT_EQ(0U, res.headers.size());
  1201. EXPECT_FALSE(res.has_header("a"));
  1202. res.set_header("a\r\nb", "0");
  1203. EXPECT_EQ(0U, res.headers.size());
  1204. EXPECT_FALSE(res.has_header("a"));
  1205. res.set_header("a\rb", "0");
  1206. EXPECT_EQ(0U, res.headers.size());
  1207. EXPECT_FALSE(res.has_header("a"));
  1208. res.set_header("a\nb", "0");
  1209. EXPECT_EQ(0U, res.headers.size());
  1210. EXPECT_FALSE(res.has_header("a"));
  1211. res.set_redirect("1\r\nSet-Cookie: a=1");
  1212. EXPECT_EQ(0U, res.headers.size());
  1213. EXPECT_FALSE(res.has_header("Location"));
  1214. })
  1215. .Get("/slow",
  1216. [&](const Request & /*req*/, Response &res) {
  1217. std::this_thread::sleep_for(std::chrono::seconds(2));
  1218. res.set_content("slow", "text/plain");
  1219. })
  1220. #if 0
  1221. .Post("/slowpost",
  1222. [&](const Request & /*req*/, Response &res) {
  1223. std::this_thread::sleep_for(std::chrono::seconds(2));
  1224. res.set_content("slow", "text/plain");
  1225. })
  1226. #endif
  1227. .Get("/remote_addr",
  1228. [&](const Request &req, Response &res) {
  1229. auto remote_addr = req.headers.find("REMOTE_ADDR")->second;
  1230. EXPECT_TRUE(req.has_header("REMOTE_PORT"));
  1231. EXPECT_EQ(req.remote_addr, req.get_header_value("REMOTE_ADDR"));
  1232. EXPECT_EQ(req.remote_port,
  1233. std::stoi(req.get_header_value("REMOTE_PORT")));
  1234. res.set_content(remote_addr.c_str(), "text/plain");
  1235. })
  1236. .Get("/endwith%",
  1237. [&](const Request & /*req*/, Response &res) {
  1238. res.set_content("Hello World!", "text/plain");
  1239. })
  1240. .Get("/a\\+\\+b",
  1241. [&](const Request &req, Response &res) {
  1242. ASSERT_TRUE(req.has_param("a +b"));
  1243. auto val = req.get_param_value("a +b");
  1244. res.set_content(val, "text/plain");
  1245. })
  1246. .Get("/", [&](const Request & /*req*/,
  1247. Response &res) { res.set_redirect("/hi"); })
  1248. .Post("/1", [](const Request & /*req*/,
  1249. Response &res) { res.set_redirect("/2", 303); })
  1250. .Get("/2",
  1251. [](const Request & /*req*/, Response &res) {
  1252. res.set_content("redirected.", "text/plain");
  1253. res.status = 200;
  1254. })
  1255. .Post("/person",
  1256. [&](const Request &req, Response &res) {
  1257. if (req.has_param("name") && req.has_param("note")) {
  1258. persons_[req.get_param_value("name")] =
  1259. req.get_param_value("note");
  1260. } else {
  1261. res.status = 400;
  1262. }
  1263. })
  1264. .Put("/person",
  1265. [&](const Request &req, Response &res) {
  1266. if (req.has_param("name") && req.has_param("note")) {
  1267. persons_[req.get_param_value("name")] =
  1268. req.get_param_value("note");
  1269. } else {
  1270. res.status = 400;
  1271. }
  1272. })
  1273. .Get("/person/(.*)",
  1274. [&](const Request &req, Response &res) {
  1275. string name = req.matches[1];
  1276. if (persons_.find(name) != persons_.end()) {
  1277. auto note = persons_[name];
  1278. res.set_content(note, "text/plain");
  1279. } else {
  1280. res.status = 404;
  1281. }
  1282. })
  1283. .Post("/x-www-form-urlencoded-json",
  1284. [&](const Request &req, Response &res) {
  1285. auto json = req.get_param_value("json");
  1286. ASSERT_EQ(JSON_DATA, json);
  1287. res.set_content(json, "appliation/json");
  1288. res.status = 200;
  1289. })
  1290. .Get("/streamed-chunked",
  1291. [&](const Request & /*req*/, Response &res) {
  1292. res.set_chunked_content_provider(
  1293. "text/plain", [](size_t /*offset*/, DataSink &sink) {
  1294. EXPECT_TRUE(sink.is_writable());
  1295. sink.os << "123";
  1296. sink.os << "456";
  1297. sink.os << "789";
  1298. sink.done();
  1299. return true;
  1300. });
  1301. })
  1302. .Get("/streamed-chunked2",
  1303. [&](const Request & /*req*/, Response &res) {
  1304. auto i = new int(0);
  1305. res.set_chunked_content_provider(
  1306. "text/plain",
  1307. [i](size_t /*offset*/, DataSink &sink) {
  1308. EXPECT_TRUE(sink.is_writable());
  1309. switch (*i) {
  1310. case 0: sink.os << "123"; break;
  1311. case 1: sink.os << "456"; break;
  1312. case 2: sink.os << "789"; break;
  1313. case 3: sink.done(); break;
  1314. }
  1315. (*i)++;
  1316. return true;
  1317. },
  1318. [i](bool success) {
  1319. EXPECT_TRUE(success);
  1320. delete i;
  1321. });
  1322. })
  1323. .Get("/streamed",
  1324. [&](const Request & /*req*/, Response &res) {
  1325. res.set_content_provider(
  1326. 6, "text/plain",
  1327. [](size_t offset, size_t /*length*/, DataSink &sink) {
  1328. sink.os << (offset < 3 ? "a" : "b");
  1329. return true;
  1330. });
  1331. })
  1332. .Get("/streamed-with-range",
  1333. [&](const Request & /*req*/, Response &res) {
  1334. auto data = new std::string("abcdefg");
  1335. res.set_content_provider(
  1336. data->size(), "text/plain",
  1337. [data](size_t offset, size_t length, DataSink &sink) {
  1338. EXPECT_TRUE(sink.is_writable());
  1339. size_t DATA_CHUNK_SIZE = 4;
  1340. const auto &d = *data;
  1341. auto out_len =
  1342. std::min(static_cast<size_t>(length), DATA_CHUNK_SIZE);
  1343. auto ret =
  1344. sink.write(&d[static_cast<size_t>(offset)], out_len);
  1345. EXPECT_TRUE(ret);
  1346. return true;
  1347. },
  1348. [data](bool success) {
  1349. EXPECT_TRUE(success);
  1350. delete data;
  1351. });
  1352. })
  1353. .Get("/streamed-cancel",
  1354. [&](const Request & /*req*/, Response &res) {
  1355. res.set_content_provider(
  1356. size_t(-1), "text/plain",
  1357. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  1358. EXPECT_TRUE(sink.is_writable());
  1359. sink.os << "data_chunk";
  1360. return true;
  1361. });
  1362. })
  1363. .Get("/with-range",
  1364. [&](const Request & /*req*/, Response &res) {
  1365. res.set_content("abcdefg", "text/plain");
  1366. })
  1367. .Post("/chunked",
  1368. [&](const Request &req, Response & /*res*/) {
  1369. EXPECT_EQ(req.body, "dechunked post body");
  1370. })
  1371. .Post("/large-chunked",
  1372. [&](const Request &req, Response & /*res*/) {
  1373. std::string expected(6 * 30 * 1024u, 'a');
  1374. EXPECT_EQ(req.body, expected);
  1375. })
  1376. .Post("/multipart",
  1377. [&](const Request &req, Response & /*res*/) {
  1378. EXPECT_EQ(6u, req.files.size());
  1379. ASSERT_TRUE(!req.has_file("???"));
  1380. ASSERT_TRUE(req.body.empty());
  1381. {
  1382. const auto &file = req.get_file_value("text1");
  1383. EXPECT_TRUE(file.filename.empty());
  1384. EXPECT_EQ("text default", file.content);
  1385. }
  1386. {
  1387. const auto &file = req.get_file_value("text2");
  1388. EXPECT_TRUE(file.filename.empty());
  1389. EXPECT_EQ("aωb", file.content);
  1390. }
  1391. {
  1392. const auto &file = req.get_file_value("file1");
  1393. EXPECT_EQ("hello.txt", file.filename);
  1394. EXPECT_EQ("text/plain", file.content_type);
  1395. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  1396. }
  1397. {
  1398. const auto &file = req.get_file_value("file3");
  1399. EXPECT_TRUE(file.filename.empty());
  1400. EXPECT_EQ("application/octet-stream", file.content_type);
  1401. EXPECT_EQ(0u, file.content.size());
  1402. }
  1403. {
  1404. const auto &file = req.get_file_value("file4");
  1405. EXPECT_TRUE(file.filename.empty());
  1406. EXPECT_EQ(0u, file.content.size());
  1407. EXPECT_EQ("application/json tmp-string", file.content_type);
  1408. }
  1409. })
  1410. .Post("/empty",
  1411. [&](const Request &req, Response &res) {
  1412. EXPECT_EQ(req.body, "");
  1413. EXPECT_EQ("text/plain", req.get_header_value("Content-Type"));
  1414. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1415. res.set_content("empty", "text/plain");
  1416. })
  1417. .Post("/empty-no-content-type",
  1418. [&](const Request &req, Response &res) {
  1419. EXPECT_EQ(req.body, "");
  1420. EXPECT_FALSE(req.has_header("Content-Type"));
  1421. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1422. res.set_content("empty-no-content-type", "text/plain");
  1423. })
  1424. .Post("/post-large",
  1425. [&](const Request &req, Response &res) {
  1426. EXPECT_EQ(req.body, LARGE_DATA);
  1427. res.set_content(req.body, "text/plain");
  1428. })
  1429. .Put("/empty-no-content-type",
  1430. [&](const Request &req, Response &res) {
  1431. EXPECT_EQ(req.body, "");
  1432. EXPECT_FALSE(req.has_header("Content-Type"));
  1433. EXPECT_EQ("0", req.get_header_value("Content-Length"));
  1434. res.set_content("empty-no-content-type", "text/plain");
  1435. })
  1436. .Put("/put",
  1437. [&](const Request &req, Response &res) {
  1438. EXPECT_EQ(req.body, "PUT");
  1439. res.set_content(req.body, "text/plain");
  1440. })
  1441. .Put("/put-large",
  1442. [&](const Request &req, Response &res) {
  1443. EXPECT_EQ(req.body, LARGE_DATA);
  1444. res.set_content(req.body, "text/plain");
  1445. })
  1446. .Patch("/patch",
  1447. [&](const Request &req, Response &res) {
  1448. EXPECT_EQ(req.body, "PATCH");
  1449. res.set_content(req.body, "text/plain");
  1450. })
  1451. .Delete("/delete",
  1452. [&](const Request & /*req*/, Response &res) {
  1453. res.set_content("DELETE", "text/plain");
  1454. })
  1455. .Delete("/delete-body",
  1456. [&](const Request &req, Response &res) {
  1457. EXPECT_EQ(req.body, "content");
  1458. res.set_content(req.body, "text/plain");
  1459. })
  1460. .Options(R"(\*)",
  1461. [&](const Request & /*req*/, Response &res) {
  1462. res.set_header("Allow", "GET, POST, HEAD, OPTIONS");
  1463. })
  1464. .Get("/request-target",
  1465. [&](const Request &req, Response & /*res*/) {
  1466. EXPECT_EQ("/request-target?aaa=bbb&ccc=ddd", req.target);
  1467. EXPECT_EQ("bbb", req.get_param_value("aaa"));
  1468. EXPECT_EQ("ddd", req.get_param_value("ccc"));
  1469. })
  1470. .Get("/long-query-value",
  1471. [&](const Request &req, Response & /*res*/) {
  1472. EXPECT_EQ(LONG_QUERY_URL, req.target);
  1473. EXPECT_EQ(LONG_QUERY_VALUE, req.get_param_value("key"));
  1474. })
  1475. .Get("/array-param",
  1476. [&](const Request &req, Response & /*res*/) {
  1477. EXPECT_EQ(3u, req.get_param_value_count("array"));
  1478. EXPECT_EQ("value1", req.get_param_value("array", 0));
  1479. EXPECT_EQ("value2", req.get_param_value("array", 1));
  1480. EXPECT_EQ("value3", req.get_param_value("array", 2));
  1481. })
  1482. .Post("/validate-no-multiple-headers",
  1483. [&](const Request &req, Response & /*res*/) {
  1484. EXPECT_EQ(1u, req.get_header_value_count("Content-Length"));
  1485. EXPECT_EQ("5", req.get_header_value("Content-Length"));
  1486. })
  1487. .Post("/content_receiver",
  1488. [&](const Request &req, Response &res,
  1489. const ContentReader &content_reader) {
  1490. if (req.is_multipart_form_data()) {
  1491. MultipartFormDataItems files;
  1492. content_reader(
  1493. [&](const MultipartFormData &file) {
  1494. files.push_back(file);
  1495. return true;
  1496. },
  1497. [&](const char *data, size_t data_length) {
  1498. files.back().content.append(data, data_length);
  1499. return true;
  1500. });
  1501. EXPECT_EQ(5u, files.size());
  1502. {
  1503. const auto &file = get_file_value(files, "text1");
  1504. EXPECT_TRUE(file.filename.empty());
  1505. EXPECT_EQ("text default", file.content);
  1506. }
  1507. {
  1508. const auto &file = get_file_value(files, "text2");
  1509. EXPECT_TRUE(file.filename.empty());
  1510. EXPECT_EQ("aωb", file.content);
  1511. }
  1512. {
  1513. const auto &file = get_file_value(files, "file1");
  1514. EXPECT_EQ("hello.txt", file.filename);
  1515. EXPECT_EQ("text/plain", file.content_type);
  1516. EXPECT_EQ("h\ne\n\nl\nl\no\n", file.content);
  1517. }
  1518. {
  1519. const auto &file = get_file_value(files, "file3");
  1520. EXPECT_TRUE(file.filename.empty());
  1521. EXPECT_EQ("application/octet-stream", file.content_type);
  1522. EXPECT_EQ(0u, file.content.size());
  1523. }
  1524. } else {
  1525. std::string body;
  1526. content_reader([&](const char *data, size_t data_length) {
  1527. EXPECT_EQ(7U, 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. })
  1535. .Put("/content_receiver",
  1536. [&](const Request & /*req*/, Response &res,
  1537. const ContentReader &content_reader) {
  1538. std::string body;
  1539. content_reader([&](const char *data, size_t data_length) {
  1540. body.append(data, data_length);
  1541. return true;
  1542. });
  1543. EXPECT_EQ(body, "content");
  1544. res.set_content(body, "text/plain");
  1545. })
  1546. .Patch("/content_receiver",
  1547. [&](const Request & /*req*/, Response &res,
  1548. const ContentReader &content_reader) {
  1549. std::string body;
  1550. content_reader([&](const char *data, size_t data_length) {
  1551. body.append(data, data_length);
  1552. return true;
  1553. });
  1554. EXPECT_EQ(body, "content");
  1555. res.set_content(body, "text/plain");
  1556. })
  1557. .Post("/query-string-and-body",
  1558. [&](const Request &req, Response & /*res*/) {
  1559. ASSERT_TRUE(req.has_param("key"));
  1560. EXPECT_EQ(req.get_param_value("key"), "value");
  1561. EXPECT_EQ(req.body, "content");
  1562. })
  1563. .Get("/last-request",
  1564. [&](const Request &req, Response & /*res*/) {
  1565. EXPECT_EQ("close", req.get_header_value("Connection"));
  1566. })
  1567. .Get(R"(/redirect/(\d+))",
  1568. [&](const Request &req, Response &res) {
  1569. auto num = std::stoi(req.matches[1]) + 1;
  1570. std::string url = "/redirect/" + std::to_string(num);
  1571. res.set_redirect(url);
  1572. })
  1573. .Post("/binary",
  1574. [&](const Request &req, Response &res) {
  1575. EXPECT_EQ(4U, req.body.size());
  1576. EXPECT_EQ("application/octet-stream",
  1577. req.get_header_value("Content-Type"));
  1578. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1579. res.set_content(req.body, "application/octet-stream");
  1580. })
  1581. .Put("/binary",
  1582. [&](const Request &req, Response &res) {
  1583. EXPECT_EQ(4U, req.body.size());
  1584. EXPECT_EQ("application/octet-stream",
  1585. req.get_header_value("Content-Type"));
  1586. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1587. res.set_content(req.body, "application/octet-stream");
  1588. })
  1589. .Patch("/binary",
  1590. [&](const Request &req, Response &res) {
  1591. EXPECT_EQ(4U, req.body.size());
  1592. EXPECT_EQ("application/octet-stream",
  1593. req.get_header_value("Content-Type"));
  1594. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1595. res.set_content(req.body, "application/octet-stream");
  1596. })
  1597. .Delete("/binary",
  1598. [&](const Request &req, Response &res) {
  1599. EXPECT_EQ(4U, req.body.size());
  1600. EXPECT_EQ("application/octet-stream",
  1601. req.get_header_value("Content-Type"));
  1602. EXPECT_EQ("4", req.get_header_value("Content-Length"));
  1603. res.set_content(req.body, "application/octet-stream");
  1604. })
  1605. #if defined(CPPHTTPLIB_ZLIB_SUPPORT) || defined(CPPHTTPLIB_BROTLI_SUPPORT)
  1606. .Get("/compress",
  1607. [&](const Request & /*req*/, Response &res) {
  1608. res.set_content(
  1609. "12345678901234567890123456789012345678901234567890123456789"
  1610. "01234567890123456789012345678901234567890",
  1611. "text/plain");
  1612. })
  1613. .Get("/nocompress",
  1614. [&](const Request & /*req*/, Response &res) {
  1615. res.set_content(
  1616. "12345678901234567890123456789012345678901234567890123456789"
  1617. "01234567890123456789012345678901234567890",
  1618. "application/octet-stream");
  1619. })
  1620. .Post("/compress-multipart",
  1621. [&](const Request &req, Response & /*res*/) {
  1622. EXPECT_EQ(2u, req.files.size());
  1623. ASSERT_TRUE(!req.has_file("???"));
  1624. {
  1625. const auto &file = req.get_file_value("key1");
  1626. EXPECT_TRUE(file.filename.empty());
  1627. EXPECT_EQ("test", file.content);
  1628. }
  1629. {
  1630. const auto &file = req.get_file_value("key2");
  1631. EXPECT_TRUE(file.filename.empty());
  1632. EXPECT_EQ("--abcdefg123", file.content);
  1633. }
  1634. })
  1635. #endif
  1636. ;
  1637. persons_["john"] = "programmer";
  1638. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  1639. while (!svr_.is_running()) {
  1640. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  1641. }
  1642. }
  1643. virtual void TearDown() {
  1644. svr_.stop();
  1645. if (!request_threads_.empty()) {
  1646. std::this_thread::sleep_for(std::chrono::seconds(1));
  1647. for (auto &t : request_threads_) {
  1648. t.join();
  1649. }
  1650. }
  1651. t_.join();
  1652. }
  1653. map<string, string> persons_;
  1654. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1655. SSLClient cli_;
  1656. SSLServer svr_;
  1657. #else
  1658. Client cli_;
  1659. Server svr_;
  1660. #endif
  1661. thread t_;
  1662. std::vector<thread> request_threads_;
  1663. };
  1664. TEST_F(ServerTest, GetMethod200) {
  1665. auto res = cli_.Get("/hi");
  1666. ASSERT_TRUE(res);
  1667. EXPECT_EQ("HTTP/1.1", res->version);
  1668. EXPECT_EQ(200, res->status);
  1669. EXPECT_EQ("OK", res->reason);
  1670. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1671. EXPECT_EQ(1U, res->get_header_value_count("Content-Type"));
  1672. EXPECT_EQ("Hello World!", res->body);
  1673. }
  1674. TEST_F(ServerTest, GetMethod200withPercentEncoding) {
  1675. auto res = cli_.Get("/%68%69"); // auto res = cli_.Get("/hi");
  1676. ASSERT_TRUE(res);
  1677. EXPECT_EQ("HTTP/1.1", res->version);
  1678. EXPECT_EQ(200, res->status);
  1679. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1680. EXPECT_EQ(1U, res->get_header_value_count("Content-Type"));
  1681. EXPECT_EQ("Hello World!", res->body);
  1682. }
  1683. TEST_F(ServerTest, GetMethod302) {
  1684. auto res = cli_.Get("/");
  1685. ASSERT_TRUE(res);
  1686. EXPECT_EQ(302, res->status);
  1687. EXPECT_EQ("/hi", res->get_header_value("Location"));
  1688. }
  1689. TEST_F(ServerTest, GetMethod302Redirect) {
  1690. cli_.set_follow_location(true);
  1691. auto res = cli_.Get("/");
  1692. ASSERT_TRUE(res);
  1693. EXPECT_EQ(200, res->status);
  1694. EXPECT_EQ("Hello World!", res->body);
  1695. EXPECT_EQ("/hi", res->location);
  1696. }
  1697. TEST_F(ServerTest, GetMethod404) {
  1698. auto res = cli_.Get("/invalid");
  1699. ASSERT_TRUE(res);
  1700. EXPECT_EQ(404, res->status);
  1701. }
  1702. TEST_F(ServerTest, HeadMethod200) {
  1703. auto res = cli_.Head("/hi");
  1704. ASSERT_TRUE(res);
  1705. EXPECT_EQ(200, res->status);
  1706. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1707. EXPECT_TRUE(res->body.empty());
  1708. }
  1709. TEST_F(ServerTest, HeadMethod200Static) {
  1710. auto res = cli_.Head("/mount/dir/index.html");
  1711. ASSERT_TRUE(res);
  1712. EXPECT_EQ(200, res->status);
  1713. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1714. EXPECT_EQ(104, std::stoi(res->get_header_value("Content-Length")));
  1715. EXPECT_TRUE(res->body.empty());
  1716. }
  1717. TEST_F(ServerTest, HeadMethod404) {
  1718. auto res = cli_.Head("/invalid");
  1719. ASSERT_TRUE(res);
  1720. EXPECT_EQ(404, res->status);
  1721. EXPECT_TRUE(res->body.empty());
  1722. }
  1723. TEST_F(ServerTest, GetMethodPersonJohn) {
  1724. auto res = cli_.Get("/person/john");
  1725. ASSERT_TRUE(res);
  1726. EXPECT_EQ(200, res->status);
  1727. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  1728. EXPECT_EQ("programmer", res->body);
  1729. }
  1730. TEST_F(ServerTest, PostMethod1) {
  1731. auto res = cli_.Get("/person/john1");
  1732. ASSERT_TRUE(res);
  1733. ASSERT_EQ(404, res->status);
  1734. res = cli_.Post("/person", "name=john1&note=coder",
  1735. "application/x-www-form-urlencoded");
  1736. ASSERT_TRUE(res);
  1737. ASSERT_EQ(200, res->status);
  1738. res = cli_.Get("/person/john1");
  1739. ASSERT_TRUE(res);
  1740. ASSERT_EQ(200, res->status);
  1741. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1742. ASSERT_EQ("coder", res->body);
  1743. }
  1744. TEST_F(ServerTest, PostMethod2) {
  1745. auto res = cli_.Get("/person/john2");
  1746. ASSERT_TRUE(res);
  1747. ASSERT_EQ(404, res->status);
  1748. Params params;
  1749. params.emplace("name", "john2");
  1750. params.emplace("note", "coder");
  1751. res = cli_.Post("/person", params);
  1752. ASSERT_TRUE(res);
  1753. ASSERT_EQ(200, res->status);
  1754. res = cli_.Get("/person/john2");
  1755. ASSERT_TRUE(res);
  1756. ASSERT_EQ(200, res->status);
  1757. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1758. ASSERT_EQ("coder", res->body);
  1759. }
  1760. TEST_F(ServerTest, PutMethod3) {
  1761. auto res = cli_.Get("/person/john3");
  1762. ASSERT_TRUE(res);
  1763. ASSERT_EQ(404, res->status);
  1764. Params params;
  1765. params.emplace("name", "john3");
  1766. params.emplace("note", "coder");
  1767. res = cli_.Put("/person", params);
  1768. ASSERT_TRUE(res);
  1769. ASSERT_EQ(200, res->status);
  1770. res = cli_.Get("/person/john3");
  1771. ASSERT_TRUE(res);
  1772. ASSERT_EQ(200, res->status);
  1773. ASSERT_EQ("text/plain", res->get_header_value("Content-Type"));
  1774. ASSERT_EQ("coder", res->body);
  1775. }
  1776. TEST_F(ServerTest, PostWwwFormUrlEncodedJson) {
  1777. Params params;
  1778. params.emplace("json", JSON_DATA);
  1779. auto res = cli_.Post("/x-www-form-urlencoded-json", params);
  1780. ASSERT_TRUE(res);
  1781. ASSERT_EQ(200, res->status);
  1782. ASSERT_EQ(JSON_DATA, res->body);
  1783. }
  1784. TEST_F(ServerTest, PostEmptyContent) {
  1785. auto res = cli_.Post("/empty", "", "text/plain");
  1786. ASSERT_TRUE(res);
  1787. ASSERT_EQ(200, res->status);
  1788. ASSERT_EQ("empty", res->body);
  1789. }
  1790. TEST_F(ServerTest, PostEmptyContentWithNoContentType) {
  1791. auto res = cli_.Post("/empty-no-content-type");
  1792. ASSERT_TRUE(res);
  1793. ASSERT_EQ(200, res->status);
  1794. ASSERT_EQ("empty-no-content-type", res->body);
  1795. }
  1796. TEST_F(ServerTest, PostLarge) {
  1797. auto res = cli_.Post("/post-large", LARGE_DATA, "text/plain");
  1798. ASSERT_TRUE(res);
  1799. ASSERT_EQ(200, res->status);
  1800. EXPECT_EQ(LARGE_DATA, res->body);
  1801. }
  1802. TEST_F(ServerTest, PutEmptyContentWithNoContentType) {
  1803. auto res = cli_.Put("/empty-no-content-type");
  1804. ASSERT_TRUE(res);
  1805. ASSERT_EQ(200, res->status);
  1806. ASSERT_EQ("empty-no-content-type", res->body);
  1807. }
  1808. TEST_F(ServerTest, GetMethodDir) {
  1809. auto res = cli_.Get("/dir/");
  1810. ASSERT_TRUE(res);
  1811. EXPECT_EQ(200, res->status);
  1812. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1813. auto body = R"(<html>
  1814. <head>
  1815. </head>
  1816. <body>
  1817. <a href="/dir/test.html">Test</a>
  1818. <a href="/hi">hi</a>
  1819. </body>
  1820. </html>
  1821. )";
  1822. EXPECT_EQ(body, res->body);
  1823. }
  1824. TEST_F(ServerTest, GetMethodDirTest) {
  1825. auto res = cli_.Get("/dir/test.html");
  1826. ASSERT_TRUE(res);
  1827. EXPECT_EQ(200, res->status);
  1828. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1829. EXPECT_EQ("test.html", res->body);
  1830. }
  1831. TEST_F(ServerTest, GetMethodDirTestWithDoubleDots) {
  1832. auto res = cli_.Get("/dir/../dir/test.html");
  1833. ASSERT_TRUE(res);
  1834. EXPECT_EQ(200, res->status);
  1835. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1836. EXPECT_EQ("test.html", res->body);
  1837. }
  1838. TEST_F(ServerTest, GetMethodInvalidPath) {
  1839. auto res = cli_.Get("/dir/../test.html");
  1840. ASSERT_TRUE(res);
  1841. EXPECT_EQ(404, res->status);
  1842. }
  1843. TEST_F(ServerTest, GetMethodOutOfBaseDir) {
  1844. auto res = cli_.Get("/../www/dir/test.html");
  1845. ASSERT_TRUE(res);
  1846. EXPECT_EQ(404, res->status);
  1847. }
  1848. TEST_F(ServerTest, GetMethodOutOfBaseDir2) {
  1849. auto res = cli_.Get("/dir/../../www/dir/test.html");
  1850. ASSERT_TRUE(res);
  1851. EXPECT_EQ(404, res->status);
  1852. }
  1853. TEST_F(ServerTest, GetMethodDirMountTest) {
  1854. auto res = cli_.Get("/mount/dir/test.html");
  1855. ASSERT_TRUE(res);
  1856. EXPECT_EQ(200, res->status);
  1857. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1858. EXPECT_EQ("test.html", res->body);
  1859. }
  1860. TEST_F(ServerTest, GetMethodDirMountTestWithDoubleDots) {
  1861. auto res = cli_.Get("/mount/dir/../dir/test.html");
  1862. ASSERT_TRUE(res);
  1863. EXPECT_EQ(200, res->status);
  1864. EXPECT_EQ("text/html", res->get_header_value("Content-Type"));
  1865. EXPECT_EQ("test.html", res->body);
  1866. }
  1867. TEST_F(ServerTest, GetMethodInvalidMountPath) {
  1868. auto res = cli_.Get("/mount/dir/../test.html");
  1869. ASSERT_TRUE(res);
  1870. EXPECT_EQ(404, res->status);
  1871. }
  1872. TEST_F(ServerTest, GetMethodOutOfBaseDirMount) {
  1873. auto res = cli_.Get("/mount/../www2/dir/test.html");
  1874. ASSERT_TRUE(res);
  1875. EXPECT_EQ(404, res->status);
  1876. }
  1877. TEST_F(ServerTest, GetMethodOutOfBaseDirMount2) {
  1878. auto res = cli_.Get("/mount/dir/../../www2/dir/test.html");
  1879. ASSERT_TRUE(res);
  1880. EXPECT_EQ(404, res->status);
  1881. }
  1882. TEST_F(ServerTest, PostMethod303) {
  1883. auto res = cli_.Post("/1", "body", "text/plain");
  1884. ASSERT_TRUE(res);
  1885. EXPECT_EQ(303, res->status);
  1886. EXPECT_EQ("/2", res->get_header_value("Location"));
  1887. }
  1888. TEST_F(ServerTest, PostMethod303Redirect) {
  1889. cli_.set_follow_location(true);
  1890. auto res = cli_.Post("/1", "body", "text/plain");
  1891. ASSERT_TRUE(res);
  1892. EXPECT_EQ(200, res->status);
  1893. EXPECT_EQ("redirected.", res->body);
  1894. EXPECT_EQ("/2", res->location);
  1895. }
  1896. TEST_F(ServerTest, UserDefinedMIMETypeMapping) {
  1897. auto res = cli_.Get("/dir/test.abcde");
  1898. ASSERT_TRUE(res);
  1899. EXPECT_EQ(200, res->status);
  1900. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1901. EXPECT_EQ("abcde", res->body);
  1902. }
  1903. TEST_F(ServerTest, StaticFileRange) {
  1904. auto res = cli_.Get("/dir/test.abcde", {{make_range_header({{2, 3}})}});
  1905. ASSERT_TRUE(res);
  1906. EXPECT_EQ(206, res->status);
  1907. EXPECT_EQ("text/abcde", res->get_header_value("Content-Type"));
  1908. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  1909. EXPECT_EQ(true, res->has_header("Content-Range"));
  1910. EXPECT_EQ(std::string("cd"), res->body);
  1911. }
  1912. TEST_F(ServerTest, InvalidBaseDirMount) {
  1913. EXPECT_EQ(false, svr_.set_mount_point("invalid_mount_point", "./www3"));
  1914. }
  1915. TEST_F(ServerTest, Binary) {
  1916. std::vector<char> binary{0x00, 0x01, 0x02, 0x03};
  1917. auto res = cli_.Post("/binary", binary.data(), binary.size(),
  1918. "application/octet-stream");
  1919. ASSERT_TRUE(res);
  1920. ASSERT_EQ(200, res->status);
  1921. ASSERT_EQ(4U, res->body.size());
  1922. res = cli_.Put("/binary", binary.data(), binary.size(),
  1923. "application/octet-stream");
  1924. ASSERT_TRUE(res);
  1925. ASSERT_EQ(200, res->status);
  1926. ASSERT_EQ(4U, res->body.size());
  1927. res = cli_.Patch("/binary", binary.data(), binary.size(),
  1928. "application/octet-stream");
  1929. ASSERT_TRUE(res);
  1930. ASSERT_EQ(200, res->status);
  1931. ASSERT_EQ(4U, res->body.size());
  1932. res = cli_.Delete("/binary", binary.data(), binary.size(),
  1933. "application/octet-stream");
  1934. ASSERT_TRUE(res);
  1935. ASSERT_EQ(200, res->status);
  1936. ASSERT_EQ(4U, res->body.size());
  1937. }
  1938. TEST_F(ServerTest, BinaryString) {
  1939. auto binary = std::string("\x00\x01\x02\x03", 4);
  1940. auto res = cli_.Post("/binary", binary, "application/octet-stream");
  1941. ASSERT_TRUE(res);
  1942. ASSERT_EQ(200, res->status);
  1943. ASSERT_EQ(4U, res->body.size());
  1944. res = cli_.Put("/binary", binary, "application/octet-stream");
  1945. ASSERT_TRUE(res);
  1946. ASSERT_EQ(200, res->status);
  1947. ASSERT_EQ(4U, res->body.size());
  1948. res = cli_.Patch("/binary", binary, "application/octet-stream");
  1949. ASSERT_TRUE(res);
  1950. ASSERT_EQ(200, res->status);
  1951. ASSERT_EQ(4U, res->body.size());
  1952. res = cli_.Delete("/binary", binary, "application/octet-stream");
  1953. ASSERT_TRUE(res);
  1954. ASSERT_EQ(200, res->status);
  1955. ASSERT_EQ(4U, res->body.size());
  1956. }
  1957. TEST_F(ServerTest, EmptyRequest) {
  1958. auto res = cli_.Get("");
  1959. ASSERT_TRUE(!res);
  1960. EXPECT_EQ(Error::Connection, res.error());
  1961. }
  1962. TEST_F(ServerTest, LongRequest) {
  1963. std::string request;
  1964. for (size_t i = 0; i < 545; i++) {
  1965. request += "/TooLongRequest";
  1966. }
  1967. request += "OK";
  1968. auto res = cli_.Get(request.c_str());
  1969. ASSERT_TRUE(res);
  1970. EXPECT_EQ(404, res->status);
  1971. }
  1972. TEST_F(ServerTest, TooLongRequest) {
  1973. std::string request;
  1974. for (size_t i = 0; i < 545; i++) {
  1975. request += "/TooLongRequest";
  1976. }
  1977. request += "_NG";
  1978. auto res = cli_.Get(request.c_str());
  1979. ASSERT_TRUE(res);
  1980. EXPECT_EQ(414, res->status);
  1981. }
  1982. TEST_F(ServerTest, LongHeader) {
  1983. Request req;
  1984. req.method = "GET";
  1985. req.path = "/hi";
  1986. std::string host_and_port;
  1987. host_and_port += HOST;
  1988. host_and_port += ":";
  1989. host_and_port += std::to_string(PORT);
  1990. req.headers.emplace("Host", host_and_port.c_str());
  1991. req.headers.emplace("Accept", "*/*");
  1992. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  1993. req.headers.emplace(
  1994. "Header-Name",
  1995. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1996. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1997. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1998. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  1999. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2000. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2001. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2002. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2003. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2004. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2005. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2006. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2007. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2008. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2009. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2010. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2011. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2012. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2013. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2014. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2015. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2016. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2017. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2018. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2019. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2020. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2021. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2022. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2023. "@@@@@@@@@@@@@@@@");
  2024. auto res = std::make_shared<Response>();
  2025. auto error = Error::Success;
  2026. auto ret = cli_.send(req, *res, error);
  2027. ASSERT_TRUE(ret);
  2028. EXPECT_EQ(200, res->status);
  2029. }
  2030. TEST_F(ServerTest, LongQueryValue) {
  2031. auto res = cli_.Get(LONG_QUERY_URL.c_str());
  2032. ASSERT_TRUE(res);
  2033. EXPECT_EQ(414, res->status);
  2034. }
  2035. TEST_F(ServerTest, TooLongHeader) {
  2036. Request req;
  2037. req.method = "GET";
  2038. req.path = "/hi";
  2039. std::string host_and_port;
  2040. host_and_port += HOST;
  2041. host_and_port += ":";
  2042. host_and_port += std::to_string(PORT);
  2043. req.headers.emplace("Host", host_and_port.c_str());
  2044. req.headers.emplace("Accept", "*/*");
  2045. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2046. req.headers.emplace(
  2047. "Header-Name",
  2048. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2049. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2050. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2051. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2052. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2053. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2054. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2055. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2056. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2057. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2058. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2059. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2060. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2061. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2062. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2063. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2064. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2065. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2066. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2067. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2068. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2069. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2070. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2071. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2072. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2073. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2074. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2075. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
  2076. "@@@@@@@@@@@@@@@@@");
  2077. auto res = std::make_shared<Response>();
  2078. auto error = Error::Success;
  2079. auto ret = cli_.send(req, *res, error);
  2080. ASSERT_TRUE(ret);
  2081. EXPECT_EQ(200, res->status);
  2082. }
  2083. TEST_F(ServerTest, PercentEncoding) {
  2084. auto res = cli_.Get("/e%6edwith%");
  2085. ASSERT_TRUE(res);
  2086. EXPECT_EQ(200, res->status);
  2087. }
  2088. TEST_F(ServerTest, PercentEncodingUnicode) {
  2089. auto res = cli_.Get("/e%u006edwith%");
  2090. ASSERT_TRUE(res);
  2091. EXPECT_EQ(200, res->status);
  2092. }
  2093. TEST_F(ServerTest, InvalidPercentEncoding) {
  2094. auto res = cli_.Get("/%endwith%");
  2095. ASSERT_TRUE(res);
  2096. EXPECT_EQ(404, res->status);
  2097. }
  2098. TEST_F(ServerTest, InvalidPercentEncodingUnicode) {
  2099. auto res = cli_.Get("/%uendwith%");
  2100. ASSERT_TRUE(res);
  2101. EXPECT_EQ(404, res->status);
  2102. }
  2103. TEST_F(ServerTest, EndWithPercentCharacterInQuery) {
  2104. auto res = cli_.Get("/hello?aaa=bbb%");
  2105. ASSERT_TRUE(res);
  2106. EXPECT_EQ(404, res->status);
  2107. }
  2108. TEST_F(ServerTest, PlusSignEncoding) {
  2109. auto res = cli_.Get("/a+%2Bb?a %2bb=a %2Bb");
  2110. ASSERT_TRUE(res);
  2111. EXPECT_EQ(200, res->status);
  2112. EXPECT_EQ("a +b", res->body);
  2113. }
  2114. TEST_F(ServerTest, MultipartFormData) {
  2115. MultipartFormDataItems items = {
  2116. {"text1", "text default", "", ""},
  2117. {"text2", "aωb", "", ""},
  2118. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2119. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2120. {"file3", "", "", "application/octet-stream"},
  2121. {"file4", "", "", " application/json tmp-string "}};
  2122. auto res = cli_.Post("/multipart", items);
  2123. ASSERT_TRUE(res);
  2124. EXPECT_EQ(200, res->status);
  2125. }
  2126. TEST_F(ServerTest, CaseInsensitiveHeaderName) {
  2127. auto res = cli_.Get("/hi");
  2128. ASSERT_TRUE(res);
  2129. EXPECT_EQ(200, res->status);
  2130. EXPECT_EQ("text/plain", res->get_header_value("content-type"));
  2131. EXPECT_EQ("Hello World!", res->body);
  2132. }
  2133. TEST_F(ServerTest, CaseInsensitiveTransferEncoding) {
  2134. Request req;
  2135. req.method = "POST";
  2136. req.path = "/chunked";
  2137. std::string host_and_port;
  2138. host_and_port += HOST;
  2139. host_and_port += ":";
  2140. host_and_port += std::to_string(PORT);
  2141. req.headers.emplace("Host", host_and_port.c_str());
  2142. req.headers.emplace("Accept", "*/*");
  2143. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2144. req.headers.emplace("Content-Type", "text/plain");
  2145. req.headers.emplace("Content-Length", "0");
  2146. req.headers.emplace(
  2147. "Transfer-Encoding",
  2148. "Chunked"); // Note, "Chunked" rather than typical "chunked".
  2149. // Client does not chunk, so make a chunked body manually.
  2150. req.body = "4\r\ndech\r\nf\r\nunked post body\r\n0\r\n\r\n";
  2151. auto res = std::make_shared<Response>();
  2152. auto error = Error::Success;
  2153. auto ret = cli_.send(req, *res, error);
  2154. ASSERT_TRUE(ret);
  2155. EXPECT_EQ(200, res->status);
  2156. }
  2157. TEST_F(ServerTest, GetStreamed2) {
  2158. auto res = cli_.Get("/streamed", {{make_range_header({{2, 3}})}});
  2159. ASSERT_TRUE(res);
  2160. EXPECT_EQ(206, res->status);
  2161. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  2162. EXPECT_EQ(std::string("ab"), res->body);
  2163. }
  2164. TEST_F(ServerTest, GetStreamed) {
  2165. auto res = cli_.Get("/streamed");
  2166. ASSERT_TRUE(res);
  2167. EXPECT_EQ(200, res->status);
  2168. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2169. EXPECT_EQ(std::string("aaabbb"), res->body);
  2170. }
  2171. TEST_F(ServerTest, GetStreamedWithRange1) {
  2172. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{3, 5}})}});
  2173. ASSERT_TRUE(res);
  2174. EXPECT_EQ(206, res->status);
  2175. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2176. EXPECT_EQ(true, res->has_header("Content-Range"));
  2177. EXPECT_EQ(std::string("def"), res->body);
  2178. }
  2179. TEST_F(ServerTest, GetStreamedWithRange2) {
  2180. auto res = cli_.Get("/streamed-with-range", {{make_range_header({{1, -1}})}});
  2181. ASSERT_TRUE(res);
  2182. EXPECT_EQ(206, res->status);
  2183. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2184. EXPECT_EQ(true, res->has_header("Content-Range"));
  2185. EXPECT_EQ(std::string("bcdefg"), res->body);
  2186. }
  2187. TEST_F(ServerTest, GetStreamedWithRangeSuffix1) {
  2188. auto res = cli_.Get("/streamed-with-range", {{"Range", "bytes=-3"}});
  2189. ASSERT_TRUE(res);
  2190. EXPECT_EQ(206, res->status);
  2191. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2192. EXPECT_EQ(true, res->has_header("Content-Range"));
  2193. EXPECT_EQ(std::string("efg"), res->body);
  2194. }
  2195. TEST_F(ServerTest, GetStreamedWithRangeSuffix2) {
  2196. auto res = cli_.Get("/streamed-with-range", {{"Range", "bytes=-9999"}});
  2197. ASSERT_TRUE(res);
  2198. EXPECT_EQ(206, res->status);
  2199. EXPECT_EQ("7", res->get_header_value("Content-Length"));
  2200. EXPECT_EQ(true, res->has_header("Content-Range"));
  2201. EXPECT_EQ(std::string("abcdefg"), res->body);
  2202. }
  2203. TEST_F(ServerTest, GetStreamedWithRangeError) {
  2204. auto res = cli_.Get("/streamed-with-range",
  2205. {{"Range", "bytes=92233720368547758079223372036854775806-"
  2206. "92233720368547758079223372036854775807"}});
  2207. ASSERT_TRUE(res);
  2208. EXPECT_EQ(416, res->status);
  2209. }
  2210. TEST_F(ServerTest, GetRangeWithMaxLongLength) {
  2211. auto res =
  2212. cli_.Get("/with-range", {{"Range", "bytes=0-9223372036854775807"}});
  2213. EXPECT_EQ(206, res->status);
  2214. EXPECT_EQ("7", res->get_header_value("Content-Length"));
  2215. EXPECT_EQ(true, res->has_header("Content-Range"));
  2216. EXPECT_EQ(std::string("abcdefg"), res->body);
  2217. }
  2218. TEST_F(ServerTest, GetStreamedWithRangeMultipart) {
  2219. auto res =
  2220. cli_.Get("/streamed-with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  2221. ASSERT_TRUE(res);
  2222. EXPECT_EQ(206, res->status);
  2223. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  2224. EXPECT_EQ(false, res->has_header("Content-Range"));
  2225. EXPECT_EQ(269U, res->body.size());
  2226. }
  2227. TEST_F(ServerTest, GetStreamedEndless) {
  2228. uint64_t offset = 0;
  2229. auto res = cli_.Get("/streamed-cancel",
  2230. [&](const char * /*data*/, uint64_t data_length) {
  2231. if (offset < 100) {
  2232. offset += data_length;
  2233. return true;
  2234. }
  2235. return false;
  2236. });
  2237. ASSERT_TRUE(!res);
  2238. EXPECT_EQ(Error::Canceled, res.error());
  2239. }
  2240. TEST_F(ServerTest, ClientStop) {
  2241. std::vector<std::thread> threads;
  2242. for (auto i = 0; i < 3; i++) {
  2243. threads.emplace_back(thread([&]() {
  2244. auto res = cli_.Get("/streamed-cancel",
  2245. [&](const char *, uint64_t) { return true; });
  2246. ASSERT_TRUE(!res);
  2247. EXPECT_TRUE(res.error() == Error::Canceled ||
  2248. res.error() == Error::Read || res.error() == Error::Write);
  2249. }));
  2250. }
  2251. std::this_thread::sleep_for(std::chrono::seconds(2));
  2252. while (cli_.is_socket_open()) {
  2253. cli_.stop();
  2254. std::this_thread::sleep_for(std::chrono::milliseconds(10));
  2255. }
  2256. for (auto &t : threads) {
  2257. t.join();
  2258. }
  2259. }
  2260. TEST_F(ServerTest, GetWithRange1) {
  2261. auto res = cli_.Get("/with-range", {{make_range_header({{3, 5}})}});
  2262. ASSERT_TRUE(res);
  2263. EXPECT_EQ(206, res->status);
  2264. EXPECT_EQ("3", res->get_header_value("Content-Length"));
  2265. EXPECT_EQ(true, res->has_header("Content-Range"));
  2266. EXPECT_EQ(std::string("def"), res->body);
  2267. }
  2268. TEST_F(ServerTest, GetWithRange2) {
  2269. auto res = cli_.Get("/with-range", {{make_range_header({{1, -1}})}});
  2270. ASSERT_TRUE(res);
  2271. EXPECT_EQ(206, res->status);
  2272. EXPECT_EQ("6", res->get_header_value("Content-Length"));
  2273. EXPECT_EQ(true, res->has_header("Content-Range"));
  2274. EXPECT_EQ(std::string("bcdefg"), res->body);
  2275. }
  2276. TEST_F(ServerTest, GetWithRange3) {
  2277. auto res = cli_.Get("/with-range", {{make_range_header({{0, 0}})}});
  2278. ASSERT_TRUE(res);
  2279. EXPECT_EQ(206, res->status);
  2280. EXPECT_EQ("1", res->get_header_value("Content-Length"));
  2281. EXPECT_EQ(true, res->has_header("Content-Range"));
  2282. EXPECT_EQ(std::string("a"), res->body);
  2283. }
  2284. TEST_F(ServerTest, GetWithRange4) {
  2285. auto res = cli_.Get("/with-range", {{make_range_header({{-1, 2}})}});
  2286. ASSERT_TRUE(res);
  2287. EXPECT_EQ(206, res->status);
  2288. EXPECT_EQ("2", res->get_header_value("Content-Length"));
  2289. EXPECT_EQ(true, res->has_header("Content-Range"));
  2290. EXPECT_EQ(std::string("fg"), res->body);
  2291. }
  2292. TEST_F(ServerTest, GetWithRangeOffsetGreaterThanContent) {
  2293. auto res = cli_.Get("/with-range", {{make_range_header({{10000, 20000}})}});
  2294. ASSERT_TRUE(res);
  2295. EXPECT_EQ(416, res->status);
  2296. }
  2297. TEST_F(ServerTest, GetWithRangeMultipart) {
  2298. auto res = cli_.Get("/with-range", {{make_range_header({{1, 2}, {4, 5}})}});
  2299. ASSERT_TRUE(res);
  2300. EXPECT_EQ(206, res->status);
  2301. EXPECT_EQ("269", res->get_header_value("Content-Length"));
  2302. EXPECT_EQ(false, res->has_header("Content-Range"));
  2303. EXPECT_EQ(269U, res->body.size());
  2304. }
  2305. TEST_F(ServerTest, GetWithRangeMultipartOffsetGreaterThanContent) {
  2306. auto res =
  2307. cli_.Get("/with-range", {{make_range_header({{-1, 2}, {10000, 30000}})}});
  2308. ASSERT_TRUE(res);
  2309. EXPECT_EQ(416, res->status);
  2310. }
  2311. TEST_F(ServerTest, GetStreamedChunked) {
  2312. auto res = cli_.Get("/streamed-chunked");
  2313. ASSERT_TRUE(res);
  2314. EXPECT_EQ(200, res->status);
  2315. EXPECT_EQ(std::string("123456789"), res->body);
  2316. }
  2317. TEST_F(ServerTest, GetStreamedChunked2) {
  2318. auto res = cli_.Get("/streamed-chunked2");
  2319. ASSERT_TRUE(res);
  2320. EXPECT_EQ(200, res->status);
  2321. EXPECT_EQ(std::string("123456789"), res->body);
  2322. }
  2323. TEST_F(ServerTest, LargeChunkedPost) {
  2324. Request req;
  2325. req.method = "POST";
  2326. req.path = "/large-chunked";
  2327. std::string host_and_port;
  2328. host_and_port += HOST;
  2329. host_and_port += ":";
  2330. host_and_port += std::to_string(PORT);
  2331. req.headers.emplace("Host", host_and_port.c_str());
  2332. req.headers.emplace("Accept", "*/*");
  2333. req.headers.emplace("User-Agent", "cpp-httplib/0.1");
  2334. req.headers.emplace("Content-Type", "text/plain");
  2335. req.headers.emplace("Content-Length", "0");
  2336. req.headers.emplace("Transfer-Encoding", "chunked");
  2337. std::string long_string(30 * 1024u, 'a');
  2338. std::string chunk = "7800\r\n" + long_string + "\r\n";
  2339. // Attempt to make a large enough post to exceed OS buffers, to test that
  2340. // the server handles short reads if the full chunk data isn't available.
  2341. req.body = chunk + chunk + chunk + chunk + chunk + chunk + "0\r\n\r\n";
  2342. auto res = std::make_shared<Response>();
  2343. auto error = Error::Success;
  2344. auto ret = cli_.send(req, *res, error);
  2345. ASSERT_TRUE(ret);
  2346. EXPECT_EQ(200, res->status);
  2347. }
  2348. TEST_F(ServerTest, GetMethodRemoteAddr) {
  2349. auto res = cli_.Get("/remote_addr");
  2350. ASSERT_TRUE(res);
  2351. EXPECT_EQ(200, res->status);
  2352. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2353. EXPECT_TRUE(res->body == "::1" || res->body == "127.0.0.1");
  2354. }
  2355. TEST_F(ServerTest, HTTPResponseSplitting) {
  2356. auto res = cli_.Get("/http_response_splitting");
  2357. ASSERT_TRUE(res);
  2358. EXPECT_EQ(200, res->status);
  2359. }
  2360. TEST_F(ServerTest, SlowRequest) {
  2361. request_threads_.push_back(
  2362. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2363. request_threads_.push_back(
  2364. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2365. request_threads_.push_back(
  2366. std::thread([=]() { auto res = cli_.Get("/slow"); }));
  2367. }
  2368. #if 0
  2369. TEST_F(ServerTest, SlowPost) {
  2370. char buffer[64 * 1024];
  2371. memset(buffer, 0x42, sizeof(buffer));
  2372. auto res = cli_.Post(
  2373. "/slowpost", 64 * 1024 * 1024,
  2374. [&](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2375. auto ret = sink.write(buffer, sizeof(buffer));
  2376. EXPECT_TRUE(ret);
  2377. return true;
  2378. },
  2379. "text/plain");
  2380. ASSERT_TRUE(res);
  2381. EXPECT_EQ(200, res->status);
  2382. }
  2383. TEST_F(ServerTest, SlowPostFail) {
  2384. char buffer[64 * 1024];
  2385. memset(buffer, 0x42, sizeof(buffer));
  2386. cli_.set_write_timeout(std::chrono::seconds(0));
  2387. auto res = cli_.Post(
  2388. "/slowpost", 64 * 1024 * 1024,
  2389. [&](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2390. sink.write(buffer, sizeof(buffer));
  2391. return true;
  2392. },
  2393. "text/plain");
  2394. ASSERT_TRUE(!res);
  2395. EXPECT_EQ(Error::Write, res.error());
  2396. }
  2397. #endif
  2398. TEST_F(ServerTest, Put) {
  2399. auto res = cli_.Put("/put", "PUT", "text/plain");
  2400. ASSERT_TRUE(res);
  2401. EXPECT_EQ(200, res->status);
  2402. EXPECT_EQ("PUT", res->body);
  2403. }
  2404. TEST_F(ServerTest, PutWithContentProvider) {
  2405. auto res = cli_.Put(
  2406. "/put", 3,
  2407. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2408. EXPECT_TRUE(sink.is_writable());
  2409. sink.os << "PUT";
  2410. return true;
  2411. },
  2412. "text/plain");
  2413. ASSERT_TRUE(res);
  2414. EXPECT_EQ(200, res->status);
  2415. EXPECT_EQ("PUT", res->body);
  2416. }
  2417. TEST_F(ServerTest, PostWithContentProviderAbort) {
  2418. auto res = cli_.Post(
  2419. "/post", 42,
  2420. [](size_t /*offset*/, size_t /*length*/, DataSink & /*sink*/) {
  2421. return false;
  2422. },
  2423. "text/plain");
  2424. ASSERT_TRUE(!res);
  2425. EXPECT_EQ(Error::Canceled, res.error());
  2426. }
  2427. TEST_F(ServerTest, PutWithContentProviderWithoutLength) {
  2428. auto res = cli_.Put(
  2429. "/put",
  2430. [](size_t /*offset*/, DataSink &sink) {
  2431. EXPECT_TRUE(sink.is_writable());
  2432. sink.os << "PUT";
  2433. sink.done();
  2434. return true;
  2435. },
  2436. "text/plain");
  2437. ASSERT_TRUE(res);
  2438. EXPECT_EQ(200, res->status);
  2439. EXPECT_EQ("PUT", res->body);
  2440. }
  2441. TEST_F(ServerTest, PostWithContentProviderWithoutLengthAbort) {
  2442. auto res = cli_.Post(
  2443. "/post", [](size_t /*offset*/, DataSink & /*sink*/) { return false; },
  2444. "text/plain");
  2445. ASSERT_TRUE(!res);
  2446. EXPECT_EQ(Error::Canceled, res.error());
  2447. }
  2448. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  2449. TEST_F(ServerTest, PutWithContentProviderWithGzip) {
  2450. cli_.set_compress(true);
  2451. auto res = cli_.Put(
  2452. "/put", 3,
  2453. [](size_t /*offset*/, size_t /*length*/, DataSink &sink) {
  2454. EXPECT_TRUE(sink.is_writable());
  2455. sink.os << "PUT";
  2456. return true;
  2457. },
  2458. "text/plain");
  2459. ASSERT_TRUE(res);
  2460. EXPECT_EQ(200, res->status);
  2461. EXPECT_EQ("PUT", res->body);
  2462. }
  2463. TEST_F(ServerTest, PostWithContentProviderWithGzipAbort) {
  2464. cli_.set_compress(true);
  2465. auto res = cli_.Post(
  2466. "/post", 42,
  2467. [](size_t /*offset*/, size_t /*length*/, DataSink & /*sink*/) {
  2468. return false;
  2469. },
  2470. "text/plain");
  2471. ASSERT_TRUE(!res);
  2472. EXPECT_EQ(Error::Canceled, res.error());
  2473. }
  2474. TEST_F(ServerTest, PutWithContentProviderWithoutLengthWithGzip) {
  2475. cli_.set_compress(true);
  2476. auto res = cli_.Put(
  2477. "/put",
  2478. [](size_t /*offset*/, DataSink &sink) {
  2479. EXPECT_TRUE(sink.is_writable());
  2480. sink.os << "PUT";
  2481. sink.done();
  2482. return true;
  2483. },
  2484. "text/plain");
  2485. ASSERT_TRUE(res);
  2486. EXPECT_EQ(200, res->status);
  2487. EXPECT_EQ("PUT", res->body);
  2488. }
  2489. TEST_F(ServerTest, PostWithContentProviderWithoutLengthWithGzipAbort) {
  2490. cli_.set_compress(true);
  2491. auto res = cli_.Post(
  2492. "/post", [](size_t /*offset*/, DataSink & /*sink*/) { return false; },
  2493. "text/plain");
  2494. ASSERT_TRUE(!res);
  2495. EXPECT_EQ(Error::Canceled, res.error());
  2496. }
  2497. TEST_F(ServerTest, PutLargeFileWithGzip) {
  2498. cli_.set_compress(true);
  2499. auto res = cli_.Put("/put-large", LARGE_DATA, "text/plain");
  2500. ASSERT_TRUE(res);
  2501. EXPECT_EQ(200, res->status);
  2502. EXPECT_EQ(LARGE_DATA, res->body);
  2503. }
  2504. TEST_F(ServerTest, PutLargeFileWithGzip2) {
  2505. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2506. std::string s = std::string("https://") + HOST + ":" + std::to_string(PORT);
  2507. Client cli(s.c_str());
  2508. cli.enable_server_certificate_verification(false);
  2509. #else
  2510. std::string s = std::string("http://") + HOST + ":" + std::to_string(PORT);
  2511. Client cli(s.c_str());
  2512. #endif
  2513. cli.set_compress(true);
  2514. auto res = cli.Put("/put-large", LARGE_DATA, "text/plain");
  2515. ASSERT_TRUE(res);
  2516. EXPECT_EQ(200, res->status);
  2517. EXPECT_EQ(LARGE_DATA, res->body);
  2518. EXPECT_EQ(101942u, res.get_request_header_value<uint64_t>("Content-Length"));
  2519. EXPECT_EQ("gzip", res.get_request_header_value("Content-Encoding"));
  2520. }
  2521. TEST_F(ServerTest, PutContentWithDeflate) {
  2522. cli_.set_compress(false);
  2523. Headers headers;
  2524. headers.emplace("Content-Encoding", "deflate");
  2525. // PUT in deflate format:
  2526. auto res = cli_.Put("/put", headers,
  2527. "\170\234\013\010\015\001\0\001\361\0\372", "text/plain");
  2528. ASSERT_TRUE(res);
  2529. EXPECT_EQ(200, res->status);
  2530. EXPECT_EQ("PUT", res->body);
  2531. }
  2532. TEST_F(ServerTest, GetStreamedChunkedWithGzip) {
  2533. Headers headers;
  2534. headers.emplace("Accept-Encoding", "gzip, deflate");
  2535. auto res = cli_.Get("/streamed-chunked", headers);
  2536. ASSERT_TRUE(res);
  2537. EXPECT_EQ(200, res->status);
  2538. EXPECT_EQ(std::string("123456789"), res->body);
  2539. }
  2540. TEST_F(ServerTest, GetStreamedChunkedWithGzip2) {
  2541. Headers headers;
  2542. headers.emplace("Accept-Encoding", "gzip, deflate");
  2543. auto res = cli_.Get("/streamed-chunked2", headers);
  2544. ASSERT_TRUE(res);
  2545. EXPECT_EQ(200, res->status);
  2546. EXPECT_EQ(std::string("123456789"), res->body);
  2547. }
  2548. TEST(GzipDecompressor, ChunkedDecompression) {
  2549. std::string data;
  2550. for (size_t i = 0; i < 32 * 1024; ++i) {
  2551. data.push_back(static_cast<char>('a' + i % 26));
  2552. }
  2553. std::string compressed_data;
  2554. {
  2555. httplib::detail::gzip_compressor compressor;
  2556. bool result = compressor.compress(
  2557. data.data(), data.size(),
  2558. /*last=*/true,
  2559. [&](const char *compressed_data_chunk, size_t compressed_data_size) {
  2560. compressed_data.insert(compressed_data.size(), compressed_data_chunk,
  2561. compressed_data_size);
  2562. return true;
  2563. });
  2564. ASSERT_TRUE(result);
  2565. }
  2566. std::string decompressed_data;
  2567. {
  2568. httplib::detail::gzip_decompressor decompressor;
  2569. // Chunk size is chosen specificaly to have a decompressed chunk size equal
  2570. // to 16384 bytes 16384 bytes is the size of decompressor output buffer
  2571. size_t chunk_size = 130;
  2572. for (size_t chunk_begin = 0; chunk_begin < compressed_data.size();
  2573. chunk_begin += chunk_size) {
  2574. size_t current_chunk_size =
  2575. std::min(compressed_data.size() - chunk_begin, chunk_size);
  2576. bool result = decompressor.decompress(
  2577. compressed_data.data() + chunk_begin, current_chunk_size,
  2578. [&](const char *decompressed_data_chunk,
  2579. size_t decompressed_data_chunk_size) {
  2580. decompressed_data.insert(decompressed_data.size(),
  2581. decompressed_data_chunk,
  2582. decompressed_data_chunk_size);
  2583. return true;
  2584. });
  2585. ASSERT_TRUE(result);
  2586. }
  2587. }
  2588. ASSERT_EQ(data, decompressed_data);
  2589. }
  2590. #ifdef _WIN32
  2591. TEST(GzipDecompressor, LargeRandomData) {
  2592. // prepare large random data that is difficult to be compressed and is
  2593. // expected to have large size even when compressed
  2594. std::random_device seed_gen;
  2595. std::mt19937 random(seed_gen());
  2596. constexpr auto large_size_byte = 4294967296UL; // 4GiB
  2597. constexpr auto data_size = large_size_byte + 134217728UL; // + 128MiB
  2598. std::vector<std::uint32_t> data(data_size / sizeof(std::uint32_t));
  2599. std::generate(data.begin(), data.end(), [&]() { return random(); });
  2600. // compress data over 4GiB
  2601. std::string compressed_data;
  2602. compressed_data.reserve(large_size_byte + 536870912UL); // + 512MiB reserved
  2603. httplib::detail::gzip_compressor compressor;
  2604. auto result = compressor.compress(reinterpret_cast<const char *>(data.data()),
  2605. data.size() * sizeof(std::uint32_t), true,
  2606. [&](const char *data, size_t size) {
  2607. compressed_data.insert(
  2608. compressed_data.size(), data, size);
  2609. return true;
  2610. });
  2611. ASSERT_TRUE(result);
  2612. // FIXME: compressed data size is expected to be greater than 4GiB,
  2613. // but there is no guarantee
  2614. // ASSERT_TRUE(compressed_data.size() >= large_size_byte);
  2615. // decompress data over 4GiB
  2616. std::string decompressed_data;
  2617. decompressed_data.reserve(data_size);
  2618. httplib::detail::gzip_decompressor decompressor;
  2619. result = decompressor.decompress(
  2620. compressed_data.data(), compressed_data.size(),
  2621. [&](const char *data, size_t size) {
  2622. decompressed_data.insert(decompressed_data.size(), data, size);
  2623. return true;
  2624. });
  2625. ASSERT_TRUE(result);
  2626. // compare
  2627. ASSERT_EQ(data_size, decompressed_data.size());
  2628. ASSERT_TRUE(std::memcmp(data.data(), decompressed_data.data(), data_size) ==
  2629. 0);
  2630. }
  2631. #endif
  2632. #endif
  2633. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  2634. TEST_F(ServerTest, GetStreamedChunkedWithBrotli) {
  2635. Headers headers;
  2636. headers.emplace("Accept-Encoding", "br");
  2637. auto res = cli_.Get("/streamed-chunked", headers);
  2638. ASSERT_TRUE(res);
  2639. EXPECT_EQ(200, res->status);
  2640. EXPECT_EQ(std::string("123456789"), res->body);
  2641. }
  2642. TEST_F(ServerTest, GetStreamedChunkedWithBrotli2) {
  2643. Headers headers;
  2644. headers.emplace("Accept-Encoding", "br");
  2645. auto res = cli_.Get("/streamed-chunked2", headers);
  2646. ASSERT_TRUE(res);
  2647. EXPECT_EQ(200, res->status);
  2648. EXPECT_EQ(std::string("123456789"), res->body);
  2649. }
  2650. #endif
  2651. TEST_F(ServerTest, Patch) {
  2652. auto res = cli_.Patch("/patch", "PATCH", "text/plain");
  2653. ASSERT_TRUE(res);
  2654. EXPECT_EQ(200, res->status);
  2655. EXPECT_EQ("PATCH", res->body);
  2656. }
  2657. TEST_F(ServerTest, Delete) {
  2658. auto res = cli_.Delete("/delete");
  2659. ASSERT_TRUE(res);
  2660. EXPECT_EQ(200, res->status);
  2661. EXPECT_EQ("DELETE", res->body);
  2662. }
  2663. TEST_F(ServerTest, DeleteContentReceiver) {
  2664. auto res = cli_.Delete("/delete-body", "content", "text/plain");
  2665. ASSERT_TRUE(res);
  2666. EXPECT_EQ(200, res->status);
  2667. EXPECT_EQ("content", res->body);
  2668. }
  2669. TEST_F(ServerTest, Options) {
  2670. auto res = cli_.Options("*");
  2671. ASSERT_TRUE(res);
  2672. EXPECT_EQ(200, res->status);
  2673. EXPECT_EQ("GET, POST, HEAD, OPTIONS", res->get_header_value("Allow"));
  2674. EXPECT_TRUE(res->body.empty());
  2675. }
  2676. TEST_F(ServerTest, URL) {
  2677. auto res = cli_.Get("/request-target?aaa=bbb&ccc=ddd");
  2678. ASSERT_TRUE(res);
  2679. EXPECT_EQ(200, res->status);
  2680. }
  2681. TEST_F(ServerTest, ArrayParam) {
  2682. auto res = cli_.Get("/array-param?array=value1&array=value2&array=value3");
  2683. ASSERT_TRUE(res);
  2684. EXPECT_EQ(200, res->status);
  2685. }
  2686. TEST_F(ServerTest, NoMultipleHeaders) {
  2687. Headers headers = {{"Content-Length", "5"}};
  2688. auto res = cli_.Post("/validate-no-multiple-headers", headers, "hello",
  2689. "text/plain");
  2690. ASSERT_TRUE(res);
  2691. EXPECT_EQ(200, res->status);
  2692. }
  2693. TEST_F(ServerTest, PostContentReceiver) {
  2694. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  2695. ASSERT_TRUE(res);
  2696. ASSERT_EQ(200, res->status);
  2697. ASSERT_EQ("content", res->body);
  2698. }
  2699. TEST_F(ServerTest, PostMulitpartFilsContentReceiver) {
  2700. MultipartFormDataItems items = {
  2701. {"text1", "text default", "", ""},
  2702. {"text2", "aωb", "", ""},
  2703. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2704. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2705. {"file3", "", "", "application/octet-stream"},
  2706. };
  2707. auto res = cli_.Post("/content_receiver", items);
  2708. ASSERT_TRUE(res);
  2709. EXPECT_EQ(200, res->status);
  2710. }
  2711. TEST_F(ServerTest, PostMulitpartPlusBoundary) {
  2712. MultipartFormDataItems items = {
  2713. {"text1", "text default", "", ""},
  2714. {"text2", "aωb", "", ""},
  2715. {"file1", "h\ne\n\nl\nl\no\n", "hello.txt", "text/plain"},
  2716. {"file2", "{\n \"world\", true\n}\n", "world.json", "application/json"},
  2717. {"file3", "", "", "application/octet-stream"},
  2718. };
  2719. auto boundary = std::string("+++++");
  2720. std::string body;
  2721. for (const auto &item : items) {
  2722. body += "--" + boundary + "\r\n";
  2723. body += "Content-Disposition: form-data; name=\"" + item.name + "\"";
  2724. if (!item.filename.empty()) {
  2725. body += "; filename=\"" + item.filename + "\"";
  2726. }
  2727. body += "\r\n";
  2728. if (!item.content_type.empty()) {
  2729. body += "Content-Type: " + item.content_type + "\r\n";
  2730. }
  2731. body += "\r\n";
  2732. body += item.content + "\r\n";
  2733. }
  2734. body += "--" + boundary + "--\r\n";
  2735. std::string content_type = "multipart/form-data; boundary=" + boundary;
  2736. auto res = cli_.Post("/content_receiver", body, content_type.c_str());
  2737. ASSERT_TRUE(res);
  2738. EXPECT_EQ(200, res->status);
  2739. }
  2740. TEST_F(ServerTest, PostContentReceiverGzip) {
  2741. cli_.set_compress(true);
  2742. auto res = cli_.Post("/content_receiver", "content", "text/plain");
  2743. ASSERT_TRUE(res);
  2744. ASSERT_EQ(200, res->status);
  2745. ASSERT_EQ("content", res->body);
  2746. }
  2747. TEST_F(ServerTest, PutContentReceiver) {
  2748. auto res = cli_.Put("/content_receiver", "content", "text/plain");
  2749. ASSERT_TRUE(res);
  2750. ASSERT_EQ(200, res->status);
  2751. ASSERT_EQ("content", res->body);
  2752. }
  2753. TEST_F(ServerTest, PatchContentReceiver) {
  2754. auto res = cli_.Patch("/content_receiver", "content", "text/plain");
  2755. ASSERT_TRUE(res);
  2756. ASSERT_EQ(200, res->status);
  2757. ASSERT_EQ("content", res->body);
  2758. }
  2759. TEST_F(ServerTest, PostQueryStringAndBody) {
  2760. auto res =
  2761. cli_.Post("/query-string-and-body?key=value", "content", "text/plain");
  2762. ASSERT_TRUE(res);
  2763. ASSERT_EQ(200, res->status);
  2764. }
  2765. TEST_F(ServerTest, HTTP2Magic) {
  2766. Request req;
  2767. req.method = "PRI";
  2768. req.path = "*";
  2769. req.body = "SM";
  2770. auto res = std::make_shared<Response>();
  2771. auto error = Error::Success;
  2772. auto ret = cli_.send(req, *res, error);
  2773. ASSERT_TRUE(ret);
  2774. EXPECT_EQ(400, res->status);
  2775. }
  2776. TEST_F(ServerTest, KeepAlive) {
  2777. auto res = cli_.Get("/hi");
  2778. ASSERT_TRUE(res);
  2779. EXPECT_EQ(200, res->status);
  2780. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2781. EXPECT_EQ("Hello World!", res->body);
  2782. res = cli_.Get("/hi");
  2783. ASSERT_TRUE(res);
  2784. EXPECT_EQ(200, res->status);
  2785. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2786. EXPECT_EQ("Hello World!", res->body);
  2787. res = cli_.Get("/hi");
  2788. ASSERT_TRUE(res);
  2789. EXPECT_EQ(200, res->status);
  2790. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2791. EXPECT_EQ("Hello World!", res->body);
  2792. res = cli_.Get("/not-exist");
  2793. ASSERT_TRUE(res);
  2794. EXPECT_EQ(404, res->status);
  2795. res = cli_.Post("/empty", "", "text/plain");
  2796. ASSERT_TRUE(res);
  2797. EXPECT_EQ(200, res->status);
  2798. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2799. EXPECT_EQ("empty", res->body);
  2800. EXPECT_EQ("close", res->get_header_value("Connection"));
  2801. res = cli_.Post(
  2802. "/empty", 0, [&](size_t, size_t, DataSink &) { return true; },
  2803. "text/plain");
  2804. ASSERT_TRUE(res);
  2805. EXPECT_EQ(200, res->status);
  2806. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2807. EXPECT_EQ("empty", res->body);
  2808. cli_.set_keep_alive(false);
  2809. res = cli_.Get("/last-request");
  2810. ASSERT_TRUE(res);
  2811. EXPECT_EQ(200, res->status);
  2812. EXPECT_EQ("close", res->get_header_value("Connection"));
  2813. }
  2814. TEST_F(ServerTest, TooManyRedirect) {
  2815. cli_.set_follow_location(true);
  2816. auto res = cli_.Get("/redirect/0");
  2817. ASSERT_TRUE(!res);
  2818. EXPECT_EQ(Error::ExceedRedirectCount, res.error());
  2819. }
  2820. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  2821. TEST_F(ServerTest, Gzip) {
  2822. Headers headers;
  2823. headers.emplace("Accept-Encoding", "gzip, deflate");
  2824. auto res = cli_.Get("/compress", headers);
  2825. ASSERT_TRUE(res);
  2826. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  2827. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2828. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  2829. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2830. "7890123456789012345678901234567890",
  2831. res->body);
  2832. EXPECT_EQ(200, res->status);
  2833. }
  2834. TEST_F(ServerTest, GzipWithoutAcceptEncoding) {
  2835. auto res = cli_.Get("/compress");
  2836. ASSERT_TRUE(res);
  2837. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  2838. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2839. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2840. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2841. "7890123456789012345678901234567890",
  2842. res->body);
  2843. EXPECT_EQ(200, res->status);
  2844. }
  2845. TEST_F(ServerTest, GzipWithContentReceiver) {
  2846. Headers headers;
  2847. headers.emplace("Accept-Encoding", "gzip, deflate");
  2848. std::string body;
  2849. auto res = cli_.Get("/compress", headers,
  2850. [&](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_EQ("gzip", res->get_header_value("Content-Encoding"));
  2857. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2858. EXPECT_EQ("33", 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, GzipWithoutDecompressing) {
  2865. Headers headers;
  2866. headers.emplace("Accept-Encoding", "gzip, deflate");
  2867. cli_.set_decompress(false);
  2868. auto res = cli_.Get("/compress", headers);
  2869. ASSERT_TRUE(res);
  2870. EXPECT_EQ("gzip", res->get_header_value("Content-Encoding"));
  2871. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2872. EXPECT_EQ("33", res->get_header_value("Content-Length"));
  2873. EXPECT_EQ(33U, res->body.size());
  2874. EXPECT_EQ(200, res->status);
  2875. }
  2876. TEST_F(ServerTest, GzipWithContentReceiverWithoutAcceptEncoding) {
  2877. std::string body;
  2878. auto res = cli_.Get("/compress", [&](const char *data, uint64_t data_length) {
  2879. EXPECT_EQ(100U, data_length);
  2880. body.append(data, data_length);
  2881. return true;
  2882. });
  2883. ASSERT_TRUE(res);
  2884. EXPECT_TRUE(res->get_header_value("Content-Encoding").empty());
  2885. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2886. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2887. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2888. "7890123456789012345678901234567890",
  2889. body);
  2890. EXPECT_EQ(200, res->status);
  2891. }
  2892. TEST_F(ServerTest, NoGzip) {
  2893. Headers headers;
  2894. headers.emplace("Accept-Encoding", "gzip, deflate");
  2895. auto res = cli_.Get("/nocompress", headers);
  2896. ASSERT_TRUE(res);
  2897. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  2898. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  2899. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2900. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2901. "7890123456789012345678901234567890",
  2902. res->body);
  2903. EXPECT_EQ(200, res->status);
  2904. }
  2905. TEST_F(ServerTest, NoGzipWithContentReceiver) {
  2906. Headers headers;
  2907. headers.emplace("Accept-Encoding", "gzip, deflate");
  2908. std::string body;
  2909. auto res = cli_.Get("/nocompress", headers,
  2910. [&](const char *data, uint64_t data_length) {
  2911. EXPECT_EQ(100U, data_length);
  2912. body.append(data, data_length);
  2913. return true;
  2914. });
  2915. ASSERT_TRUE(res);
  2916. EXPECT_EQ(false, res->has_header("Content-Encoding"));
  2917. EXPECT_EQ("application/octet-stream", res->get_header_value("Content-Type"));
  2918. EXPECT_EQ("100", res->get_header_value("Content-Length"));
  2919. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2920. "7890123456789012345678901234567890",
  2921. body);
  2922. EXPECT_EQ(200, res->status);
  2923. }
  2924. TEST_F(ServerTest, MultipartFormDataGzip) {
  2925. MultipartFormDataItems items = {
  2926. {"key1", "test", "", ""},
  2927. {"key2", "--abcdefg123", "", ""},
  2928. };
  2929. cli_.set_compress(true);
  2930. auto res = cli_.Post("/compress-multipart", items);
  2931. ASSERT_TRUE(res);
  2932. EXPECT_EQ(200, res->status);
  2933. }
  2934. #endif
  2935. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  2936. TEST_F(ServerTest, Brotli) {
  2937. Headers headers;
  2938. headers.emplace("Accept-Encoding", "br");
  2939. auto res = cli_.Get("/compress", headers);
  2940. ASSERT_TRUE(res);
  2941. EXPECT_EQ("br", res->get_header_value("Content-Encoding"));
  2942. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  2943. EXPECT_EQ("19", res->get_header_value("Content-Length"));
  2944. EXPECT_EQ("123456789012345678901234567890123456789012345678901234567890123456"
  2945. "7890123456789012345678901234567890",
  2946. res->body);
  2947. EXPECT_EQ(200, res->status);
  2948. }
  2949. #endif
  2950. // Sends a raw request to a server listening at HOST:PORT.
  2951. static bool send_request(time_t read_timeout_sec, const std::string &req,
  2952. std::string *resp = nullptr) {
  2953. auto error = Error::Success;
  2954. auto client_sock = detail::create_client_socket(
  2955. HOST, "", PORT, AF_UNSPEC, false, nullptr,
  2956. /*connection_timeout_sec=*/5, 0,
  2957. /*read_timeout_sec=*/5, 0,
  2958. /*write_timeout_sec=*/5, 0, std::string(), error);
  2959. if (client_sock == INVALID_SOCKET) { return false; }
  2960. auto ret = detail::process_client_socket(
  2961. client_sock, read_timeout_sec, 0, 0, 0, [&](Stream &strm) {
  2962. if (req.size() !=
  2963. static_cast<size_t>(strm.write(req.data(), req.size()))) {
  2964. return false;
  2965. }
  2966. char buf[512];
  2967. detail::stream_line_reader line_reader(strm, buf, sizeof(buf));
  2968. while (line_reader.getline()) {
  2969. if (resp) { *resp += line_reader.ptr(); }
  2970. }
  2971. return true;
  2972. });
  2973. detail::close_socket(client_sock);
  2974. return ret;
  2975. }
  2976. TEST(ServerRequestParsingTest, TrimWhitespaceFromHeaderValues) {
  2977. Server svr;
  2978. std::string header_value;
  2979. svr.Get("/validate-ws-in-headers", [&](const Request &req, Response &res) {
  2980. header_value = req.get_header_value("foo");
  2981. res.set_content("ok", "text/plain");
  2982. });
  2983. thread t = thread([&] { svr.listen(HOST, PORT); });
  2984. while (!svr.is_running()) {
  2985. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  2986. }
  2987. // Only space and horizontal tab are whitespace. Make sure other whitespace-
  2988. // like characters are not treated the same - use vertical tab and escape.
  2989. const std::string req = "GET /validate-ws-in-headers HTTP/1.1\r\n"
  2990. "foo: \t \v bar \x1B\t \r\n"
  2991. "Connection: close\r\n"
  2992. "\r\n";
  2993. ASSERT_TRUE(send_request(5, req));
  2994. svr.stop();
  2995. t.join();
  2996. EXPECT_EQ(header_value, "\v bar \x1B");
  2997. }
  2998. // Sends a raw request and verifies that there isn't a crash or exception.
  2999. static void test_raw_request(const std::string &req,
  3000. std::string *out = nullptr) {
  3001. Server svr;
  3002. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  3003. res.set_content("ok", "text/plain");
  3004. });
  3005. svr.Put("/put_hi", [&](const Request & /*req*/, Response &res) {
  3006. res.set_content("ok", "text/plain");
  3007. });
  3008. // Server read timeout must be longer than the client read timeout for the
  3009. // bug to reproduce, probably to force the server to process a request
  3010. // without a trailing blank line.
  3011. const time_t client_read_timeout_sec = 1;
  3012. svr.set_read_timeout(std::chrono::seconds(client_read_timeout_sec + 1));
  3013. bool listen_thread_ok = false;
  3014. thread t = thread([&] { listen_thread_ok = svr.listen(HOST, PORT); });
  3015. while (!svr.is_running()) {
  3016. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3017. }
  3018. ASSERT_TRUE(send_request(client_read_timeout_sec, req, out));
  3019. svr.stop();
  3020. t.join();
  3021. EXPECT_TRUE(listen_thread_ok);
  3022. }
  3023. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity) {
  3024. // A certain header line causes an exception if the header property is parsed
  3025. // naively with a single regex. This occurs with libc++ but not libstdc++.
  3026. test_raw_request(
  3027. "GET /hi HTTP/1.1\r\n"
  3028. " : "
  3029. " "
  3030. " ");
  3031. }
  3032. TEST(ServerRequestParsingTest, ReadHeadersRegexComplexity2) {
  3033. // A certain header line causes an exception if the header property *name* is
  3034. // parsed with a regular expression starting with "(.+?):" - this is a non-
  3035. // greedy matcher and requires backtracking when there are a lot of ":"
  3036. // characters.
  3037. // This occurs with libc++ but not libstdc++.
  3038. test_raw_request(
  3039. "GET /hi HTTP/1.1\r\n"
  3040. ":-:::::::::::::::::::::::::::-::::::::::::::::::::::::@-&&&&&&&&&&&"
  3041. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  3042. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-:::::"
  3043. "::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::::::::::::::::::::"
  3044. ":::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::"
  3045. "::::::::-:::::::::::::::::@-&&&&&&&--:::::::-::::::::::::::::::::::"
  3046. ":::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::"
  3047. "::::::::::-:::::::::::::::::@-&&&&&::::::::::::-:::::::::::::::::@-"
  3048. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  3049. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  3050. "::::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::@-&&"
  3051. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  3052. "::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&"
  3053. "--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&"
  3054. "&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&"
  3055. "&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@-&&"
  3056. "&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::::@"
  3057. "-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::::"
  3058. "::@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::"
  3059. ":::::@-&&&&&&&&&&&::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-::::::"
  3060. ":::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-:::"
  3061. "::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&--:::::::-"
  3062. ":::::::::::::::::::::::::::::-:::::::::::::::::@-&&&&&&&&&&&---&&:&"
  3063. "&&.0------------:-:::::::::::::::::::::::::::::-:::::::::::::::::@-"
  3064. "&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-::::::::::::::::"
  3065. ":@-&&&&&&&&&&&--:::::::-:::::::::::::::::::::::::::::-:::::::::::::"
  3066. "::::@-&&&&&&&&&&&---&&:&&&.0------------O--------\rH PUTHTTP/1.1\r\n"
  3067. "&&&%%%");
  3068. }
  3069. TEST(ServerRequestParsingTest, ExcessiveWhitespaceInUnparseableHeaderLine) {
  3070. // Make sure this doesn't crash the server.
  3071. // In a previous version of the header line regex, the "\r" rendered the line
  3072. // unparseable and the regex engine repeatedly backtracked, trying to look for
  3073. // a new position where the leading white space ended and the field value
  3074. // began.
  3075. // The crash occurs with libc++ but not libstdc++.
  3076. test_raw_request("GET /hi HTTP/1.1\r\n"
  3077. "a:" +
  3078. std::string(2000, ' ') + '\r' + std::string(20, 'z') +
  3079. "\r\n"
  3080. "\r\n");
  3081. }
  3082. TEST(ServerRequestParsingTest, InvalidFirstChunkLengthInRequest) {
  3083. std::string out;
  3084. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3085. "Content-Type: text/plain\r\n"
  3086. "Transfer-Encoding: chunked\r\n"
  3087. "\r\n"
  3088. "nothex\r\n",
  3089. &out);
  3090. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3091. }
  3092. TEST(ServerRequestParsingTest, InvalidSecondChunkLengthInRequest) {
  3093. std::string out;
  3094. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3095. "Content-Type: text/plain\r\n"
  3096. "Transfer-Encoding: chunked\r\n"
  3097. "\r\n"
  3098. "3\r\n"
  3099. "xyz\r\n"
  3100. "NaN\r\n",
  3101. &out);
  3102. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3103. }
  3104. TEST(ServerRequestParsingTest, ChunkLengthTooHighInRequest) {
  3105. std::string out;
  3106. test_raw_request("PUT /put_hi HTTP/1.1\r\n"
  3107. "Content-Type: text/plain\r\n"
  3108. "Transfer-Encoding: chunked\r\n"
  3109. "\r\n"
  3110. // Length is too large for 64 bits.
  3111. "1ffffffffffffffff\r\n"
  3112. "xyz\r\n",
  3113. &out);
  3114. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3115. }
  3116. TEST(ServerRequestParsingTest, InvalidHeaderTextWithExtraCR) {
  3117. test_raw_request("GET /hi HTTP/1.1\r\n"
  3118. "Content-Type: text/plain\r\n\r");
  3119. }
  3120. TEST(ServerRequestParsingTest, InvalidSpaceInURL) {
  3121. std::string out;
  3122. test_raw_request("GET /h i HTTP/1.1\r\n\r\n", &out);
  3123. EXPECT_EQ("HTTP/1.1 400 Bad Request", out.substr(0, 24));
  3124. }
  3125. TEST(ServerStopTest, StopServerWithChunkedTransmission) {
  3126. Server svr;
  3127. svr.Get("/events", [](const Request & /*req*/, Response &res) {
  3128. res.set_header("Cache-Control", "no-cache");
  3129. res.set_chunked_content_provider("text/event-stream", [](size_t offset,
  3130. DataSink &sink) {
  3131. char buffer[27];
  3132. auto size = static_cast<size_t>(sprintf(buffer, "data:%zd\n\n", offset));
  3133. auto ret = sink.write(buffer, size);
  3134. EXPECT_TRUE(ret);
  3135. std::this_thread::sleep_for(std::chrono::seconds(1));
  3136. return true;
  3137. });
  3138. });
  3139. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3140. while (!svr.is_running()) {
  3141. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3142. }
  3143. Client client(HOST, PORT);
  3144. const Headers headers = {{"Accept", "text/event-stream"}};
  3145. auto get_thread = std::thread([&client, &headers]() {
  3146. auto res = client.Get(
  3147. "/events", headers,
  3148. [](const char * /*data*/, size_t /*len*/) -> bool { return true; });
  3149. });
  3150. // Give GET time to get a few messages.
  3151. std::this_thread::sleep_for(std::chrono::seconds(2));
  3152. svr.stop();
  3153. listen_thread.join();
  3154. get_thread.join();
  3155. ASSERT_FALSE(svr.is_running());
  3156. }
  3157. TEST(StreamingTest, NoContentLengthStreaming) {
  3158. Server svr;
  3159. svr.Get("/stream", [](const Request & /*req*/, Response &res) {
  3160. res.set_content_provider("text/plain", [](size_t offset, DataSink &sink) {
  3161. if (offset < 6) {
  3162. sink.os << (offset < 3 ? "a" : "b");
  3163. } else {
  3164. sink.done();
  3165. }
  3166. return true;
  3167. });
  3168. });
  3169. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3170. while (!svr.is_running()) {
  3171. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3172. }
  3173. Client client(HOST, PORT);
  3174. auto get_thread = std::thread([&client]() {
  3175. std::string s;
  3176. auto res =
  3177. client.Get("/stream", [&s](const char *data, size_t len) -> bool {
  3178. s += std::string(data, len);
  3179. return true;
  3180. });
  3181. EXPECT_EQ("aaabbb", s);
  3182. });
  3183. // Give GET time to get a few messages.
  3184. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  3185. svr.stop();
  3186. listen_thread.join();
  3187. get_thread.join();
  3188. ASSERT_FALSE(svr.is_running());
  3189. }
  3190. TEST(MountTest, Unmount) {
  3191. Server svr;
  3192. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3193. while (!svr.is_running()) {
  3194. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3195. }
  3196. // Give GET time to get a few messages.
  3197. std::this_thread::sleep_for(std::chrono::seconds(1));
  3198. Client cli("localhost", PORT);
  3199. svr.set_mount_point("/mount2", "./www2");
  3200. auto res = cli.Get("/");
  3201. ASSERT_TRUE(res);
  3202. EXPECT_EQ(404, res->status);
  3203. res = cli.Get("/mount2/dir/test.html");
  3204. ASSERT_TRUE(res);
  3205. EXPECT_EQ(200, res->status);
  3206. svr.set_mount_point("/", "./www");
  3207. res = cli.Get("/dir/");
  3208. ASSERT_TRUE(res);
  3209. EXPECT_EQ(200, res->status);
  3210. svr.remove_mount_point("/");
  3211. res = cli.Get("/dir/");
  3212. ASSERT_TRUE(res);
  3213. EXPECT_EQ(404, res->status);
  3214. svr.remove_mount_point("/mount2");
  3215. res = cli.Get("/mount2/dir/test.html");
  3216. ASSERT_TRUE(res);
  3217. EXPECT_EQ(404, res->status);
  3218. svr.stop();
  3219. listen_thread.join();
  3220. ASSERT_FALSE(svr.is_running());
  3221. }
  3222. #ifndef CPPHTTPLIB_NO_EXCEPTIONS
  3223. TEST(ExceptionTest, ThrowExceptionInHandler) {
  3224. Server svr;
  3225. svr.Get("/hi", [&](const Request & /*req*/, Response & /*res*/) {
  3226. throw std::runtime_error("exception...");
  3227. // res.set_content("Hello World!", "text/plain");
  3228. });
  3229. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3230. while (!svr.is_running()) {
  3231. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3232. }
  3233. // Give GET time to get a few messages.
  3234. std::this_thread::sleep_for(std::chrono::seconds(1));
  3235. Client cli("localhost", PORT);
  3236. auto res = cli.Get("/hi");
  3237. ASSERT_TRUE(res);
  3238. EXPECT_EQ(500, res->status);
  3239. ASSERT_TRUE(res->has_header("EXCEPTION_WHAT"));
  3240. EXPECT_EQ("exception...", res->get_header_value("EXCEPTION_WHAT"));
  3241. svr.stop();
  3242. listen_thread.join();
  3243. ASSERT_FALSE(svr.is_running());
  3244. }
  3245. #endif
  3246. TEST(KeepAliveTest, ReadTimeout) {
  3247. Server svr;
  3248. svr.Get("/a", [&](const Request & /*req*/, Response &res) {
  3249. std::this_thread::sleep_for(std::chrono::seconds(2));
  3250. res.set_content("a", "text/plain");
  3251. });
  3252. svr.Get("/b", [&](const Request & /*req*/, Response &res) {
  3253. res.set_content("b", "text/plain");
  3254. });
  3255. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3256. while (!svr.is_running()) {
  3257. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3258. }
  3259. // Give GET time to get a few messages.
  3260. std::this_thread::sleep_for(std::chrono::seconds(1));
  3261. Client cli("localhost", PORT);
  3262. cli.set_keep_alive(true);
  3263. cli.set_read_timeout(std::chrono::seconds(1));
  3264. auto resa = cli.Get("/a");
  3265. ASSERT_TRUE(!resa);
  3266. EXPECT_EQ(Error::Read, resa.error());
  3267. auto resb = cli.Get("/b");
  3268. ASSERT_TRUE(resb);
  3269. EXPECT_EQ(200, resb->status);
  3270. EXPECT_EQ("b", resb->body);
  3271. svr.stop();
  3272. listen_thread.join();
  3273. ASSERT_FALSE(svr.is_running());
  3274. }
  3275. TEST(KeepAliveTest, Issue1041) {
  3276. const auto resourcePath = "/hi";
  3277. Server svr;
  3278. svr.set_keep_alive_timeout(3);
  3279. svr.Get(resourcePath, [](const httplib::Request &, httplib::Response &res) {
  3280. res.set_content("Hello World!", "text/plain");
  3281. });
  3282. auto a2 = std::async(std::launch::async, [&svr] { svr.listen(HOST, PORT); });
  3283. std::this_thread::sleep_for(std::chrono::milliseconds(200));
  3284. Client cli(HOST, PORT);
  3285. cli.set_keep_alive(true);
  3286. auto result = cli.Get(resourcePath);
  3287. ASSERT_TRUE(result);
  3288. EXPECT_EQ(200, result->status);
  3289. std::this_thread::sleep_for(std::chrono::seconds(5));
  3290. result = cli.Get(resourcePath);
  3291. ASSERT_TRUE(result);
  3292. EXPECT_EQ(200, result->status);
  3293. svr.stop();
  3294. a2.wait();
  3295. }
  3296. TEST(ClientProblemDetectionTest, ContentProvider) {
  3297. Server svr;
  3298. size_t content_length = 1024 * 1024;
  3299. svr.Get("/hi", [&](const Request & /*req*/, Response &res) {
  3300. res.set_content_provider(
  3301. content_length, "text/plain",
  3302. [&](size_t offset, size_t length, DataSink &sink) {
  3303. auto out_len = std::min(length, static_cast<size_t>(1024));
  3304. std::string out(out_len, '@');
  3305. sink.write(out.data(), out_len);
  3306. return offset < 4096;
  3307. },
  3308. [](bool success) { ASSERT_FALSE(success); });
  3309. });
  3310. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3311. while (!svr.is_running()) {
  3312. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3313. }
  3314. // Give GET time to get a few messages.
  3315. std::this_thread::sleep_for(std::chrono::seconds(1));
  3316. Client cli("localhost", PORT);
  3317. auto res = cli.Get("/hi", [&](const char * /*data*/, size_t /*data_length*/) {
  3318. return false;
  3319. });
  3320. ASSERT_FALSE(res);
  3321. svr.stop();
  3322. listen_thread.join();
  3323. ASSERT_FALSE(svr.is_running());
  3324. }
  3325. TEST(ErrorHandlerWithContentProviderTest, ErrorHandler) {
  3326. Server svr;
  3327. svr.set_error_handler([](Request const &, Response &res) -> void {
  3328. res.set_chunked_content_provider(
  3329. "text/plain", [](std::size_t const, DataSink &sink) -> bool {
  3330. sink.os << "hello";
  3331. sink.os << "world";
  3332. sink.done();
  3333. return true;
  3334. });
  3335. });
  3336. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3337. while (!svr.is_running()) {
  3338. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3339. }
  3340. // Give GET time to get a few messages.
  3341. std::this_thread::sleep_for(std::chrono::seconds(1));
  3342. Client cli("localhost", PORT);
  3343. auto res = cli.Get("/");
  3344. ASSERT_TRUE(res);
  3345. EXPECT_EQ(404, res->status);
  3346. EXPECT_EQ("helloworld", res->body);
  3347. svr.stop();
  3348. listen_thread.join();
  3349. ASSERT_FALSE(svr.is_running());
  3350. }
  3351. TEST(GetWithParametersTest, GetWithParameters) {
  3352. Server svr;
  3353. svr.Get("/", [&](const Request &req, Response &) {
  3354. EXPECT_EQ("world", req.get_param_value("hello"));
  3355. EXPECT_EQ("world2", req.get_param_value("hello2"));
  3356. EXPECT_EQ("world3", req.get_param_value("hello3"));
  3357. });
  3358. svr.Get("/params", [&](const Request &req, Response &) {
  3359. EXPECT_EQ("world", req.get_param_value("hello"));
  3360. EXPECT_EQ("world2", req.get_param_value("hello2"));
  3361. EXPECT_EQ("world3", req.get_param_value("hello3"));
  3362. });
  3363. svr.Get(R"(/resources/([a-z0-9\\-]+))", [&](const Request &req, Response &) {
  3364. EXPECT_EQ("resource-id", req.matches[1]);
  3365. EXPECT_EQ("foo", req.get_param_value("param1"));
  3366. EXPECT_EQ("bar", req.get_param_value("param2"));
  3367. });
  3368. auto listen_thread = std::thread([&svr]() { svr.listen(HOST, PORT); });
  3369. while (!svr.is_running()) {
  3370. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3371. }
  3372. std::this_thread::sleep_for(std::chrono::seconds(1));
  3373. {
  3374. Client cli(HOST, PORT);
  3375. Params params;
  3376. params.emplace("hello", "world");
  3377. params.emplace("hello2", "world2");
  3378. params.emplace("hello3", "world3");
  3379. auto res = cli.Get("/", params, Headers{});
  3380. ASSERT_TRUE(res);
  3381. EXPECT_EQ(200, res->status);
  3382. }
  3383. {
  3384. Client cli(HOST, PORT);
  3385. auto res = cli.Get("/params?hello=world&hello2=world2&hello3=world3");
  3386. ASSERT_TRUE(res);
  3387. EXPECT_EQ(200, res->status);
  3388. }
  3389. {
  3390. Client cli(HOST, PORT);
  3391. auto res = cli.Get("/resources/resource-id?param1=foo&param2=bar");
  3392. ASSERT_TRUE(res);
  3393. EXPECT_EQ(200, res->status);
  3394. }
  3395. svr.stop();
  3396. listen_thread.join();
  3397. ASSERT_FALSE(svr.is_running());
  3398. }
  3399. TEST(GetWithParametersTest, GetWithParameters2) {
  3400. Server svr;
  3401. svr.Get("/", [&](const Request &req, Response &res) {
  3402. auto text = req.get_param_value("hello");
  3403. res.set_content(text, "text/plain");
  3404. });
  3405. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3406. while (!svr.is_running()) {
  3407. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3408. }
  3409. std::this_thread::sleep_for(std::chrono::seconds(1));
  3410. Client cli("localhost", PORT);
  3411. Params params;
  3412. params.emplace("hello", "world");
  3413. std::string body;
  3414. auto res = cli.Get("/", params, Headers{},
  3415. [&](const char *data, size_t data_length) {
  3416. body.append(data, data_length);
  3417. return true;
  3418. });
  3419. ASSERT_TRUE(res);
  3420. EXPECT_EQ(200, res->status);
  3421. EXPECT_EQ("world", body);
  3422. svr.stop();
  3423. listen_thread.join();
  3424. ASSERT_FALSE(svr.is_running());
  3425. }
  3426. TEST(ClientDefaultHeadersTest, DefaultHeaders_Online) {
  3427. Client cli("httpbin.org");
  3428. cli.set_default_headers({make_range_header({{1, 10}})});
  3429. cli.set_connection_timeout(5);
  3430. {
  3431. auto res = cli.Get("/range/32");
  3432. ASSERT_TRUE(res);
  3433. EXPECT_EQ("bcdefghijk", res->body);
  3434. EXPECT_EQ(206, res->status);
  3435. }
  3436. {
  3437. auto res = cli.Get("/range/32");
  3438. ASSERT_TRUE(res);
  3439. EXPECT_EQ("bcdefghijk", res->body);
  3440. EXPECT_EQ(206, res->status);
  3441. }
  3442. }
  3443. TEST(ServerDefaultHeadersTest, DefaultHeaders) {
  3444. Server svr;
  3445. svr.set_default_headers({{"Hello", "World"}});
  3446. svr.Get("/", [&](const Request & /*req*/, Response &res) {
  3447. res.set_content("ok", "text/plain");
  3448. });
  3449. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3450. while (!svr.is_running()) {
  3451. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3452. }
  3453. std::this_thread::sleep_for(std::chrono::seconds(1));
  3454. Client cli("localhost", PORT);
  3455. auto res = cli.Get("/");
  3456. ASSERT_TRUE(res);
  3457. EXPECT_EQ(200, res->status);
  3458. EXPECT_EQ("ok", res->body);
  3459. EXPECT_EQ("World", res->get_header_value("Hello"));
  3460. svr.stop();
  3461. listen_thread.join();
  3462. ASSERT_FALSE(svr.is_running());
  3463. }
  3464. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3465. TEST(KeepAliveTest, ReadTimeoutSSL) {
  3466. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  3467. ASSERT_TRUE(svr.is_valid());
  3468. svr.Get("/a", [&](const Request & /*req*/, Response &res) {
  3469. std::this_thread::sleep_for(std::chrono::seconds(2));
  3470. res.set_content("a", "text/plain");
  3471. });
  3472. svr.Get("/b", [&](const Request & /*req*/, Response &res) {
  3473. res.set_content("b", "text/plain");
  3474. });
  3475. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3476. while (!svr.is_running()) {
  3477. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3478. }
  3479. // Give GET time to get a few messages.
  3480. std::this_thread::sleep_for(std::chrono::seconds(1));
  3481. SSLClient cli("localhost", PORT);
  3482. cli.enable_server_certificate_verification(false);
  3483. cli.set_keep_alive(true);
  3484. cli.set_read_timeout(std::chrono::seconds(1));
  3485. auto resa = cli.Get("/a");
  3486. ASSERT_TRUE(!resa);
  3487. EXPECT_EQ(Error::Read, resa.error());
  3488. auto resb = cli.Get("/b");
  3489. ASSERT_TRUE(resb);
  3490. EXPECT_EQ(200, resb->status);
  3491. EXPECT_EQ("b", resb->body);
  3492. svr.stop();
  3493. listen_thread.join();
  3494. ASSERT_FALSE(svr.is_running());
  3495. }
  3496. #endif
  3497. class ServerTestWithAI_PASSIVE : public ::testing::Test {
  3498. protected:
  3499. ServerTestWithAI_PASSIVE()
  3500. : cli_(HOST, PORT)
  3501. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3502. ,
  3503. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  3504. #endif
  3505. {
  3506. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3507. cli_.enable_server_certificate_verification(false);
  3508. #endif
  3509. }
  3510. virtual void SetUp() {
  3511. svr_.Get("/hi", [&](const Request & /*req*/, Response &res) {
  3512. res.set_content("Hello World!", "text/plain");
  3513. });
  3514. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(std::string(), PORT, AI_PASSIVE)); });
  3515. while (!svr_.is_running()) {
  3516. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3517. }
  3518. }
  3519. virtual void TearDown() {
  3520. svr_.stop();
  3521. t_.join();
  3522. }
  3523. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3524. SSLClient cli_;
  3525. SSLServer svr_;
  3526. #else
  3527. Client cli_;
  3528. Server svr_;
  3529. #endif
  3530. thread t_;
  3531. };
  3532. TEST_F(ServerTestWithAI_PASSIVE, GetMethod200) {
  3533. auto res = cli_.Get("/hi");
  3534. ASSERT_TRUE(res);
  3535. EXPECT_EQ(200, res->status);
  3536. EXPECT_EQ("text/plain", res->get_header_value("Content-Type"));
  3537. EXPECT_EQ("Hello World!", res->body);
  3538. }
  3539. class ServerUpDownTest : public ::testing::Test {
  3540. protected:
  3541. ServerUpDownTest() : cli_(HOST, PORT) {}
  3542. virtual void SetUp() {
  3543. t_ = thread([&]() {
  3544. svr_.bind_to_any_port(HOST);
  3545. std::this_thread::sleep_for(std::chrono::milliseconds(500));
  3546. ASSERT_TRUE(svr_.listen_after_bind());
  3547. });
  3548. while (!svr_.is_running()) {
  3549. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3550. }
  3551. }
  3552. virtual void TearDown() {
  3553. svr_.stop();
  3554. t_.join();
  3555. }
  3556. Client cli_;
  3557. Server svr_;
  3558. thread t_;
  3559. };
  3560. TEST_F(ServerUpDownTest, QuickStartStop) {
  3561. // Should not crash, especially when run with
  3562. // --gtest_filter=ServerUpDownTest.QuickStartStop --gtest_repeat=1000
  3563. }
  3564. class PayloadMaxLengthTest : public ::testing::Test {
  3565. protected:
  3566. PayloadMaxLengthTest()
  3567. : cli_(HOST, PORT)
  3568. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3569. ,
  3570. svr_(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE)
  3571. #endif
  3572. {
  3573. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3574. cli_.enable_server_certificate_verification(false);
  3575. #endif
  3576. }
  3577. virtual void SetUp() {
  3578. svr_.set_payload_max_length(8);
  3579. svr_.Post("/test", [&](const Request & /*req*/, Response &res) {
  3580. res.set_content("test", "text/plain");
  3581. });
  3582. t_ = thread([&]() { ASSERT_TRUE(svr_.listen(HOST, PORT)); });
  3583. while (!svr_.is_running()) {
  3584. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3585. }
  3586. }
  3587. virtual void TearDown() {
  3588. svr_.stop();
  3589. t_.join();
  3590. }
  3591. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3592. SSLClient cli_;
  3593. SSLServer svr_;
  3594. #else
  3595. Client cli_;
  3596. Server svr_;
  3597. #endif
  3598. thread t_;
  3599. };
  3600. TEST_F(PayloadMaxLengthTest, ExceedLimit) {
  3601. auto res = cli_.Post("/test", "123456789", "text/plain");
  3602. ASSERT_TRUE(res);
  3603. EXPECT_EQ(413, res->status);
  3604. res = cli_.Post("/test", "12345678", "text/plain");
  3605. ASSERT_TRUE(res);
  3606. EXPECT_EQ(200, res->status);
  3607. }
  3608. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3609. TEST(SSLClientTest, UpdateCAStore) {
  3610. httplib::SSLClient httplib_client("www.google.com");
  3611. auto ca_store_1 = X509_STORE_new();
  3612. X509_STORE_load_locations(ca_store_1, "/etc/ssl/certs/ca-certificates.crt",
  3613. nullptr);
  3614. httplib_client.set_ca_cert_store(ca_store_1);
  3615. auto ca_store_2 = X509_STORE_new();
  3616. X509_STORE_load_locations(ca_store_2, "/etc/ssl/certs/ca-certificates.crt",
  3617. nullptr);
  3618. httplib_client.set_ca_cert_store(ca_store_2);
  3619. }
  3620. TEST(SSLClientTest, ServerNameIndication_Online) {
  3621. SSLClient cli("httpbin.org", 443);
  3622. auto res = cli.Get("/get");
  3623. ASSERT_TRUE(res);
  3624. ASSERT_EQ(200, res->status);
  3625. }
  3626. TEST(SSLClientTest, ServerCertificateVerification1_Online) {
  3627. SSLClient cli("google.com");
  3628. auto res = cli.Get("/");
  3629. ASSERT_TRUE(res);
  3630. ASSERT_EQ(301, res->status);
  3631. }
  3632. TEST(SSLClientTest, ServerCertificateVerification2_Online) {
  3633. SSLClient cli("google.com");
  3634. cli.enable_server_certificate_verification(true);
  3635. cli.set_ca_cert_path("hello");
  3636. auto res = cli.Get("/");
  3637. ASSERT_TRUE(!res);
  3638. EXPECT_EQ(Error::SSLLoadingCerts, res.error());
  3639. }
  3640. TEST(SSLClientTest, ServerCertificateVerification3_Online) {
  3641. SSLClient cli("google.com");
  3642. cli.set_ca_cert_path(CA_CERT_FILE);
  3643. auto res = cli.Get("/");
  3644. ASSERT_TRUE(res);
  3645. ASSERT_EQ(301, res->status);
  3646. }
  3647. TEST(SSLClientTest, ServerCertificateVerification4) {
  3648. SSLServer svr(SERVER_CERT2_FILE, SERVER_PRIVATE_KEY_FILE);
  3649. ASSERT_TRUE(svr.is_valid());
  3650. svr.Get("/test", [&](const Request &, Response &res) {
  3651. res.set_content("test", "text/plain");
  3652. svr.stop();
  3653. ASSERT_TRUE(true);
  3654. });
  3655. thread t = thread([&]() { ASSERT_TRUE(svr.listen("127.0.0.1", PORT)); });
  3656. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3657. SSLClient cli("127.0.0.1", PORT);
  3658. cli.set_ca_cert_path(SERVER_CERT2_FILE);
  3659. cli.enable_server_certificate_verification(true);
  3660. cli.set_connection_timeout(30);
  3661. auto res = cli.Get("/test");
  3662. ASSERT_TRUE(res);
  3663. ASSERT_EQ(200, res->status);
  3664. t.join();
  3665. }
  3666. TEST(SSLClientTest, WildcardHostNameMatch_Online) {
  3667. SSLClient cli("www.youtube.com");
  3668. cli.set_ca_cert_path(CA_CERT_FILE);
  3669. cli.enable_server_certificate_verification(true);
  3670. cli.set_follow_location(true);
  3671. auto res = cli.Get("/");
  3672. ASSERT_TRUE(res);
  3673. ASSERT_EQ(200, res->status);
  3674. }
  3675. #if 0
  3676. TEST(SSLClientTest, SetInterfaceWithINET6) {
  3677. auto cli = std::make_shared<httplib::Client>("https://httpbin.org");
  3678. ASSERT_TRUE(cli != nullptr);
  3679. cli->set_address_family(AF_INET6);
  3680. cli->set_interface("en0");
  3681. auto res = cli->Get("/get");
  3682. ASSERT_TRUE(res);
  3683. ASSERT_EQ(200, res->status);
  3684. }
  3685. #endif
  3686. TEST(SSLClientServerTest, ClientCertPresent) {
  3687. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  3688. CLIENT_CA_CERT_DIR);
  3689. ASSERT_TRUE(svr.is_valid());
  3690. svr.Get("/test", [&](const Request &req, Response &res) {
  3691. res.set_content("test", "text/plain");
  3692. svr.stop();
  3693. ASSERT_TRUE(true);
  3694. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3695. ASSERT_TRUE(peer_cert != nullptr);
  3696. auto subject_name = X509_get_subject_name(peer_cert);
  3697. ASSERT_TRUE(subject_name != nullptr);
  3698. std::string common_name;
  3699. {
  3700. char name[BUFSIZ];
  3701. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3702. name, sizeof(name));
  3703. common_name.assign(name, static_cast<size_t>(name_len));
  3704. }
  3705. EXPECT_EQ("Common Name", common_name);
  3706. X509_free(peer_cert);
  3707. });
  3708. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3709. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3710. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3711. cli.enable_server_certificate_verification(false);
  3712. cli.set_connection_timeout(30);
  3713. auto res = cli.Get("/test");
  3714. ASSERT_TRUE(res);
  3715. ASSERT_EQ(200, res->status);
  3716. t.join();
  3717. }
  3718. #if !defined(_WIN32) || defined(OPENSSL_USE_APPLINK)
  3719. TEST(SSLClientServerTest, MemoryClientCertPresent) {
  3720. X509 *server_cert;
  3721. EVP_PKEY *server_private_key;
  3722. X509_STORE *client_ca_cert_store;
  3723. X509 *client_cert;
  3724. EVP_PKEY *client_private_key;
  3725. FILE *f = fopen(SERVER_CERT_FILE, "r+");
  3726. server_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3727. fclose(f);
  3728. f = fopen(SERVER_PRIVATE_KEY_FILE, "r+");
  3729. server_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  3730. fclose(f);
  3731. f = fopen(CLIENT_CA_CERT_FILE, "r+");
  3732. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3733. client_ca_cert_store = X509_STORE_new();
  3734. X509_STORE_add_cert(client_ca_cert_store, client_cert);
  3735. X509_free(client_cert);
  3736. fclose(f);
  3737. f = fopen(CLIENT_CERT_FILE, "r+");
  3738. client_cert = PEM_read_X509(f, nullptr, nullptr, nullptr);
  3739. fclose(f);
  3740. f = fopen(CLIENT_PRIVATE_KEY_FILE, "r+");
  3741. client_private_key = PEM_read_PrivateKey(f, nullptr, nullptr, nullptr);
  3742. fclose(f);
  3743. SSLServer svr(server_cert, server_private_key, client_ca_cert_store);
  3744. ASSERT_TRUE(svr.is_valid());
  3745. svr.Get("/test", [&](const Request &req, Response &res) {
  3746. res.set_content("test", "text/plain");
  3747. svr.stop();
  3748. ASSERT_TRUE(true);
  3749. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3750. ASSERT_TRUE(peer_cert != nullptr);
  3751. auto subject_name = X509_get_subject_name(peer_cert);
  3752. ASSERT_TRUE(subject_name != nullptr);
  3753. std::string common_name;
  3754. {
  3755. char name[BUFSIZ];
  3756. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3757. name, sizeof(name));
  3758. common_name.assign(name, static_cast<size_t>(name_len));
  3759. }
  3760. EXPECT_EQ("Common Name", common_name);
  3761. X509_free(peer_cert);
  3762. });
  3763. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3764. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3765. SSLClient cli(HOST, PORT, client_cert, client_private_key);
  3766. cli.enable_server_certificate_verification(false);
  3767. cli.set_connection_timeout(30);
  3768. auto res = cli.Get("/test");
  3769. ASSERT_TRUE(res);
  3770. ASSERT_EQ(200, res->status);
  3771. X509_free(server_cert);
  3772. EVP_PKEY_free(server_private_key);
  3773. X509_free(client_cert);
  3774. EVP_PKEY_free(client_private_key);
  3775. t.join();
  3776. }
  3777. #endif
  3778. TEST(SSLClientServerTest, ClientCertMissing) {
  3779. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE,
  3780. CLIENT_CA_CERT_DIR);
  3781. ASSERT_TRUE(svr.is_valid());
  3782. svr.Get("/test", [&](const Request &, Response &) { ASSERT_TRUE(false); });
  3783. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3784. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3785. SSLClient cli(HOST, PORT);
  3786. auto res = cli.Get("/test");
  3787. cli.set_connection_timeout(30);
  3788. ASSERT_TRUE(!res);
  3789. EXPECT_EQ(Error::SSLServerVerification, res.error());
  3790. svr.stop();
  3791. t.join();
  3792. }
  3793. TEST(SSLClientServerTest, TrustDirOptional) {
  3794. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE, CLIENT_CA_CERT_FILE);
  3795. ASSERT_TRUE(svr.is_valid());
  3796. svr.Get("/test", [&](const Request &, Response &res) {
  3797. res.set_content("test", "text/plain");
  3798. svr.stop();
  3799. });
  3800. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3801. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3802. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3803. cli.enable_server_certificate_verification(false);
  3804. cli.set_connection_timeout(30);
  3805. auto res = cli.Get("/test");
  3806. ASSERT_TRUE(res);
  3807. ASSERT_EQ(200, res->status);
  3808. t.join();
  3809. }
  3810. TEST(SSLClientServerTest, SSLConnectTimeout) {
  3811. class NoListenSSLServer : public SSLServer {
  3812. public:
  3813. NoListenSSLServer(const char *cert_path, const char *private_key_path,
  3814. const char *client_ca_cert_file_path,
  3815. const char *client_ca_cert_dir_path = nullptr)
  3816. : SSLServer(cert_path, private_key_path, client_ca_cert_file_path,
  3817. client_ca_cert_dir_path),
  3818. stop_(false) {}
  3819. bool stop_;
  3820. private:
  3821. bool process_and_close_socket(socket_t /*sock*/) override {
  3822. // Don't create SSL context
  3823. while (!stop_) {
  3824. std::this_thread::sleep_for(std::chrono::milliseconds(100));
  3825. }
  3826. return true;
  3827. }
  3828. };
  3829. NoListenSSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE,
  3830. CLIENT_CA_CERT_FILE);
  3831. ASSERT_TRUE(svr.is_valid());
  3832. svr.Get("/test", [&](const Request &, Response &res) {
  3833. res.set_content("test", "text/plain");
  3834. });
  3835. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3836. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3837. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3838. cli.enable_server_certificate_verification(false);
  3839. cli.set_connection_timeout(1);
  3840. auto res = cli.Get("/test");
  3841. ASSERT_TRUE(!res);
  3842. EXPECT_EQ(Error::SSLConnection, res.error());
  3843. svr.stop_ = true;
  3844. svr.stop();
  3845. t.join();
  3846. }
  3847. TEST(SSLClientServerTest, CustomizeServerSSLCtx) {
  3848. auto setup_ssl_ctx_callback = [](SSL_CTX &ssl_ctx) {
  3849. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_COMPRESSION);
  3850. SSL_CTX_set_options(&ssl_ctx,
  3851. SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
  3852. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_SSLv2);
  3853. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_SSLv3);
  3854. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_TLSv1);
  3855. SSL_CTX_set_options(&ssl_ctx, SSL_OP_NO_TLSv1_1);
  3856. auto ciphers = "ECDHE-RSA-AES128-SHA256:"
  3857. "ECDHE-DSS-AES128-SHA256:"
  3858. "ECDHE-RSA-AES256-SHA256:"
  3859. "ECDHE-DSS-AES256-SHA256:";
  3860. SSL_CTX_set_cipher_list(&ssl_ctx, ciphers);
  3861. if (SSL_CTX_use_certificate_chain_file(&ssl_ctx, SERVER_CERT_FILE) != 1 ||
  3862. SSL_CTX_use_PrivateKey_file(&ssl_ctx, SERVER_PRIVATE_KEY_FILE,
  3863. SSL_FILETYPE_PEM) != 1) {
  3864. return false;
  3865. }
  3866. SSL_CTX_load_verify_locations(&ssl_ctx, CLIENT_CA_CERT_FILE,
  3867. CLIENT_CA_CERT_DIR);
  3868. SSL_CTX_set_verify(
  3869. &ssl_ctx,
  3870. SSL_VERIFY_PEER |
  3871. SSL_VERIFY_FAIL_IF_NO_PEER_CERT, // SSL_VERIFY_CLIENT_ONCE,
  3872. nullptr);
  3873. return true;
  3874. };
  3875. SSLServer svr(setup_ssl_ctx_callback);
  3876. ASSERT_TRUE(svr.is_valid());
  3877. svr.Get("/test", [&](const Request &req, Response &res) {
  3878. res.set_content("test", "text/plain");
  3879. svr.stop();
  3880. ASSERT_TRUE(true);
  3881. auto peer_cert = SSL_get_peer_certificate(req.ssl);
  3882. ASSERT_TRUE(peer_cert != nullptr);
  3883. auto subject_name = X509_get_subject_name(peer_cert);
  3884. ASSERT_TRUE(subject_name != nullptr);
  3885. std::string common_name;
  3886. {
  3887. char name[BUFSIZ];
  3888. auto name_len = X509_NAME_get_text_by_NID(subject_name, NID_commonName,
  3889. name, sizeof(name));
  3890. common_name.assign(name, static_cast<size_t>(name_len));
  3891. }
  3892. EXPECT_EQ("Common Name", common_name);
  3893. X509_free(peer_cert);
  3894. });
  3895. thread t = thread([&]() { ASSERT_TRUE(svr.listen(HOST, PORT)); });
  3896. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3897. SSLClient cli(HOST, PORT, CLIENT_CERT_FILE, CLIENT_PRIVATE_KEY_FILE);
  3898. cli.enable_server_certificate_verification(false);
  3899. cli.set_connection_timeout(30);
  3900. auto res = cli.Get("/test");
  3901. ASSERT_TRUE(res);
  3902. ASSERT_EQ(200, res->status);
  3903. t.join();
  3904. }
  3905. // Disabled due to the out-of-memory problem on GitHub Actions Workflows
  3906. TEST(SSLClientServerTest, DISABLED_LargeDataTransfer) {
  3907. // prepare large data
  3908. std::random_device seed_gen;
  3909. std::mt19937 random(seed_gen());
  3910. constexpr auto large_size_byte = 2147483648UL + 1048576UL; // 2GiB + 1MiB
  3911. std::vector<std::uint32_t> binary(large_size_byte / sizeof(std::uint32_t));
  3912. std::generate(binary.begin(), binary.end(), [&random]() { return random(); });
  3913. // server
  3914. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  3915. ASSERT_TRUE(svr.is_valid());
  3916. svr.Post("/binary", [&](const Request &req, Response &res) {
  3917. EXPECT_EQ(large_size_byte, req.body.size());
  3918. EXPECT_EQ(0, std::memcmp(binary.data(), req.body.data(), large_size_byte));
  3919. res.set_content(req.body, "application/octet-stream");
  3920. });
  3921. auto listen_thread = std::thread([&svr]() { svr.listen("localhost", PORT); });
  3922. while (!svr.is_running()) {
  3923. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  3924. }
  3925. // client POST
  3926. SSLClient cli("localhost", PORT);
  3927. cli.enable_server_certificate_verification(false);
  3928. cli.set_read_timeout(std::chrono::seconds(100));
  3929. cli.set_write_timeout(std::chrono::seconds(100));
  3930. auto res = cli.Post("/binary", reinterpret_cast<char *>(binary.data()),
  3931. large_size_byte, "application/octet-stream");
  3932. // compare
  3933. EXPECT_EQ(200, res->status);
  3934. EXPECT_EQ(large_size_byte, res->body.size());
  3935. EXPECT_EQ(0, std::memcmp(binary.data(), res->body.data(), large_size_byte));
  3936. // cleanup
  3937. svr.stop();
  3938. listen_thread.join();
  3939. ASSERT_FALSE(svr.is_running());
  3940. }
  3941. #endif
  3942. #ifdef _WIN32
  3943. TEST(CleanupTest, WSACleanup) {
  3944. int ret = WSACleanup();
  3945. ASSERT_EQ(0, ret);
  3946. }
  3947. #endif
  3948. #ifndef CPPHTTPLIB_OPENSSL_SUPPORT
  3949. TEST(NoSSLSupport, SimpleInterface) {
  3950. ASSERT_ANY_THROW(Client cli("https://yahoo.com"));
  3951. }
  3952. #endif
  3953. #ifndef CPPHTTPLIB_NO_EXCEPTIONS
  3954. TEST(InvalidScheme, SimpleInterface) {
  3955. ASSERT_ANY_THROW(Client cli("scheme://yahoo.com"));
  3956. }
  3957. #endif
  3958. TEST(NoScheme, SimpleInterface) {
  3959. Client cli("yahoo.com:80");
  3960. ASSERT_TRUE(cli.is_valid());
  3961. }
  3962. TEST(SendAPI, SimpleInterface_Online) {
  3963. Client cli("http://yahoo.com");
  3964. Request req;
  3965. req.method = "GET";
  3966. req.path = "/";
  3967. auto res = cli.send(req);
  3968. ASSERT_TRUE(res);
  3969. EXPECT_EQ(301, res->status);
  3970. }
  3971. TEST(ClientImplMethods, GetSocketTest) {
  3972. httplib::Server svr;
  3973. svr.Get( "/", [&](const httplib::Request& /*req*/, httplib::Response& res) {
  3974. res.status = 200;
  3975. });
  3976. auto thread = std::thread([&]() { svr.listen("127.0.0.1", 3333); });
  3977. while (!svr.is_running()) {
  3978. std::this_thread::sleep_for(std::chrono::milliseconds(5));
  3979. }
  3980. {
  3981. httplib::Client cli("http://127.0.0.1:3333");
  3982. cli.set_keep_alive(true);
  3983. // Use the behavior of cpp-httplib of opening the connection
  3984. // only when the first request happens. If that changes,
  3985. // this test would be obsolete.
  3986. EXPECT_EQ(cli.socket(), INVALID_SOCKET);
  3987. // This also implicitly tests the server. But other tests would fail much
  3988. // earlier than this one to be considered.
  3989. auto res = cli.Get("/");
  3990. ASSERT_TRUE(res);
  3991. EXPECT_EQ(200, res->status);
  3992. ASSERT_TRUE(cli.socket() != INVALID_SOCKET);
  3993. }
  3994. svr.stop();
  3995. thread.join();
  3996. ASSERT_FALSE(svr.is_running());
  3997. }
  3998. // Disabled due to out-of-memory problem on GitHub Actions
  3999. #ifdef _WIN64
  4000. TEST(ServerLargeContentTest, DISABLED_SendLargeContent) {
  4001. // allocate content size larger than 2GB in memory
  4002. const size_t content_size = 2LL * 1024LL * 1024LL * 1024LL + 1LL;
  4003. char *content = (char *)malloc(content_size);
  4004. ASSERT_TRUE(content);
  4005. Server svr;
  4006. svr.Get("/foo", [=](const httplib::Request &req, httplib::Response &resp) {
  4007. resp.set_content(content, content_size, "application/octet-stream");
  4008. });
  4009. auto listen_thread = std::thread([&svr]() { svr.listen(HOST, PORT); });
  4010. while (!svr.is_running()) {
  4011. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4012. }
  4013. // Give GET time to get a few messages.
  4014. std::this_thread::sleep_for(std::chrono::seconds(1));
  4015. Client cli(HOST, PORT);
  4016. auto res = cli.Get("/foo");
  4017. ASSERT_TRUE(res);
  4018. EXPECT_EQ(200, res->status);
  4019. EXPECT_EQ(content_size, res->body.length());
  4020. free(content);
  4021. svr.stop();
  4022. listen_thread.join();
  4023. ASSERT_FALSE(svr.is_running());
  4024. }
  4025. #endif
  4026. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  4027. TEST(YahooRedirectTest2, SimpleInterface_Online) {
  4028. Client cli("http://yahoo.com");
  4029. auto res = cli.Get("/");
  4030. ASSERT_TRUE(res);
  4031. EXPECT_EQ(301, res->status);
  4032. cli.set_follow_location(true);
  4033. res = cli.Get("/");
  4034. ASSERT_TRUE(res);
  4035. EXPECT_EQ(200, res->status);
  4036. EXPECT_EQ("https://yahoo.com/", res->location);
  4037. }
  4038. TEST(YahooRedirectTest3, SimpleInterface_Online) {
  4039. Client cli("https://yahoo.com");
  4040. auto res = cli.Get("/");
  4041. ASSERT_TRUE(res);
  4042. EXPECT_EQ(301, res->status);
  4043. cli.set_follow_location(true);
  4044. res = cli.Get("/");
  4045. ASSERT_TRUE(res);
  4046. EXPECT_EQ(200, res->status);
  4047. EXPECT_EQ("https://www.yahoo.com/", res->location);
  4048. }
  4049. TEST(YahooRedirectTest3, NewResultInterface_Online) {
  4050. Client cli("https://yahoo.com");
  4051. auto res = cli.Get("/");
  4052. ASSERT_TRUE(res);
  4053. ASSERT_FALSE(!res);
  4054. ASSERT_TRUE(res);
  4055. ASSERT_FALSE(res == nullptr);
  4056. ASSERT_TRUE(res != nullptr);
  4057. EXPECT_EQ(Error::Success, res.error());
  4058. EXPECT_EQ(301, res.value().status);
  4059. EXPECT_EQ(301, (*res).status);
  4060. EXPECT_EQ(301, res->status);
  4061. cli.set_follow_location(true);
  4062. res = cli.Get("/");
  4063. ASSERT_TRUE(res);
  4064. EXPECT_EQ(Error::Success, res.error());
  4065. EXPECT_EQ(200, res.value().status);
  4066. EXPECT_EQ(200, (*res).status);
  4067. EXPECT_EQ(200, res->status);
  4068. EXPECT_EQ("https://www.yahoo.com/", res->location);
  4069. }
  4070. #ifdef CPPHTTPLIB_BROTLI_SUPPORT
  4071. TEST(DecodeWithChunkedEncoding, BrotliEncoding_Online) {
  4072. Client cli("https://cdnjs.cloudflare.com");
  4073. auto res =
  4074. cli.Get("/ajax/libs/jquery/3.5.1/jquery.js", {{"Accept-Encoding", "br"}});
  4075. ASSERT_TRUE(res);
  4076. EXPECT_EQ(200, res->status);
  4077. EXPECT_EQ(287630U, res->body.size());
  4078. EXPECT_EQ("application/javascript; charset=utf-8",
  4079. res->get_header_value("Content-Type"));
  4080. }
  4081. #endif
  4082. TEST(HttpsToHttpRedirectTest, SimpleInterface_Online) {
  4083. Client cli("https://nghttp2.org");
  4084. cli.set_follow_location(true);
  4085. auto res =
  4086. cli.Get("/httpbin/"
  4087. "redirect-to?url=http%3A%2F%2Fwww.google.com&status_code=302");
  4088. ASSERT_TRUE(res);
  4089. EXPECT_EQ(200, res->status);
  4090. }
  4091. TEST(HttpsToHttpRedirectTest2, SimpleInterface_Online) {
  4092. Client cli("https://nghttp2.org");
  4093. cli.set_follow_location(true);
  4094. Params params;
  4095. params.emplace("url", "http://www.google.com");
  4096. params.emplace("status_code", "302");
  4097. auto res = cli.Get("/httpbin/redirect-to", params, Headers{});
  4098. ASSERT_TRUE(res);
  4099. EXPECT_EQ(200, res->status);
  4100. }
  4101. TEST(HttpsToHttpRedirectTest3, SimpleInterface_Online) {
  4102. Client cli("https://nghttp2.org");
  4103. cli.set_follow_location(true);
  4104. Params params;
  4105. params.emplace("url", "http://www.google.com");
  4106. auto res = cli.Get("/httpbin/redirect-to?status_code=302", params, Headers{});
  4107. ASSERT_TRUE(res);
  4108. EXPECT_EQ(200, res->status);
  4109. }
  4110. TEST(HttpToHttpsRedirectTest, CertFile) {
  4111. Server svr;
  4112. ASSERT_TRUE(svr.is_valid());
  4113. svr.Get("/index", [&](const Request &, Response &res) {
  4114. res.set_redirect("https://127.0.0.1:1235/index");
  4115. svr.stop();
  4116. });
  4117. SSLServer ssl_svr(SERVER_CERT2_FILE, SERVER_PRIVATE_KEY_FILE);
  4118. ASSERT_TRUE(ssl_svr.is_valid());
  4119. ssl_svr.Get("/index", [&](const Request &, Response &res) {
  4120. res.set_content("test", "text/plain");
  4121. ssl_svr.stop();
  4122. });
  4123. thread t = thread([&]() { ASSERT_TRUE(svr.listen("127.0.0.1", PORT)); });
  4124. thread t2 = thread([&]() { ASSERT_TRUE(ssl_svr.listen("127.0.0.1", 1235)); });
  4125. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4126. Client cli("127.0.0.1", PORT);
  4127. cli.set_ca_cert_path(SERVER_CERT2_FILE);
  4128. cli.enable_server_certificate_verification(true);
  4129. cli.set_follow_location(true);
  4130. cli.set_connection_timeout(30);
  4131. auto res = cli.Get("/index");
  4132. ASSERT_TRUE(res);
  4133. ASSERT_EQ(200, res->status);
  4134. t.join();
  4135. t2.join();
  4136. }
  4137. TEST(MultipartFormDataTest, LargeData) {
  4138. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  4139. svr.Post("/post", [&](const Request &req, Response & /*res*/,
  4140. const ContentReader &content_reader) {
  4141. if (req.is_multipart_form_data()) {
  4142. MultipartFormDataItems files;
  4143. content_reader(
  4144. [&](const MultipartFormData &file) {
  4145. files.push_back(file);
  4146. return true;
  4147. },
  4148. [&](const char *data, size_t data_length) {
  4149. files.back().content.append(data, data_length);
  4150. return true;
  4151. });
  4152. EXPECT_TRUE(std::string(files[0].name) == "document");
  4153. EXPECT_EQ(size_t(1024 * 1024 * 2), files[0].content.size());
  4154. EXPECT_TRUE(files[0].filename == "2MB_data");
  4155. EXPECT_TRUE(files[0].content_type == "application/octet-stream");
  4156. EXPECT_TRUE(files[1].name == "hello");
  4157. EXPECT_TRUE(files[1].content == "world");
  4158. EXPECT_TRUE(files[1].filename == "");
  4159. EXPECT_TRUE(files[1].content_type == "");
  4160. } else {
  4161. std::string body;
  4162. content_reader([&](const char *data, size_t data_length) {
  4163. body.append(data, data_length);
  4164. return true;
  4165. });
  4166. }
  4167. });
  4168. auto t = std::thread([&]() { svr.listen("localhost", 8080); });
  4169. while (!svr.is_running()) {
  4170. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4171. }
  4172. std::this_thread::sleep_for(std::chrono::seconds(1));
  4173. {
  4174. std::string data(1024 * 1024 * 2, '.');
  4175. std::stringstream buffer;
  4176. buffer << data;
  4177. Client cli("https://localhost:8080");
  4178. cli.enable_server_certificate_verification(false);
  4179. MultipartFormDataItems items{
  4180. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4181. {"hello", "world", "", ""},
  4182. };
  4183. auto res = cli.Post("/post", items);
  4184. ASSERT_TRUE(res);
  4185. ASSERT_EQ(200, res->status);
  4186. }
  4187. svr.stop();
  4188. t.join();
  4189. }
  4190. TEST(MultipartFormDataTest, WithPreamble) {
  4191. Server svr;
  4192. svr.Post("/post", [&](const Request & /*req*/, Response &res) {
  4193. res.set_content("ok", "text/plain");
  4194. });
  4195. thread t = thread([&] { svr.listen(HOST, PORT); });
  4196. while (!svr.is_running()) {
  4197. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4198. }
  4199. const std::string body =
  4200. "This is the preamble. It is to be ignored, though it\r\n"
  4201. "is a handy place for composition agents to include an\r\n"
  4202. "explanatory note to non-MIME conformant readers.\r\n"
  4203. "\r\n"
  4204. "\r\n"
  4205. "--simple boundary\r\n"
  4206. "Content-Disposition: form-data; name=\"field1\"\r\n"
  4207. "\r\n"
  4208. "value1\r\n"
  4209. "--simple boundary\r\n"
  4210. "Content-Disposition: form-data; name=\"field2\"; "
  4211. "filename=\"example.txt\"\r\n"
  4212. "\r\n"
  4213. "value2\r\n"
  4214. "--simple boundary--\r\n"
  4215. "This is the epilogue. It is also to be ignored.\r\n";
  4216. std::string content_type =
  4217. R"(multipart/form-data; boundary="simple boundary")";
  4218. Client cli(HOST, PORT);
  4219. auto res = cli.Post("/post", body, content_type.c_str());
  4220. ASSERT_TRUE(res);
  4221. EXPECT_EQ(200, res->status);
  4222. svr.stop();
  4223. t.join();
  4224. }
  4225. TEST(MultipartFormDataTest, PostCustomBoundary) {
  4226. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  4227. svr.Post("/post_customboundary", [&](const Request &req, Response & /*res*/,
  4228. const ContentReader &content_reader) {
  4229. if (req.is_multipart_form_data()) {
  4230. MultipartFormDataItems files;
  4231. content_reader(
  4232. [&](const MultipartFormData &file) {
  4233. files.push_back(file);
  4234. return true;
  4235. },
  4236. [&](const char *data, size_t data_length) {
  4237. files.back().content.append(data, data_length);
  4238. return true;
  4239. });
  4240. EXPECT_TRUE(std::string(files[0].name) == "document");
  4241. EXPECT_EQ(size_t(1024 * 1024 * 2), files[0].content.size());
  4242. EXPECT_TRUE(files[0].filename == "2MB_data");
  4243. EXPECT_TRUE(files[0].content_type == "application/octet-stream");
  4244. EXPECT_TRUE(files[1].name == "hello");
  4245. EXPECT_TRUE(files[1].content == "world");
  4246. EXPECT_TRUE(files[1].filename == "");
  4247. EXPECT_TRUE(files[1].content_type == "");
  4248. } else {
  4249. std::string body;
  4250. content_reader([&](const char *data, size_t data_length) {
  4251. body.append(data, data_length);
  4252. return true;
  4253. });
  4254. }
  4255. });
  4256. auto t = std::thread([&]() { svr.listen("localhost", 8080); });
  4257. while (!svr.is_running()) {
  4258. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4259. }
  4260. std::this_thread::sleep_for(std::chrono::seconds(1));
  4261. {
  4262. std::string data(1024 * 1024 * 2, '.');
  4263. std::stringstream buffer;
  4264. buffer << data;
  4265. Client cli("https://localhost:8080");
  4266. cli.enable_server_certificate_verification(false);
  4267. MultipartFormDataItems items{
  4268. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4269. {"hello", "world", "", ""},
  4270. };
  4271. auto res = cli.Post("/post_customboundary", {}, items, "abc-abc");
  4272. ASSERT_TRUE(res);
  4273. ASSERT_EQ(200, res->status);
  4274. }
  4275. svr.stop();
  4276. t.join();
  4277. }
  4278. TEST(MultipartFormDataTest, PostInvalidBoundaryChars) {
  4279. std::this_thread::sleep_for(std::chrono::seconds(1));
  4280. std::string data(1024 * 1024 * 2, '&');
  4281. std::stringstream buffer;
  4282. buffer << data;
  4283. Client cli("https://localhost:8080");
  4284. MultipartFormDataItems items{
  4285. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4286. {"hello", "world", "", ""},
  4287. };
  4288. for (const char& c: " \t\r\n") {
  4289. auto res = cli.Post("/invalid_boundary", {}, items, string("abc123").append(1, c));
  4290. ASSERT_EQ(Error::UnsupportedMultipartBoundaryChars, res.error());
  4291. ASSERT_FALSE(res);
  4292. }
  4293. }
  4294. TEST(MultipartFormDataTest, PutFormData) {
  4295. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  4296. svr.Put("/put", [&](const Request &req, const Response & /*res*/,
  4297. const ContentReader &content_reader) {
  4298. if (req.is_multipart_form_data()) {
  4299. MultipartFormDataItems files;
  4300. content_reader(
  4301. [&](const MultipartFormData &file) {
  4302. files.push_back(file);
  4303. return true;
  4304. },
  4305. [&](const char *data, size_t data_length) {
  4306. files.back().content.append(data, data_length);
  4307. return true;
  4308. });
  4309. EXPECT_TRUE(std::string(files[0].name) == "document");
  4310. EXPECT_EQ(size_t(1024 * 1024 * 2), files[0].content.size());
  4311. EXPECT_TRUE(files[0].filename == "2MB_data");
  4312. EXPECT_TRUE(files[0].content_type == "application/octet-stream");
  4313. EXPECT_TRUE(files[1].name == "hello");
  4314. EXPECT_TRUE(files[1].content == "world");
  4315. EXPECT_TRUE(files[1].filename == "");
  4316. EXPECT_TRUE(files[1].content_type == "");
  4317. } else {
  4318. std::string body;
  4319. content_reader([&](const char *data, size_t data_length) {
  4320. body.append(data, data_length);
  4321. return true;
  4322. });
  4323. }
  4324. });
  4325. auto t = std::thread([&]() { svr.listen("localhost", 8080); });
  4326. while (!svr.is_running()) {
  4327. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4328. }
  4329. std::this_thread::sleep_for(std::chrono::seconds(1));
  4330. {
  4331. std::string data(1024 * 1024 * 2, '&');
  4332. std::stringstream buffer;
  4333. buffer << data;
  4334. Client cli("https://localhost:8080");
  4335. cli.enable_server_certificate_verification(false);
  4336. MultipartFormDataItems items{
  4337. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4338. {"hello", "world", "", ""},
  4339. };
  4340. auto res = cli.Put("/put", items);
  4341. ASSERT_TRUE(res);
  4342. ASSERT_EQ(200, res->status);
  4343. }
  4344. svr.stop();
  4345. t.join();
  4346. }
  4347. TEST(MultipartFormDataTest, PutFormDataCustomBoundary) {
  4348. SSLServer svr(SERVER_CERT_FILE, SERVER_PRIVATE_KEY_FILE);
  4349. svr.Put("/put_customboundary", [&](const Request &req, const Response & /*res*/,
  4350. const ContentReader &content_reader) {
  4351. if (req.is_multipart_form_data()) {
  4352. MultipartFormDataItems files;
  4353. content_reader(
  4354. [&](const MultipartFormData &file) {
  4355. files.push_back(file);
  4356. return true;
  4357. },
  4358. [&](const char *data, size_t data_length) {
  4359. files.back().content.append(data, data_length);
  4360. return true;
  4361. });
  4362. EXPECT_TRUE(std::string(files[0].name) == "document");
  4363. EXPECT_EQ(size_t(1024 * 1024 * 2), files[0].content.size());
  4364. EXPECT_TRUE(files[0].filename == "2MB_data");
  4365. EXPECT_TRUE(files[0].content_type == "application/octet-stream");
  4366. EXPECT_TRUE(files[1].name == "hello");
  4367. EXPECT_TRUE(files[1].content == "world");
  4368. EXPECT_TRUE(files[1].filename == "");
  4369. EXPECT_TRUE(files[1].content_type == "");
  4370. } else {
  4371. std::string body;
  4372. content_reader([&](const char *data, size_t data_length) {
  4373. body.append(data, data_length);
  4374. return true;
  4375. });
  4376. }
  4377. });
  4378. auto t = std::thread([&]() { svr.listen("localhost", 8080); });
  4379. while (!svr.is_running()) {
  4380. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4381. }
  4382. std::this_thread::sleep_for(std::chrono::seconds(1));
  4383. {
  4384. std::string data(1024 * 1024 * 2, '&');
  4385. std::stringstream buffer;
  4386. buffer << data;
  4387. Client cli("https://localhost:8080");
  4388. cli.enable_server_certificate_verification(false);
  4389. MultipartFormDataItems items{
  4390. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4391. {"hello", "world", "", ""},
  4392. };
  4393. auto res = cli.Put("/put_customboundary", {}, items, "abc-abc_");
  4394. ASSERT_TRUE(res);
  4395. ASSERT_EQ(200, res->status);
  4396. }
  4397. svr.stop();
  4398. t.join();
  4399. }
  4400. TEST(MultipartFormDataTest, PutInvalidBoundaryChars) {
  4401. std::this_thread::sleep_for(std::chrono::seconds(1));
  4402. std::string data(1024 * 1024 * 2, '&');
  4403. std::stringstream buffer;
  4404. buffer << data;
  4405. Client cli("https://localhost:8080");
  4406. cli.enable_server_certificate_verification(false);
  4407. MultipartFormDataItems items{
  4408. {"document", buffer.str(), "2MB_data", "application/octet-stream"},
  4409. {"hello", "world", "", ""},
  4410. };
  4411. for (const char& c: " \t\r\n") {
  4412. auto res = cli.Put("/put", {}, items, string("abc123").append(1, c));
  4413. ASSERT_EQ(Error::UnsupportedMultipartBoundaryChars, res.error());
  4414. ASSERT_FALSE(res);
  4415. }
  4416. }
  4417. #endif
  4418. #ifndef _WIN32
  4419. class UnixSocketTest : public ::testing::Test {
  4420. protected:
  4421. void TearDown() override {
  4422. std::remove(pathname_.c_str());
  4423. }
  4424. void client_GET(const std::string &addr) {
  4425. httplib::Client cli{addr};
  4426. cli.set_address_family(AF_UNIX);
  4427. ASSERT_TRUE(cli.is_valid());
  4428. const auto &result = cli.Get(pattern_);
  4429. ASSERT_TRUE(result) << "error: " << result.error();
  4430. const auto &resp = result.value();
  4431. EXPECT_EQ(resp.status, 200);
  4432. EXPECT_EQ(resp.body, content_);
  4433. }
  4434. const std::string pathname_ {"./httplib-server.sock"};
  4435. const std::string pattern_ {"/hi"};
  4436. const std::string content_ {"Hello World!"};
  4437. };
  4438. TEST_F(UnixSocketTest, pathname) {
  4439. httplib::Server svr;
  4440. svr.Get(pattern_, [&](const httplib::Request &, httplib::Response &res) {
  4441. res.set_content(content_, "text/plain");
  4442. });
  4443. std::thread t {[&] {
  4444. ASSERT_TRUE(svr.set_address_family(AF_UNIX).listen(pathname_, 80)); }};
  4445. while (!svr.is_running()) {
  4446. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4447. }
  4448. ASSERT_TRUE(svr.is_running());
  4449. client_GET(pathname_);
  4450. svr.stop();
  4451. t.join();
  4452. }
  4453. #ifdef __linux__
  4454. TEST_F(UnixSocketTest, abstract) {
  4455. constexpr char svr_path[] {"\x00httplib-server.sock"};
  4456. const std::string abstract_addr {svr_path, sizeof(svr_path) - 1};
  4457. httplib::Server svr;
  4458. svr.Get(pattern_, [&](const httplib::Request &, httplib::Response &res) {
  4459. res.set_content(content_, "text/plain");
  4460. });
  4461. std::thread t {[&] {
  4462. ASSERT_TRUE(svr.set_address_family(AF_UNIX).listen(abstract_addr, 80)); }};
  4463. while (!svr.is_running()) {
  4464. std::this_thread::sleep_for(std::chrono::milliseconds(1));
  4465. }
  4466. ASSERT_TRUE(svr.is_running());
  4467. client_GET(abstract_addr);
  4468. svr.stop();
  4469. t.join();
  4470. }
  4471. #endif
  4472. #endif // #ifndef _WIN32