test.cc 162 KB

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