123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536 |
- // Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include "faked_nsec3.h"
- #include <exceptions/exceptions.h>
- #include <dns/masterload.h>
- #include <dns/name.h>
- #include <dns/rrttl.h>
- #include <dns/rrset.h>
- #include <dns/nsec3hash.h>
- #include <exceptions/exceptions.h>
- #include <datasrc/database.h>
- #include <datasrc/zone.h>
- #include <datasrc/zone_finder.h>
- #include <datasrc/data_source.h>
- #include <datasrc/zone_iterator.h>
- #include <datasrc/sqlite3_accessor.h>
- #include <testutils/dnsmessage_test.h>
- #include <gtest/gtest.h>
- #include <boost/bind.hpp>
- #include <boost/shared_ptr.hpp>
- #include <boost/lexical_cast.hpp>
- #include <cstdlib>
- #include <map>
- #include <vector>
- using namespace isc::datasrc;
- using namespace std;
- // don't import the entire boost namespace. It will unexpectedly hide uint32_t
- // for some systems.
- using boost::dynamic_pointer_cast;
- using boost::lexical_cast;
- using namespace isc::dns;
- using namespace isc::testutils;
- using namespace isc::datasrc::test;
- namespace {
- // Imaginary zone IDs used in the mock accessor below.
- const int READONLY_ZONE_ID = 42;
- const int NEW_ZONE_ID = 420;
- const int WRITABLE_ZONE_ID = 4200;
- // Commonly used test data
- const char* const TEST_RECORDS[][5] = {
- // some plain data
- {"www.example.org.", "A", "3600", "", "192.0.2.1"},
- {"www.example.org.", "AAAA", "3600", "", "2001:db8::1"},
- {"www.example.org.", "AAAA", "3600", "", "2001:db8::2"},
- {"www.example.org.", "NSEC", "3600", "", "www2.example.org. A AAAA NSEC RRSIG"},
- {"www.example.org.", "RRSIG", "3600", "", "NSEC 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"www2.example.org.", "A", "3600", "", "192.0.2.1"},
- {"www2.example.org.", "AAAA", "3600", "", "2001:db8::1"},
- {"www2.example.org.", "A", "3600", "", "192.0.2.2"},
- {"cname.example.org.", "CNAME", "3600", "", "www.example.org."},
- // some DNSSEC-'signed' data
- {"signed1.example.org.", "A", "3600", "", "192.0.2.1"},
- {"signed1.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"signed1.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12346 example.org. FAKEFAKEFAKE"},
- {"signed1.example.org.", "AAAA", "3600", "", "2001:db8::1"},
- {"signed1.example.org.", "AAAA", "3600", "", "2001:db8::2"},
- {"signed1.example.org.", "RRSIG", "3600", "", "AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"signedcname1.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"signedcname1.example.org.", "RRSIG", "3600", "", "CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- // special case might fail; sig is for cname, which isn't there (should be ignored)
- // (ignoring of 'normal' other type is done above by www.)
- {"acnamesig1.example.org.", "A", "3600", "", "192.0.2.1"},
- {"acnamesig1.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"acnamesig1.example.org.", "RRSIG", "3600", "", "CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- // let's pretend we have a database that is not careful
- // about the order in which it returns data
- {"signed2.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"signed2.example.org.", "AAAA", "3600", "", "2001:db8::2"},
- {"signed2.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12346 example.org. FAKEFAKEFAKE"},
- {"signed2.example.org.", "A", "3600", "", "192.0.2.1"},
- {"signed2.example.org.", "RRSIG", "3600", "", "AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"signed2.example.org.", "AAAA", "3600", "", "2001:db8::1"},
- {"signedcname2.example.org.", "RRSIG", "3600", "", "CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"signedcname2.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"acnamesig2.example.org.", "RRSIG", "3600", "", "CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"acnamesig2.example.org.", "A", "3600", "", "192.0.2.1"},
- {"acnamesig2.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"acnamesig3.example.org.", "RRSIG", "3600", "", "CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"acnamesig3.example.org.", "RRSIG", "3600", "", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"acnamesig3.example.org.", "A", "3600", "", "192.0.2.1"},
- {"ttldiff1.example.org.", "A", "3600", "", "192.0.2.1"},
- {"ttldiff1.example.org.", "A", "360", "", "192.0.2.2"},
- {"ttldiff2.example.org.", "A", "360", "", "192.0.2.1"},
- {"ttldiff2.example.org.", "A", "3600", "", "192.0.2.2"},
- // also add some intentionally bad data
- {"badcname1.example.org.", "A", "3600", "", "192.0.2.1"},
- {"badcname1.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"badcname2.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"badcname2.example.org.", "A", "3600", "", "192.0.2.1"},
- {"badcname3.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"badcname3.example.org.", "CNAME", "3600", "", "www.example2.org."},
- {"badrdata.example.org.", "A", "3600", "", "bad"},
- {"badtype.example.org.", "BAD_TYPE", "3600", "", "192.0.2.1"},
- {"badttl.example.org.", "A", "badttl", "", "192.0.2.1"},
- {"badsig.example.org.", "A", "badttl", "", "192.0.2.1"},
- {"badsig.example.org.", "RRSIG", "3600", "", "A 5 3 3600 somebaddata 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"badsigtype.example.org.", "A", "3600", "", "192.0.2.1"},
- {"badsigtype.example.org.", "RRSIG", "3600", "TXT", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- // Data for testing delegation (with NS and DNAME)
- {"delegation.example.org.", "NS", "3600", "", "ns.example.com."},
- {"delegation.example.org.", "NS", "3600", "",
- "ns.delegation.example.org."},
- {"delegation.example.org.", "DS", "3600", "", "1 1 2 abcd"},
- {"delegation.example.org.", "RRSIG", "3600", "", "NS 5 3 3600 "
- "20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"delegation.example.org.", "RRSIG", "3600", "", "DS 5 3 3600 "
- "20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"ns.delegation.example.org.", "A", "3600", "", "192.0.2.1"},
- {"deep.below.delegation.example.org.", "A", "3600", "", "192.0.2.1"},
- {"dname.example.org.", "A", "3600", "", "192.0.2.1"},
- {"dname.example.org.", "DNAME", "3600", "", "dname.example.com."},
- {"dname.example.org.", "RRSIG", "3600", "",
- "DNAME 5 3 3600 20000101000000 20000201000000 12345 "
- "example.org. FAKEFAKEFAKE"},
- {"below.dname.example.org.", "A", "3600", "", "192.0.2.1"},
- // Insecure delegation (i.e., no DS at the delegation point)
- {"insecdelegation.example.org.", "NS", "3600", "", "ns.example.com."},
- {"insecdelegation.example.org.", "NSEC", "3600", "",
- "dummy.example.org. NS NSEC"},
- // and a DS under the zone cut. Such an RR shouldn't exist in a sane zone,
- // but it could by error or some malicious attempt. It shouldn't confuse
- // the implementation)
- {"child.insecdelegation.example.org.", "DS", "3600", "", "DS 5 3 3600 "
- "20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- // Delegation NS and other ordinary type of RR coexist at the same
- // name. This is deviant (except for some special cases like the other
- // RR could be used for addressing the NS name), but as long as the
- // other records are hidden behind the delegation for normal queries
- // it's not necessarily harmful. (so "broken" may be too strong, but we
- // keep the name since it could be in a chain of sorted names for DNSSEC
- // processing and renaming them may have other bad effects for tests).
- {"brokenns1.example.org.", "A", "3600", "", "192.0.2.1"},
- {"brokenns1.example.org.", "NS", "3600", "", "ns.example.com."},
- // Now double DNAME, to test failure mode
- {"baddname.example.org.", "DNAME", "3600", "", "dname1.example.com."},
- {"baddname.example.org.", "DNAME", "3600", "", "dname2.example.com."},
- // Put some data into apex (including NS) so we can check our NS
- // doesn't break anything
- {"example.org.", "SOA", "3600", "", "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200" },
- {"example.org.", "NS", "3600", "", "ns.example.com."},
- {"example.org.", "A", "3600", "", "192.0.2.1"},
- // Note that the RDATA text is "normalized", i.e., identical to what
- // Rdata::toText() would produce. some tests rely on that behavior.
- {"example.org.", "NSEC", "3600", "",
- "acnamesig1.example.org. A NS RRSIG NSEC"},
- {"example.org.", "RRSIG", "3600", "", "SOA 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"example.org.", "RRSIG", "3600", "", "NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"example.org.", "RRSIG", "3600", "", "NS 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKEFAKE"},
- // This is because of empty domain test
- {"a.b.example.org.", "A", "3600", "", "192.0.2.1"},
- // Something for wildcards
- {"*.wild.example.org.", "A", "3600", "", "192.0.2.5"},
- {"*.wild.example.org.", "RRSIG", "3600", "A", "A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"*.wild.example.org.", "NSEC", "3600", "", "cancel.here.wild.example.org. A NSEC RRSIG"},
- {"*.wild.example.org.", "RRSIG", "3600", "", "NSEC 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {"cancel.here.wild.example.org.", "AAAA", "3600", "", "2001:db8::5"},
- {"delegatedwild.example.org.", "NS", "3600", "", "ns.example.com."},
- {"*.delegatedwild.example.org.", "A", "3600", "", "192.0.2.5"},
- {"wild.*.foo.example.org.", "A", "3600", "", "192.0.2.5"},
- {"wild.*.foo.*.bar.example.org.", "A", "3600", "", "192.0.2.5"},
- {"wild.*.foo.*.bar.example.org.", "NSEC", "3600", "",
- "brokenns1.example.org. A NSEC"},
- {"bao.example.org.", "NSEC", "3600", "", "wild.*.foo.*.bar.example.org. NSEC"},
- {"*.cnamewild.example.org.", "CNAME", "3600", "", "www.example.org."},
- {"*.dnamewild.example.org.", "DNAME", "3600", "", "dname.example.com."},
- {"*.nswild.example.org.", "NS", "3600", "", "ns.example.com."},
- // For NSEC empty non-terminal
- {"l.example.org.", "NSEC", "3600", "", "empty.nonterminal.example.org. NSEC"},
- {"empty.nonterminal.example.org.", "A", "3600", "", "192.0.2.1"},
- // Invalid rdata
- {"invalidrdata.example.org.", "A", "3600", "", "Bunch of nonsense"},
- {"invalidrdata2.example.org.", "A", "3600", "", "192.0.2.1"},
- {"invalidrdata2.example.org.", "RRSIG", "3600", "", "Nonsense"},
- {NULL, NULL, NULL, NULL, NULL},
- };
- // NSEC3PARAM at the zone origin and its RRSIG. These will be added
- // separately for some NSEC3 related tests.
- const char* TEST_NSEC3PARAM_RECORDS[][5] = {
- {"example.org.", "NSEC3PARAM", "3600", "", "1 0 12 aabbccdd"},
- {"example.org.", "RRSIG", "3600", "", "NSEC3PARAM 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKEFAKE"},
- {NULL, NULL, NULL, NULL, NULL}
- };
- // FIXME: Taken from a different test. Fill with proper data when creating a test.
- const char* TEST_NSEC3_RECORDS[][5] = {
- {apex_hash, "NSEC3", "300", "", "1 1 12 AABBCCDD 2T7B4G4VSA5SMI47K61MV5BV1A22BOJR A RRSIG"},
- {apex_hash, "RRSIG", "300", "", "NSEC3 5 4 7200 20100410172647 20100311172647 63192 example.org. gNIVj4T8t51fEU6kOPpvK7HOGBFZGbalN5ZK mInyrww6UWZsUNdw07ge6/U6HfG+/s61RZ/L is2M6yUWHyXbNbj/QqwqgadG5dhxTArfuR02 xP600x0fWX8LXzW4yLMdKVxGbzYT+vvGz71o 8gHSY5vYTtothcZQa4BMKhmGQEk="},
- {ns1_hash, "NSEC3", "300", "", "1 1 12 AABBCCDD 2T7B4G4VSA5SMI47K61MV5BV1A22BOJR A RRSIG"},
- {ns1_hash, "RRSIG", "300", "", "NSEC3 5 4 7200 20100410172647 20100311172647 63192 example.org. gNIVj4T8t51fEU6kOPpvK7HOGBFZGbalN5ZK mInyrww6UWZsUNdw07ge6/U6HfG+/s61RZ/L is2M6yUWHyXbNbj/QqwqgadG5dhxTArfuR02 xP600x0fWX8LXzW4yLMdKVxGbzYT+vvGz71o 8gHSY5vYTtothcZQa4BMKhmGQEk="},
- {w_hash, "NSEC3", "300", "", "1 1 12 AABBCCDD 2T7B4G4VSA5SMI47K61MV5BV1A22BOJR A RRSIG"},
- {w_hash, "RRSIG", "300", "", "NSEC3 5 4 7200 20100410172647 20100311172647 63192 example.org. gNIVj4T8t51fEU6kOPpvK7HOGBFZGbalN5ZK mInyrww6UWZsUNdw07ge6/U6HfG+/s61RZ/L is2M6yUWHyXbNbj/QqwqgadG5dhxTArfuR02 xP600x0fWX8LXzW4yLMdKVxGbzYT+vvGz71o 8gHSY5vYTtothcZQa4BMKhmGQEk="},
- {zzz_hash, "NSEC3", "300", "", "1 1 12 AABBCCDD 2T7B4G4VSA5SMI47K61MV5BV1A22BOJR A RRSIG"},
- {zzz_hash, "RRSIG", "300", "", "NSEC3 5 4 7200 20100410172647 20100311172647 63192 example.org. gNIVj4T8t51fEU6kOPpvK7HOGBFZGbalN5ZK mInyrww6UWZsUNdw07ge6/U6HfG+/s61RZ/L is2M6yUWHyXbNbj/QqwqgadG5dhxTArfuR02 xP600x0fWX8LXzW4yLMdKVxGbzYT+vvGz71o 8gHSY5vYTtothcZQa4BMKhmGQEk="},
- {NULL, NULL, NULL, NULL, NULL}
- };
- /*
- * An accessor with minimum implementation, keeping the original
- * "NotImplemented" methods.
- */
- class NopAccessor : public DatabaseAccessor {
- public:
- NopAccessor() : database_name_("mock_database") {
- zones_["example.org."] = READONLY_ZONE_ID;
- zones_["null.example.org."] = 13;
- zones_["empty.example.org."] = 0;
- zones_["bad.example.org."] = -1;
- }
- virtual std::pair<bool, int> getZone(const std::string& name) const {
- std::map<std::string, int>::const_iterator found = zones_.find(name);
- if (found != zones_.end()) {
- return (std::pair<bool, int>(true, found->second));
- } else {
- return (std::pair<bool, int>(false, 0));
- }
- }
- // A simple implementation of addZone.
- virtual int addZone(const std::string& zone_name) {
- if (zone_name == "example.com.") {
- zones_[zone_name] = NEW_ZONE_ID;
- }
- // for simplicity we assume zone_name is in zones_ at this point
- return (zones_[zone_name]);
- }
- // A simple implementation of deleteZone.
- virtual void deleteZone(int zone_id) {
- std::map<std::string, int>::iterator it = zones_.begin();
- std::map<std::string, int>::iterator end = zones_.end();
- while (it != end) {
- if (it->second == zone_id) {
- zones_.erase(it);
- return;
- }
- ++it;
- }
- }
- virtual boost::shared_ptr<DatabaseAccessor> clone() {
- // This accessor is stateless, so we can simply return a new instance.
- return (boost::shared_ptr<DatabaseAccessor>(new NopAccessor));
- }
- virtual std::pair<bool, int> startUpdateZone(const std::string&, bool) {
- // return dummy value. unused anyway.
- return (pair<bool, int>(true, 0));
- }
- virtual void startTransaction() {}
- virtual void commit() {}
- virtual void rollback() {}
- virtual void addRecordToZone(const string (&)[ADD_COLUMN_COUNT]) {}
- virtual void addNSEC3RecordToZone(const string (&)[ADD_NSEC3_COLUMN_COUNT])
- {}
- virtual void deleteRecordInZone(const string (&)[DEL_PARAM_COUNT]) {}
- virtual void deleteNSEC3RecordInZone(const string (&)[DEL_PARAM_COUNT]) {}
- virtual void addRecordDiff(int, uint32_t, DiffOperation,
- const std::string (&)[DIFF_PARAM_COUNT]) {}
- virtual const std::string& getDBName() const {
- return (database_name_);
- }
- virtual IteratorContextPtr getRecords(const std::string&, int, bool)
- const
- {
- isc_throw(isc::NotImplemented,
- "This database datasource can't be iterated");
- }
- virtual IteratorContextPtr getNSEC3Records(const std::string&, int) const {
- isc_throw(isc::NotImplemented, "This test database datasource won't "
- "give you any NSEC3. Ever. Ask someone else.");
- }
- virtual IteratorContextPtr getAllRecords(int) const {
- isc_throw(isc::NotImplemented,
- "This database datasource can't be iterated");
- }
- virtual IteratorContextPtr getDiffs(int, uint32_t, uint32_t) const {
- isc_throw(isc::NotImplemented,
- "This database datasource doesn't support diffs");
- }
- virtual std::string findPreviousName(int, const std::string&) const {
- isc_throw(isc::NotImplemented,
- "This data source doesn't support DNSSEC");
- }
- virtual std::string findPreviousNSEC3Hash(int, const std::string&) const {
- isc_throw(isc::NotImplemented,
- "This test database knows nothing about NSEC3 nor order");
- }
- private:
- const std::string database_name_;
- std::map<std::string, int> zones_;
- };
- /**
- * Single journal entry in the mock database.
- *
- * All the members there are public for simplicity, as it only stores data.
- * We use the implicit constructor and operator. The members can't be const
- * because of the assignment operator (used in the vectors).
- */
- struct JournalEntry {
- JournalEntry(int id, uint32_t serial,
- DatabaseAccessor::DiffOperation operation,
- const std::string (&data)[DatabaseAccessor::DIFF_PARAM_COUNT])
- : id_(id), serial_(serial), operation_(operation)
- {
- data_[DatabaseAccessor::DIFF_NAME] = data[DatabaseAccessor::DIFF_NAME];
- data_[DatabaseAccessor::DIFF_TYPE] = data[DatabaseAccessor::DIFF_TYPE];
- data_[DatabaseAccessor::DIFF_TTL] = data[DatabaseAccessor::DIFF_TTL];
- data_[DatabaseAccessor::DIFF_RDATA] =
- data[DatabaseAccessor::DIFF_RDATA];
- }
- JournalEntry(int id, uint32_t serial,
- DatabaseAccessor::DiffOperation operation,
- const std::string& name, const std::string& type,
- const std::string& ttl, const std::string& rdata):
- id_(id), serial_(serial), operation_(operation)
- {
- data_[DatabaseAccessor::DIFF_NAME] = name;
- data_[DatabaseAccessor::DIFF_TYPE] = type;
- data_[DatabaseAccessor::DIFF_TTL] = ttl;
- data_[DatabaseAccessor::DIFF_RDATA] = rdata;
- }
- int id_;
- uint32_t serial_;
- DatabaseAccessor::DiffOperation operation_;
- std::string data_[DatabaseAccessor::DIFF_PARAM_COUNT];
- bool operator==(const JournalEntry& other) const {
- for (size_t i = 0; i < DatabaseAccessor::DIFF_PARAM_COUNT; ++ i) {
- if (data_[i] != other.data_[i]) {
- return false;
- }
- }
- // No need to check data here, checked above
- return (id_ == other.id_ && serial_ == other.serial_ &&
- operation_ == other.operation_);
- }
- };
- /*
- * A virtual database accessor that pretends it contains single zone --
- * example.org.
- *
- * It has the same getZone method as NopConnection, but it provides
- * implementation of the optional functionality.
- */
- class MockAccessor : public NopAccessor {
- // Type of mock database "row"s. This is a map whose keys are the
- // own names. We internally sort them by the name comparison order.
- struct NameCompare : public binary_function<string, string, bool> {
- bool operator()(const string& n1, const string& n2) const {
- return (Name(n1).compare(Name(n2)).getOrder() < 0);
- }
- };
- typedef std::map<std::string,
- std::vector< std::vector<std::string> >,
- NameCompare > Domains;
- public:
- MockAccessor() : rollbacked_(false), did_transaction_(false) {
- readonly_records_ = &readonly_records_master_;
- update_records_ = &update_records_master_;
- nsec3_namespace_ = &nsec3_namespace_master_;
- update_nsec3_namespace_ = &update_nsec3_namespace_master_;
- empty_records_ = &empty_records_master_;
- journal_entries_ = &journal_entries_master_;
- fillData();
- }
- virtual boost::shared_ptr<DatabaseAccessor> clone() {
- boost::shared_ptr<MockAccessor> cloned_accessor(new MockAccessor());
- cloned_accessor->readonly_records_ = &readonly_records_master_;
- cloned_accessor->update_records_ = &update_records_master_;
- cloned_accessor->nsec3_namespace_ = &nsec3_namespace_master_;
- cloned_accessor->update_nsec3_namespace_ =
- &update_nsec3_namespace_master_;
- cloned_accessor->empty_records_ = &empty_records_master_;
- cloned_accessor->journal_entries_ = &journal_entries_master_;
- latest_clone_ = cloned_accessor;
- return (cloned_accessor);
- }
- virtual void startTransaction() {
- // Currently we only use this transaction for simple read-only
- // operations. So we just make a local copy of the data (we don't
- // care about what happens after commit() or rollback()).
- // Obviously as a consequence, if a test case tries to make multiple
- // transactions on a single mock accessor it will fail.
- // Check any attempt of multiple transactions
- if (did_transaction_) {
- isc_throw(DataSourceError, "MockAccessor::startTransaction() "
- "called multiple times - likely a bug in the test");
- }
- readonly_records_copy_ = *readonly_records_;
- readonly_records_ = &readonly_records_copy_;
- did_transaction_ = true;
- }
- // If the test needs multiple calls to startTransaction() and knows it's
- // safe, it can use this method to disable the safeguard check in
- // startTransaction(); the test can also use this method by emulating a
- // lock conflict by setting is_allowed to false.
- void allowMoreTransaction(bool is_allowed) {
- did_transaction_ = !is_allowed;
- }
- private:
- class DomainIterator : public IteratorContext {
- public:
- DomainIterator(const std::vector<std::vector<std::string> >& domain) :
- domain_(domain),
- position_(domain_.begin())
- {}
- virtual bool getNext(std::string (&columns)[COLUMN_COUNT]) {
- if (position_ == domain_.end()) {
- return (false);
- } else {
- for (size_t i(0); i < COLUMN_COUNT; ++ i) {
- columns[i] = (*position_)[i];
- }
- ++ position_;
- return (true);
- }
- }
- private:
- const std::vector<std::vector<std::string> > domain_;
- std::vector<std::vector<std::string> >::const_iterator position_;
- };
- class MockNameIteratorContext : public IteratorContext {
- public:
- MockNameIteratorContext(const MockAccessor& mock_accessor, int zone_id,
- const std::string& name, bool subdomains) :
- searched_name_(name), cur_record_(0)
- {
- // 'hardcoded' names to trigger exceptions
- // On these names some exceptions are thrown, to test the robustness
- // of the find() method.
- if (searched_name_ == "dsexception.example.org.") {
- isc_throw(DataSourceError, "datasource exception on search");
- } else if (searched_name_ == "iscexception.example.org.") {
- isc_throw(isc::Exception, "isc exception on search");
- } else if (searched_name_ == "basicexception.example.org.") {
- throw std::exception();
- }
- cur_record_ = 0;
- const Domains& cur_records = mock_accessor.getMockRecords(zone_id);
- if (cur_records.count(name) > 0) {
- // we're not aiming for efficiency in this test, simply
- // copy the relevant vector from records
- cur_name = cur_records.find(name)->second;
- } else if (subdomains) {
- cur_name.clear();
- // Just walk everything and check if it is a subdomain.
- // If it is, just copy all data from there.
- for (Domains::const_iterator i = cur_records.begin();
- i != cur_records.end(); ++i) {
- const Name local(i->first);
- if (local.compare(Name(name)).getRelation() ==
- isc::dns::NameComparisonResult::SUBDOMAIN) {
- cur_name.insert(cur_name.end(), i->second.begin(),
- i->second.end());
- }
- }
- } else {
- cur_name.clear();
- }
- }
- virtual bool getNext(std::string (&columns)[COLUMN_COUNT]) {
- if (searched_name_ == "dsexception.getnext.example.org.") {
- isc_throw(DataSourceError, "datasource exception on getnextrecord");
- } else if (searched_name_ == "iscexception.getnext.example.org.") {
- isc_throw(isc::Exception, "isc exception on getnextrecord");
- } else if (searched_name_ ==
- "basicexception.getnext.example.org.") {
- throw std::exception();
- }
- if (cur_record_ < cur_name.size()) {
- for (size_t i = 0; i < COLUMN_COUNT; ++i) {
- columns[i] = cur_name[cur_record_][i];
- }
- cur_record_++;
- return (true);
- } else {
- return (false);
- }
- }
- private:
- const std::string searched_name_;
- size_t cur_record_;
- std::vector< std::vector<std::string> > cur_name;
- };
- class MockIteratorContext : public IteratorContext {
- private:
- int step;
- const Domains& domains_;
- public:
- MockIteratorContext(const Domains& domains) :
- step(0), domains_(domains)
- { }
- virtual bool getNext(string (&data)[COLUMN_COUNT]) {
- // A special case: if the given set of domains is already empty,
- // we always return false.
- if (domains_.empty()) {
- return (false);
- }
- // Return faked data for tests
- // This is the sequence of zone data in the order of appearance
- // in the returned sequence from this iterator.
- typedef const char* ColumnText[4];
- const ColumnText zone_data[] = {
- // A couple of basic RRs at the zone origin.
- {"example.org", "A", "3600", "192.0.2.1"},
- {"example.org", "SOA", "3600", "ns1.example.org. "
- "admin.example.org. 1234 3600 1800 2419200 7200"},
- // RRsets sharing the same owner name with multiple RRs.
- {"x.example.org", "A", "300", "192.0.2.1"},
- {"x.example.org", "A", "300", "192.0.2.2"},
- {"x.example.org", "AAAA", "300", "2001:db8::1"},
- {"x.example.org", "AAAA", "300", "2001:db8::2"},
- // RRSIGs. Covered types are different and these two should
- // be distinguished.
- {"x.example.org", "RRSIG", "300",
- "A 5 3 3600 20000101000000 20000201000000 12345 "
- "example.org. FAKEFAKEFAKE"},
- {"x.example.org", "RRSIG", "300",
- "AAAA 5 3 3600 20000101000000 20000201000000 12345 "
- "example.org. FAKEFAKEFAKEFAKE"},
- // Mixture of different TTLs. Covering both cases of small
- // then large and large then small. In either case the smaller
- // TTL should win.
- {"ttldiff.example.org", "A", "300", "192.0.2.1"},
- {"ttldiff.example.org", "A", "600", "192.0.2.2"},
- {"ttldiff2.example.org", "AAAA", "600", "2001:db8::1"},
- {"ttldiff2.example.org", "AAAA", "300", "2001:db8::2"}};
- const size_t num_rrs = sizeof(zone_data) / sizeof(zone_data[0]);
- if (step > num_rrs) {
- ADD_FAILURE() << "Request past the end of iterator context";
- } else if (step < num_rrs) {
- data[DatabaseAccessor::NAME_COLUMN] = zone_data[step][0];
- data[DatabaseAccessor::TYPE_COLUMN] = zone_data[step][1];
- data[DatabaseAccessor::TTL_COLUMN] = zone_data[step][2];
- data[DatabaseAccessor::RDATA_COLUMN] = zone_data[step][3];
- ++step;
- return (true);
- }
- return (false);
- }
- };
- class EmptyIteratorContext : public IteratorContext {
- public:
- virtual bool getNext(string(&)[COLUMN_COUNT]) {
- return (false);
- }
- };
- class BadIteratorContext : public IteratorContext {
- private:
- int step;
- public:
- BadIteratorContext() :
- step(0)
- { }
- virtual bool getNext(string (&data)[COLUMN_COUNT]) {
- switch (step ++) {
- case 0:
- data[DatabaseAccessor::NAME_COLUMN] = "x.example.org";
- data[DatabaseAccessor::TYPE_COLUMN] = "A";
- data[DatabaseAccessor::TTL_COLUMN] = "300";
- data[DatabaseAccessor::RDATA_COLUMN] = "192.0.2.1";
- return (true);
- case 1:
- data[DatabaseAccessor::NAME_COLUMN] = "x.example.org";
- data[DatabaseAccessor::TYPE_COLUMN] = "A";
- data[DatabaseAccessor::TTL_COLUMN] = "301";
- data[DatabaseAccessor::RDATA_COLUMN] = "192.0.2.2";
- return (true);
- default:
- ADD_FAILURE() <<
- "Request past the end of iterator context";
- case 2:
- return (false);
- }
- }
- };
- class MockDiffIteratorContext : public IteratorContext {
- const vector<JournalEntry> diffs_;
- vector<JournalEntry>::const_iterator it_;
- public:
- MockDiffIteratorContext(const vector<JournalEntry>& diffs) :
- diffs_(diffs), it_(diffs_.begin())
- {}
- virtual bool getNext(string (&data)[COLUMN_COUNT]) {
- if (it_ == diffs_.end()) {
- return (false);
- }
- data[DatabaseAccessor::NAME_COLUMN] =
- (*it_).data_[DatabaseAccessor::DIFF_NAME];
- data[DatabaseAccessor::TYPE_COLUMN] =
- (*it_).data_[DatabaseAccessor::DIFF_TYPE];
- data[DatabaseAccessor::TTL_COLUMN] =
- (*it_).data_[DatabaseAccessor::DIFF_TTL];
- data[DatabaseAccessor::RDATA_COLUMN] =
- (*it_).data_[DatabaseAccessor::DIFF_RDATA];
- ++it_;
- return (true);
- }
- };
- public:
- virtual IteratorContextPtr getAllRecords(int id) const {
- if (id == READONLY_ZONE_ID) {
- return (IteratorContextPtr(new MockIteratorContext(
- *readonly_records_)));
- } else if (id == 13) {
- return (IteratorContextPtr());
- } else if (id == 0) {
- return (IteratorContextPtr(new EmptyIteratorContext()));
- } else if (id == -1) {
- return (IteratorContextPtr(new BadIteratorContext()));
- } else {
- isc_throw(isc::Unexpected, "Unknown zone ID");
- }
- }
- virtual IteratorContextPtr getRecords(const std::string& name, int id,
- bool subdomains) const
- {
- if (id == READONLY_ZONE_ID || id == WRITABLE_ZONE_ID) {
- return (IteratorContextPtr(
- new MockNameIteratorContext(*this, id, name,
- subdomains)));
- } else {
- // This iterator is bogus, but for the cases tested below that's
- // sufficient.
- return (IteratorContextPtr(
- new MockNameIteratorContext(*this, READONLY_ZONE_ID,
- name, subdomains)));
- }
- }
- virtual IteratorContextPtr getNSEC3Records(const std::string& hash,
- int) const
- {
- Domains::const_iterator it(nsec3_namespace_->find(hash));
- if (it == nsec3_namespace_->end()) {
- return (IteratorContextPtr(new EmptyIteratorContext()));
- } else {
- return (IteratorContextPtr(new DomainIterator(it->second)));
- }
- }
- virtual pair<bool, int> startUpdateZone(const std::string& zone_name,
- bool replace)
- {
- const pair<bool, int> zone_info = getZone(zone_name);
- if (!zone_info.first) {
- return (pair<bool, int>(false, 0));
- }
- // Prepare the record set for update. If replacing the existing one,
- // we use an empty set; otherwise we use a writable copy of the
- // original.
- if (replace) {
- update_records_->clear();
- update_nsec3_namespace_->clear();
- } else {
- *update_records_ = *readonly_records_;
- *update_nsec3_namespace_ = nsec3_namespace_master_;
- }
- if (zone_name == "bad.example.org.") {
- return (pair<bool, int>(true, -1));
- } else if (zone_name == "null.example.org.") {
- return (pair<bool, int>(true, 13));
- } else {
- return (pair<bool, int>(true, WRITABLE_ZONE_ID));
- }
- }
- virtual void commit() {
- *readonly_records_ = *update_records_;
- *nsec3_namespace_ = *update_nsec3_namespace_;
- }
- virtual void rollback() {
- // Special hook: if something with a name of "throw.example.org"
- // has been added, trigger an imaginary unexpected event with an
- // exception.
- if (update_records_->count("throw.example.org.") > 0) {
- isc_throw(DataSourceError, "unexpected failure in rollback");
- }
- rollbacked_ = true;
- }
- private:
- // Common subroutine for addRecordToZone and addNSEC3RecordToZone.
- void addRecord(Domains& domains,
- const string (&columns)[ADD_COLUMN_COUNT])
- {
- // Copy the current value to cur_name. If it doesn't exist,
- // operator[] will create a new one.
- cur_name_ = domains[columns[ADD_NAME]];
- vector<string> record_columns;
- record_columns.push_back(columns[ADD_TYPE]);
- record_columns.push_back(columns[ADD_TTL]);
- record_columns.push_back(columns[ADD_SIGTYPE]);
- record_columns.push_back(columns[ADD_RDATA]);
- record_columns.push_back(columns[ADD_NAME]);
- // copy back the added entry
- cur_name_.push_back(record_columns);
- domains[columns[DatabaseAccessor::ADD_NAME]] = cur_name_;
- // remember this one so that test cases can check it.
- copy(columns, columns + DatabaseAccessor::ADD_COLUMN_COUNT,
- columns_lastadded_);
- }
- public:
- virtual void addRecordToZone(const string (&columns)[ADD_COLUMN_COUNT]) {
- addRecord(*update_records_, columns);
- }
- virtual void addNSEC3RecordToZone(
- const string (&columns)[ADD_NSEC3_COLUMN_COUNT])
- {
- // Convert the NSEC3 parameters in the normal (non NSEC3) style so
- // we can share the merge code, and then update using addRecord().
- string normal_columns[ADD_COLUMN_COUNT];
- normal_columns[ADD_TYPE] = columns[ADD_NSEC3_TYPE];
- normal_columns[ADD_TTL] = columns[ADD_NSEC3_TTL];
- normal_columns[ADD_SIGTYPE] = "";
- normal_columns[ADD_RDATA] = columns[ADD_NSEC3_RDATA];
- normal_columns[ADD_NAME] = columns[ADD_NSEC3_HASH];
- addRecord(*update_nsec3_namespace_, normal_columns);
- }
- private:
- // Helper predicate class used in deleteRecordInZone().
- struct deleteMatch {
- deleteMatch(const string& type, const string& rdata) :
- type_(type), rdata_(rdata)
- {}
- bool operator()(const vector<string>& row) const {
- return (row[0] == type_ && row[3] == rdata_);
- }
- const string& type_;
- const string& rdata_;
- };
- // Common subroutine for deleteRecordinZone and deleteNSEC3RecordInZone.
- void deleteRecord(Domains& domains,
- const string (¶ms)[DEL_PARAM_COUNT])
- {
- vector<vector<string> >& records =
- domains[params[DatabaseAccessor::DEL_NAME]];
- records.erase(remove_if(records.begin(), records.end(),
- deleteMatch(
- params[DatabaseAccessor::DEL_TYPE],
- params[DatabaseAccessor::DEL_RDATA])),
- records.end());
- if (records.empty()) {
- domains.erase(params[DatabaseAccessor::DEL_NAME]);
- }
- }
- public:
- virtual void deleteRecordInZone(const string (¶ms)[DEL_PARAM_COUNT]) {
- deleteRecord(*update_records_, params);
- }
- virtual void deleteNSEC3RecordInZone(
- const string (¶ms)[DEL_PARAM_COUNT])
- {
- deleteRecord(*update_nsec3_namespace_, params);
- }
- //
- // Helper methods to keep track of some update related activities
- //
- bool isRollbacked() const {
- return (rollbacked_);
- }
- const string* getLastAdded() const {
- return (columns_lastadded_);
- }
- // This allows the test code to get the accessor used in an update context
- boost::shared_ptr<const MockAccessor> getLatestClone() const {
- return (latest_clone_);
- }
- virtual std::string findPreviousName(int id, const std::string& rname)
- const
- {
- if (id == -1) {
- isc_throw(isc::NotImplemented, "Test not implemented behaviour");
- } else if (id == READONLY_ZONE_ID) {
- // For some specific names we intentionally return broken or
- // unexpected result.
- if (rname == "org.example.badnsec2.") {
- return ("badnsec1.example.org.");
- } else if (rname == "org.example.brokenname.") {
- return ("brokenname...example.org.");
- } else if (rname == "org.example.notimplnsec." ||
- rname == "org.example.wild.here.") {
- isc_throw(isc::NotImplemented, "Not implemented in this test");
- }
- // For the general case, we search for the first name N in the
- // domains that meets N >= reverse(rname) using lower_bound.
- // The "previous name" is the name of the previous entry of N.
- // Note that Domains are internally sorted by the Name comparison
- // order. Due to the API requirement we are given a reversed
- // name (rname), so we need to reverse it again to convert it
- // to the original name.
- Domains::const_iterator it(readonly_records_->lower_bound(
- Name(rname).reverse().toText()));
- if (it == readonly_records_->begin()) {
- isc_throw(isc::Unexpected, "Unexpected name");
- }
- if (it == readonly_records_->end()) {
- return ((*readonly_records_->rbegin()).first);
- }
- return ((*(--it)).first);
- } else {
- isc_throw(isc::Unexpected, "Unknown zone ID");
- }
- }
- virtual std::string findPreviousNSEC3Hash(int,
- const std::string& hash) const
- {
- // TODO: Provide some broken data, but it is not known yet how broken
- // they'll have to be.
- Domains::const_iterator it(nsec3_namespace_->lower_bound(hash));
- // We got just after the one we want
- if (it == nsec3_namespace_->begin()) {
- // Hmm, we got something really small. So we wrap around.
- // This is one after the last, so after decreasing it we'll get
- // the biggest.
- it = nsec3_namespace_->end();
- }
- return ((--it)->first);
- }
- virtual void addRecordDiff(int id, uint32_t serial,
- DiffOperation operation,
- const std::string (&data)[DIFF_PARAM_COUNT])
- {
- if (id == 13) { // The null zone doesn't support journaling
- isc_throw(isc::NotImplemented, "Test not implemented behaviour");
- } else if (id == -1) { // Bad zone throws
- isc_throw(DataSourceError, "Test error");
- } else {
- journal_entries_->push_back(JournalEntry(id, serial, operation,
- data));
- }
- }
- virtual IteratorContextPtr getDiffs(int id, uint32_t start,
- uint32_t end) const
- {
- vector<JournalEntry> selected_jnl;
- for (vector<JournalEntry>::const_iterator it =
- journal_entries_->begin();
- it != journal_entries_->end(); ++it)
- {
- // For simplicity we assume this method is called for the
- // "readonly" zone possibly after making updates on the "writable"
- // copy and committing them.
- if (id != READONLY_ZONE_ID) {
- continue;
- }
- // Note: the following logic is not 100% accurate in terms of
- // serial number arithmetic; we prefer brevity for testing.
- // Skip until we see the starting serial. Once we started
- // recording this condition is ignored (to support wrap-around
- // case). Also, it ignores the RR type; it only checks the
- // versions.
- if ((*it).serial_ < start && selected_jnl.empty()) {
- continue;
- }
- if ((*it).serial_ > end) { // gone over the end serial. we're done.
- break;
- }
- selected_jnl.push_back(*it);
- }
- // Check if we've found the requested range. If not, throw.
- if (selected_jnl.empty() || selected_jnl.front().serial_ != start ||
- selected_jnl.back().serial_ != end) {
- isc_throw(NoSuchSerial, "requested diff range is not found");
- }
- return (IteratorContextPtr(new MockDiffIteratorContext(selected_jnl)));
- }
- // Check the journal is as expected and clear the journal
- void checkJournal(const std::vector<JournalEntry> &expected) const {
- std::vector<JournalEntry> journal;
- // Clean the journal, but keep local copy to check
- journal.swap(*journal_entries_);
- ASSERT_EQ(expected.size(), journal.size());
- for (size_t i = 0; i < expected.size(); ++ i) {
- EXPECT_TRUE(expected[i] == journal[i]);
- }
- }
- private:
- // The following member variables are storage and/or update work space
- // of the test zone. The "master"s are the real objects that contain
- // the data, and they are shared among all accessors cloned from
- // an initially created one. The "copy" data will be used for read-only
- // transaction. The pointer members allow the sharing.
- // "readonly" is for normal lookups. "update" is the workspace for
- // updates. When update starts it will be initialized either as an
- // empty set (when replacing the entire zone) or as a copy of the
- // "readonly" one. "empty" is a sentinel to produce negative results.
- Domains readonly_records_master_;
- Domains readonly_records_copy_;
- Domains* readonly_records_;
- Domains update_records_master_;
- Domains* update_records_;
- Domains nsec3_namespace_master_;
- Domains* nsec3_namespace_;
- Domains update_nsec3_namespace_master_;
- Domains* update_nsec3_namespace_;
- const Domains empty_records_master_;
- const Domains* empty_records_;
- // The journal data
- std::vector<JournalEntry> journal_entries_master_;
- std::vector<JournalEntry>* journal_entries_;
- // used as temporary storage after searchForRecord() and during
- // getNextRecord() calls, as well as during the building of the
- // fake data
- std::vector< std::vector<std::string> > cur_name_;
- // The columns that were most recently added via addRecordToZone()
- string columns_lastadded_[ADD_COLUMN_COUNT];
- // Whether rollback operation has been performed for the database.
- // Not useful except for purely testing purpose.
- bool rollbacked_;
- // Remember the mock accessor that was last cloned
- boost::shared_ptr<MockAccessor> latest_clone_;
- // Internal flag for duplicate check
- bool did_transaction_;
- const Domains& getMockRecords(int zone_id) const {
- if (zone_id == READONLY_ZONE_ID) {
- return (*readonly_records_);
- } else if (zone_id == WRITABLE_ZONE_ID) {
- return (*update_records_);
- }
- return (*empty_records_);
- }
- // Adds one record to the current name in the database
- // The actual data will not be added to 'records' until
- // addCurName() is called
- void addRecord(const std::string& type,
- const std::string& ttl,
- const std::string& sigtype,
- const std::string& rdata) {
- std::vector<std::string> columns;
- columns.push_back(type);
- columns.push_back(ttl);
- columns.push_back(sigtype);
- columns.push_back(rdata);
- cur_name_.push_back(columns);
- }
- // Adds all records we just built with calls to addRecords
- // to the actual fake database. This will clear cur_name_,
- // so we can immediately start adding new records.
- void addCurName(const std::string& name) {
- ASSERT_EQ(0, readonly_records_->count(name));
- // Append the name to all of them
- for (std::vector<std::vector<std::string> >::iterator
- i = cur_name_.begin(); i != cur_name_.end(); ++ i) {
- i->push_back(name);
- }
- (*readonly_records_)[name] = cur_name_;
- cur_name_.clear();
- }
- // Works in a similar way to addCurName, but it is added to
- // the NSEC3 namespace. You don't provide the full name, only
- // the hash part.
- void addCurHash(const std::string& hash) {
- ASSERT_EQ(0, nsec3_namespace_->count(hash));
- // Append the name to all of them
- for (std::vector<std::vector<std::string> >::iterator
- i = cur_name_.begin(); i != cur_name_.end(); ++ i) {
- i->push_back(hash);
- }
- (*nsec3_namespace_)[hash] = cur_name_;
- cur_name_.clear();
- }
- // Fills the database with zone data.
- // This method constructs a number of resource records (with addRecord),
- // which will all be added for one domain name to the fake database
- // (with addCurName). So for instance the first set of calls create
- // data for the name 'www.example.org', which will consist of one A RRset
- // of one record, and one AAAA RRset of two records.
- // The order in which they are added is the order in which getNextRecord()
- // will return them (so we can test whether find() etc. support data that
- // might not come in 'normal' order)
- // It shall immediately fail if you try to add the same name twice.
- void fillData() {
- const char* prev_name = NULL;
- for (int i = 0; TEST_RECORDS[i][0] != NULL; ++i) {
- if (prev_name != NULL &&
- strcmp(prev_name, TEST_RECORDS[i][0]) != 0) {
- addCurName(prev_name);
- }
- prev_name = TEST_RECORDS[i][0];
- addRecord(TEST_RECORDS[i][1], TEST_RECORDS[i][2],
- TEST_RECORDS[i][3], TEST_RECORDS[i][4]);
- }
- addCurName(prev_name);
- prev_name = NULL;
- for (int i = 0; TEST_NSEC3_RECORDS[i][0] != NULL; ++i) {
- if (prev_name != NULL &&
- strcmp(prev_name, TEST_NSEC3_RECORDS[i][0]) != 0) {
- addCurHash(prev_name);
- }
- prev_name = TEST_NSEC3_RECORDS[i][0];
- addRecord(TEST_NSEC3_RECORDS[i][1], TEST_NSEC3_RECORDS[i][2],
- TEST_NSEC3_RECORDS[i][3], TEST_NSEC3_RECORDS[i][4]);
- }
- addCurHash(prev_name);
- }
- public:
- // This adds the NSEC3PARAM into the apex, so we can perform some NSEC3
- // tests. Note that the NSEC3 namespace is available in other tests, but
- // it should not be accessed at that time.
- void enableNSEC3() {
- for (int i = 0; TEST_NSEC3PARAM_RECORDS[i][0] != NULL; ++i) {
- vector<string> param;
- param.push_back(TEST_NSEC3PARAM_RECORDS[i][1]); // RRtype
- param.push_back(TEST_NSEC3PARAM_RECORDS[i][2]); // TTL
- param.push_back(""); // sigtype, unused
- param.push_back(TEST_NSEC3PARAM_RECORDS[i][4]); // RDATA
- param.push_back(TEST_NSEC3PARAM_RECORDS[i][0]); // owner name
- (*readonly_records_)[param.back()].push_back(param);
- }
- }
- };
- // This tests the default getRecords behaviour, throwing NotImplemented
- TEST(DatabaseConnectionTest, getRecords) {
- EXPECT_THROW(NopAccessor().getRecords(".", 1, false),
- isc::NotImplemented);
- }
- // This tests the default getAllRecords behaviour, throwing NotImplemented
- TEST(DatabaseConnectionTest, getAllRecords) {
- // The parameters don't matter
- EXPECT_THROW(NopAccessor().getAllRecords(1),
- isc::NotImplemented);
- }
- // This test fixture is templated so that we can share (most of) the test
- // cases with different types of data sources. Note that in test cases
- // we need to use 'this' to refer to member variables of the test class.
- template <typename ACCESSOR_TYPE>
- class DatabaseClientTest : public ::testing::Test {
- public:
- DatabaseClientTest() : zname_("example.org"), qname_("www.example.org"),
- qclass_(RRClass::IN()), qtype_(RRType::A()),
- rrttl_(3600)
- {
- createClient();
- // set up the commonly used finder.
- DataSourceClient::FindResult zone(client_->findZone(zname_));
- assert(zone.code == result::SUCCESS);
- finder_ = dynamic_pointer_cast<DatabaseClient::Finder>(
- zone.zone_finder);
- // Test IN/A RDATA to be added in update tests. Intentionally using
- // different data than the initial data configured in the MockAccessor.
- rrset_.reset(new RRset(qname_, qclass_, qtype_, rrttl_));
- rrset_->addRdata(rdata::createRdata(rrset_->getType(),
- rrset_->getClass(), "192.0.2.2"));
- soa_.reset(new RRset(zname_, qclass_, RRType::SOA(), rrttl_));
- soa_->addRdata(rdata::createRdata(soa_->getType(), soa_->getClass(),
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200"));
- // And its RRSIG. Also different from the configured one.
- rrsigset_.reset(new RRset(qname_, qclass_, RRType::RRSIG(),
- rrttl_));
- rrsigset_->addRdata(rdata::createRdata(rrsigset_->getType(),
- rrsigset_->getClass(),
- "A 5 3 0 20000101000000 "
- "20000201000000 0 example.org. "
- "FAKEFAKEFAKE"));
- }
- ~ DatabaseClientTest() {
- // Make sure we return the default creator no matter if we set it or not
- setNSEC3HashCreator(NULL);
- }
- /*
- * We initialize the client from a function, so we can call it multiple
- * times per test.
- */
- void createClient() {
- // To make sure we always have empty diffs table at the beginning of
- // each test, we re-install the writable data source here.
- // Note: this is SQLite3 specific and a waste (though otherwise
- // harmless) for other types of data sources. If and when we support
- // more types of data sources in this test framework, we should
- // probably move this to some specialized templated method specific
- // to SQLite3 (or for even a longer term we should add an API to
- // purge the diffs table).
- const char* const install_cmd = INSTALL_PROG " -c " TEST_DATA_COMMONDIR
- "/rwtest.sqlite3 " TEST_DATA_BUILDDIR
- "/rwtest.sqlite3.copied";
- if (system(install_cmd) != 0) {
- // any exception will do, this is failure in test setup, but nice
- // to show the command that fails, and shouldn't be caught
- isc_throw(isc::Exception,
- "Error setting up; command failed: " << install_cmd);
- }
- current_accessor_ = new ACCESSOR_TYPE();
- is_mock_ = (dynamic_cast<MockAccessor*>(current_accessor_) != NULL);
- client_.reset(new DatabaseClient(qclass_,
- boost::shared_ptr<ACCESSOR_TYPE>(
- current_accessor_)));
- }
- /**
- * Check the zone finder is a valid one and references the zone ID and
- * database available here.
- */
- void checkZoneFinder(const DataSourceClient::FindResult& zone) {
- ASSERT_NE(ZoneFinderPtr(), zone.zone_finder) << "No zone finder";
- boost::shared_ptr<DatabaseClient::Finder> finder(
- dynamic_pointer_cast<DatabaseClient::Finder>(zone.zone_finder));
- ASSERT_NE(boost::shared_ptr<DatabaseClient::Finder>(), finder) <<
- "Wrong type of finder";
- if (is_mock_) {
- EXPECT_EQ(READONLY_ZONE_ID, finder->zone_id());
- }
- EXPECT_EQ(current_accessor_, &finder->getAccessor());
- }
- boost::shared_ptr<DatabaseClient::Finder> getFinder() {
- DataSourceClient::FindResult zone(client_->findZone(zname_));
- EXPECT_EQ(result::SUCCESS, zone.code);
- boost::shared_ptr<DatabaseClient::Finder> finder(
- dynamic_pointer_cast<DatabaseClient::Finder>(zone.zone_finder));
- if (is_mock_) {
- EXPECT_EQ(READONLY_ZONE_ID, finder->zone_id());
- }
- return (finder);
- }
- // Helper methods for update tests
- bool isRollbacked(bool expected = false) const {
- if (is_mock_) {
- const MockAccessor& mock_accessor =
- dynamic_cast<const MockAccessor&>(*update_accessor_);
- return (mock_accessor.isRollbacked());
- } else {
- return (expected);
- }
- }
- void checkLastAdded(const char* const expected[]) const {
- if (is_mock_) {
- const MockAccessor* mock_accessor =
- dynamic_cast<const MockAccessor*>(current_accessor_);
- for (int i = 0; i < DatabaseAccessor::ADD_COLUMN_COUNT; ++i) {
- EXPECT_EQ(expected[i],
- mock_accessor->getLatestClone()->getLastAdded()[i]);
- }
- }
- }
- void setUpdateAccessor() {
- if (is_mock_) {
- const MockAccessor* mock_accessor =
- dynamic_cast<const MockAccessor*>(current_accessor_);
- update_accessor_ = mock_accessor->getLatestClone();
- }
- }
- void checkJournal(const vector<JournalEntry>& expected) {
- if (is_mock_) {
- const MockAccessor* mock_accessor =
- dynamic_cast<const MockAccessor*>(current_accessor_);
- mock_accessor->checkJournal(expected);
- } else {
- // For other generic databases, retrieve the diff using the
- // reader class and compare the resulting sequence of RRset.
- // For simplicity we only consider the case where the expected
- // sequence is not empty.
- ASSERT_FALSE(expected.empty());
- const Name zone_name(expected.front().
- data_[DatabaseAccessor::DIFF_NAME]);
- ZoneJournalReaderPtr jnl_reader =
- client_->getJournalReader(zone_name,
- expected.front().serial_,
- expected.back().serial_).second;
- ASSERT_TRUE(jnl_reader);
- ConstRRsetPtr rrset;
- vector<JournalEntry>::const_iterator it = expected.begin();
- for (rrset = jnl_reader->getNextDiff();
- rrset && it != expected.end();
- rrset = jnl_reader->getNextDiff(), ++it) {
- typedef DatabaseAccessor Accessor;
- RRsetPtr expected_rrset(
- new RRset(Name((*it).data_[Accessor::DIFF_NAME]),
- qclass_,
- RRType((*it).data_[Accessor::DIFF_TYPE]),
- RRTTL((*it).data_[Accessor::DIFF_TTL])));
- expected_rrset->addRdata(
- rdata::createRdata(expected_rrset->getType(),
- expected_rrset->getClass(),
- (*it).data_[Accessor::DIFF_RDATA]));
- rrsetCheck(expected_rrset, rrset);
- }
- // We should have examined all entries of both expected and
- // actual data.
- EXPECT_TRUE(it == expected.end());
- ASSERT_FALSE(rrset);
- }
- }
- // Mock-only; control whether to allow subsequent transaction.
- void allowMoreTransaction(bool is_allowed) {
- if (is_mock_) {
- // Use a separate variable for MockAccessor&; some compilers
- // would be confused otherwise.
- MockAccessor& mock_accessor =
- dynamic_cast<MockAccessor&>(*current_accessor_);
- mock_accessor.allowMoreTransaction(is_allowed);
- }
- }
- // Some tests only work for MockAccessor. We remember whether our accessor
- // is of that type.
- bool is_mock_;
- // Will be deleted by client_, just keep the current value for comparison.
- ACCESSOR_TYPE* current_accessor_;
- boost::shared_ptr<DatabaseClient> client_;
- const std::string database_name_;
- // The zone finder of the test zone commonly used in various tests.
- boost::shared_ptr<DatabaseClient::Finder> finder_;
- // Some shortcut variables for commonly used test parameters
- const Name zname_; // the zone name stored in the test data source
- const Name qname_; // commonly used name to be found
- const RRClass qclass_; // commonly used RR class used with qname
- const RRType qtype_; // commonly used RR type used with qname
- const RRTTL rrttl_; // commonly used RR TTL
- RRsetPtr rrset_; // for adding/deleting an RRset
- RRsetPtr rrsigset_; // for adding/deleting an RRset
- RRsetPtr soa_; // for adding/deleting an RRset
- // update related objects to be tested
- ZoneUpdaterPtr updater_;
- boost::shared_ptr<const DatabaseAccessor> update_accessor_;
- // placeholders
- const std::vector<std::string> empty_rdatas_; // for NXRRSET/NXDOMAIN
- std::vector<std::string> expected_rdatas_;
- std::vector<std::string> expected_sig_rdatas_;
- // A creator for use in several NSEC3 related tests.
- TestNSEC3HashCreator test_nsec3_hash_creator_;
- };
- class TestSQLite3Accessor : public SQLite3Accessor {
- public:
- TestSQLite3Accessor() : SQLite3Accessor(
- TEST_DATA_BUILDDIR "/rwtest.sqlite3.copied", "IN")
- {
- startUpdateZone("example.org.", true);
- string columns[ADD_COLUMN_COUNT];
- for (int i = 0; TEST_RECORDS[i][0] != NULL; ++i) {
- columns[ADD_NAME] = TEST_RECORDS[i][0];
- columns[ADD_REV_NAME] = Name(columns[ADD_NAME]).reverse().toText();
- columns[ADD_TYPE] = TEST_RECORDS[i][1];
- columns[ADD_TTL] = TEST_RECORDS[i][2];
- columns[ADD_SIGTYPE] = TEST_RECORDS[i][3];
- columns[ADD_RDATA] = TEST_RECORDS[i][4];
- addRecordToZone(columns);
- }
- // We don't add NSEC3s until we are explicitly told we need them
- // in enableNSEC3(); these would break some non NSEC3 tests.
- commit();
- }
- void enableNSEC3() {
- startUpdateZone("example.org.", false);
- // Add NSECPARAM at the zone origin
- for (int i = 0; TEST_NSEC3PARAM_RECORDS[i][0] != NULL; ++i) {
- const string param_columns[ADD_COLUMN_COUNT] = {
- TEST_NSEC3PARAM_RECORDS[i][0], // name
- Name(param_columns[ADD_NAME]).reverse().toText(), // revname
- TEST_NSEC3PARAM_RECORDS[i][2], // TTL
- TEST_NSEC3PARAM_RECORDS[i][1], // RR type
- TEST_NSEC3PARAM_RECORDS[i][3], // sigtype
- TEST_NSEC3PARAM_RECORDS[i][4] }; // RDATA
- addRecordToZone(param_columns);
- }
- // Add NSEC3s
- for (int i = 0; TEST_NSEC3_RECORDS[i][0] != NULL; ++i) {
- const string nsec3_columns[ADD_NSEC3_COLUMN_COUNT] = {
- Name(TEST_NSEC3_RECORDS[i][0]).split(0, 1).toText(true),
- TEST_NSEC3_RECORDS[i][2], // TTL
- TEST_NSEC3_RECORDS[i][1], // RR type
- TEST_NSEC3_RECORDS[i][4] }; // RDATA
- addNSEC3RecordToZone(nsec3_columns);
- }
- commit();
- }
- };
- // The following two lines instantiate test cases with concrete accessor
- // classes to be tested.
- // XXX: clang++ installed on our FreeBSD buildbot cannot complete compiling
- // this file, seemingly due to the size of the code. We'll consider more
- // complete workaround, but for a short term workaround we'll reduce the
- // number of tested accessor classes (thus reducing the amount of code
- // to be compiled) for this particular environment.
- #if defined(__clang__) && defined(__FreeBSD__)
- typedef ::testing::Types<MockAccessor> TestAccessorTypes;
- #else
- typedef ::testing::Types<MockAccessor, TestSQLite3Accessor> TestAccessorTypes;
- #endif
- TYPED_TEST_CASE(DatabaseClientTest, TestAccessorTypes);
- // In some cases the entire test fixture is for the mock accessor only.
- // We use the usual TEST_F for them with the corresponding specialized class
- // to make the code simpler.
- typedef DatabaseClientTest<MockAccessor> MockDatabaseClientTest;
- TYPED_TEST(DatabaseClientTest, zoneNotFound) {
- DataSourceClient::FindResult zone(
- this->client_->findZone(Name("example.com")));
- EXPECT_EQ(result::NOTFOUND, zone.code);
- }
- TYPED_TEST(DatabaseClientTest, exactZone) {
- DataSourceClient::FindResult zone(
- this->client_->findZone(Name("example.org")));
- EXPECT_EQ(result::SUCCESS, zone.code);
- this->checkZoneFinder(zone);
- }
- TYPED_TEST(DatabaseClientTest, superZone) {
- DataSourceClient::FindResult zone(this->client_->findZone(Name(
- "sub.example.org")));
- EXPECT_EQ(result::PARTIALMATCH, zone.code);
- this->checkZoneFinder(zone);
- }
- // This test doesn't depend on derived accessor class, so we use TEST().
- TEST(GenericDatabaseClientTest, noAccessorException) {
- // We need a dummy variable here; some compiler would regard it a mere
- // declaration instead of an instantiation and make the test fail.
- EXPECT_THROW(DatabaseClient dummy(RRClass::IN(),
- boost::shared_ptr<DatabaseAccessor>()),
- isc::InvalidParameter);
- }
- // If the zone doesn't exist, exception is thrown
- TYPED_TEST(DatabaseClientTest, noZoneIterator) {
- EXPECT_THROW(this->client_->getIterator(Name("example.com")),
- DataSourceError);
- }
- // If the zone doesn't exist and iteration is not implemented, it still throws
- // the exception it doesn't exist
- TEST(GenericDatabaseClientTest, noZoneNotImplementedIterator) {
- EXPECT_THROW(DatabaseClient(RRClass::IN(),
- boost::shared_ptr<DatabaseAccessor>(
- new NopAccessor())).getIterator(
- Name("example.com")),
- DataSourceError);
- }
- TEST(GenericDatabaseClientTest, notImplementedIterator) {
- EXPECT_THROW(DatabaseClient(RRClass::IN(),
- boost::shared_ptr<DatabaseAccessor>(
- new NopAccessor())).getIterator(Name("example.org")),
- isc::NotImplemented);
- }
- // Pretend a bug in the connection and pass NULL as the context
- // Should not crash, but gracefully throw. Works for the mock accessor only.
- TEST_F(MockDatabaseClientTest, nullIteratorContext) {
- EXPECT_THROW(this->client_->getIterator(Name("null.example.org")),
- isc::Unexpected);
- }
- // It doesn't crash or anything if the zone is completely empty.
- // Works for the mock accessor only.
- TEST_F(MockDatabaseClientTest, emptyIterator) {
- ZoneIteratorPtr it(this->client_->getIterator(Name("empty.example.org")));
- EXPECT_EQ(ConstRRsetPtr(), it->getNextRRset());
- // This is past the end, it should throw
- EXPECT_THROW(it->getNextRRset(), isc::Unexpected);
- }
- // checks if the given rrset matches the
- // given name, class, type and rdatas
- void
- checkRRset(isc::dns::ConstRRsetPtr rrset,
- const isc::dns::Name& name,
- const isc::dns::RRClass& rrclass,
- const isc::dns::RRType& rrtype,
- const isc::dns::RRTTL& rrttl,
- const std::vector<std::string>& rdatas) {
- isc::dns::RRsetPtr expected_rrset(
- new isc::dns::RRset(name, rrclass, rrtype, rrttl));
- for (unsigned int i = 0; i < rdatas.size(); ++i) {
- expected_rrset->addRdata(
- isc::dns::rdata::createRdata(rrtype, rrclass,
- rdatas[i]));
- }
- rrsetCheck(expected_rrset, rrset);
- }
- // Iterate through a zone, common case
- TYPED_TEST(DatabaseClientTest, iterator) {
- ZoneIteratorPtr it(this->client_->getIterator(Name("example.org")));
- ConstRRsetPtr rrset(it->getNextRRset());
- ASSERT_NE(ConstRRsetPtr(), rrset);
- // The first name should be the zone origin.
- EXPECT_EQ(this->zname_, rrset->getName());
- }
- // Supplemental structure used in the couple of tests below. It represents
- // parameters of an expected RRset containing up to two RDATAs. If it contains
- // only one RDATA, rdata2 is NULL.
- struct ExpectedRRset {
- const char* const name;
- const RRType rrtype;
- const RRTTL rrttl;
- const char* const rdata1;
- const char* const rdata2;
- };
- // Common checker for the iterator tests below. It extracts RRsets from the
- // give iterator and compare them to the expected sequence.
- void
- checkIteratorSequence(ZoneIterator& it, ExpectedRRset expected_sequence[],
- size_t num_rrsets)
- {
- vector<string> expected_rdatas;
- for (size_t i = 0; i < num_rrsets; ++i) {
- const ConstRRsetPtr rrset = it.getNextRRset();
- ASSERT_TRUE(rrset);
- expected_rdatas.clear();
- expected_rdatas.push_back(expected_sequence[i].rdata1);
- if (expected_sequence[i].rdata2 != NULL) {
- expected_rdatas.push_back(expected_sequence[i].rdata2);
- }
- checkRRset(rrset, Name(expected_sequence[i].name), RRClass::IN(),
- expected_sequence[i].rrtype, expected_sequence[i].rrttl,
- expected_rdatas);
- }
- EXPECT_FALSE(it.getNextRRset());
- }
- TEST_F(MockDatabaseClientTest, iterator) {
- // This version of test creates an iterator that combines same types of
- // RRs into single RRsets.
- ExpectedRRset expected_sequence[] = {
- {"example.org", RRType::A(), rrttl_, "192.0.2.1", NULL},
- {"example.org", RRType::SOA(), rrttl_,
- "ns1.example.org. admin.example.org. 1234 3600 1800 2419200 7200",
- NULL},
- {"x.example.org", RRType::A(), RRTTL(300), "192.0.2.1", "192.0.2.2"},
- {"x.example.org", RRType::AAAA(), RRTTL(300),
- "2001:db8::1", "2001:db8::2"},
- {"x.example.org", RRType::RRSIG(), RRTTL(300),
- "A 5 3 3600 20000101000000 20000201000000 12345 example.org. "
- "FAKEFAKEFAKE", NULL},
- {"x.example.org", RRType::RRSIG(), RRTTL(300),
- "AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. "
- "FAKEFAKEFAKEFAKE", NULL},
- {"ttldiff.example.org", RRType::A(), RRTTL(300),
- "192.0.2.1", "192.0.2.2"},
- {"ttldiff2.example.org", RRType::AAAA(), RRTTL(300),
- "2001:db8::1", "2001:db8::2"}
- };
- checkIteratorSequence(*client_->getIterator(Name("example.org")),
- expected_sequence,
- sizeof(expected_sequence) /
- sizeof(expected_sequence[0]));
- }
- TEST_F(MockDatabaseClientTest, iteratorSeparateRRs) {
- // This version of test creates an iterator that separates all RRs as
- // individual RRsets. In particular, it preserves the TTLs of an RRset
- // even if they are different.
- ExpectedRRset expected_sequence[] = {
- {"example.org", RRType::A(), rrttl_, "192.0.2.1", NULL},
- {"example.org", RRType::SOA(), rrttl_,
- "ns1.example.org. admin.example.org. 1234 3600 1800 2419200 7200",
- NULL},
- {"x.example.org", RRType::A(), RRTTL(300), "192.0.2.1", NULL},
- {"x.example.org", RRType::A(), RRTTL(300), "192.0.2.2", NULL},
- {"x.example.org", RRType::AAAA(), RRTTL(300), "2001:db8::1", NULL},
- {"x.example.org", RRType::AAAA(), RRTTL(300), "2001:db8::2", NULL},
- {"x.example.org", RRType::RRSIG(), RRTTL(300),
- "A 5 3 3600 20000101000000 20000201000000 12345 example.org. "
- "FAKEFAKEFAKE", NULL},
- {"x.example.org", RRType::RRSIG(), RRTTL(300),
- "AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. "
- "FAKEFAKEFAKEFAKE", NULL},
- {"ttldiff.example.org", RRType::A(), RRTTL(300), "192.0.2.1", NULL},
- {"ttldiff.example.org", RRType::A(), RRTTL(600), "192.0.2.2", NULL},
- {"ttldiff2.example.org", RRType::AAAA(), RRTTL(600), "2001:db8::1",
- NULL},
- {"ttldiff2.example.org", RRType::AAAA(), RRTTL(300), "2001:db8::2",
- NULL}
- };
- checkIteratorSequence(*client_->getIterator(Name("example.org"), true),
- expected_sequence,
- sizeof(expected_sequence) /
- sizeof(expected_sequence[0]));
- }
- // This has inconsistent TTL in the set (the rest, like nonsense in
- // the data is handled in rdata itself). Works for the mock accessor only.
- TEST_F(MockDatabaseClientTest, badIterator) {
- // It should not throw, but get the lowest one of them
- ZoneIteratorPtr it(this->client_->getIterator(Name("bad.example.org")));
- EXPECT_EQ(it->getNextRRset()->getTTL(), isc::dns::RRTTL(300));
- }
- TYPED_TEST(DatabaseClientTest, getSOAFromIterator) {
- vector<string> soa_data;
- soa_data.push_back("ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200");
- ZoneIteratorPtr it(this->client_->getIterator(this->zname_));
- ASSERT_TRUE(it);
- checkRRset(it->getSOA(), this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_, soa_data);
- // Iterate over the zone until we find an SOA. Although there's a broken
- // RDATA that would trigger an exception in getNextRRset(), we should
- // reach the SOA as the sequence should be sorted and the SOA is at
- // the origin name (which has no bogus data).
- ConstRRsetPtr rrset;
- while ((rrset = it->getNextRRset()) != ConstRRsetPtr() &&
- rrset->getType() != RRType::SOA()) {
- ;
- }
- ASSERT_TRUE(rrset);
- // It should be identical to the result of getSOA().
- rrsetCheck(it->getSOA(), rrset);
- }
- TYPED_TEST(DatabaseClientTest, noSOAFromIterator) {
- // First, empty the zone.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- // Then getSOA() should return NULL.
- ZoneIteratorPtr it(this->client_->getIterator(this->zname_));
- ASSERT_TRUE(it);
- EXPECT_FALSE(it->getSOA());
- }
- TYPED_TEST(DatabaseClientTest, iterateThenUpdate) {
- ZoneIteratorPtr it(this->client_->getIterator(this->zname_));
- ASSERT_TRUE(it);
- // Try to empty the zone after getting the iterator. Depending on the
- // underlying data source, it may result in an exception due to the
- // transaction for the iterator. In either case the integrity of the
- // iterator result should be reserved.
- try {
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- // Confirm at least it doesn't contain any SOA
- EXPECT_EQ(ZoneFinder::NXDOMAIN,
- this->getFinder()->find(this->zname_, RRType::SOA())->code);
- } catch (const DataSourceError&) {}
- ConstRRsetPtr rrset;
- while ((rrset = it->getNextRRset()) != ConstRRsetPtr() &&
- rrset->getType() != RRType::SOA()) {
- ;
- }
- ASSERT_TRUE(rrset);
- // It should be identical to the result of getSOA().
- rrsetCheck(it->getSOA(), rrset);
- }
- TYPED_TEST(DatabaseClientTest, updateThenIterateThenUpdate) {
- // First clear the zone.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- // Then iterate over it. It should immediately reach the end, at which
- // point the transaction should be committed.
- ZoneIteratorPtr it(this->client_->getIterator(this->zname_));
- ASSERT_TRUE(it);
- EXPECT_FALSE(it->getNextRRset());
- // So another update attempt should succeed, too.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- }
- TYPED_TEST(DatabaseClientTest, updateAfterDeleteIterator) {
- // Similar to the previous case, but we delete the iterator in the
- // middle of zone. The transaction should be canceled (actually no
- // different from commit though) at that point.
- ZoneIteratorPtr it(this->client_->getIterator(this->zname_));
- ASSERT_TRUE(it);
- EXPECT_TRUE(it->getNextRRset());
- it.reset();
- // So another update attempt should succeed.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- }
- void
- findTestCommon(ZoneFinder& finder, const isc::dns::Name& name,
- const isc::dns::RRType& type,
- ConstZoneFinderContextPtr actual_result,
- const isc::dns::RRType& expected_type,
- const isc::dns::RRTTL expected_ttl,
- ZoneFinder::Result expected_result,
- const std::vector<string>& expected_rdatas,
- const std::vector<string>& expected_sig_rdatas,
- ZoneFinder::FindResultFlags expected_flags,
- const isc::dns::Name& expected_name,
- const ZoneFinder::FindOptions options)
- {
- ASSERT_EQ(expected_result, actual_result->code) << name << " " << type;
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_WILDCARD) != 0,
- actual_result->isWildcard());
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_NSEC_SIGNED) != 0,
- actual_result->isNSECSigned());
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_NSEC3_SIGNED) != 0,
- actual_result->isNSEC3Signed());
- if (!expected_rdatas.empty() && actual_result->rrset) {
- checkRRset(actual_result->rrset,
- expected_name != Name::ROOT_NAME() ? expected_name :
- name, finder.getClass(), expected_type, expected_ttl,
- expected_rdatas);
- if ((options & ZoneFinder::FIND_DNSSEC) == ZoneFinder::FIND_DNSSEC) {
- if (!expected_sig_rdatas.empty() &&
- actual_result->rrset->getRRsig()) {
- checkRRset(actual_result->rrset->getRRsig(),
- expected_name != Name::ROOT_NAME() ?
- expected_name : name,
- finder.getClass(),
- isc::dns::RRType::RRSIG(), expected_ttl,
- expected_sig_rdatas);
- } else if (expected_sig_rdatas.empty()) {
- EXPECT_EQ(isc::dns::RRsetPtr(),
- actual_result->rrset->getRRsig()) <<
- "Unexpected RRSIG: " <<
- actual_result->rrset->getRRsig()->toText();
- } else {
- ADD_FAILURE() << "Missing RRSIG";
- }
- } else if (actual_result->rrset->getRRsig()) {
- EXPECT_EQ(isc::dns::RRsetPtr(), actual_result->rrset->getRRsig())
- << "Unexpected RRSIG: "
- << actual_result->rrset->getRRsig()->toText();
- }
- } else if (expected_rdatas.empty()) {
- EXPECT_EQ(isc::dns::RRsetPtr(), actual_result->rrset) <<
- "Unexpected RRset: " << actual_result->rrset->toText();
- } else {
- ADD_FAILURE() << "Missing result";
- }
- }
- void
- doFindTest(ZoneFinder& finder,
- const isc::dns::Name& name,
- const isc::dns::RRType& type,
- const isc::dns::RRType& expected_type,
- const isc::dns::RRTTL expected_ttl,
- ZoneFinder::Result expected_result,
- const std::vector<std::string>& expected_rdatas,
- const std::vector<std::string>& expected_sig_rdatas,
- ZoneFinder::FindResultFlags expected_flags =
- ZoneFinder::RESULT_DEFAULT,
- const isc::dns::Name& expected_name = isc::dns::Name::ROOT_NAME(),
- const ZoneFinder::FindOptions options = ZoneFinder::FIND_DEFAULT)
- {
- SCOPED_TRACE("doFindTest " + name.toText() + " " + type.toText());
- ConstZoneFinderContextPtr result = finder.find(name, type, options);
- findTestCommon(finder, name, type, result, expected_type, expected_ttl,
- expected_result, expected_rdatas, expected_sig_rdatas,
- expected_flags, expected_name, options);
- }
- void
- doFindAtOriginTest(ZoneFinder& finder,
- const isc::dns::Name& origin,
- const isc::dns::RRType& type,
- const isc::dns::RRType& expected_type,
- const isc::dns::RRTTL expected_ttl,
- ZoneFinder::Result expected_result,
- const std::vector<std::string>& expected_rdatas,
- const std::vector<std::string>& expected_sig_rdatas,
- ZoneFinder::FindResultFlags expected_flags =
- ZoneFinder::RESULT_DEFAULT,
- const isc::dns::Name& expected_name =
- isc::dns::Name::ROOT_NAME(),
- const ZoneFinder::FindOptions options =
- ZoneFinder::FIND_DEFAULT)
- {
- SCOPED_TRACE("doFindOriginTest " + origin.toText() + " " + type.toText());
- ConstZoneFinderContextPtr result =
- finder.findAtOrigin(type, false, options);
- findTestCommon(finder, origin, type, result, expected_type, expected_ttl,
- expected_result, expected_rdatas, expected_sig_rdatas,
- expected_flags, expected_name, options);
- }
- void
- doFindAllTestResult(ZoneFinder& finder, const isc::dns::Name& name,
- ZoneFinder::Result expected_result,
- const isc::dns::RRType expected_type,
- std::vector<std::string> expected_rdata,
- const isc::dns::Name& expected_name =
- isc::dns::Name::ROOT_NAME(),
- const ZoneFinder::FindOptions options =
- ZoneFinder::FIND_DEFAULT,
- ZoneFinder::FindResultFlags expected_flags =
- ZoneFinder::RESULT_DEFAULT)
- {
- SCOPED_TRACE("All test for " + name.toText());
- std::vector<ConstRRsetPtr> target;
- ConstZoneFinderContextPtr result(finder.findAll(name, target, options));
- EXPECT_TRUE(target.empty());
- EXPECT_EQ(expected_result, result->code);
- EXPECT_EQ(expected_type, result->rrset->getType());
- if (expected_flags != ZoneFinder::RESULT_DEFAULT){
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_WILDCARD) != 0,
- result->isWildcard());
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_NSEC_SIGNED) != 0,
- result->isNSECSigned());
- EXPECT_EQ((expected_flags & ZoneFinder::RESULT_NSEC3_SIGNED) != 0,
- result->isNSEC3Signed());
- }
- RdataIteratorPtr it(result->rrset->getRdataIterator());
- std::vector<std::string> rdata;
- while (!it->isLast()) {
- rdata.push_back(it->getCurrent().toText());
- it->next();
- }
- std::sort(rdata.begin(), rdata.end());
- std::sort(expected_rdata.begin(), expected_rdata.end());
- ASSERT_EQ(expected_rdata.size(), rdata.size());
- for (size_t i(0); i < expected_rdata.size(); ++ i) {
- EXPECT_EQ(expected_rdata[i], rdata[i]);
- }
- EXPECT_TRUE(expected_rdata == rdata);
- EXPECT_EQ(expected_name == isc::dns::Name::ROOT_NAME() ? name :
- expected_name, result->rrset->getName());
- }
- // When asking for an RRset where RRs somehow have different TTLs, it should
- // convert to the lowest one.
- TEST_F(MockDatabaseClientTest, ttldiff) {
- ZoneIteratorPtr it(this->client_->getIterator(Name("example.org")));
- // Walk through the full iterator, we should see 1 rrset with name
- // ttldiff1.example.org., and two rdatas. Same for ttldiff2
- Name name("ttldiff.example.org.");
- bool found = false;
- //bool found2 = false;
- ConstRRsetPtr rrset = it->getNextRRset();
- while(rrset != ConstRRsetPtr()) {
- if (rrset->getName() == name) {
- ASSERT_FALSE(found);
- ASSERT_EQ(2, rrset->getRdataCount());
- ASSERT_EQ(RRTTL(300), rrset->getTTL());
- found = true;
- }
- rrset = it->getNextRRset();
- }
- ASSERT_TRUE(found);
- }
- // Unless we ask for individual RRs in our iterator request. In that case
- // every RR should go into its own 'rrset'
- TEST_F(MockDatabaseClientTest, ttldiff_separate_rrs) {
- ZoneIteratorPtr it(this->client_->getIterator(Name("example.org"), true));
- // Walk through the full iterator, we should see 1 rrset with name
- // ttldiff1.example.org., and two rdatas. Same for ttldiff2
- Name name("ttldiff.example.org.");
- int found1 = false;
- int found2 = false;
- ConstRRsetPtr rrset = it->getNextRRset();
- while(rrset != ConstRRsetPtr()) {
- if (rrset->getName() == name) {
- ASSERT_EQ(1, rrset->getRdataCount());
- // We should find 1 'rrset' with TTL 300 and one with TTL 600
- if (rrset->getTTL() == RRTTL(300)) {
- ASSERT_FALSE(found1);
- found1 = true;
- } else if (rrset->getTTL() == RRTTL(600)) {
- ASSERT_FALSE(found2);
- found2 = true;
- } else {
- FAIL() << "Found unexpected TTL: " <<
- rrset->getTTL().toText();
- }
- }
- rrset = it->getNextRRset();
- }
- ASSERT_TRUE(found1);
- ASSERT_TRUE(found2);
- }
- TYPED_TEST(DatabaseClientTest, find) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, isc::dns::Name("www.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- doFindTest(*finder, isc::dns::Name("www2.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::1");
- this->expected_rdatas_.push_back("2001:db8::2");
- doFindTest(*finder, isc::dns::Name("www.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_,
- ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("www.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::TXT(),
- this->rrttl_,
- ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- doFindTest(*finder, isc::dns::Name("cname.example.org."),
- this->qtype_, isc::dns::RRType::CNAME(), this->rrttl_,
- ZoneFinder::CNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- doFindTest(*finder, isc::dns::Name("cname.example.org."),
- isc::dns::RRType::CNAME(), isc::dns::RRType::CNAME(),
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("doesnotexist.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12346 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signed1.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::1");
- this->expected_rdatas_.push_back("2001:db8::2");
- this->expected_sig_rdatas_.push_back("AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signed1.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("signed1.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::TXT(), this->rrttl_,
- ZoneFinder::NXRRSET, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- this->expected_sig_rdatas_.push_back("CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signedcname1.example.org."),
- this->qtype_, isc::dns::RRType::CNAME(), this->rrttl_,
- ZoneFinder::CNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12346 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signed2.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::2");
- this->expected_rdatas_.push_back("2001:db8::1");
- this->expected_sig_rdatas_.push_back("AAAA 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signed2.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("signed2.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::TXT(), this->rrttl_,
- ZoneFinder::NXRRSET, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- this->expected_sig_rdatas_.push_back("CNAME 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("signedcname2.example.org."),
- this->qtype_, isc::dns::RRType::CNAME(), this->rrttl_,
- ZoneFinder::CNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("acnamesig1.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("acnamesig2.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("acnamesig3.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- doFindTest(*finder, isc::dns::Name("ttldiff1.example.org."),
- this->qtype_, this->qtype_, isc::dns::RRTTL(360),
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- doFindTest(*finder, isc::dns::Name("ttldiff2.example.org."),
- this->qtype_, this->qtype_, isc::dns::RRTTL(360),
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- EXPECT_THROW(finder->find(isc::dns::Name("badcname1.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badcname2.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badcname3.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badrdata.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badtype.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badttl.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(isc::dns::Name("badsig.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- // Trigger the hardcoded exceptions and see if find() has cleaned up
- if (this->is_mock_) {
- EXPECT_THROW(finder->find(Name("dsexception.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(Name("iscexception.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- isc::Exception);
- EXPECT_THROW(finder->find(Name("basicexception.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- std::exception);
- EXPECT_THROW(finder->find(Name("dsexception.getnext.example.org"),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- EXPECT_THROW(finder->find(Name("iscexception.getnext.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- isc::Exception);
- EXPECT_THROW(finder->find(Name("basicexception.getnext.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- std::exception);
- }
- // This RRSIG has the wrong sigtype field, which should be
- // an error if we decide to keep using that field
- // Right now the field is ignored, so it does not error
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("badsigtype.example.org."),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- }
- TYPED_TEST(DatabaseClientTest, findAtOrigin) {
- ZoneFinderPtr finder(this->getFinder());
- // Specified type of RR exists, no DNSSEC
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com.");
- doFindAtOriginTest(*finder, this->zname_, RRType::NS(), RRType::NS(),
- this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- // Specified type of RR exists, with DNSSEC
- this->expected_sig_rdatas_.push_back("NS 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindAtOriginTest(*finder, this->zname_, RRType::NS(), RRType::NS(),
- this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT, this->zname_,
- ZoneFinder::FIND_DNSSEC);
- // Specified type of RR doesn't exist, no DNSSEC
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindAtOriginTest(*finder, this->zname_, RRType::TXT(), this->qtype_,
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- // Specified type of RR doesn't exist, with DNSSEC
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back(
- "acnamesig1.example.org. A NS RRSIG NSEC");
- this->expected_sig_rdatas_.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindAtOriginTest(*finder, this->zname_, RRType::TXT(), RRType::NSEC(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED,
- this->zname_, ZoneFinder::FIND_DNSSEC);
- // Specified type of RR doesn't exist, with DNSSEC, enabling NSEC3
- this->current_accessor_->enableNSEC3();
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindAtOriginTest(*finder, this->zname_, RRType::TXT(), RRType::TXT(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC3_SIGNED,
- this->zname_, ZoneFinder::FIND_DNSSEC);
- }
- TYPED_TEST(DatabaseClientTest, findOutOfZone) {
- // If the query name is out-of-zone it should result in an exception
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- vector<ConstRRsetPtr> target;
- // Superdomain
- EXPECT_THROW(finder->find(Name("org"), this->qtype_), OutOfZone);
- EXPECT_THROW(finder->findAll(Name("org"), target), OutOfZone);
- // sharing a common ancestor
- EXPECT_THROW(finder->find(Name("noexample.org"), this->qtype_), OutOfZone);
- EXPECT_THROW(finder->findAll(Name("noexample.org"), target), OutOfZone);
- // totally unrelated domain, smaller number of labels
- EXPECT_THROW(finder->find(Name("com"), this->qtype_), OutOfZone);
- EXPECT_THROW(finder->findAll(Name("com"), target), OutOfZone);
- // totally unrelated domain, same number of labels
- EXPECT_THROW(finder->find(Name("example.com"), this->qtype_), OutOfZone);
- EXPECT_THROW(finder->findAll(Name("example.com"), target), OutOfZone);
- // totally unrelated domain, larger number of labels
- EXPECT_THROW(finder->find(Name("more.example.com"), this->qtype_),
- OutOfZone);
- EXPECT_THROW(finder->findAll(Name("more.example.com"), target), OutOfZone);
- }
- TYPED_TEST(DatabaseClientTest, findDelegation) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // The apex should not be considered delegation point and we can access
- // data
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, isc::dns::Name("example.org."),
- this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com.");
- this->expected_sig_rdatas_.push_back("NS 5 3 3600 20000101000000 20000201000000 "
- "12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("example.org."),
- isc::dns::RRType::NS(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // Check when we ask for something below delegation point, we get the NS
- // (Both when the RRset there exists and doesn't)
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com.");
- this->expected_rdatas_.push_back("ns.delegation.example.org.");
- this->expected_sig_rdatas_.push_back("NS 5 3 3600 20000101000000 20000201000000 "
- "12345 example.org. FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("ns.delegation.example.org."),
- this->qtype_, isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegation.example.org."));
- doFindTest(*finder, isc::dns::Name("ns.delegation.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegation.example.org."));
- doFindTest(*finder, isc::dns::Name("deep.below.delegation.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegation.example.org."));
- // Even when we check directly at the delegation point, we should get
- // the NS
- doFindTest(*finder, isc::dns::Name("delegation.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // And when we ask directly for the NS, we should still get delegation
- doFindTest(*finder, isc::dns::Name("delegation.example.org."),
- isc::dns::RRType::NS(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // Now test delegation. If it is below the delegation point, we should get
- // the DNAME (the one with data under DNAME is invalid zone, but we test
- // the behaviour anyway just to make sure)
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("dname.example.com.");
- this->expected_sig_rdatas_.clear();
- this->expected_sig_rdatas_.push_back("DNAME 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("below.dname.example.org."),
- this->qtype_, isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."));
- doFindTest(*finder, isc::dns::Name("below.dname.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."));
- // below.dname.example.org. has an A record
- doFindTest(*finder, isc::dns::Name("below.dname.example.org."),
- isc::dns::RRType::A(), isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."));
- doFindTest(*finder, isc::dns::Name("really.deep.below.dname.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."));
- // Asking directly for DNAME should give SUCCESS
- doFindTest(*finder, isc::dns::Name("dname.example.org."),
- isc::dns::RRType::DNAME(), isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // But we don't delegate at DNAME point
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("dname.example.org."),
- this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("dname.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXRRSET, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // This is broken dname, it contains two targets
- EXPECT_THROW(finder->find(isc::dns::Name("below.baddname.example.org."),
- this->qtype_,
- ZoneFinder::FIND_DEFAULT),
- DataSourceError);
- // NS and other type coexist: deviant and not necessarily harmful.
- // It should normally just result in DELEGATION; if GLUE_OK is specified,
- // the other RR should be visible.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com");
- doFindTest(*finder, Name("brokenns1.example.org"), this->qtype_,
- RRType::NS(), this->rrttl_, ZoneFinder::DELEGATION,
- this->expected_rdatas_, this->empty_rdatas_,
- ZoneFinder::RESULT_DEFAULT);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, Name("brokenns1.example.org"), this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_,
- ZoneFinder::RESULT_DEFAULT, Name("brokenns1.example.org"),
- ZoneFinder::FIND_GLUE_OK);
- }
- TYPED_TEST(DatabaseClientTest, findDS) {
- // Type DS query is an exception to the general delegation case; the NS
- // should be ignored and it should be treated just like normal
- // authoritative data.
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // DS exists at the delegation point. It should be returned with result
- // code of SUCCESS.
- this->expected_rdatas_.push_back("1 1 2 abcd"),
- this->expected_sig_rdatas_.push_back("DS 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, Name("delegation.example.org."),
- RRType::DS(), RRType::DS(), this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT);
- // DS doesn't exist at the delegation point. The result should be
- // NXRRSET, and if DNSSEC is requested and the zone is NSEC-signed,
- // the corresponding NSEC should be returned (normally with its RRSIG,
- // but in this simplified test setup it's omitted in the test data).
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("dummy.example.org. NS NSEC");
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, Name("insecdelegation.example.org."),
- RRType::DS(), RRType::NSEC(), this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED,
- Name("insecdelegation.example.org."), ZoneFinder::FIND_DNSSEC);
- // Some insane case: DS under a zone cut. It's included in the DB, but
- // shouldn't be visible via finder.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com");
- doFindTest(*finder, Name("child.insecdelegation.example.org"),
- RRType::DS(), RRType::NS(), this->rrttl_,
- ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_DEFAULT,
- Name("insecdelegation.example.org."), ZoneFinder::FIND_DNSSEC);
- }
- TYPED_TEST(DatabaseClientTest, emptyDomain) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // This domain doesn't exist, but a subdomain of it does.
- // Therefore we should pretend the domain is there, but contains no RRsets
- doFindTest(*finder, isc::dns::Name("b.example.org."), this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- }
- // Glue-OK mode. Just go through NS delegations down (but not through
- // DNAME) and pretend it is not there.
- TYPED_TEST(DatabaseClientTest, glueOK) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("ns.delegation.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("ns.delegation.example.org."),
- ZoneFinder::FIND_GLUE_OK);
- doFindTest(*finder, isc::dns::Name("nothere.delegation.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("nothere.delegation.example.org."),
- ZoneFinder::FIND_GLUE_OK);
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, isc::dns::Name("ns.delegation.example.org."),
- this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("ns.delegation.example.org."),
- ZoneFinder::FIND_GLUE_OK);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com.");
- this->expected_rdatas_.push_back("ns.delegation.example.org.");
- this->expected_sig_rdatas_.clear();
- this->expected_sig_rdatas_.push_back("NS 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- // When we request the NS, it should be SUCCESS, not DELEGATION
- // (different in GLUE_OK)
- doFindTest(*finder, isc::dns::Name("delegation.example.org."),
- isc::dns::RRType::NS(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegation.example.org."),
- ZoneFinder::FIND_GLUE_OK);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("dname.example.com.");
- this->expected_sig_rdatas_.clear();
- this->expected_sig_rdatas_.push_back("DNAME 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("below.dname.example.org."),
- this->qtype_, isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."), ZoneFinder::FIND_GLUE_OK);
- doFindTest(*finder, isc::dns::Name("below.dname.example.org."),
- isc::dns::RRType::AAAA(), isc::dns::RRType::DNAME(),
- this->rrttl_, ZoneFinder::DNAME, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("dname.example.org."), ZoneFinder::FIND_GLUE_OK);
- }
- TYPED_TEST(DatabaseClientTest, wildcard) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // First, simple wildcard match
- // Check also that the RRSIG is added from the wildcard (not modified)
- this->expected_rdatas_.push_back("192.0.2.5");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("a.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_WILDCARD);
- doFindTest(*finder, isc::dns::Name("b.a.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("a.wild.example.org"),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- doFindTest(*finder, isc::dns::Name("b.a.wild.example.org"),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- // Direct request for this wildcard
- this->expected_rdatas_.push_back("192.0.2.5");
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("*.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("*.wild.example.org"),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::NXRRSET, this->expected_rdatas_,
- this->expected_sig_rdatas_);
- // This is nonsense, but check it doesn't match by some stupid accident
- doFindTest(*finder, isc::dns::Name("a.*.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- // These should be canceled, since it is below a domain which exitsts
- doFindTest(*finder, isc::dns::Name("nothing.here.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- doFindTest(*finder, isc::dns::Name("cancel.here.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- doFindTest(*finder,
- isc::dns::Name("below.cancel.here.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- // And this should be just plain empty non-terminal domain, check
- // the wildcard doesn't hurt it
- doFindTest(*finder, isc::dns::Name("here.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- // Also make sure that the wildcard doesn't hurt the original data
- // below the wildcard
- this->expected_rdatas_.push_back("2001:db8::5");
- doFindTest(*finder, isc::dns::Name("cancel.here.wild.example.org"),
- isc::dns::RRType::AAAA(), isc::dns::RRType::AAAA(),
- this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- this->expected_rdatas_.clear();
- // How wildcard go together with delegation
- this->expected_rdatas_.push_back("ns.example.com.");
- doFindTest(*finder, isc::dns::Name("below.delegatedwild.example.org"),
- this->qtype_, isc::dns::RRType::NS(), this->rrttl_,
- ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegatedwild.example.org"));
- // FIXME: This doesn't look logically OK, GLUE_OK should make it transparent,
- // so the match should either work or be canceled, but return NXDOMAIN
- doFindTest(*finder, isc::dns::Name("below.delegatedwild.example.org"),
- this->qtype_, isc::dns::RRType::NS(), this->rrttl_,
- ZoneFinder::DELEGATION, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- isc::dns::Name("delegatedwild.example.org"),
- ZoneFinder::FIND_GLUE_OK);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.5");
- // These are direct matches
- const char* positive_names[] = {
- "wild.*.foo.example.org.",
- "wild.*.foo.*.bar.example.org.",
- NULL
- };
- for (const char** name = positive_names; *name != NULL; ++ name) {
- doFindTest(*finder, isc::dns::Name(*name), this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_,
- this->expected_sig_rdatas_);
- }
- // These are wildcard matches against empty nonterminal asterisk
- this->expected_rdatas_.clear();
- const char* negative_names[] = {
- "a.foo.example.org.",
- "wild.bar.foo.example.org.",
- "baz.foo.*.bar.example.org",
- "baz.foo.baz.bar.example.org",
- "*.foo.baz.bar.example.org",
- NULL
- };
- // Unless FIND_DNSSEC is specified, this is no different from other
- // NXRRSET case.
- for (const char** name = negative_names; *name != NULL; ++ name) {
- doFindTest(*finder, isc::dns::Name(*name), this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- }
- // With FIND_DNSSEC, it should have NSEC_SIGNED flag.
- const char* negative_dnssec_names[] = {
- "a.bar.example.org.",
- "foo.baz.bar.example.org.",
- "a.foo.bar.example.org.",
- NULL
- };
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("wild.*.foo.*.bar.example.org. NSEC");
- this->expected_sig_rdatas_.clear();
- for (const char** name = negative_dnssec_names; *name != NULL; ++ name) {
- doFindTest(*finder, isc::dns::Name(*name), this->qtype_,
- RRType::NSEC(), this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD | ZoneFinder::RESULT_NSEC_SIGNED,
- Name("bao.example.org."), ZoneFinder::FIND_DNSSEC);
- }
- // CNAME on a wildcard. Maybe not so common, but not disallowed.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- this->expected_sig_rdatas_.clear();
- doFindTest(*finder, isc::dns::Name("a.cnamewild.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::CNAME(),
- this->rrttl_, ZoneFinder::CNAME,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- // DNAME on a wildcard. In our implementation we ignore DNAMEs on a
- // wildcard, but at a higher level we say the behavior is "unspecified".
- // rfc2672bis strongly discourages the mixture of DNAME and wildcard
- // (with SHOULD NOT).
- doFindTest(*finder, Name("a.dnamewild.example.org."),
- this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::NXRRSET, this->empty_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_WILDCARD);
- // Some strange things in the wild node
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("ns.example.com.");
- doFindTest(*finder, isc::dns::Name("a.nswild.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NS(),
- this->rrttl_, ZoneFinder::DELEGATION,
- this->expected_rdatas_, this->empty_rdatas_,
- ZoneFinder::RESULT_WILDCARD);
- }
- TYPED_TEST(DatabaseClientTest, noWildcard) {
- // Tests with the NO_WILDCARD flag.
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // This would match *.wild.example.org, but with NO_WILDCARD should
- // result in NXDOMAIN.
- this->expected_rdatas_.push_back("cancel.here.wild.example.org. A "
- "NSEC RRSIG");
- this->expected_sig_rdatas_.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("a.wild.example.org"),
- RRType::NSEC(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXDOMAIN, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_NSEC_SIGNED,
- Name("*.wild.example.org."),
- ZoneFinder::FIND_DNSSEC | ZoneFinder::NO_WILDCARD);
- // Should be the same without FIND_DNSSEC (but in this case no RRsets
- // will be returned)
- doFindTest(*finder, isc::dns::Name("a.wild.example.org"),
- RRType::NSEC(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXDOMAIN, this->empty_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_DEFAULT,
- Name::ROOT_NAME(), // name is dummy
- ZoneFinder::NO_WILDCARD);
- // Same for wildcard empty non terminal.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("brokenns1.example.org. A NSEC");
- doFindTest(*finder, isc::dns::Name("a.bar.example.org"),
- RRType::NSEC(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXDOMAIN, this->expected_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_NSEC_SIGNED,
- Name("wild.*.foo.*.bar.example.org"),
- ZoneFinder::FIND_DNSSEC | ZoneFinder::NO_WILDCARD);
- // Search for a wildcard name with NO_WILDCARD. There should be no
- // difference. This is, for example, necessary to provide non existence
- // of matching wildcard for isnx.nonterminal.example.org.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("empty.nonterminal.example.org. NSEC");
- doFindTest(*finder, isc::dns::Name("*.nonterminal.example.org"),
- RRType::NSEC(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXDOMAIN, this->expected_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_NSEC_SIGNED,
- Name("l.example.org"),
- ZoneFinder::FIND_DNSSEC | ZoneFinder::NO_WILDCARD);
- // On the other hand, if there's exact match for the wildcard name
- // it should be found regardless of NO_WILDCARD.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.5");
- this->expected_sig_rdatas_.clear();
- this->expected_sig_rdatas_.push_back("A 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("*.wild.example.org"),
- this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
- Name("*.wild.example.org"), ZoneFinder::NO_WILDCARD);
- }
- TYPED_TEST(DatabaseClientTest, NXRRSET_NSEC) {
- // The domain exists, but doesn't have this RRType
- // So we should get its NSEC
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.push_back("www2.example.org. A AAAA NSEC RRSIG");
- this->expected_sig_rdatas_.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("www.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED, Name::ROOT_NAME(),
- ZoneFinder::FIND_DNSSEC);
- }
- TYPED_TEST(DatabaseClientTest, wildcardNXRRSET_NSEC) {
- // The domain exists, but doesn't have this RRType
- // So we should get its NSEC
- //
- // The user will have to query us again to get the correct
- // answer (eg. prove there's not an exact match)
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.push_back("cancel.here.wild.example.org. A NSEC "
- "RRSIG");
- this->expected_sig_rdatas_.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- // Note that the NSEC name should NOT be synthesized.
- doFindTest(*finder, isc::dns::Name("a.wild.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(),
- this->rrttl_, ZoneFinder::NXRRSET,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_WILDCARD | ZoneFinder::RESULT_NSEC_SIGNED,
- Name("*.wild.example.org"), ZoneFinder::FIND_DNSSEC);
- }
- // Subroutine for dnssecFlagCheck defined below. It performs some simple
- // checks regarding DNSSEC related result flags for findAll().
- void
- dnssecFlagCheckForAny(ZoneFinder& finder, const Name& name,
- ZoneFinder::FindResultFlags sec_flag)
- {
- std::vector<ConstRRsetPtr> target; // just for placeholder
- ConstZoneFinderContextPtr all_result =
- finder.findAll(name, target, ZoneFinder::FIND_DNSSEC);
- EXPECT_EQ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0,
- all_result->isNSECSigned());
- EXPECT_EQ((sec_flag & ZoneFinder::RESULT_NSEC3_SIGNED) != 0,
- all_result->isNSEC3Signed());
- }
- // Common tests about DNSSEC related result flags. Shared for the NSEC
- // and NSEC3 cases.
- void
- dnssecFlagCheck(ZoneFinder& finder, ZoneFinder::FindResultFlags sec_flag) {
- std::vector<std::string> expected_rdatas;
- std::vector<std::string> expected_sig_rdatas;
- // Check NXDOMAIN case in NSEC signed zone, and RESULT_NSEC_SIGNED flag
- // should be returned to upper layer caller.
- if ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0) {
- expected_rdatas.push_back("www2.example.org. A AAAA NSEC RRSIG");
- expected_sig_rdatas.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- }
- doFindTest(finder, Name("www1.example.org"), RRType::A(), RRType::NSEC(),
- RRTTL(3600), ZoneFinder::NXDOMAIN, expected_rdatas,
- expected_sig_rdatas, sec_flag, Name("www.example.org."),
- ZoneFinder::FIND_DNSSEC);
- dnssecFlagCheckForAny(finder, Name("www1.example.org"), sec_flag);
- // Check NXRRSET case in NSEC signed zone, and RESULT_NSEC_SIGNED flag
- // should be return.
- // No "findAll" test case for this because NXRRSET shouldn't happen for it.
- expected_rdatas.clear();
- expected_sig_rdatas.clear();
- if ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0) {
- expected_rdatas.push_back("www2.example.org. A AAAA NSEC RRSIG");
- expected_sig_rdatas.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- }
- doFindTest(finder, Name("www.example.org."), RRType::TXT(), RRType::NSEC(),
- RRTTL(3600), ZoneFinder::NXRRSET, expected_rdatas,
- expected_sig_rdatas, sec_flag, Name::ROOT_NAME(),
- ZoneFinder::FIND_DNSSEC);
- // Empty name, should result in NXRRSET (in this test setup the NSEC
- // doesn't have RRSIG).
- expected_rdatas.clear();
- expected_sig_rdatas.clear();
- if ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0) {
- expected_rdatas.push_back("empty.nonterminal.example.org. NSEC");
- }
- doFindTest(finder, Name("nonterminal.example.org."), RRType::A(),
- RRType::NSEC(), RRTTL(3600), ZoneFinder::NXRRSET,
- expected_rdatas,expected_sig_rdatas, sec_flag,
- Name("l.example.org."), ZoneFinder::FIND_DNSSEC);
- dnssecFlagCheckForAny(finder, Name("nonterminal.example.org"), sec_flag);
- // Wildcard match
- expected_rdatas.clear();
- expected_sig_rdatas.clear();
- expected_rdatas.push_back("192.0.2.5");
- expected_sig_rdatas.push_back("A 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(finder, Name("b.a.wild.example.org"), RRType::A(),
- RRType::A(), RRTTL(3600), ZoneFinder::SUCCESS, expected_rdatas,
- expected_sig_rdatas, (ZoneFinder::RESULT_WILDCARD | sec_flag),
- Name("b.a.wild.example.org"), ZoneFinder::FIND_DNSSEC);
- dnssecFlagCheckForAny(finder, Name("b.a.wild.example.org"), sec_flag);
- // Wildcard + NXRRSET (no "findAll" test for this case)
- expected_rdatas.clear();
- expected_sig_rdatas.clear();
- if ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0) {
- expected_rdatas.push_back("cancel.here.wild.example.org. "
- "A NSEC RRSIG");
- expected_sig_rdatas.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- }
- doFindTest(finder, Name("b.a.wild.example.org"),
- RRType::TXT(), RRType::NSEC(), RRTTL(3600), ZoneFinder::NXRRSET,
- expected_rdatas, expected_sig_rdatas,
- (ZoneFinder::RESULT_WILDCARD | sec_flag),
- Name("*.wild.example.org"), ZoneFinder::FIND_DNSSEC);
- // Empty wildcard (this NSEC doesn't have RRSIG in our test data)
- expected_rdatas.clear();
- expected_sig_rdatas.clear();
- if ((sec_flag & ZoneFinder::RESULT_NSEC_SIGNED) != 0) {
- expected_rdatas.push_back("wild.*.foo.*.bar.example.org. NSEC");
- }
- doFindTest(finder, Name("foo.wild.bar.example.org"),
- RRType::TXT(), RRType::NSEC(), RRTTL(3600), ZoneFinder::NXRRSET,
- expected_rdatas, expected_sig_rdatas,
- (ZoneFinder::RESULT_WILDCARD | sec_flag),
- Name("bao.example.org"), ZoneFinder::FIND_DNSSEC);
- dnssecFlagCheckForAny(finder, Name("foo.wild.bar.example.org"), sec_flag);
- }
- TYPED_TEST(DatabaseClientTest, dnssecResultFlags) {
- // ZoneFinder::find() for negative cases and wildcard cases should check
- // whether the zone is signed with NSEC or NSEC3.
- // In the default test setup, the zone should be considered NSEC-signed
- // (the apex node has an NSEC RR).
- {
- SCOPED_TRACE("NSEC only");
- dnssecFlagCheck(*this->getFinder(), ZoneFinder::RESULT_NSEC_SIGNED);
- }
- // Then add an NSEC3PARAM RRset at the apex (it may look weird if the
- // zone only has NSEC3PARM RRset (but no NSEC3s), but it is okay for the
- // purpose of this test). The zone should now be considered NSEC3-signed.
- // Note that the apex NSEC still exists; NSEC3 should override NSEC.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_.reset(new RRset(this->zname_, this->qclass_,
- RRType::NSEC3PARAM(), this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "1 0 12 aabbccdd"));
- this->updater_->addRRset(*this->rrset_);
- {
- SCOPED_TRACE("NSEC and NSEC3");
- dnssecFlagCheck(this->updater_->getFinder(),
- ZoneFinder::RESULT_NSEC3_SIGNED);
- }
- // Next, delete the apex NSEC. Since NSEC3PARAM remains, the zone should
- // still be considered NSEC3-signed.
- RRsetPtr nsec_rrset(new RRset(this->zname_, this->qclass_, RRType::NSEC(),
- this->rrttl_));
- nsec_rrset->addRdata(rdata::createRdata(RRType::NSEC(), this->qclass_,
- "acnamesig1.example.org. NS A "
- "NSEC RRSIG"));
- this->updater_->deleteRRset(*nsec_rrset);
- {
- SCOPED_TRACE("NSEC3 only");
- dnssecFlagCheck(this->updater_->getFinder(),
- ZoneFinder::RESULT_NSEC3_SIGNED);
- }
- // Finally, delete the NSEC3PARAM we just added above. The zone should
- // then be considered unsigned.
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("unsigned");
- dnssecFlagCheck(this->updater_->getFinder(),
- ZoneFinder::RESULT_DEFAULT);
- }
- }
- TYPED_TEST(DatabaseClientTest, NXDOMAIN_NSEC) {
- // The domain doesn't exist, so we must get the right NSEC
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.push_back("www2.example.org. A AAAA NSEC RRSIG");
- this->expected_sig_rdatas_.push_back("NSEC 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. "
- "FAKEFAKEFAKE");
- doFindTest(*finder, isc::dns::Name("www1.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(),
- this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED, Name("www.example.org."),
- ZoneFinder::FIND_DNSSEC);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("acnamesig1.example.org. NS A NSEC RRSIG");
- // This tests it works correctly in apex (there was a bug, where a check
- // for NS-alone was there and it would throw).
- doFindTest(*finder, isc::dns::Name("aa.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(),
- this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED, Name("example.org."),
- ZoneFinder::FIND_DNSSEC);
- // Check that if the DB doesn't support it, the exception from there
- // is not propagated and it only does not include the NSEC
- if (!this->is_mock_) {
- return; // We don't make the real DB to throw
- }
- // In this case the accessor doesn't support findPreviousName(), but the
- // zone apex has NSEC, and the zone itself is considered NSEC-signed.
- doFindTest(*finder, Name("notimplnsec.example.org."),
- RRType::TXT(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXDOMAIN, this->empty_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_NSEC_SIGNED,
- Name::ROOT_NAME(), ZoneFinder::FIND_DNSSEC);
- }
- TYPED_TEST(DatabaseClientTest, emptyNonterminalNSEC) {
- // Same as NXDOMAIN_NSEC, but with empty non-terminal
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.push_back("empty.nonterminal.example.org. NSEC");
- doFindTest(*finder, isc::dns::Name("nonterminal.example.org."),
- isc::dns::RRType::TXT(), isc::dns::RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXRRSET, this->expected_rdatas_,
- this->expected_sig_rdatas_,
- ZoneFinder::RESULT_NSEC_SIGNED, Name("l.example.org."),
- ZoneFinder::FIND_DNSSEC);
- // Check that if the DB doesn't support it, the exception from there
- // is not propagated and it only does not include the NSEC
- if (!this->is_mock_) {
- return; // We don't make the real DB to throw
- }
- // See the corresponding case of NXDOMAIN_NSEC.
- doFindTest(*finder, Name("here.wild.example.org."),
- RRType::TXT(), RRType::NSEC(), this->rrttl_,
- ZoneFinder::NXRRSET, this->empty_rdatas_,
- this->empty_rdatas_, ZoneFinder::RESULT_NSEC_SIGNED,
- Name::ROOT_NAME(), ZoneFinder::FIND_DNSSEC);
- }
- TYPED_TEST(DatabaseClientTest, anyFromFind) {
- // Find will reject answering an ANY query
- EXPECT_THROW(this->getFinder()->find(isc::dns::Name("www2.example.org."),
- RRType::ANY()), isc::Unexpected);
- }
- TYPED_TEST(DatabaseClientTest, findRRSIGsWithoutDNSSEC) {
- // Trying to find RRSIG records directly should work even if
- // FIND_DNSSEC flag is not specified.
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- ConstZoneFinderContextPtr result =
- finder->find(isc::dns::Name("signed1.example.org."), RRType::RRSIG());
- EXPECT_EQ(ZoneFinder::SUCCESS, result->code);
- std::vector<std::string> expected_rdata;
- expected_rdata.push_back(TEST_RECORDS[10][4]);
- expected_rdata.push_back(TEST_RECORDS[11][4]);
- expected_rdata.push_back(TEST_RECORDS[14][4]);
- RdataIteratorPtr it(result->rrset->getRdataIterator());
- std::vector<std::string> rdata;
- while (!it->isLast()) {
- rdata.push_back(it->getCurrent().toText());
- it->next();
- }
- std::sort(rdata.begin(), rdata.end());
- std::sort(expected_rdata.begin(), expected_rdata.end());
- ASSERT_EQ(expected_rdata.size(), rdata.size());
- for (size_t i(0); i < expected_rdata.size(); ++ i) {
- EXPECT_EQ(expected_rdata[i], rdata[i]);
- }
- }
- // Test the findAll method.
- TYPED_TEST(DatabaseClientTest, getAll) {
- // The domain doesn't exist, so we must get the right NSEC
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // It should act the same on the "failures"
- std::vector<ConstRRsetPtr> target;
- EXPECT_EQ(ZoneFinder::NXDOMAIN,
- finder->findAll(isc::dns::Name("nothere.example.org."),
- target)->code);
- EXPECT_TRUE(target.empty());
- EXPECT_EQ(ZoneFinder::NXRRSET,
- finder->findAll(isc::dns::Name("here.wild.example.org."),
- target)->code);
- this->expected_rdatas_.push_back("ns.delegation.example.org.");
- this->expected_rdatas_.push_back("ns.example.com.");
- doFindAllTestResult(*finder, isc::dns::Name("xx.delegation.example.org."),
- ZoneFinder::DELEGATION, RRType::NS(),
- this->expected_rdatas_,
- isc::dns::Name("delegation.example.org."));
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- doFindAllTestResult(*finder, isc::dns::Name("cname.example.org"),
- ZoneFinder::CNAME, RRType::CNAME(),
- this->expected_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("dname.example.com.");
- doFindAllTestResult(*finder, isc::dns::Name("a.dname.example.org"),
- ZoneFinder::DNAME, RRType::DNAME(),
- this->expected_rdatas_,
- isc::dns::Name("dname.example.org."));
- // It should get the data on success
- EXPECT_EQ(ZoneFinder::SUCCESS,
- finder->findAll(isc::dns::Name("www2.example.org."),
- target)->code);
- ASSERT_EQ(2, target.size());
- size_t a_idx(target[1]->getType() == RRType::A());
- EXPECT_EQ(RRType::A(), target[a_idx]->getType());
- std::string previous;
- size_t count(0);
- for (RdataIteratorPtr it(target[a_idx]->getRdataIterator());
- !it->isLast(); it->next()) {
- count ++;
- EXPECT_NE(previous, it->getCurrent().toText());
- EXPECT_TRUE(it->getCurrent().toText() == "192.0.2.1" ||
- it->getCurrent().toText() == "192.0.2.2");
- previous = it->getCurrent().toText();
- }
- EXPECT_EQ(2, count);
- EXPECT_EQ(RRType::AAAA(), target[1 - a_idx]->getType());
- RdataIteratorPtr it(target[1 - a_idx]->getRdataIterator());
- ASSERT_FALSE(it->isLast());
- EXPECT_EQ("2001:db8::1", it->getCurrent().toText());
- it->next();
- EXPECT_TRUE(it->isLast());
- // And on wildcard. Check the signatures as well.
- target.clear();
- ConstZoneFinderContextPtr result =
- finder->findAll(Name("a.wild.example.org"), target,
- ZoneFinder::FIND_DNSSEC);
- EXPECT_EQ(ZoneFinder::SUCCESS, result->code);
- EXPECT_TRUE(result->isWildcard());
- EXPECT_TRUE(result->isNSECSigned());
- EXPECT_FALSE(result->isNSEC3Signed());
- ASSERT_EQ(2, target.size());
- a_idx = target[1]->getType() == RRType::A();
- EXPECT_EQ(RRType::A(), target[a_idx]->getType());
- it = target[a_idx]->getRdataIterator();
- ASSERT_FALSE(it->isLast());
- EXPECT_EQ("192.0.2.5", it->getCurrent().toText());
- it->next();
- EXPECT_TRUE(it->isLast());
- ConstRRsetPtr sig(target[a_idx]->getRRsig());
- ASSERT_TRUE(sig);
- EXPECT_EQ(RRType::RRSIG(), sig->getType());
- EXPECT_EQ("A 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE",
- sig->getRdataIterator()->getCurrent().toText());
- EXPECT_EQ(RRType::NSEC(), target[1 - a_idx]->getType());
- it = target[1 - a_idx]->getRdataIterator();
- ASSERT_FALSE(it->isLast());
- EXPECT_EQ("cancel.here.wild.example.org. A RRSIG NSEC",
- it->getCurrent().toText());
- it->next();
- EXPECT_TRUE(it->isLast());
- sig = target[1 - a_idx]->getRRsig();
- ASSERT_TRUE(sig);
- EXPECT_EQ(RRType::RRSIG(), sig->getType());
- EXPECT_EQ("NSEC 5 3 3600 20000101000000 20000201000000 12345 example.org. FAKEFAKEFAKE",
- sig->getRdataIterator()->getCurrent().toText());
- }
- TYPED_TEST(DatabaseClientTest, getOrigin) {
- DataSourceClient::FindResult
- zone(this->client_->findZone(Name("example.org")));
- ASSERT_EQ(result::SUCCESS, zone.code);
- boost::shared_ptr<DatabaseClient::Finder> finder(
- dynamic_pointer_cast<DatabaseClient::Finder>(zone.zone_finder));
- if (this->is_mock_) {
- EXPECT_EQ(READONLY_ZONE_ID, finder->zone_id());
- }
- EXPECT_EQ(this->zname_, finder->getOrigin());
- }
- TYPED_TEST(DatabaseClientTest, updaterFinder) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- ASSERT_TRUE(this->updater_);
- // If this update isn't replacing the zone, the finder should work
- // just like the normal find() case.
- if (this->is_mock_) {
- DatabaseClient::Finder& finder = dynamic_cast<DatabaseClient::Finder&>(
- this->updater_->getFinder());
- EXPECT_EQ(WRITABLE_ZONE_ID, finder.zone_id());
- }
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(this->updater_->getFinder(), this->qname_,
- this->qtype_, this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- // When replacing the zone, the updater's finder shouldn't see anything
- // in the zone until something is added.
- this->updater_.reset();
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- ASSERT_TRUE(this->updater_);
- if (this->is_mock_) {
- DatabaseClient::Finder& finder = dynamic_cast<DatabaseClient::Finder&>(
- this->updater_->getFinder());
- EXPECT_EQ(WRITABLE_ZONE_ID, finder.zone_id());
- }
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->empty_rdatas_, this->empty_rdatas_);
- }
- TYPED_TEST(DatabaseClientTest, flushZone) {
- // A simple update case: flush the entire zone
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- // Before update, the name exists.
- EXPECT_EQ(ZoneFinder::SUCCESS, finder->find(this->qname_,
- this->qtype_)->code);
- // start update in the replace mode. the normal finder should still
- // be able to see the record, but the updater's finder shouldn't.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->setUpdateAccessor();
- EXPECT_EQ(ZoneFinder::SUCCESS,
- finder->find(this->qname_, this->qtype_)->code);
- EXPECT_EQ(ZoneFinder::NXDOMAIN,
- this->updater_->getFinder().find(this->qname_,
- this->qtype_)->code);
- // commit the update. now the normal finder shouldn't see it.
- this->updater_->commit();
- EXPECT_EQ(ZoneFinder::NXDOMAIN, finder->find(this->qname_,
- this->qtype_)->code);
- // Check rollback wasn't accidentally performed.
- EXPECT_FALSE(this->isRollbacked());
- }
- TYPED_TEST(DatabaseClientTest, updateCancel) {
- // similar to the previous test, but destruct the updater before commit.
- ZoneFinderPtr finder = this->client_->findZone(this->zname_).zone_finder;
- EXPECT_EQ(ZoneFinder::SUCCESS, finder->find(this->qname_,
- this->qtype_)->code);
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->setUpdateAccessor();
- EXPECT_EQ(ZoneFinder::NXDOMAIN,
- this->updater_->getFinder().find(this->qname_,
- this->qtype_)->code);
- // DB should not have been rolled back yet.
- EXPECT_FALSE(this->isRollbacked());
- this->updater_.reset(); // destruct without commit
- // reset() should have triggered rollback (although it doesn't affect
- // anything to the mock accessor implementation except for the result of
- // isRollbacked())
- EXPECT_TRUE(this->isRollbacked(true));
- EXPECT_EQ(ZoneFinder::SUCCESS, finder->find(this->qname_,
- this->qtype_)->code);
- }
- TYPED_TEST(DatabaseClientTest, exceptionFromRollback) {
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->rrset_.reset(new RRset(Name("throw.example.org"), this->qclass_,
- this->qtype_, this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.1"));
- this->updater_->addRRset(*this->rrset_);
- // destruct without commit. The added name will result in an exception
- // in the MockAccessor's rollback method. It shouldn't be propagated.
- EXPECT_NO_THROW(this->updater_.reset());
- }
- TYPED_TEST(DatabaseClientTest, duplicateCommit) {
- // duplicate commit. should result in exception.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->commit();
- EXPECT_THROW(this->updater_->commit(), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, addRRsetToNewZone) {
- // Add a single RRset to a fresh empty zone
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.2");
- {
- SCOPED_TRACE("add RRset");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- // Similar to the previous case, but with RRSIG
- this->updater_.reset();
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- this->updater_->addRRset(*this->rrset_);
- this->updater_->addRRset(*this->rrsigset_);
- // confirm the expected columns were passed to the accessor (if checkable).
- const char* const rrsig_added[] = {
- "www.example.org.", "org.example.www.", "3600", "RRSIG", "A",
- "A 5 3 0 20000101000000 20000201000000 0 example.org. FAKEFAKEFAKE"
- };
- this->checkLastAdded(rrsig_added);
- this->expected_sig_rdatas_.clear();
- this->expected_sig_rdatas_.push_back(
- rrsig_added[DatabaseAccessor::ADD_RDATA]);
- {
- SCOPED_TRACE("add RRset with RRSIG");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- }
- // Add the non RRSIG RRset again, to see the attempt of adding RRSIG
- // causes any unexpected effect, in particular, whether the SIGTYPE
- // field might remain.
- this->updater_->addRRset(*this->rrset_);
- const char* const rrset_added[] = {
- "www.example.org.", "org.example.www.", "3600", "A", "", "192.0.2.2"
- };
- this->checkLastAdded(rrset_added);
- }
- //
- // Below we define a set of NSEC3 update tests.
- //
- // Commonly used data for NSEC3 update tests below.
- const char* const nsec3_hash = "1BB7SO0452U1QHL98UISNDD9218GELR5";
- const char* const nsec3_rdata = "1 1 12 AABBCCDD "
- "2T7B4G4VSA5SMI47K61MV5BV1A22BOJR NS SOA RRSIG NSEC3PARAM";
- const char* const nsec3_rdata2 = "1 1 12 AABBCCDD "
- "2T7B4G4VSA5SMI47K61MV5BV1A22BOJR NS SOA RRSIG"; // differ in bitmaps
- const char* const nsec3_sig_rdata = "NSEC3 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKEFAKE";
- const char* const nsec3_sig_rdata2 = "NSEC3 5 3 3600 20000101000000 "
- "20000201000000 12345 example.org. FAKEFAKE"; // differ in the signature
- // Commonly used subroutine that checks if we can get the expected record.
- // According to the API, implementations can skip filling in columns other
- // than those explicitly checked below, so we don't check them.
- void
- nsec3Check(const vector<ConstRRsetPtr>& expected_rrsets,
- const Name& zone_name, const string& expected_hash,
- DatabaseAccessor& accessor)
- {
- const int zone_id = accessor.getZone(zone_name.toText()).second;
- DatabaseAccessor::IteratorContextPtr itctx =
- accessor.getNSEC3Records(expected_hash, zone_id);
- ASSERT_TRUE(itctx);
- // Build a list of matched RRsets and compare the both expected and built
- // ones as sets.
- string columns[DatabaseAccessor::COLUMN_COUNT];
- vector<ConstRRsetPtr> actual_rrsets;
- while (itctx->getNext(columns)) {
- actual_rrsets.push_back(
- textToRRset(expected_hash + "." + zone_name.toText() + " " +
- columns[DatabaseAccessor::TTL_COLUMN] + " IN " +
- columns[DatabaseAccessor::TYPE_COLUMN] + " " +
- columns[DatabaseAccessor::RDATA_COLUMN]));
- }
- rrsetsCheck(expected_rrsets.begin(), expected_rrsets.end(),
- actual_rrsets.begin(), actual_rrsets.end());
- }
- TYPED_TEST(DatabaseClientTest, addDeleteNSEC3InZone) {
- // Add one NSEC3 RR to the zone, delete it, and add another one.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- const ConstRRsetPtr nsec3_rrset =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN NSEC3 " +
- string(nsec3_rdata));
- const ConstRRsetPtr nsec3_rrset2 =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN NSEC3 " +
- string(nsec3_rdata2));
- this->updater_->addRRset(*nsec3_rrset);
- this->updater_->deleteRRset(*nsec3_rrset);
- this->updater_->addRRset(*nsec3_rrset2);
- this->updater_->commit();
- // Check if we can get the expected record.
- vector<ConstRRsetPtr> expected_rrsets;
- expected_rrsets.push_back(nsec3_rrset2);
- nsec3Check(expected_rrsets, this->zname_, nsec3_hash,
- *this->current_accessor_);
- }
- TYPED_TEST(DatabaseClientTest, addDeleteNSEC3AndRRSIGToZone) {
- // Add one NSEC3 RR and its RRSIG to the zone, delete the RRSIG and add
- // a new one.
- this->updater_ = this->client_->getUpdater(this->zname_, true);
- const ConstRRsetPtr nsec3_rrset =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN NSEC3 " +
- string(nsec3_rdata));
- const ConstRRsetPtr nsec3_sig_rrset =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN RRSIG " +
- string(nsec3_sig_rdata));
- const ConstRRsetPtr nsec3_sig_rrset2 =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN RRSIG " +
- string(nsec3_sig_rdata2));
- this->updater_->addRRset(*nsec3_rrset);
- this->updater_->addRRset(*nsec3_sig_rrset);
- this->updater_->deleteRRset(*nsec3_sig_rrset);
- this->updater_->addRRset(*nsec3_sig_rrset2);
- this->updater_->commit();
- // Check if we can get the expected record.
- vector<ConstRRsetPtr> expected_rrsets;
- expected_rrsets.push_back(nsec3_rrset);
- expected_rrsets.push_back(nsec3_sig_rrset2);
- nsec3Check(expected_rrsets, this->zname_, nsec3_hash,
- *this->current_accessor_);
- }
- TYPED_TEST(DatabaseClientTest, addRRsetToCurrentZone) {
- // Similar to the previous test, but not replacing the existing data.
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->addRRset(*this->rrset_);
- // We should see both old and new data.
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- {
- SCOPED_TRACE("add RRset");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- this->updater_->commit();
- {
- SCOPED_TRACE("add RRset after commit");
- doFindTest(*finder, this->qname_, this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, addMultipleRRs) {
- // Similar to the previous case, but the added RRset contains multiple
- // RRs.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.3"));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- this->expected_rdatas_.push_back("192.0.2.3");
- {
- SCOPED_TRACE("add multiple RRs");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, addRRsetOfLargerTTL) {
- // Similar to the previous one, but the TTL of the added RRset is larger
- // than that of the existing record. The finder should use the smaller
- // one.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_->setTTL(RRTTL(7200));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- {
- SCOPED_TRACE("add RRset of larger TTL");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, addRRsetOfSmallerTTL) {
- // Similar to the previous one, but the added RRset has a smaller TTL.
- // The added TTL should be used by the finder.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_->setTTL(RRTTL(1800));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- {
- SCOPED_TRACE("add RRset of smaller TTL");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, RRTTL(1800), ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, addSameRR) {
- // Add the same RR as that is already in the data source.
- // Currently the add interface doesn't try to suppress the duplicate,
- // neither does the finder. We may want to revisit it in future versions.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, this->qtype_,
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.1"));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.1");
- {
- SCOPED_TRACE("add same RR");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, addDeviantRR) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- // RR class mismatch. This should be detected and rejected.
- this->rrset_.reset(new RRset(this->qname_, RRClass::CH(), RRType::TXT(),
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "test text"));
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_), DataSourceError);
- // Out-of-zone owner name. At a higher level this should be rejected,
- // but it doesn't happen in this interface.
- this->rrset_.reset(new RRset(Name("example.com"), this->qclass_,
- this->qtype_, this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.100"));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.100");
- {
- // Note: find() rejects out-of-zone query name with an exception
- // regardless of whether adding the RR succeeded, so this check
- // actually doesn't confirm it.
- SCOPED_TRACE("add out-of-zone RR");
- EXPECT_THROW(this->updater_->getFinder().find(Name("example.com"),
- this->qtype_),
- OutOfZone);
- }
- }
- TYPED_TEST(DatabaseClientTest, addEmptyRRset) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, this->qtype_,
- this->rrttl_));
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, addAfterCommit) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->commit();
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, addRRsetWithRRSIG) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_->addRRsig(*this->rrsigset_);
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, deleteRRset) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, this->qtype_,
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.1"));
- // Delete one RR from an RRset
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- // Delete the only RR of a name
- this->rrset_.reset(new RRset(Name("cname.example.org"), this->qclass_,
- RRType::CNAME(), this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "www.example.org"));
- this->updater_->deleteRRset(*this->rrset_);
- // The this->updater_ finder should immediately see the deleted results.
- {
- SCOPED_TRACE("delete RRset");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->empty_rdatas_, this->empty_rdatas_);
- doFindTest(this->updater_->getFinder(), Name("cname.example.org"),
- this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::NXDOMAIN, this->empty_rdatas_,
- this->empty_rdatas_);
- }
- // before committing the change, the original finder should see the
- // original record.
- {
- SCOPED_TRACE("delete RRset before commit");
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, this->qname_, this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("www.example.org.");
- doFindTest(*finder, Name("cname.example.org"), this->qtype_,
- RRType::CNAME(), this->rrttl_, ZoneFinder::CNAME,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- // once committed, the record should be removed from the original finder's
- // view, too.
- this->updater_->commit();
- {
- SCOPED_TRACE("delete RRset after commit");
- doFindTest(*finder, this->qname_, this->qtype_, this->qtype_,
- this->rrttl_, ZoneFinder::NXRRSET, this->empty_rdatas_,
- this->empty_rdatas_);
- doFindTest(*finder, Name("cname.example.org"), this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXDOMAIN,
- this->empty_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, deleteRRsetToNXDOMAIN) {
- // similar to the previous case, but it removes the only record of the
- // given name. a subsequent find() should result in NXDOMAIN.
- this->rrset_.reset(new RRset(Name("cname.example.org"), this->qclass_,
- RRType::CNAME(), this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "www.example.org"));
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("delete RRset to NXDOMAIN");
- doFindTest(this->updater_->getFinder(), Name("cname.example.org"),
- this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::NXDOMAIN, this->empty_rdatas_,
- this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, deleteMultipleRRs) {
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, RRType::AAAA(),
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::1"));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::2"));
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("delete multiple RRs");
- doFindTest(this->updater_->getFinder(), this->qname_, RRType::AAAA(),
- this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->empty_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, partialDelete) {
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, RRType::AAAA(),
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::1"));
- // This does not exist in the test data source:
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::3"));
- // deleteRRset should succeed "silently", and subsequent find() should
- // find the remaining RR.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("partial delete");
- this->expected_rdatas_.push_back("2001:db8::2");
- doFindTest(this->updater_->getFinder(), this->qname_, RRType::AAAA(),
- RRType::AAAA(), this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, deleteNoMatch) {
- // similar to the previous test, but there's not even a match in the
- // specified RRset. Essentially there's no difference in the result.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("delete no match");
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, deleteWithDifferentTTL) {
- // Our delete interface simply ignores TTL (may change in a future version)
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, this->qtype_,
- RRTTL(1800)));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.1"));
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->deleteRRset(*this->rrset_);
- {
- SCOPED_TRACE("delete RRset with a different TTL");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::NXRRSET,
- this->empty_rdatas_, this->empty_rdatas_);
- }
- }
- TYPED_TEST(DatabaseClientTest, deleteDeviantRR) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- // RR class mismatch. This should be detected and rejected.
- this->rrset_.reset(new RRset(this->qname_, RRClass::CH(), RRType::TXT(),
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "test text"));
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_), DataSourceError);
- // Out-of-zone owner name. At a higher level this should be rejected,
- // but it doesn't happen in this interface.
- this->rrset_.reset(new RRset(Name("example.com"), this->qclass_,
- this->qtype_, this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.100"));
- EXPECT_NO_THROW(this->updater_->deleteRRset(*this->rrset_));
- }
- TYPED_TEST(DatabaseClientTest, deleteAfterCommit) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->commit();
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, deleteEmptyRRset) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_.reset(new RRset(this->qname_, this->qclass_, this->qtype_,
- this->rrttl_));
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, deleteRRsetWithRRSIG) {
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->rrset_->addRRsig(*this->rrsigset_);
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_), DataSourceError);
- }
- TYPED_TEST(DatabaseClientTest, compoundUpdate) {
- // This test case performs an arbitrary chosen add/delete operations
- // in a single update transaction. Essentially there is nothing new to
- // test here, but there may be some bugs that was overlooked and can
- // only happen in the compound update scenario, so we test it.
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- // add a new RR to an existing RRset
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.1");
- this->expected_rdatas_.push_back("192.0.2.2");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- // delete an existing RR
- this->rrset_.reset(new RRset(Name("www.example.org"), this->qclass_,
- this->qtype_, this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "192.0.2.1"));
- this->updater_->deleteRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.2");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- // re-add it
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(this->updater_->getFinder(), this->qname_, this->qtype_,
- this->qtype_, this->rrttl_, ZoneFinder::SUCCESS,
- this->expected_rdatas_, this->empty_rdatas_);
- // add a new RR with a new name
- const Name newname("newname.example.org");
- const RRType newtype(RRType::AAAA());
- doFindTest(this->updater_->getFinder(), newname, newtype, newtype,
- this->rrttl_, ZoneFinder::NXDOMAIN, this->empty_rdatas_,
- this->empty_rdatas_);
- this->rrset_.reset(new RRset(newname, this->qclass_, newtype,
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::10"));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::11"));
- this->updater_->addRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::10");
- this->expected_rdatas_.push_back("2001:db8::11");
- doFindTest(this->updater_->getFinder(), newname, newtype, newtype,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- // delete one RR from the previous set
- this->rrset_.reset(new RRset(newname, this->qclass_, newtype,
- this->rrttl_));
- this->rrset_->addRdata(rdata::createRdata(this->rrset_->getType(),
- this->rrset_->getClass(),
- "2001:db8::11"));
- this->updater_->deleteRRset(*this->rrset_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::10");
- doFindTest(this->updater_->getFinder(), newname, newtype, newtype,
- this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- // Commit the changes, confirm the entire changes applied.
- this->updater_->commit();
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("192.0.2.2");
- this->expected_rdatas_.push_back("192.0.2.1");
- doFindTest(*finder, this->qname_, this->qtype_, this->qtype_, this->rrttl_,
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- this->expected_rdatas_.clear();
- this->expected_rdatas_.push_back("2001:db8::10");
- doFindTest(*finder, newname, newtype, newtype, this->rrttl_,
- ZoneFinder::SUCCESS, this->expected_rdatas_,
- this->empty_rdatas_);
- }
- TYPED_TEST(DatabaseClientTest, invalidRdata) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- EXPECT_THROW(finder->find(Name("invalidrdata.example.org."),
- RRType::A()),
- DataSourceError);
- EXPECT_THROW(finder->find(Name("invalidrdata2.example.org."),
- RRType::A(), ZoneFinder::FIND_DNSSEC),
- DataSourceError);
- }
- TEST_F(MockDatabaseClientTest, missingNSEC) {
- boost::shared_ptr<DatabaseClient::Finder> finder(this->getFinder());
- /*
- * FIXME: For now, we can't really distinguish this bogus input
- * from not-signed zone so we can't throw. But once we can,
- * enable the original test.
- */
- #if 0
- EXPECT_THROW(finder->find(Name("badnsec2.example.org."), RRType::A(), NULL,
- ZoneFinder::FIND_DNSSEC),
- DataSourceError);
- #endif
- doFindTest(*finder, Name("badnsec2.example.org."), RRType::A(),
- RRType::A(), this->rrttl_, ZoneFinder::NXDOMAIN,
- this->expected_rdatas_, this->expected_sig_rdatas_);
- }
- /*
- * Test correct use of the updater with a journal.
- */
- TYPED_TEST(DatabaseClientTest, journal) {
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- this->updater_->deleteRRset(*this->soa_);
- this->updater_->deleteRRset(*this->rrset_);
- this->soa_.reset(new RRset(this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_));
- this->soa_->addRdata(rdata::createRdata(this->soa_->getType(),
- this->soa_->getClass(),
- "ns1.example.org. "
- "admin.example.org. "
- "1235 3600 1800 2419200 7200"));
- this->updater_->addRRset(*this->soa_);
- this->updater_->addRRset(*this->rrset_);
- ASSERT_NO_THROW(this->updater_->commit());
- std::vector<JournalEntry> expected;
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_DELETE,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200"));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_DELETE,
- "www.example.org.", "A", "3600",
- "192.0.2.2"));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1235,
- DatabaseAccessor::DIFF_ADD,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1235 3600 1800 2419200 7200"));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1235,
- DatabaseAccessor::DIFF_ADD,
- "www.example.org.", "A", "3600",
- "192.0.2.2"));
- this->checkJournal(expected);
- }
- TYPED_TEST(DatabaseClientTest, journalForNSEC3) {
- // Similar to the previous test, but adding/deleting NSEC3 RRs, just to
- // confirm that NSEC3 is not special for managing diffs.
- const ConstRRsetPtr nsec3_rrset =
- textToRRset(string(nsec3_hash) + ".example.org. 3600 IN NSEC3 " +
- string(nsec3_rdata));
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- this->updater_->deleteRRset(*this->soa_);
- this->updater_->deleteRRset(*nsec3_rrset);
- this->soa_.reset(new RRset(this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_));
- this->soa_->addRdata(rdata::createRdata(this->soa_->getType(),
- this->soa_->getClass(),
- "ns1.example.org. "
- "admin.example.org. "
- "1235 3600 1800 2419200 7200"));
- this->updater_->addRRset(*this->soa_);
- this->updater_->addRRset(*nsec3_rrset);
- this->updater_->commit();
- std::vector<JournalEntry> expected;
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_DELETE,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200"));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_DELETE,
- string(nsec3_hash) + ".example.org.",
- "NSEC3", "3600", nsec3_rdata));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1235,
- DatabaseAccessor::DIFF_ADD,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1235 3600 1800 2419200 7200"));
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1235,
- DatabaseAccessor::DIFF_ADD,
- string(nsec3_hash) + ".example.org.",
- "NSEC3", "3600", nsec3_rdata));
- this->checkJournal(expected);
- }
- /*
- * Push multiple delete-add sequences. Checks it is allowed and all is
- * saved.
- */
- TYPED_TEST(DatabaseClientTest, journalMultiple) {
- std::vector<JournalEntry> expected;
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- std::string soa_rdata = "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200";
- for (size_t i = 1; i < 100; ++ i) {
- // Remove the old SOA
- this->updater_->deleteRRset(*this->soa_);
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234 + i - 1,
- DatabaseAccessor::DIFF_DELETE,
- "example.org.", "SOA", "3600",
- soa_rdata));
- // Create a new SOA
- soa_rdata = "ns1.example.org. admin.example.org. " +
- lexical_cast<std::string>(1234 + i) + " 3600 1800 2419200 7200";
- this->soa_.reset(new RRset(this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_));
- this->soa_->addRdata(rdata::createRdata(this->soa_->getType(),
- this->soa_->getClass(),
- soa_rdata));
- // Add the new SOA
- this->updater_->addRRset(*this->soa_);
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234 + i,
- DatabaseAccessor::DIFF_ADD,
- "example.org.", "SOA", "3600",
- soa_rdata));
- }
- ASSERT_NO_THROW(this->updater_->commit());
- // Check the journal contains everything.
- this->checkJournal(expected);
- }
- /*
- * Test passing a forbidden sequence to it and expect it to throw.
- *
- * Note that we implicitly test in different testcases (these for add and
- * delete) that if the journaling is false, it doesn't expect the order.
- *
- * In this test we don't check with the real databases as this case shouldn't
- * contain backend specific behavior.
- */
- TEST_F(MockDatabaseClientTest, journalBadSequence) {
- std::vector<JournalEntry> expected;
- {
- SCOPED_TRACE("Delete A before SOA");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_),
- isc::BadValue);
- // Make sure the journal is empty now
- this->checkJournal(expected);
- }
- {
- SCOPED_TRACE("Add before delete");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- EXPECT_THROW(this->updater_->addRRset(*this->soa_), isc::BadValue);
- // Make sure the journal is empty now
- this->checkJournal(expected);
- }
- {
- SCOPED_TRACE("Add A before SOA");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- // So far OK
- EXPECT_NO_THROW(this->updater_->deleteRRset(*this->soa_));
- // But we miss the add SOA here
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_), isc::BadValue);
- // Make sure the journal contains only the first one
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_DELETE,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200"));
- this->checkJournal(expected);
- }
- {
- SCOPED_TRACE("Commit before add");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- // So far OK
- EXPECT_NO_THROW(this->updater_->deleteRRset(*this->soa_));
- // Commit at the wrong time
- EXPECT_THROW(updater_->commit(), isc::BadValue);
- current_accessor_->checkJournal(expected);
- }
- {
- SCOPED_TRACE("Delete two SOAs");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- // So far OK
- EXPECT_NO_THROW(this->updater_->deleteRRset(*this->soa_));
- // Delete the SOA again
- EXPECT_THROW(this->updater_->deleteRRset(*this->soa_), isc::BadValue);
- this->checkJournal(expected);
- }
- {
- SCOPED_TRACE("Add two SOAs");
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- // So far OK
- EXPECT_NO_THROW(this->updater_->deleteRRset(*this->soa_));
- // Still OK
- EXPECT_NO_THROW(this->updater_->addRRset(*this->soa_));
- // But this one is added again
- EXPECT_THROW(this->updater_->addRRset(*this->soa_), isc::BadValue);
- expected.push_back(JournalEntry(WRITABLE_ZONE_ID, 1234,
- DatabaseAccessor::DIFF_ADD,
- "example.org.", "SOA", "3600",
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419200 7200"));
- this->checkJournal(expected);
- }
- }
- /*
- * Test it rejects to store journals when we request it together with
- * erasing the whole zone.
- */
- TYPED_TEST(DatabaseClientTest, journalOnErase) {
- EXPECT_THROW(this->client_->getUpdater(this->zname_, true, true),
- isc::BadValue);
- }
- /*
- * Check that exception is propagated when the journal is not implemented.
- */
- TEST_F(MockDatabaseClientTest, journalNotImplemented) {
- updater_ = client_->getUpdater(Name("null.example.org"), false, true);
- EXPECT_THROW(updater_->deleteRRset(*soa_), isc::NotImplemented);
- soa_.reset(new RRset(zname_, qclass_, RRType::SOA(), rrttl_));
- soa_->addRdata(rdata::createRdata(soa_->getType(), soa_->getClass(),
- "ns1.example.org. admin.example.org. "
- "1234 3600 1800 2419201 7200"));
- EXPECT_THROW(updater_->addRRset(*soa_), isc::NotImplemented);
- }
- /*
- * Test that different exceptions are propagated.
- */
- TEST_F(MockDatabaseClientTest, journalException) {
- updater_ = client_->getUpdater(Name("bad.example.org"), false, true);
- EXPECT_THROW(updater_->deleteRRset(*soa_), DataSourceError);
- }
- //
- // Tests for the ZoneJournalReader
- //
- // Install a simple, commonly used diff sequence: making an update from one
- // SOA to another. Return the end SOA RRset for the convenience of the caller.
- ConstRRsetPtr
- makeSimpleDiff(DataSourceClient& client, const Name& zname,
- const RRClass& rrclass, ConstRRsetPtr begin_soa)
- {
- ZoneUpdaterPtr updater = client.getUpdater(zname, false, true);
- updater->deleteRRset(*begin_soa);
- RRsetPtr soa_end(new RRset(zname, rrclass, RRType::SOA(), RRTTL(3600)));
- soa_end->addRdata(rdata::createRdata(RRType::SOA(), rrclass,
- "ns1.example.org. admin.example.org. "
- "1235 3600 1800 2419200 7200"));
- updater->addRRset(*soa_end);
- updater->commit();
- return (soa_end);
- }
- TYPED_TEST(DatabaseClientTest, journalReader) {
- // Check the simple case made by makeSimpleDiff.
- ConstRRsetPtr soa_end = makeSimpleDiff(*this->client_, this->zname_,
- this->qclass_, this->soa_);
- pair<ZoneJournalReader::Result, ZoneJournalReaderPtr> result =
- this->client_->getJournalReader(this->zname_, 1234, 1235);
- EXPECT_EQ(ZoneJournalReader::SUCCESS, result.first);
- ZoneJournalReaderPtr jnl_reader = result.second;
- ASSERT_TRUE(jnl_reader);
- ConstRRsetPtr rrset = jnl_reader->getNextDiff();
- ASSERT_TRUE(rrset);
- rrsetCheck(this->soa_, rrset);
- rrset = jnl_reader->getNextDiff();
- ASSERT_TRUE(rrset);
- rrsetCheck(soa_end, rrset);
- rrset = jnl_reader->getNextDiff();
- ASSERT_FALSE(rrset);
- // Once it reaches the end of the sequence, further read attempt will
- // result in exception.
- EXPECT_THROW(jnl_reader->getNextDiff(), isc::InvalidOperation);
- }
- TYPED_TEST(DatabaseClientTest, readLargeJournal) {
- // Similar to journalMultiple, but check that at a higher level.
- this->updater_ = this->client_->getUpdater(this->zname_, false, true);
- vector<ConstRRsetPtr> expected;
- for (size_t i = 0; i < 100; ++i) {
- // Create the old SOA and remove it, and record it in the expected list
- RRsetPtr rrset1(new RRset(this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_));
- string soa_rdata = "ns1.example.org. admin.example.org. " +
- lexical_cast<std::string>(1234 + i) + " 3600 1800 2419200 7200";
- rrset1->addRdata(rdata::createRdata(RRType::SOA(), this->qclass_,
- soa_rdata));
- this->updater_->deleteRRset(*rrset1);
- expected.push_back(rrset1);
- // Create a new SOA, add it, and record it.
- RRsetPtr rrset2(new RRset(this->zname_, this->qclass_, RRType::SOA(),
- this->rrttl_));
- soa_rdata = "ns1.example.org. admin.example.org. " +
- lexical_cast<std::string>(1234 + i + 1) +
- " 3600 1800 2419200 7200";
- rrset2->addRdata(rdata::createRdata(RRType::SOA(), this->qclass_,
- soa_rdata));
- this->updater_->addRRset(*rrset2);
- expected.push_back(rrset2);
- }
- this->updater_->commit();
- ZoneJournalReaderPtr jnl_reader(this->client_->getJournalReader(
- this->zname_, 1234, 1334).second);
- ConstRRsetPtr actual;
- int i = 0;
- while ((actual = jnl_reader->getNextDiff()) != NULL) {
- rrsetCheck(expected.at(i++), actual);
- }
- EXPECT_EQ(expected.size(), i); // we should have eaten all expected data
- }
- TYPED_TEST(DatabaseClientTest, readJournalForNoRange) {
- makeSimpleDiff(*this->client_, this->zname_, this->qclass_, this->soa_);
- // The specified range does not exist in the diff storage. The factory
- // method should result in NO_SUCH_VERSION
- pair<ZoneJournalReader::Result, ZoneJournalReaderPtr> result =
- this->client_->getJournalReader(this->zname_, 1200, 1235);
- EXPECT_EQ(ZoneJournalReader::NO_SUCH_VERSION, result.first);
- EXPECT_FALSE(result.second);
- }
- TYPED_TEST(DatabaseClientTest, journalReaderForNXZone) {
- pair<ZoneJournalReader::Result, ZoneJournalReaderPtr> result =
- this->client_->getJournalReader(Name("nosuchzone"), 0, 1);
- EXPECT_EQ(ZoneJournalReader::NO_SUCH_ZONE, result.first);
- EXPECT_FALSE(result.second);
- }
- // A helper function for journalWithBadData. It installs a simple diff
- // from one serial (of 'begin') to another ('begin' + 1), tweaking a specified
- // field of data with some invalid value.
- void
- installBadDiff(MockAccessor& accessor, uint32_t begin,
- DatabaseAccessor::DiffRecordParams modify_param,
- const char* const data)
- {
- string data1[] = {"example.org.", "SOA", "3600", "ns. root. 1 1 1 1 1"};
- string data2[] = {"example.org.", "SOA", "3600", "ns. root. 2 1 1 1 1"};
- data1[modify_param] = data;
- accessor.addRecordDiff(READONLY_ZONE_ID, begin,
- DatabaseAccessor::DIFF_DELETE, data1);
- accessor.addRecordDiff(READONLY_ZONE_ID, begin + 1,
- DatabaseAccessor::DIFF_ADD, data2);
- }
- TEST_F(MockDatabaseClientTest, journalWithBadData) {
- MockAccessor& mock_accessor =
- dynamic_cast<MockAccessor&>(*current_accessor_);
- // One of the fields from the data source is broken as an RR parameter.
- // The journal reader should still be constructed, but getNextDiff()
- // should result in exception.
- installBadDiff(mock_accessor, 1, DatabaseAccessor::DIFF_NAME,
- "example..org");
- installBadDiff(mock_accessor, 3, DatabaseAccessor::DIFF_TYPE,
- "bad-rrtype");
- installBadDiff(mock_accessor, 5, DatabaseAccessor::DIFF_TTL,
- "bad-ttl");
- installBadDiff(mock_accessor, 7, DatabaseAccessor::DIFF_RDATA,
- "bad rdata");
- EXPECT_THROW(this->client_->getJournalReader(this->zname_, 1, 2).
- second->getNextDiff(), DataSourceError);
- EXPECT_THROW(this->client_->getJournalReader(this->zname_, 3, 4).
- second->getNextDiff(), DataSourceError);
- EXPECT_THROW(this->client_->getJournalReader(this->zname_, 5, 6).
- second->getNextDiff(), DataSourceError);
- EXPECT_THROW(this->client_->getJournalReader(this->zname_, 7, 8).
- second->getNextDiff(), DataSourceError);
- }
- /// Let us test a little bit of NSEC3.
- TYPED_TEST(DatabaseClientTest, findNSEC3) {
- // Set up the faked hash calculator.
- setNSEC3HashCreator(&this->test_nsec3_hash_creator_);
- const DataSourceClient::FindResult
- zone(this->client_->findZone(Name("example.org")));
- ASSERT_EQ(result::SUCCESS, zone.code);
- boost::shared_ptr<DatabaseClient::Finder> finder(
- dynamic_pointer_cast<DatabaseClient::Finder>(zone.zone_finder));
- // It'll complain if there is no NSEC3PARAM yet
- EXPECT_THROW(finder->findNSEC3(Name("example.org"), false),
- DataSourceError);
- // And enable NSEC3 in the zone.
- this->current_accessor_->enableNSEC3();
- // The rest is in the function, it is shared with in-memory tests
- performNSEC3Test(*finder, true);
- }
- TYPED_TEST(DatabaseClientTest, createZone) {
- const Name new_name("example.com");
- const DataSourceClient::FindResult
- zone(this->client_->findZone(new_name));
- ASSERT_EQ(result::NOTFOUND, zone.code);
- // Adding a new zone; it should work and return true
- ASSERT_TRUE(this->client_->createZone(new_name));
- const DataSourceClient::FindResult
- zone2(this->client_->findZone(new_name));
- ASSERT_EQ(result::SUCCESS, zone2.code);
- // And the second call should return false since
- // it already exists
- this->allowMoreTransaction(true);
- ASSERT_FALSE(this->client_->createZone(new_name));
- }
- TYPED_TEST(DatabaseClientTest, createZoneRollbackOnLocked) {
- const Name new_name("example.com");
- isc::datasrc::ZoneUpdaterPtr updater =
- this->client_->getUpdater(this->zname_, true);
- this->allowMoreTransaction(false);
- ASSERT_THROW(this->client_->createZone(new_name), DataSourceError);
- // createZone started a transaction as well, but since it failed,
- // it should have been rolled back. Roll back the other one as
- // well, and the next attempt should succeed
- updater.reset();
- this->allowMoreTransaction(true);
- ASSERT_TRUE(this->client_->createZone(new_name));
- }
- TYPED_TEST(DatabaseClientTest, createZoneRollbackOnExists) {
- const Name new_name("example.com");
- ASSERT_FALSE(this->client_->createZone(this->zname_));
- // deleteZone started a transaction, but since the zone didn't even exist
- // the transaction was not committed but should have been rolled back.
- // The first transaction shouldn't leave any state, lock, etc, that
- // would hinder the second attempt.
- this->allowMoreTransaction(true);
- ASSERT_TRUE(this->client_->createZone(new_name));
- }
- TYPED_TEST(DatabaseClientTest, deleteZone) {
- // Check the zone currently exists.
- EXPECT_EQ(result::SUCCESS, this->client_->findZone(this->zname_).code);
- // Deleting an existing zone; it should work and return true (previously
- // existed and is now deleted)
- EXPECT_TRUE(this->client_->deleteZone(this->zname_));
- // Now it's not found by findZone
- EXPECT_EQ(result::NOTFOUND, this->client_->findZone(this->zname_).code);
- // And the second call should return false since it doesn't exist any more
- this->allowMoreTransaction(true);
- EXPECT_FALSE(this->client_->deleteZone(this->zname_));
- }
- TYPED_TEST(DatabaseClientTest, deleteZoneRollbackOnLocked) {
- isc::datasrc::ZoneUpdaterPtr updater =
- this->client_->getUpdater(this->zname_, true);
- // updater locks the DB so deleteZone() will fail.
- this->allowMoreTransaction(false);
- EXPECT_THROW(this->client_->deleteZone(this->zname_), DataSourceError);
- // deleteZone started a transaction as well, but since it failed,
- // it should have been rolled back. Roll back the other one as
- // well, and the next attempt should succeed
- updater.reset();
- this->allowMoreTransaction(true);
- EXPECT_TRUE(this->client_->deleteZone(this->zname_));
- }
- TYPED_TEST(DatabaseClientTest, deleteZoneRollbackOnNotFind) {
- // attempt of deleting non-existent zone. result in false
- const Name new_name("example.com");
- EXPECT_FALSE(this->client_->deleteZone(new_name));
- // deleteZone started a transaction, but since the zone didn't even exist
- // the transaction was not committed but should have been rolled back.
- // The first transaction shouldn't leave any state, lock, etc, that
- // would hinder the second attempt.
- this->allowMoreTransaction(true);
- EXPECT_TRUE(this->client_->deleteZone(this->zname_));
- }
- TYPED_TEST_CASE(RRsetCollectionTest, TestAccessorTypes);
- // This test fixture is templated so that we can share (most of) the test
- // cases with different types of data sources. Note that in test cases
- // we need to use 'this' to refer to member variables of the test class.
- template <typename ACCESSOR_TYPE>
- class RRsetCollectionTest : public DatabaseClientTest<ACCESSOR_TYPE> {
- public:
- RRsetCollectionTest() :
- DatabaseClientTest<ACCESSOR_TYPE>(),
- updater(this->client_->getUpdater(this->zname_, false)),
- collection(updater->getRRsetCollection())
- {}
- ZoneUpdaterPtr updater;
- isc::datasrc::RRsetCollectionBase& collection;
- };
- TYPED_TEST(RRsetCollectionTest, find) {
- // Test the find() that returns ConstRRsetPtr
- ConstRRsetPtr rrset = this->collection.find(Name("www.example.org."),
- RRClass::IN(), RRType::A());
- ASSERT_TRUE(rrset);
- EXPECT_EQ(RRType::A(), rrset->getType());
- EXPECT_EQ(RRTTL(3600), rrset->getTTL());
- EXPECT_EQ(RRClass("IN"), rrset->getClass());
- EXPECT_EQ(Name("www.example.org"), rrset->getName());
- // foo.example.org doesn't exist
- rrset = this->collection.find(Name("foo.example.org"), this->qclass_,
- RRType::A());
- EXPECT_FALSE(rrset);
- // www.example.org exists, but not with MX
- rrset = this->collection.find(Name("www.example.org"), this->qclass_,
- RRType::MX());
- EXPECT_FALSE(rrset);
- // www.example.org exists, with AAAA
- rrset = this->collection.find(Name("www.example.org"), this->qclass_,
- RRType::AAAA());
- EXPECT_TRUE(rrset);
- // www.example.org with AAAA does not exist in RRClass::CH()
- rrset = this->collection.find(Name("www.example.org"), RRClass::CH(),
- RRType::AAAA());
- EXPECT_FALSE(rrset);
- // Out-of-zone find()s must not throw.
- rrset = this->collection.find(Name("www.example.com"), this->qclass_,
- RRType::A());
- EXPECT_FALSE(rrset);
- // "cname.example.org." with type CNAME should return the CNAME RRset
- rrset = this->collection.find(Name("cname.example.org"), this->qclass_,
- RRType::CNAME());
- ASSERT_TRUE(rrset);
- EXPECT_EQ(RRType::CNAME(), rrset->getType());
- EXPECT_EQ(Name("cname.example.org"), rrset->getName());
- // "cname.example.org." with type A should return nothing
- rrset = this->collection.find(Name("cname.example.org"), this->qclass_,
- RRType::A());
- EXPECT_FALSE(rrset);
- // "dname.example.org." with type DNAME should return the DNAME RRset
- rrset = this->collection.find(Name("dname.example.org"), this->qclass_,
- RRType::DNAME());
- ASSERT_TRUE(rrset);
- EXPECT_EQ(RRType::DNAME(), rrset->getType());
- EXPECT_EQ(Name("dname.example.org"), rrset->getName());
- // "below.dname.example.org." with type AAAA should return nothing
- rrset = this->collection.find(Name("below.dname.example.org"),
- this->qclass_, RRType::AAAA());
- EXPECT_FALSE(rrset);
- // "below.dname.example.org." with type A does not return the record
- // (see top of file). See \c isc::datasrc::RRsetCollectionBase::find()
- // documentation for details.
- rrset = this->collection.find(Name("below.dname.example.org"),
- this->qclass_, RRType::A());
- EXPECT_FALSE(rrset);
- // With the FIND_GLUE_OK option passed to ZoneFinder's find(),
- // searching for "delegation.example.org." with type NS should
- // return the NS record. Without FIND_GLUE_OK, ZoneFinder's find()
- // would return DELEGATION and the find() below would return
- // nothing.
- rrset = this->collection.find(Name("delegation.example.org"),
- this->qclass_, RRType::NS());
- ASSERT_TRUE(rrset);
- EXPECT_EQ(RRType::NS(), rrset->getType());
- EXPECT_EQ(Name("delegation.example.org"), rrset->getName());
- // With the NO_WILDCARD option passed to ZoneFinder's find(),
- // searching for some "foo.wildcard.example.org." would make
- // ZoneFinder's find() return NXDOMAIN, and the find() below should
- // return nothing.
- rrset = this->collection.find(Name("foo.wild.example.org"),
- this->qclass_, RRType::A());
- EXPECT_FALSE(rrset);
- // Searching directly for "*.wild.example.org." should return the
- // record.
- rrset = this->collection.find(Name("*.wild.example.org"),
- this->qclass_, RRType::A());
- ASSERT_TRUE(rrset);
- EXPECT_EQ(RRType::A(), rrset->getType());
- EXPECT_EQ(Name("*.wild.example.org"), rrset->getName());
- }
- TYPED_TEST(RRsetCollectionTest, iteratorTest) {
- // Iterators are currently not implemented.
- EXPECT_THROW(this->collection.begin(), isc::NotImplemented);
- EXPECT_THROW(this->collection.end(), isc::NotImplemented);
- }
- typedef RRsetCollectionTest<MockAccessor> MockRRsetCollectionTest;
- TEST_F(MockRRsetCollectionTest, findError) {
- // A test using the MockAccessor for checking that FindError is
- // thrown properly if a find attempt using ZoneFinder results in a
- // DataSourceError.
- //
- // The "dsexception.example.org." name is rigged by the MockAccessor
- // to throw a DataSourceError.
- EXPECT_THROW({
- this->collection.find(Name("dsexception.example.org"), this->qclass_,
- RRType::A());
- }, RRsetCollectionError);
- }
- TYPED_TEST_CASE(RRsetCollectionAndUpdaterTest, TestAccessorTypes);
- // This test fixture is templated so that we can share (most of) the test
- // cases with different types of data sources. Note that in test cases
- // we need to use 'this' to refer to member variables of the test class.
- template <typename ACCESSOR_TYPE>
- class RRsetCollectionAndUpdaterTest : public DatabaseClientTest<ACCESSOR_TYPE> {
- public:
- RRsetCollectionAndUpdaterTest() :
- DatabaseClientTest<ACCESSOR_TYPE>(),
- updater_(this->client_->getUpdater(this->zname_, false))
- {}
- ZoneUpdaterPtr updater_;
- };
- // Test that using addRRset() or deleteRRset() on the ZoneUpdater throws
- // after an RRsetCollection is created.
- TYPED_TEST(RRsetCollectionAndUpdaterTest, updateThrows) {
- // 1. Addition test
- // addRRset() must not throw.
- this->updater_->addRRset(*this->rrset_);
- // Now setup a new updater and call getRRsetCollection() on it.
- this->updater_.reset();
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- (void) this->updater_->getRRsetCollection();
- // addRRset() must throw isc::InvalidOperation here.
- EXPECT_THROW(this->updater_->addRRset(*this->rrset_),
- isc::InvalidOperation);
- // 2. Deletion test
- // deleteRRset() must not throw.
- this->updater_.reset();
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->addRRset(*this->rrset_);
- this->updater_->deleteRRset(*this->rrset_);
- // Now setup a new updater and call getRRsetCollection() on it.
- this->updater_.reset();
- this->updater_ = this->client_->getUpdater(this->zname_, false);
- this->updater_->addRRset(*this->rrset_);
- (void) this->updater_->getRRsetCollection();
- // deleteRRset() must throw isc::InvalidOperation here.
- EXPECT_THROW(this->updater_->deleteRRset(*this->rrset_),
- isc::InvalidOperation);
- }
- // Test that using an RRsetCollection after calling commit() on the
- // ZoneUpdater throws, as the RRsetCollection is disabled.
- TYPED_TEST(RRsetCollectionAndUpdaterTest, useAfterCommitThrows) {
- isc::datasrc::RRsetCollectionBase& collection =
- this->updater_->getRRsetCollection();
- // find() must not throw here.
- collection.find(Name("foo.wild.example.org"), this->qclass_, RRType::A());
- this->updater_->commit();
- // find() must throw RRsetCollectionError here, as the
- // RRsetCollection is disabled.
- EXPECT_THROW(collection.find(Name("foo.wild.example.org"),
- this->qclass_, RRType::A()),
- RRsetCollectionError);
- }
- }
|