Python Library Report
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

unittest.json 526KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024
  1. {
  2. "coverage_information": [
  3. {
  4. "branch_coverage": 67.74,
  5. "filepath": "/user_data/data/dirk/prj/modules/report/pylibs/report",
  6. "files": [
  7. {
  8. "branch_coverage": 67.74,
  9. "filepath": "/user_data/data/dirk/prj/modules/report/pylibs/report/__init__.py",
  10. "fragments": [
  11. {
  12. "coverage_state": "clean",
  13. "end": 3,
  14. "start": 1
  15. },
  16. {
  17. "coverage_state": "covered",
  18. "end": 4,
  19. "start": 4
  20. },
  21. {
  22. "coverage_state": "clean",
  23. "end": 28,
  24. "start": 5
  25. },
  26. {
  27. "coverage_state": "covered",
  28. "end": 29,
  29. "start": 29
  30. },
  31. {
  32. "coverage_state": "clean",
  33. "end": 30,
  34. "start": 30
  35. },
  36. {
  37. "coverage_state": "covered",
  38. "end": 35,
  39. "start": 31
  40. },
  41. {
  42. "coverage_state": "clean",
  43. "end": 36,
  44. "start": 36
  45. },
  46. {
  47. "coverage_state": "covered",
  48. "end": 38,
  49. "start": 37
  50. },
  51. {
  52. "coverage_state": "clean",
  53. "end": 39,
  54. "start": 39
  55. },
  56. {
  57. "coverage_state": "covered",
  58. "end": 40,
  59. "start": 40
  60. },
  61. {
  62. "coverage_state": "clean",
  63. "end": 42,
  64. "start": 41
  65. },
  66. {
  67. "coverage_state": "covered",
  68. "end": 43,
  69. "start": 43
  70. },
  71. {
  72. "coverage_state": "clean",
  73. "end": 45,
  74. "start": 44
  75. },
  76. {
  77. "coverage_state": "covered",
  78. "end": 46,
  79. "start": 46
  80. },
  81. {
  82. "coverage_state": "clean",
  83. "end": 47,
  84. "start": 47
  85. },
  86. {
  87. "coverage_state": "covered",
  88. "end": 48,
  89. "start": 48
  90. },
  91. {
  92. "coverage_state": "clean",
  93. "end": 51,
  94. "start": 49
  95. },
  96. {
  97. "coverage_state": "covered",
  98. "end": 52,
  99. "start": 52
  100. },
  101. {
  102. "coverage_state": "clean",
  103. "end": 68,
  104. "start": 53
  105. },
  106. {
  107. "coverage_state": "covered",
  108. "end": 69,
  109. "start": 69
  110. },
  111. {
  112. "coverage_state": "clean",
  113. "end": 72,
  114. "start": 70
  115. },
  116. {
  117. "coverage_state": "covered",
  118. "end": 74,
  119. "start": 73
  120. },
  121. {
  122. "coverage_state": "clean",
  123. "end": 75,
  124. "start": 75
  125. },
  126. {
  127. "coverage_state": "covered",
  128. "end": 79,
  129. "start": 76
  130. },
  131. {
  132. "coverage_state": "clean",
  133. "end": 80,
  134. "start": 80
  135. },
  136. {
  137. "coverage_state": "covered",
  138. "end": 83,
  139. "start": 81
  140. },
  141. {
  142. "coverage_state": "clean",
  143. "end": 84,
  144. "start": 84
  145. },
  146. {
  147. "coverage_state": "covered",
  148. "end": 86,
  149. "start": 85
  150. },
  151. {
  152. "coverage_state": "clean",
  153. "end": 87,
  154. "start": 87
  155. },
  156. {
  157. "coverage_state": "covered",
  158. "end": 92,
  159. "start": 88
  160. },
  161. {
  162. "coverage_state": "clean",
  163. "end": 93,
  164. "start": 93
  165. },
  166. {
  167. "coverage_state": "covered",
  168. "end": 96,
  169. "start": 94
  170. },
  171. {
  172. "coverage_state": "clean",
  173. "end": 97,
  174. "start": 97
  175. },
  176. {
  177. "coverage_state": "covered",
  178. "end": 99,
  179. "start": 98
  180. },
  181. {
  182. "coverage_state": "clean",
  183. "end": 100,
  184. "start": 100
  185. },
  186. {
  187. "coverage_state": "covered",
  188. "end": 101,
  189. "start": 101
  190. },
  191. {
  192. "coverage_state": "uncovered",
  193. "end": 102,
  194. "start": 102
  195. },
  196. {
  197. "coverage_state": "clean",
  198. "end": 104,
  199. "start": 103
  200. },
  201. {
  202. "coverage_state": "covered",
  203. "end": 106,
  204. "start": 105
  205. },
  206. {
  207. "coverage_state": "clean",
  208. "end": 107,
  209. "start": 107
  210. },
  211. {
  212. "coverage_state": "covered",
  213. "end": 111,
  214. "start": 108
  215. },
  216. {
  217. "coverage_state": "clean",
  218. "end": 112,
  219. "start": 112
  220. },
  221. {
  222. "coverage_state": "covered",
  223. "end": 114,
  224. "start": 113
  225. },
  226. {
  227. "coverage_state": "clean",
  228. "end": 115,
  229. "start": 115
  230. },
  231. {
  232. "coverage_state": "covered",
  233. "end": 117,
  234. "start": 116
  235. },
  236. {
  237. "coverage_state": "clean",
  238. "end": 119,
  239. "start": 118
  240. },
  241. {
  242. "coverage_state": "covered",
  243. "end": 120,
  244. "start": 120
  245. },
  246. {
  247. "coverage_state": "clean",
  248. "end": 121,
  249. "start": 121
  250. },
  251. {
  252. "coverage_state": "covered",
  253. "end": 122,
  254. "start": 122
  255. },
  256. {
  257. "coverage_state": "clean",
  258. "end": 123,
  259. "start": 123
  260. },
  261. {
  262. "coverage_state": "covered",
  263. "end": 124,
  264. "start": 124
  265. },
  266. {
  267. "coverage_state": "clean",
  268. "end": 125,
  269. "start": 125
  270. },
  271. {
  272. "coverage_state": "covered",
  273. "end": 126,
  274. "start": 126
  275. },
  276. {
  277. "coverage_state": "clean",
  278. "end": 127,
  279. "start": 127
  280. },
  281. {
  282. "coverage_state": "covered",
  283. "end": 128,
  284. "start": 128
  285. },
  286. {
  287. "coverage_state": "clean",
  288. "end": 135,
  289. "start": 129
  290. },
  291. {
  292. "coverage_state": "covered",
  293. "end": 136,
  294. "start": 136
  295. },
  296. {
  297. "coverage_state": "clean",
  298. "end": 144,
  299. "start": 137
  300. },
  301. {
  302. "coverage_state": "covered",
  303. "end": 146,
  304. "start": 145
  305. },
  306. {
  307. "coverage_state": "clean",
  308. "end": 147,
  309. "start": 147
  310. },
  311. {
  312. "coverage_state": "covered",
  313. "end": 151,
  314. "start": 148
  315. },
  316. {
  317. "coverage_state": "clean",
  318. "end": 153,
  319. "start": 152
  320. },
  321. {
  322. "coverage_state": "covered",
  323. "end": 154,
  324. "start": 154
  325. },
  326. {
  327. "coverage_state": "uncovered",
  328. "end": 157,
  329. "start": 155
  330. },
  331. {
  332. "coverage_state": "clean",
  333. "end": 158,
  334. "start": 158
  335. },
  336. {
  337. "coverage_state": "uncovered",
  338. "end": 159,
  339. "start": 159
  340. },
  341. {
  342. "coverage_state": "clean",
  343. "end": 178,
  344. "start": 160
  345. },
  346. {
  347. "coverage_state": "uncovered",
  348. "end": 179,
  349. "start": 179
  350. },
  351. {
  352. "coverage_state": "clean",
  353. "end": 181,
  354. "start": 180
  355. },
  356. {
  357. "coverage_state": "covered",
  358. "end": 192,
  359. "start": 182
  360. },
  361. {
  362. "coverage_state": "clean",
  363. "end": 193,
  364. "start": 193
  365. },
  366. {
  367. "coverage_state": "covered",
  368. "end": 194,
  369. "start": 194
  370. },
  371. {
  372. "coverage_state": "clean",
  373. "end": 204,
  374. "start": 195
  375. },
  376. {
  377. "coverage_state": "covered",
  378. "end": 209,
  379. "start": 205
  380. },
  381. {
  382. "coverage_state": "clean",
  383. "end": 210,
  384. "start": 210
  385. },
  386. {
  387. "coverage_state": "covered",
  388. "end": 215,
  389. "start": 211
  390. },
  391. {
  392. "coverage_state": "clean",
  393. "end": 216,
  394. "start": 216
  395. },
  396. {
  397. "coverage_state": "covered",
  398. "end": 217,
  399. "start": 217
  400. },
  401. {
  402. "coverage_state": "clean",
  403. "end": 220,
  404. "start": 218
  405. },
  406. {
  407. "coverage_state": "covered",
  408. "end": 221,
  409. "start": 221
  410. },
  411. {
  412. "coverage_state": "clean",
  413. "end": 249,
  414. "start": 222
  415. },
  416. {
  417. "coverage_state": "covered",
  418. "end": 250,
  419. "start": 250
  420. },
  421. {
  422. "coverage_state": "clean",
  423. "end": 251,
  424. "start": 251
  425. },
  426. {
  427. "coverage_state": "covered",
  428. "end": 257,
  429. "start": 252
  430. },
  431. {
  432. "coverage_state": "clean",
  433. "end": 258,
  434. "start": 258
  435. },
  436. {
  437. "coverage_state": "covered",
  438. "end": 259,
  439. "start": 259
  440. },
  441. {
  442. "coverage_state": "partially-covered",
  443. "end": 260,
  444. "start": 260
  445. },
  446. {
  447. "coverage_state": "covered",
  448. "end": 262,
  449. "start": 261
  450. },
  451. {
  452. "coverage_state": "partially-covered",
  453. "end": 263,
  454. "start": 263
  455. },
  456. {
  457. "coverage_state": "uncovered",
  458. "end": 264,
  459. "start": 264
  460. },
  461. {
  462. "coverage_state": "covered",
  463. "end": 265,
  464. "start": 265
  465. },
  466. {
  467. "coverage_state": "partially-covered",
  468. "end": 266,
  469. "start": 266
  470. },
  471. {
  472. "coverage_state": "uncovered",
  473. "end": 267,
  474. "start": 267
  475. },
  476. {
  477. "coverage_state": "covered",
  478. "end": 270,
  479. "start": 268
  480. },
  481. {
  482. "coverage_state": "clean",
  483. "end": 271,
  484. "start": 271
  485. },
  486. {
  487. "coverage_state": "covered",
  488. "end": 272,
  489. "start": 272
  490. },
  491. {
  492. "coverage_state": "partially-covered",
  493. "end": 273,
  494. "start": 273
  495. },
  496. {
  497. "coverage_state": "covered",
  498. "end": 274,
  499. "start": 274
  500. },
  501. {
  502. "coverage_state": "clean",
  503. "end": 277,
  504. "start": 275
  505. },
  506. {
  507. "coverage_state": "covered",
  508. "end": 279,
  509. "start": 278
  510. },
  511. {
  512. "coverage_state": "partially-covered",
  513. "end": 280,
  514. "start": 280
  515. },
  516. {
  517. "coverage_state": "uncovered",
  518. "end": 281,
  519. "start": 281
  520. },
  521. {
  522. "coverage_state": "covered",
  523. "end": 283,
  524. "start": 282
  525. },
  526. {
  527. "coverage_state": "clean",
  528. "end": 286,
  529. "start": 284
  530. },
  531. {
  532. "coverage_state": "covered",
  533. "end": 289,
  534. "start": 287
  535. },
  536. {
  537. "coverage_state": "clean",
  538. "end": 290,
  539. "start": 290
  540. },
  541. {
  542. "coverage_state": "covered",
  543. "end": 293,
  544. "start": 291
  545. },
  546. {
  547. "coverage_state": "clean",
  548. "end": 294,
  549. "start": 294
  550. },
  551. {
  552. "coverage_state": "covered",
  553. "end": 296,
  554. "start": 295
  555. },
  556. {
  557. "coverage_state": "uncovered",
  558. "end": 298,
  559. "start": 297
  560. },
  561. {
  562. "coverage_state": "clean",
  563. "end": 301,
  564. "start": 299
  565. },
  566. {
  567. "coverage_state": "covered",
  568. "end": 302,
  569. "start": 302
  570. },
  571. {
  572. "coverage_state": "partially-covered",
  573. "end": 303,
  574. "start": 303
  575. },
  576. {
  577. "coverage_state": "covered",
  578. "end": 304,
  579. "start": 304
  580. },
  581. {
  582. "coverage_state": "uncovered",
  583. "end": 306,
  584. "start": 305
  585. },
  586. {
  587. "coverage_state": "clean",
  588. "end": 307,
  589. "start": 307
  590. },
  591. {
  592. "coverage_state": "uncovered",
  593. "end": 308,
  594. "start": 308
  595. },
  596. {
  597. "coverage_state": "clean",
  598. "end": 309,
  599. "start": 309
  600. },
  601. {
  602. "coverage_state": "covered",
  603. "end": 312,
  604. "start": 310
  605. },
  606. {
  607. "coverage_state": "clean",
  608. "end": 313,
  609. "start": 313
  610. },
  611. {
  612. "coverage_state": "covered",
  613. "end": 315,
  614. "start": 314
  615. },
  616. {
  617. "coverage_state": "clean",
  618. "end": null,
  619. "start": 316
  620. }
  621. ],
  622. "line_coverage": 89.92999999999999,
  623. "name": "report.__init__.py"
  624. }
  625. ],
  626. "line_coverage": 89.92999999999999,
  627. "name": "report"
  628. }
  629. ],
  630. "lost_souls": {
  631. "item_list": [],
  632. "testcase_list": []
  633. },
  634. "specification": {
  635. "comment": "Comment",
  636. "item_dict": {
  637. "_5ZAecCvUEeqssZLMJF_fcg": {
  638. "Heading": "collectingHandler",
  639. "last_change": "2019-12-31T14:53:09.820+01:00",
  640. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  641. "system_uid": "_5ZAecCvUEeqssZLMJF_fcg",
  642. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  643. },
  644. "_ErFPoCvVEeqssZLMJF_fcg": {
  645. "Heading": "String representation (collectingHandler)",
  646. "ID": "REQ-2",
  647. "last_change": "2019-12-31T14:58:31.681+01:00",
  648. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  649. "system_uid": "_ErFPoCvVEeqssZLMJF_fcg",
  650. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  651. },
  652. "_MR7eOHYYEem_kd-7nxt1sg": {
  653. "Description": "Many Methods and Classes in this Module are used for the unittest itself. Others are configuring python logging, which is also used for the unittest itself. Therefore, the unittest for this Module is limited. Also the coverage information is not only reached by the testcases, cause the Module is used by the unittest itself.",
  654. "Heading": "General Information",
  655. "last_change": "2019-12-31T14:53:09.779+01:00",
  656. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  657. "system_uid": "_MR7eOHYYEem_kd-7nxt1sg",
  658. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  659. },
  660. "_NXT_8CvVEeqssZLMJF_fcg": {
  661. "Heading": "collectingRingHandler",
  662. "last_change": "2019-12-31T14:55:23.658+01:00",
  663. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  664. "system_uid": "_NXT_8CvVEeqssZLMJF_fcg",
  665. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  666. },
  667. "_PVhZECvVEeqssZLMJF_fcg": {
  668. "Heading": "Store log records (collectingRingHandler)",
  669. "ID": "REQ-3",
  670. "last_change": "2019-12-31T14:59:27.841+01:00",
  671. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  672. "system_uid": "_PVhZECvVEeqssZLMJF_fcg",
  673. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  674. },
  675. "_QBmb8CvVEeqssZLMJF_fcg": {
  676. "Heading": "String representation (collectingRingHandler)",
  677. "ID": "REQ-4",
  678. "last_change": "2019-12-31T14:59:35.961+01:00",
  679. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  680. "system_uid": "_QBmb8CvVEeqssZLMJF_fcg",
  681. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  682. },
  683. "_XzMFcHYZEem_kd-7nxt1sg": {
  684. "Description": "Description 1.",
  685. "Fitcriterion": "",
  686. "Heading": "Store log records (collectingHandler)",
  687. "ID": "REQ-1",
  688. "ReasonForImplementation": "",
  689. "last_change": "2019-12-31T15:00:22.677+01:00",
  690. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  691. "system_uid": "_XzMFcHYZEem_kd-7nxt1sg",
  692. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  693. },
  694. "_fW5s8CzQEeqYsdFh5Cd6ng": {
  695. "Description": "The number of stored log-records shall be given on initialisation or reinitialisation. ",
  696. "Heading": "Number of stored logs in the RingHandler",
  697. "ID": "REQ-5",
  698. "last_change": "2020-01-01T20:54:04.445+01:00",
  699. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  700. "system_uid": "_fW5s8CzQEeqYsdFh5Cd6ng",
  701. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  702. }
  703. },
  704. "titel": "Title",
  705. "uid_list_sorted": [
  706. "_MR7eOHYYEem_kd-7nxt1sg",
  707. "_5ZAecCvUEeqssZLMJF_fcg",
  708. "_XzMFcHYZEem_kd-7nxt1sg",
  709. "_ErFPoCvVEeqssZLMJF_fcg",
  710. "_NXT_8CvVEeqssZLMJF_fcg",
  711. "_PVhZECvVEeqssZLMJF_fcg",
  712. "_QBmb8CvVEeqssZLMJF_fcg",
  713. "_fW5s8CzQEeqYsdFh5Cd6ng"
  714. ]
  715. },
  716. "system_information": {
  717. "Architecture": "64bit",
  718. "Distribution": "LinuxMint 19.3 tricia",
  719. "Hostname": "ahorn",
  720. "Kernel": "5.0.0-37-generic (#40~18.04.1-Ubuntu SMP Thu Nov 14 12:06:39 UTC 2019)",
  721. "Machine": "x86_64",
  722. "Path": "/user_data/data/dirk/prj/modules/report/unittest",
  723. "System": "Linux",
  724. "Username": "dirk"
  725. },
  726. "testobject_information": {
  727. "Dependencies": [],
  728. "Description": "The Module {\\tt report} is designed to help with python logging and to support some handlers for logging to memory.\nFor more Information read the sphinx documentation.",
  729. "Name": "report",
  730. "State": "Released",
  731. "Supported Interpreters": "python2, python3",
  732. "Version": "1c229da8210becc90fd74efd75907007"
  733. },
  734. "testrun_list": [
  735. {
  736. "heading_dict": {
  737. "_5ZAecCvUEeqssZLMJF_fcg": "collectingHandler",
  738. "_ErFPoCvVEeqssZLMJF_fcg": "String representation (collectingHandler)",
  739. "_MR7eOHYYEem_kd-7nxt1sg": "General Information",
  740. "_NXT_8CvVEeqssZLMJF_fcg": "collectingRingHandler",
  741. "_PVhZECvVEeqssZLMJF_fcg": "Store log records (collectingRingHandler)",
  742. "_QBmb8CvVEeqssZLMJF_fcg": "String representation (collectingRingHandler)",
  743. "_XzMFcHYZEem_kd-7nxt1sg": "Store log records (collectingHandler)",
  744. "_fW5s8CzQEeqYsdFh5Cd6ng": "Number of stored logs in the RingHandler"
  745. },
  746. "interpreter": "python 2.7.17 (final)",
  747. "name": "Default Testsession name",
  748. "number_of_failed_tests": 0,
  749. "number_of_possibly_failed_tests": 0,
  750. "number_of_successfull_tests": 5,
  751. "number_of_tests": 5,
  752. "testcase_execution_level": 90,
  753. "testcase_names": {
  754. "0": "Single Test",
  755. "10": "Smoke Test (Minumum subset)",
  756. "50": "Short Test (Subset)",
  757. "90": "Full Test (all defined tests)"
  758. },
  759. "testcases": {
  760. "_ErFPoCvVEeqssZLMJF_fcg": {
  761. "args": null,
  762. "asctime": "2020-01-02 14:18:00,612",
  763. "created": 1577971080.612861,
  764. "exc_info": null,
  765. "exc_text": null,
  766. "filename": "__init__.py",
  767. "funcName": "testrun",
  768. "levelname": "INFO",
  769. "levelno": 20,
  770. "lineno": 20,
  771. "message": "_ErFPoCvVEeqssZLMJF_fcg",
  772. "module": "__init__",
  773. "moduleLogger": [],
  774. "msecs": 612.860918045044,
  775. "msg": "_ErFPoCvVEeqssZLMJF_fcg",
  776. "name": "__tLogger__",
  777. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  778. "process": 4683,
  779. "processName": "MainProcess",
  780. "relativeCreated": 28.267860412597656,
  781. "testcaseLogger": [
  782. {
  783. "args": [],
  784. "asctime": "2020-01-02 14:18:00,613",
  785. "created": 1577971080.613674,
  786. "exc_info": null,
  787. "exc_text": null,
  788. "filename": "test_helpers.py",
  789. "funcName": "__init__",
  790. "levelname": "DEBUG",
  791. "levelno": 10,
  792. "lineno": 38,
  793. "message": "Running logger test sequence.",
  794. "module": "test_helpers",
  795. "moduleLogger": [
  796. {
  797. "args": [],
  798. "asctime": "2020-01-02 14:18:00,612",
  799. "created": 1577971080.612933,
  800. "exc_info": null,
  801. "exc_text": null,
  802. "filename": "test_helpers.py",
  803. "funcName": "__init__",
  804. "levelname": "DEBUG",
  805. "levelno": 10,
  806. "lineno": 22,
  807. "message": "Configuring collecting logger",
  808. "module": "test_helpers",
  809. "msecs": 612.9329204559326,
  810. "msg": "Configuring collecting logger",
  811. "name": "__unittest__",
  812. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  813. "process": 4683,
  814. "processName": "MainProcess",
  815. "relativeCreated": 28.339862823486328,
  816. "thread": 140022745950016,
  817. "threadName": "MainThread"
  818. },
  819. {
  820. "args": [
  821. 1,
  822. "DEBUG",
  823. "collectingHandler"
  824. ],
  825. "asctime": "2020-01-02 14:18:00,612",
  826. "created": 1577971080.612998,
  827. "exc_info": null,
  828. "exc_text": null,
  829. "filename": "test_helpers.py",
  830. "funcName": "__init__",
  831. "levelname": "DEBUG",
  832. "levelno": 10,
  833. "lineno": 36,
  834. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  835. "module": "test_helpers",
  836. "msecs": 612.9980087280273,
  837. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  838. "name": "__unittest__",
  839. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  840. "process": 4683,
  841. "processName": "MainProcess",
  842. "relativeCreated": 28.404951095581055,
  843. "thread": 140022745950016,
  844. "threadName": "MainThread"
  845. },
  846. {
  847. "args": [
  848. 2,
  849. "INFO",
  850. "collectingHandler"
  851. ],
  852. "asctime": "2020-01-02 14:18:00,613",
  853. "created": 1577971080.61311,
  854. "exc_info": null,
  855. "exc_text": null,
  856. "filename": "test_helpers.py",
  857. "funcName": "__init__",
  858. "levelname": "DEBUG",
  859. "levelno": 10,
  860. "lineno": 36,
  861. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  862. "module": "test_helpers",
  863. "msecs": 613.1100654602051,
  864. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  865. "name": "__unittest__",
  866. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  867. "process": 4683,
  868. "processName": "MainProcess",
  869. "relativeCreated": 28.51700782775879,
  870. "thread": 140022745950016,
  871. "threadName": "MainThread"
  872. },
  873. {
  874. "args": [
  875. 3,
  876. "WARNING",
  877. "collectingHandler"
  878. ],
  879. "asctime": "2020-01-02 14:18:00,613",
  880. "created": 1577971080.613205,
  881. "exc_info": null,
  882. "exc_text": null,
  883. "filename": "test_helpers.py",
  884. "funcName": "__init__",
  885. "levelname": "DEBUG",
  886. "levelno": 10,
  887. "lineno": 36,
  888. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.",
  889. "module": "test_helpers",
  890. "msecs": 613.2049560546875,
  891. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  892. "name": "__unittest__",
  893. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  894. "process": 4683,
  895. "processName": "MainProcess",
  896. "relativeCreated": 28.61189842224121,
  897. "thread": 140022745950016,
  898. "threadName": "MainThread"
  899. },
  900. {
  901. "args": [
  902. 4,
  903. "ERROR",
  904. "collectingHandler"
  905. ],
  906. "asctime": "2020-01-02 14:18:00,613",
  907. "created": 1577971080.613298,
  908. "exc_info": null,
  909. "exc_text": null,
  910. "filename": "test_helpers.py",
  911. "funcName": "__init__",
  912. "levelname": "DEBUG",
  913. "levelno": 10,
  914. "lineno": 36,
  915. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  916. "module": "test_helpers",
  917. "msecs": 613.2979393005371,
  918. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  919. "name": "__unittest__",
  920. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  921. "process": 4683,
  922. "processName": "MainProcess",
  923. "relativeCreated": 28.70488166809082,
  924. "thread": 140022745950016,
  925. "threadName": "MainThread"
  926. },
  927. {
  928. "args": [
  929. 5,
  930. "CRITICAL",
  931. "collectingHandler"
  932. ],
  933. "asctime": "2020-01-02 14:18:00,613",
  934. "created": 1577971080.61339,
  935. "exc_info": null,
  936. "exc_text": null,
  937. "filename": "test_helpers.py",
  938. "funcName": "__init__",
  939. "levelname": "DEBUG",
  940. "levelno": 10,
  941. "lineno": 36,
  942. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  943. "module": "test_helpers",
  944. "msecs": 613.3899688720703,
  945. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  946. "name": "__unittest__",
  947. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  948. "process": 4683,
  949. "processName": "MainProcess",
  950. "relativeCreated": 28.796911239624023,
  951. "thread": 140022745950016,
  952. "threadName": "MainThread"
  953. },
  954. {
  955. "args": [
  956. 6,
  957. "INFO",
  958. "collectingHandler"
  959. ],
  960. "asctime": "2020-01-02 14:18:00,613",
  961. "created": 1577971080.61349,
  962. "exc_info": null,
  963. "exc_text": null,
  964. "filename": "test_helpers.py",
  965. "funcName": "__init__",
  966. "levelname": "DEBUG",
  967. "levelno": 10,
  968. "lineno": 36,
  969. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  970. "module": "test_helpers",
  971. "msecs": 613.490104675293,
  972. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  973. "name": "__unittest__",
  974. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  975. "process": 4683,
  976. "processName": "MainProcess",
  977. "relativeCreated": 28.89704704284668,
  978. "thread": 140022745950016,
  979. "threadName": "MainThread"
  980. },
  981. {
  982. "args": [
  983. 7,
  984. "ERROR",
  985. "collectingHandler"
  986. ],
  987. "asctime": "2020-01-02 14:18:00,613",
  988. "created": 1577971080.613582,
  989. "exc_info": null,
  990. "exc_text": null,
  991. "filename": "test_helpers.py",
  992. "funcName": "__init__",
  993. "levelname": "DEBUG",
  994. "levelno": 10,
  995. "lineno": 36,
  996. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.",
  997. "module": "test_helpers",
  998. "msecs": 613.5818958282471,
  999. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1000. "name": "__unittest__",
  1001. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1002. "process": 4683,
  1003. "processName": "MainProcess",
  1004. "relativeCreated": 28.98883819580078,
  1005. "thread": 140022745950016,
  1006. "threadName": "MainThread"
  1007. }
  1008. ],
  1009. "msecs": 613.6739253997803,
  1010. "msg": "Running logger test sequence.",
  1011. "name": "__tLogger__",
  1012. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1013. "process": 4683,
  1014. "processName": "MainProcess",
  1015. "relativeCreated": 29.080867767333984,
  1016. "thread": 140022745950016,
  1017. "threadName": "MainThread",
  1018. "time_consumption": 9.202957153320312e-05
  1019. },
  1020. {
  1021. "args": [],
  1022. "asctime": "2020-01-02 14:18:00,614",
  1023. "created": 1577971080.614774,
  1024. "exc_info": null,
  1025. "exc_text": null,
  1026. "filename": "test.py",
  1027. "funcName": "report",
  1028. "levelname": "INFO",
  1029. "levelno": 20,
  1030. "lineno": 166,
  1031. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  1032. "module": "test",
  1033. "moduleLogger": [
  1034. {
  1035. "args": [
  1036. "Indexlist of log entries in stringrepresentation",
  1037. "[ 35, 107, 178, 252, 324, 399, 470 ]",
  1038. "<type 'list'>"
  1039. ],
  1040. "asctime": "2020-01-02 14:18:00,613",
  1041. "created": 1577971080.613786,
  1042. "exc_info": null,
  1043. "exc_text": null,
  1044. "filename": "test.py",
  1045. "funcName": "__report_result__",
  1046. "levelname": "DEBUG",
  1047. "levelno": 10,
  1048. "lineno": 22,
  1049. "message": "Result (Indexlist of log entries in stringrepresentation): [ 35, 107, 178, 252, 324, 399, 470 ] (<type 'list'>)",
  1050. "module": "test",
  1051. "msecs": 613.785982131958,
  1052. "msg": "Result (%s): %s (%s)",
  1053. "name": "__unittest__",
  1054. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1055. "process": 4683,
  1056. "processName": "MainProcess",
  1057. "relativeCreated": 29.19292449951172,
  1058. "thread": 140022745950016,
  1059. "threadName": "MainThread"
  1060. },
  1061. {
  1062. "args": [
  1063. "Indexlist of log entries in stringrepresentation",
  1064. "[ 35, 107, 178, 252, 324, 399, 470 ]",
  1065. "<type 'list'>"
  1066. ],
  1067. "asctime": "2020-01-02 14:18:00,613",
  1068. "created": 1577971080.613832,
  1069. "exc_info": null,
  1070. "exc_text": null,
  1071. "filename": "test.py",
  1072. "funcName": "__report_expectation_equivalency__",
  1073. "levelname": "DEBUG",
  1074. "levelno": 10,
  1075. "lineno": 26,
  1076. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 35, 107, 178, 252, 324, 399, 470 ] (<type 'list'>)",
  1077. "module": "test",
  1078. "msecs": 613.8319969177246,
  1079. "msg": "Expectation (%s): result = %s (%s)",
  1080. "name": "__unittest__",
  1081. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1082. "process": 4683,
  1083. "processName": "MainProcess",
  1084. "relativeCreated": 29.23893928527832,
  1085. "thread": 140022745950016,
  1086. "threadName": "MainThread"
  1087. },
  1088. {
  1089. "args": [
  1090. "Submitted value number 1",
  1091. "35",
  1092. "<type 'int'>"
  1093. ],
  1094. "asctime": "2020-01-02 14:18:00,613",
  1095. "created": 1577971080.613875,
  1096. "exc_info": null,
  1097. "exc_text": null,
  1098. "filename": "test.py",
  1099. "funcName": "__report_result__",
  1100. "levelname": "DEBUG",
  1101. "levelno": 10,
  1102. "lineno": 22,
  1103. "message": "Result (Submitted value number 1): 35 (<type 'int'>)",
  1104. "module": "test",
  1105. "msecs": 613.8749122619629,
  1106. "msg": "Result (%s): %s (%s)",
  1107. "name": "__unittest__",
  1108. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1109. "process": 4683,
  1110. "processName": "MainProcess",
  1111. "relativeCreated": 29.2818546295166,
  1112. "thread": 140022745950016,
  1113. "threadName": "MainThread"
  1114. },
  1115. {
  1116. "args": [
  1117. "Submitted value number 1",
  1118. "35",
  1119. "<type 'int'>"
  1120. ],
  1121. "asctime": "2020-01-02 14:18:00,613",
  1122. "created": 1577971080.613913,
  1123. "exc_info": null,
  1124. "exc_text": null,
  1125. "filename": "test.py",
  1126. "funcName": "__report_expectation_equivalency__",
  1127. "levelname": "DEBUG",
  1128. "levelno": 10,
  1129. "lineno": 26,
  1130. "message": "Expectation (Submitted value number 1): result = 35 (<type 'int'>)",
  1131. "module": "test",
  1132. "msecs": 613.9130592346191,
  1133. "msg": "Expectation (%s): result = %s (%s)",
  1134. "name": "__unittest__",
  1135. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1136. "process": 4683,
  1137. "processName": "MainProcess",
  1138. "relativeCreated": 29.32000160217285,
  1139. "thread": 140022745950016,
  1140. "threadName": "MainThread"
  1141. },
  1142. {
  1143. "args": [
  1144. "35",
  1145. "<type 'int'>"
  1146. ],
  1147. "asctime": "2020-01-02 14:18:00,613",
  1148. "created": 1577971080.613953,
  1149. "exc_info": null,
  1150. "exc_text": null,
  1151. "filename": "test.py",
  1152. "funcName": "equivalency_chk",
  1153. "levelname": "INFO",
  1154. "levelno": 20,
  1155. "lineno": 142,
  1156. "message": "Submitted value number 1 is correct (Content 35 and Type is <type 'int'>).",
  1157. "module": "test",
  1158. "msecs": 613.9531135559082,
  1159. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  1160. "name": "__unittest__",
  1161. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1162. "process": 4683,
  1163. "processName": "MainProcess",
  1164. "relativeCreated": 29.360055923461914,
  1165. "thread": 140022745950016,
  1166. "threadName": "MainThread"
  1167. },
  1168. {
  1169. "args": [
  1170. "Submitted value number 2",
  1171. "107",
  1172. "<type 'int'>"
  1173. ],
  1174. "asctime": "2020-01-02 14:18:00,613",
  1175. "created": 1577971080.613991,
  1176. "exc_info": null,
  1177. "exc_text": null,
  1178. "filename": "test.py",
  1179. "funcName": "__report_result__",
  1180. "levelname": "DEBUG",
  1181. "levelno": 10,
  1182. "lineno": 22,
  1183. "message": "Result (Submitted value number 2): 107 (<type 'int'>)",
  1184. "module": "test",
  1185. "msecs": 613.9910221099854,
  1186. "msg": "Result (%s): %s (%s)",
  1187. "name": "__unittest__",
  1188. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1189. "process": 4683,
  1190. "processName": "MainProcess",
  1191. "relativeCreated": 29.397964477539062,
  1192. "thread": 140022745950016,
  1193. "threadName": "MainThread"
  1194. },
  1195. {
  1196. "args": [
  1197. "Submitted value number 2",
  1198. "107",
  1199. "<type 'int'>"
  1200. ],
  1201. "asctime": "2020-01-02 14:18:00,614",
  1202. "created": 1577971080.614026,
  1203. "exc_info": null,
  1204. "exc_text": null,
  1205. "filename": "test.py",
  1206. "funcName": "__report_expectation_equivalency__",
  1207. "levelname": "DEBUG",
  1208. "levelno": 10,
  1209. "lineno": 26,
  1210. "message": "Expectation (Submitted value number 2): result = 107 (<type 'int'>)",
  1211. "module": "test",
  1212. "msecs": 614.0260696411133,
  1213. "msg": "Expectation (%s): result = %s (%s)",
  1214. "name": "__unittest__",
  1215. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1216. "process": 4683,
  1217. "processName": "MainProcess",
  1218. "relativeCreated": 29.433012008666992,
  1219. "thread": 140022745950016,
  1220. "threadName": "MainThread"
  1221. },
  1222. {
  1223. "args": [
  1224. "107",
  1225. "<type 'int'>"
  1226. ],
  1227. "asctime": "2020-01-02 14:18:00,614",
  1228. "created": 1577971080.614063,
  1229. "exc_info": null,
  1230. "exc_text": null,
  1231. "filename": "test.py",
  1232. "funcName": "equivalency_chk",
  1233. "levelname": "INFO",
  1234. "levelno": 20,
  1235. "lineno": 142,
  1236. "message": "Submitted value number 2 is correct (Content 107 and Type is <type 'int'>).",
  1237. "module": "test",
  1238. "msecs": 614.063024520874,
  1239. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  1240. "name": "__unittest__",
  1241. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1242. "process": 4683,
  1243. "processName": "MainProcess",
  1244. "relativeCreated": 29.469966888427734,
  1245. "thread": 140022745950016,
  1246. "threadName": "MainThread"
  1247. },
  1248. {
  1249. "args": [
  1250. "Submitted value number 3",
  1251. "178",
  1252. "<type 'int'>"
  1253. ],
  1254. "asctime": "2020-01-02 14:18:00,614",
  1255. "created": 1577971080.6141,
  1256. "exc_info": null,
  1257. "exc_text": null,
  1258. "filename": "test.py",
  1259. "funcName": "__report_result__",
  1260. "levelname": "DEBUG",
  1261. "levelno": 10,
  1262. "lineno": 22,
  1263. "message": "Result (Submitted value number 3): 178 (<type 'int'>)",
  1264. "module": "test",
  1265. "msecs": 614.0999794006348,
  1266. "msg": "Result (%s): %s (%s)",
  1267. "name": "__unittest__",
  1268. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1269. "process": 4683,
  1270. "processName": "MainProcess",
  1271. "relativeCreated": 29.506921768188477,
  1272. "thread": 140022745950016,
  1273. "threadName": "MainThread"
  1274. },
  1275. {
  1276. "args": [
  1277. "Submitted value number 3",
  1278. "178",
  1279. "<type 'int'>"
  1280. ],
  1281. "asctime": "2020-01-02 14:18:00,614",
  1282. "created": 1577971080.614138,
  1283. "exc_info": null,
  1284. "exc_text": null,
  1285. "filename": "test.py",
  1286. "funcName": "__report_expectation_equivalency__",
  1287. "levelname": "DEBUG",
  1288. "levelno": 10,
  1289. "lineno": 26,
  1290. "message": "Expectation (Submitted value number 3): result = 178 (<type 'int'>)",
  1291. "module": "test",
  1292. "msecs": 614.1378879547119,
  1293. "msg": "Expectation (%s): result = %s (%s)",
  1294. "name": "__unittest__",
  1295. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1296. "process": 4683,
  1297. "processName": "MainProcess",
  1298. "relativeCreated": 29.544830322265625,
  1299. "thread": 140022745950016,
  1300. "threadName": "MainThread"
  1301. },
  1302. {
  1303. "args": [
  1304. "178",
  1305. "<type 'int'>"
  1306. ],
  1307. "asctime": "2020-01-02 14:18:00,614",
  1308. "created": 1577971080.614173,
  1309. "exc_info": null,
  1310. "exc_text": null,
  1311. "filename": "test.py",
  1312. "funcName": "equivalency_chk",
  1313. "levelname": "INFO",
  1314. "levelno": 20,
  1315. "lineno": 142,
  1316. "message": "Submitted value number 3 is correct (Content 178 and Type is <type 'int'>).",
  1317. "module": "test",
  1318. "msecs": 614.1729354858398,
  1319. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  1320. "name": "__unittest__",
  1321. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1322. "process": 4683,
  1323. "processName": "MainProcess",
  1324. "relativeCreated": 29.579877853393555,
  1325. "thread": 140022745950016,
  1326. "threadName": "MainThread"
  1327. },
  1328. {
  1329. "args": [
  1330. "Submitted value number 4",
  1331. "252",
  1332. "<type 'int'>"
  1333. ],
  1334. "asctime": "2020-01-02 14:18:00,614",
  1335. "created": 1577971080.61421,
  1336. "exc_info": null,
  1337. "exc_text": null,
  1338. "filename": "test.py",
  1339. "funcName": "__report_result__",
  1340. "levelname": "DEBUG",
  1341. "levelno": 10,
  1342. "lineno": 22,
  1343. "message": "Result (Submitted value number 4): 252 (<type 'int'>)",
  1344. "module": "test",
  1345. "msecs": 614.2098903656006,
  1346. "msg": "Result (%s): %s (%s)",
  1347. "name": "__unittest__",
  1348. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1349. "process": 4683,
  1350. "processName": "MainProcess",
  1351. "relativeCreated": 29.616832733154297,
  1352. "thread": 140022745950016,
  1353. "threadName": "MainThread"
  1354. },
  1355. {
  1356. "args": [
  1357. "Submitted value number 4",
  1358. "252",
  1359. "<type 'int'>"
  1360. ],
  1361. "asctime": "2020-01-02 14:18:00,614",
  1362. "created": 1577971080.614245,
  1363. "exc_info": null,
  1364. "exc_text": null,
  1365. "filename": "test.py",
  1366. "funcName": "__report_expectation_equivalency__",
  1367. "levelname": "DEBUG",
  1368. "levelno": 10,
  1369. "lineno": 26,
  1370. "message": "Expectation (Submitted value number 4): result = 252 (<type 'int'>)",
  1371. "module": "test",
  1372. "msecs": 614.2449378967285,
  1373. "msg": "Expectation (%s): result = %s (%s)",
  1374. "name": "__unittest__",
  1375. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1376. "process": 4683,
  1377. "processName": "MainProcess",
  1378. "relativeCreated": 29.651880264282227,
  1379. "thread": 140022745950016,
  1380. "threadName": "MainThread"
  1381. },
  1382. {
  1383. "args": [
  1384. "252",
  1385. "<type 'int'>"
  1386. ],
  1387. "asctime": "2020-01-02 14:18:00,614",
  1388. "created": 1577971080.61428,
  1389. "exc_info": null,
  1390. "exc_text": null,
  1391. "filename": "test.py",
  1392. "funcName": "equivalency_chk",
  1393. "levelname": "INFO",
  1394. "levelno": 20,
  1395. "lineno": 142,
  1396. "message": "Submitted value number 4 is correct (Content 252 and Type is <type 'int'>).",
  1397. "module": "test",
  1398. "msecs": 614.2799854278564,
  1399. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  1400. "name": "__unittest__",
  1401. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1402. "process": 4683,
  1403. "processName": "MainProcess",
  1404. "relativeCreated": 29.686927795410156,
  1405. "thread": 140022745950016,
  1406. "threadName": "MainThread"
  1407. },
  1408. {
  1409. "args": [
  1410. "Submitted value number 5",
  1411. "324",
  1412. "<type 'int'>"
  1413. ],
  1414. "asctime": "2020-01-02 14:18:00,614",
  1415. "created": 1577971080.614319,
  1416. "exc_info": null,
  1417. "exc_text": null,
  1418. "filename": "test.py",
  1419. "funcName": "__report_result__",
  1420. "levelname": "DEBUG",
  1421. "levelno": 10,
  1422. "lineno": 22,
  1423. "message": "Result (Submitted value number 5): 324 (<type 'int'>)",
  1424. "module": "test",
  1425. "msecs": 614.3190860748291,
  1426. "msg": "Result (%s): %s (%s)",
  1427. "name": "__unittest__",
  1428. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1429. "process": 4683,
  1430. "processName": "MainProcess",
  1431. "relativeCreated": 29.726028442382812,
  1432. "thread": 140022745950016,
  1433. "threadName": "MainThread"
  1434. },
  1435. {
  1436. "args": [
  1437. "Submitted value number 5",
  1438. "324",
  1439. "<type 'int'>"
  1440. ],
  1441. "asctime": "2020-01-02 14:18:00,614",
  1442. "created": 1577971080.614396,
  1443. "exc_info": null,
  1444. "exc_text": null,
  1445. "filename": "test.py",
  1446. "funcName": "__report_expectation_equivalency__",
  1447. "levelname": "DEBUG",
  1448. "levelno": 10,
  1449. "lineno": 26,
  1450. "message": "Expectation (Submitted value number 5): result = 324 (<type 'int'>)",
  1451. "module": "test",
  1452. "msecs": 614.3960952758789,
  1453. "msg": "Expectation (%s): result = %s (%s)",
  1454. "name": "__unittest__",
  1455. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1456. "process": 4683,
  1457. "processName": "MainProcess",
  1458. "relativeCreated": 29.803037643432617,
  1459. "thread": 140022745950016,
  1460. "threadName": "MainThread"
  1461. },
  1462. {
  1463. "args": [
  1464. "324",
  1465. "<type 'int'>"
  1466. ],
  1467. "asctime": "2020-01-02 14:18:00,614",
  1468. "created": 1577971080.614447,
  1469. "exc_info": null,
  1470. "exc_text": null,
  1471. "filename": "test.py",
  1472. "funcName": "equivalency_chk",
  1473. "levelname": "INFO",
  1474. "levelno": 20,
  1475. "lineno": 142,
  1476. "message": "Submitted value number 5 is correct (Content 324 and Type is <type 'int'>).",
  1477. "module": "test",
  1478. "msecs": 614.4471168518066,
  1479. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  1480. "name": "__unittest__",
  1481. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1482. "process": 4683,
  1483. "processName": "MainProcess",
  1484. "relativeCreated": 29.85405921936035,
  1485. "thread": 140022745950016,
  1486. "threadName": "MainThread"
  1487. },
  1488. {
  1489. "args": [
  1490. "Submitted value number 6",
  1491. "399",
  1492. "<type 'int'>"
  1493. ],
  1494. "asctime": "2020-01-02 14:18:00,614",
  1495. "created": 1577971080.614484,
  1496. "exc_info": null,
  1497. "exc_text": null,
  1498. "filename": "test.py",
  1499. "funcName": "__report_result__",
  1500. "levelname": "DEBUG",
  1501. "levelno": 10,
  1502. "lineno": 22,
  1503. "message": "Result (Submitted value number 6): 399 (<type 'int'>)",
  1504. "module": "test",
  1505. "msecs": 614.4840717315674,
  1506. "msg": "Result (%s): %s (%s)",
  1507. "name": "__unittest__",
  1508. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1509. "process": 4683,
  1510. "processName": "MainProcess",
  1511. "relativeCreated": 29.891014099121094,
  1512. "thread": 140022745950016,
  1513. "threadName": "MainThread"
  1514. },
  1515. {
  1516. "args": [
  1517. "Submitted value number 6",
  1518. "399",
  1519. "<type 'int'>"
  1520. ],
  1521. "asctime": "2020-01-02 14:18:00,614",
  1522. "created": 1577971080.614556,
  1523. "exc_info": null,
  1524. "exc_text": null,
  1525. "filename": "test.py",
  1526. "funcName": "__report_expectation_equivalency__",
  1527. "levelname": "DEBUG",
  1528. "levelno": 10,
  1529. "lineno": 26,
  1530. "message": "Expectation (Submitted value number 6): result = 399 (<type 'int'>)",
  1531. "module": "test",
  1532. "msecs": 614.556074142456,
  1533. "msg": "Expectation (%s): result = %s (%s)",
  1534. "name": "__unittest__",
  1535. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1536. "process": 4683,
  1537. "processName": "MainProcess",
  1538. "relativeCreated": 29.963016510009766,
  1539. "thread": 140022745950016,
  1540. "threadName": "MainThread"
  1541. },
  1542. {
  1543. "args": [
  1544. "399",
  1545. "<type 'int'>"
  1546. ],
  1547. "asctime": "2020-01-02 14:18:00,614",
  1548. "created": 1577971080.614621,
  1549. "exc_info": null,
  1550. "exc_text": null,
  1551. "filename": "test.py",
  1552. "funcName": "equivalency_chk",
  1553. "levelname": "INFO",
  1554. "levelno": 20,
  1555. "lineno": 142,
  1556. "message": "Submitted value number 6 is correct (Content 399 and Type is <type 'int'>).",
  1557. "module": "test",
  1558. "msecs": 614.6209239959717,
  1559. "msg": "Submitted value number 6 is correct (Content %s and Type is %s).",
  1560. "name": "__unittest__",
  1561. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1562. "process": 4683,
  1563. "processName": "MainProcess",
  1564. "relativeCreated": 30.02786636352539,
  1565. "thread": 140022745950016,
  1566. "threadName": "MainThread"
  1567. },
  1568. {
  1569. "args": [
  1570. "Submitted value number 7",
  1571. "470",
  1572. "<type 'int'>"
  1573. ],
  1574. "asctime": "2020-01-02 14:18:00,614",
  1575. "created": 1577971080.614661,
  1576. "exc_info": null,
  1577. "exc_text": null,
  1578. "filename": "test.py",
  1579. "funcName": "__report_result__",
  1580. "levelname": "DEBUG",
  1581. "levelno": 10,
  1582. "lineno": 22,
  1583. "message": "Result (Submitted value number 7): 470 (<type 'int'>)",
  1584. "module": "test",
  1585. "msecs": 614.6609783172607,
  1586. "msg": "Result (%s): %s (%s)",
  1587. "name": "__unittest__",
  1588. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1589. "process": 4683,
  1590. "processName": "MainProcess",
  1591. "relativeCreated": 30.067920684814453,
  1592. "thread": 140022745950016,
  1593. "threadName": "MainThread"
  1594. },
  1595. {
  1596. "args": [
  1597. "Submitted value number 7",
  1598. "470",
  1599. "<type 'int'>"
  1600. ],
  1601. "asctime": "2020-01-02 14:18:00,614",
  1602. "created": 1577971080.614697,
  1603. "exc_info": null,
  1604. "exc_text": null,
  1605. "filename": "test.py",
  1606. "funcName": "__report_expectation_equivalency__",
  1607. "levelname": "DEBUG",
  1608. "levelno": 10,
  1609. "lineno": 26,
  1610. "message": "Expectation (Submitted value number 7): result = 470 (<type 'int'>)",
  1611. "module": "test",
  1612. "msecs": 614.6969795227051,
  1613. "msg": "Expectation (%s): result = %s (%s)",
  1614. "name": "__unittest__",
  1615. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1616. "process": 4683,
  1617. "processName": "MainProcess",
  1618. "relativeCreated": 30.10392189025879,
  1619. "thread": 140022745950016,
  1620. "threadName": "MainThread"
  1621. },
  1622. {
  1623. "args": [
  1624. "470",
  1625. "<type 'int'>"
  1626. ],
  1627. "asctime": "2020-01-02 14:18:00,614",
  1628. "created": 1577971080.614735,
  1629. "exc_info": null,
  1630. "exc_text": null,
  1631. "filename": "test.py",
  1632. "funcName": "equivalency_chk",
  1633. "levelname": "INFO",
  1634. "levelno": 20,
  1635. "lineno": 142,
  1636. "message": "Submitted value number 7 is correct (Content 470 and Type is <type 'int'>).",
  1637. "module": "test",
  1638. "msecs": 614.7348880767822,
  1639. "msg": "Submitted value number 7 is correct (Content %s and Type is %s).",
  1640. "name": "__unittest__",
  1641. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1642. "process": 4683,
  1643. "processName": "MainProcess",
  1644. "relativeCreated": 30.141830444335938,
  1645. "thread": 140022745950016,
  1646. "threadName": "MainThread"
  1647. }
  1648. ],
  1649. "msecs": 614.7739887237549,
  1650. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  1651. "name": "__tLogger__",
  1652. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1653. "process": 4683,
  1654. "processName": "MainProcess",
  1655. "relativeCreated": 30.180931091308594,
  1656. "thread": 140022745950016,
  1657. "threadName": "MainThread",
  1658. "time_consumption": 3.910064697265625e-05
  1659. }
  1660. ],
  1661. "thread": 140022745950016,
  1662. "threadName": "MainThread",
  1663. "time_consumption": 0.0019130706787109375,
  1664. "time_finished": "2020-01-02 14:18:00,614",
  1665. "time_start": "2020-01-02 14:18:00,612"
  1666. },
  1667. "_PVhZECvVEeqssZLMJF_fcg": {
  1668. "args": null,
  1669. "asctime": "2020-01-02 14:18:00,614",
  1670. "created": 1577971080.614915,
  1671. "exc_info": null,
  1672. "exc_text": null,
  1673. "filename": "__init__.py",
  1674. "funcName": "testrun",
  1675. "levelname": "INFO",
  1676. "levelno": 20,
  1677. "lineno": 21,
  1678. "message": "_PVhZECvVEeqssZLMJF_fcg",
  1679. "module": "__init__",
  1680. "moduleLogger": [],
  1681. "msecs": 614.9148941040039,
  1682. "msg": "_PVhZECvVEeqssZLMJF_fcg",
  1683. "name": "__tLogger__",
  1684. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  1685. "process": 4683,
  1686. "processName": "MainProcess",
  1687. "relativeCreated": 30.321836471557617,
  1688. "testcaseLogger": [
  1689. {
  1690. "args": [],
  1691. "asctime": "2020-01-02 14:18:00,615",
  1692. "created": 1577971080.615858,
  1693. "exc_info": null,
  1694. "exc_text": null,
  1695. "filename": "test_helpers.py",
  1696. "funcName": "__init__",
  1697. "levelname": "DEBUG",
  1698. "levelno": 10,
  1699. "lineno": 38,
  1700. "message": "Running logger test sequence.",
  1701. "module": "test_helpers",
  1702. "moduleLogger": [
  1703. {
  1704. "args": [],
  1705. "asctime": "2020-01-02 14:18:00,614",
  1706. "created": 1577971080.614983,
  1707. "exc_info": null,
  1708. "exc_text": null,
  1709. "filename": "test_helpers.py",
  1710. "funcName": "__init__",
  1711. "levelname": "DEBUG",
  1712. "levelno": 10,
  1713. "lineno": 22,
  1714. "message": "Configuring collecting logger",
  1715. "module": "test_helpers",
  1716. "msecs": 614.983081817627,
  1717. "msg": "Configuring collecting logger",
  1718. "name": "__unittest__",
  1719. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1720. "process": 4683,
  1721. "processName": "MainProcess",
  1722. "relativeCreated": 30.390024185180664,
  1723. "thread": 140022745950016,
  1724. "threadName": "MainThread"
  1725. },
  1726. {
  1727. "args": [
  1728. 1,
  1729. "DEBUG",
  1730. "collectingRingHandler"
  1731. ],
  1732. "asctime": "2020-01-02 14:18:00,615",
  1733. "created": 1577971080.615065,
  1734. "exc_info": null,
  1735. "exc_text": null,
  1736. "filename": "test_helpers.py",
  1737. "funcName": "__init__",
  1738. "levelname": "DEBUG",
  1739. "levelno": 10,
  1740. "lineno": 36,
  1741. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  1742. "module": "test_helpers",
  1743. "msecs": 615.0650978088379,
  1744. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1745. "name": "__unittest__",
  1746. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1747. "process": 4683,
  1748. "processName": "MainProcess",
  1749. "relativeCreated": 30.4720401763916,
  1750. "thread": 140022745950016,
  1751. "threadName": "MainThread"
  1752. },
  1753. {
  1754. "args": [
  1755. 2,
  1756. "INFO",
  1757. "collectingRingHandler"
  1758. ],
  1759. "asctime": "2020-01-02 14:18:00,615",
  1760. "created": 1577971080.615191,
  1761. "exc_info": null,
  1762. "exc_text": null,
  1763. "filename": "test_helpers.py",
  1764. "funcName": "__init__",
  1765. "levelname": "DEBUG",
  1766. "levelno": 10,
  1767. "lineno": 36,
  1768. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  1769. "module": "test_helpers",
  1770. "msecs": 615.1909828186035,
  1771. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1772. "name": "__unittest__",
  1773. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1774. "process": 4683,
  1775. "processName": "MainProcess",
  1776. "relativeCreated": 30.597925186157227,
  1777. "thread": 140022745950016,
  1778. "threadName": "MainThread"
  1779. },
  1780. {
  1781. "args": [
  1782. 3,
  1783. "WARNING",
  1784. "collectingRingHandler"
  1785. ],
  1786. "asctime": "2020-01-02 14:18:00,615",
  1787. "created": 1577971080.615305,
  1788. "exc_info": null,
  1789. "exc_text": null,
  1790. "filename": "test_helpers.py",
  1791. "funcName": "__init__",
  1792. "levelname": "DEBUG",
  1793. "levelno": 10,
  1794. "lineno": 36,
  1795. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  1796. "module": "test_helpers",
  1797. "msecs": 615.3049468994141,
  1798. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1799. "name": "__unittest__",
  1800. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1801. "process": 4683,
  1802. "processName": "MainProcess",
  1803. "relativeCreated": 30.711889266967773,
  1804. "thread": 140022745950016,
  1805. "threadName": "MainThread"
  1806. },
  1807. {
  1808. "args": [
  1809. 4,
  1810. "ERROR",
  1811. "collectingRingHandler"
  1812. ],
  1813. "asctime": "2020-01-02 14:18:00,615",
  1814. "created": 1577971080.615415,
  1815. "exc_info": null,
  1816. "exc_text": null,
  1817. "filename": "test_helpers.py",
  1818. "funcName": "__init__",
  1819. "levelname": "DEBUG",
  1820. "levelno": 10,
  1821. "lineno": 36,
  1822. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  1823. "module": "test_helpers",
  1824. "msecs": 615.415096282959,
  1825. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1826. "name": "__unittest__",
  1827. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1828. "process": 4683,
  1829. "processName": "MainProcess",
  1830. "relativeCreated": 30.822038650512695,
  1831. "thread": 140022745950016,
  1832. "threadName": "MainThread"
  1833. },
  1834. {
  1835. "args": [
  1836. 5,
  1837. "CRITICAL",
  1838. "collectingRingHandler"
  1839. ],
  1840. "asctime": "2020-01-02 14:18:00,615",
  1841. "created": 1577971080.615527,
  1842. "exc_info": null,
  1843. "exc_text": null,
  1844. "filename": "test_helpers.py",
  1845. "funcName": "__init__",
  1846. "levelname": "DEBUG",
  1847. "levelno": 10,
  1848. "lineno": 36,
  1849. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  1850. "module": "test_helpers",
  1851. "msecs": 615.5269145965576,
  1852. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1853. "name": "__unittest__",
  1854. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1855. "process": 4683,
  1856. "processName": "MainProcess",
  1857. "relativeCreated": 30.933856964111328,
  1858. "thread": 140022745950016,
  1859. "threadName": "MainThread"
  1860. },
  1861. {
  1862. "args": [
  1863. 6,
  1864. "INFO",
  1865. "collectingRingHandler"
  1866. ],
  1867. "asctime": "2020-01-02 14:18:00,615",
  1868. "created": 1577971080.615638,
  1869. "exc_info": null,
  1870. "exc_text": null,
  1871. "filename": "test_helpers.py",
  1872. "funcName": "__init__",
  1873. "levelname": "DEBUG",
  1874. "levelno": 10,
  1875. "lineno": 36,
  1876. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  1877. "module": "test_helpers",
  1878. "msecs": 615.638017654419,
  1879. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1880. "name": "__unittest__",
  1881. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1882. "process": 4683,
  1883. "processName": "MainProcess",
  1884. "relativeCreated": 31.044960021972656,
  1885. "thread": 140022745950016,
  1886. "threadName": "MainThread"
  1887. },
  1888. {
  1889. "args": [
  1890. 7,
  1891. "ERROR",
  1892. "collectingRingHandler"
  1893. ],
  1894. "asctime": "2020-01-02 14:18:00,615",
  1895. "created": 1577971080.615747,
  1896. "exc_info": null,
  1897. "exc_text": null,
  1898. "filename": "test_helpers.py",
  1899. "funcName": "__init__",
  1900. "levelname": "DEBUG",
  1901. "levelno": 10,
  1902. "lineno": 36,
  1903. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  1904. "module": "test_helpers",
  1905. "msecs": 615.7469749450684,
  1906. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1907. "name": "__unittest__",
  1908. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1909. "process": 4683,
  1910. "processName": "MainProcess",
  1911. "relativeCreated": 31.15391731262207,
  1912. "thread": 140022745950016,
  1913. "threadName": "MainThread"
  1914. }
  1915. ],
  1916. "msecs": 615.8580780029297,
  1917. "msg": "Running logger test sequence.",
  1918. "name": "__tLogger__",
  1919. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  1920. "process": 4683,
  1921. "processName": "MainProcess",
  1922. "relativeCreated": 31.2650203704834,
  1923. "thread": 140022745950016,
  1924. "threadName": "MainThread",
  1925. "time_consumption": 0.00011110305786132812
  1926. },
  1927. {
  1928. "args": [
  1929. "5",
  1930. "<type 'int'>"
  1931. ],
  1932. "asctime": "2020-01-02 14:18:00,616",
  1933. "created": 1577971080.616015,
  1934. "exc_info": null,
  1935. "exc_text": null,
  1936. "filename": "test.py",
  1937. "funcName": "equivalency_chk",
  1938. "levelname": "INFO",
  1939. "levelno": 20,
  1940. "lineno": 142,
  1941. "message": "Length of collected logs is correct (Content 5 and Type is <type 'int'>).",
  1942. "module": "test",
  1943. "moduleLogger": [
  1944. {
  1945. "args": [
  1946. "Length of collected logs",
  1947. "5",
  1948. "<type 'int'>"
  1949. ],
  1950. "asctime": "2020-01-02 14:18:00,615",
  1951. "created": 1577971080.615937,
  1952. "exc_info": null,
  1953. "exc_text": null,
  1954. "filename": "test.py",
  1955. "funcName": "__report_result__",
  1956. "levelname": "DEBUG",
  1957. "levelno": 10,
  1958. "lineno": 22,
  1959. "message": "Result (Length of collected logs): 5 (<type 'int'>)",
  1960. "module": "test",
  1961. "msecs": 615.9369945526123,
  1962. "msg": "Result (%s): %s (%s)",
  1963. "name": "__unittest__",
  1964. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1965. "process": 4683,
  1966. "processName": "MainProcess",
  1967. "relativeCreated": 31.343936920166016,
  1968. "thread": 140022745950016,
  1969. "threadName": "MainThread"
  1970. },
  1971. {
  1972. "args": [
  1973. "Length of collected logs",
  1974. "5",
  1975. "<type 'int'>"
  1976. ],
  1977. "asctime": "2020-01-02 14:18:00,615",
  1978. "created": 1577971080.615976,
  1979. "exc_info": null,
  1980. "exc_text": null,
  1981. "filename": "test.py",
  1982. "funcName": "__report_expectation_equivalency__",
  1983. "levelname": "DEBUG",
  1984. "levelno": 10,
  1985. "lineno": 26,
  1986. "message": "Expectation (Length of collected logs): result = 5 (<type 'int'>)",
  1987. "module": "test",
  1988. "msecs": 615.976095199585,
  1989. "msg": "Expectation (%s): result = %s (%s)",
  1990. "name": "__unittest__",
  1991. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  1992. "process": 4683,
  1993. "processName": "MainProcess",
  1994. "relativeCreated": 31.383037567138672,
  1995. "thread": 140022745950016,
  1996. "threadName": "MainThread"
  1997. }
  1998. ],
  1999. "msecs": 616.0149574279785,
  2000. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  2001. "name": "__tLogger__",
  2002. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2003. "process": 4683,
  2004. "processName": "MainProcess",
  2005. "relativeCreated": 31.421899795532227,
  2006. "thread": 140022745950016,
  2007. "threadName": "MainThread",
  2008. "time_consumption": 3.886222839355469e-05
  2009. },
  2010. {
  2011. "args": [
  2012. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  2013. "<type 'list'>"
  2014. ],
  2015. "asctime": "2020-01-02 14:18:00,616",
  2016. "created": 1577971080.616191,
  2017. "exc_info": null,
  2018. "exc_text": null,
  2019. "filename": "test.py",
  2020. "funcName": "equivalency_chk",
  2021. "levelname": "INFO",
  2022. "levelno": 20,
  2023. "lineno": 142,
  2024. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <type 'list'>).",
  2025. "module": "test",
  2026. "moduleLogger": [
  2027. {
  2028. "args": [
  2029. "Logged information",
  2030. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  2031. "<type 'list'>"
  2032. ],
  2033. "asctime": "2020-01-02 14:18:00,616",
  2034. "created": 1577971080.616092,
  2035. "exc_info": null,
  2036. "exc_text": null,
  2037. "filename": "test.py",
  2038. "funcName": "__report_result__",
  2039. "levelname": "DEBUG",
  2040. "levelno": 10,
  2041. "lineno": 22,
  2042. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<type 'list'>)",
  2043. "module": "test",
  2044. "msecs": 616.0919666290283,
  2045. "msg": "Result (%s): %s (%s)",
  2046. "name": "__unittest__",
  2047. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2048. "process": 4683,
  2049. "processName": "MainProcess",
  2050. "relativeCreated": 31.49890899658203,
  2051. "thread": 140022745950016,
  2052. "threadName": "MainThread"
  2053. },
  2054. {
  2055. "args": [
  2056. "Logged information",
  2057. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  2058. "<type 'list'>"
  2059. ],
  2060. "asctime": "2020-01-02 14:18:00,616",
  2061. "created": 1577971080.616134,
  2062. "exc_info": null,
  2063. "exc_text": null,
  2064. "filename": "test.py",
  2065. "funcName": "__report_expectation_equivalency__",
  2066. "levelname": "DEBUG",
  2067. "levelno": 10,
  2068. "lineno": 26,
  2069. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<type 'list'>)",
  2070. "module": "test",
  2071. "msecs": 616.1339282989502,
  2072. "msg": "Expectation (%s): result = %s (%s)",
  2073. "name": "__unittest__",
  2074. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2075. "process": 4683,
  2076. "processName": "MainProcess",
  2077. "relativeCreated": 31.540870666503906,
  2078. "thread": 140022745950016,
  2079. "threadName": "MainThread"
  2080. }
  2081. ],
  2082. "msecs": 616.1909103393555,
  2083. "msg": "Logged information is correct (Content %s and Type is %s).",
  2084. "name": "__tLogger__",
  2085. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2086. "process": 4683,
  2087. "processName": "MainProcess",
  2088. "relativeCreated": 31.59785270690918,
  2089. "thread": 140022745950016,
  2090. "threadName": "MainThread",
  2091. "time_consumption": 5.698204040527344e-05
  2092. },
  2093. {
  2094. "args": [
  2095. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  2096. "<type 'list'>"
  2097. ],
  2098. "asctime": "2020-01-02 14:18:00,616",
  2099. "created": 1577971080.616362,
  2100. "exc_info": null,
  2101. "exc_text": null,
  2102. "filename": "test.py",
  2103. "funcName": "equivalency_chk",
  2104. "levelname": "INFO",
  2105. "levelno": 20,
  2106. "lineno": 142,
  2107. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <type 'list'>).",
  2108. "module": "test",
  2109. "moduleLogger": [
  2110. {
  2111. "args": [
  2112. "Logged information",
  2113. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  2114. "<type 'list'>"
  2115. ],
  2116. "asctime": "2020-01-02 14:18:00,616",
  2117. "created": 1577971080.616262,
  2118. "exc_info": null,
  2119. "exc_text": null,
  2120. "filename": "test.py",
  2121. "funcName": "__report_result__",
  2122. "levelname": "DEBUG",
  2123. "levelno": 10,
  2124. "lineno": 22,
  2125. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<type 'list'>)",
  2126. "module": "test",
  2127. "msecs": 616.2619590759277,
  2128. "msg": "Result (%s): %s (%s)",
  2129. "name": "__unittest__",
  2130. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2131. "process": 4683,
  2132. "processName": "MainProcess",
  2133. "relativeCreated": 31.668901443481445,
  2134. "thread": 140022745950016,
  2135. "threadName": "MainThread"
  2136. },
  2137. {
  2138. "args": [
  2139. "Logged information",
  2140. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  2141. "<type 'list'>"
  2142. ],
  2143. "asctime": "2020-01-02 14:18:00,616",
  2144. "created": 1577971080.616307,
  2145. "exc_info": null,
  2146. "exc_text": null,
  2147. "filename": "test.py",
  2148. "funcName": "__report_expectation_equivalency__",
  2149. "levelname": "DEBUG",
  2150. "levelno": 10,
  2151. "lineno": 26,
  2152. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<type 'list'>)",
  2153. "module": "test",
  2154. "msecs": 616.3070201873779,
  2155. "msg": "Expectation (%s): result = %s (%s)",
  2156. "name": "__unittest__",
  2157. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2158. "process": 4683,
  2159. "processName": "MainProcess",
  2160. "relativeCreated": 31.71396255493164,
  2161. "thread": 140022745950016,
  2162. "threadName": "MainThread"
  2163. }
  2164. ],
  2165. "msecs": 616.3620948791504,
  2166. "msg": "Logged information is correct (Content %s and Type is %s).",
  2167. "name": "__tLogger__",
  2168. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2169. "process": 4683,
  2170. "processName": "MainProcess",
  2171. "relativeCreated": 31.7690372467041,
  2172. "thread": 140022745950016,
  2173. "threadName": "MainThread",
  2174. "time_consumption": 5.507469177246094e-05
  2175. },
  2176. {
  2177. "args": [
  2178. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  2179. "<type 'list'>"
  2180. ],
  2181. "asctime": "2020-01-02 14:18:00,616",
  2182. "created": 1577971080.61653,
  2183. "exc_info": null,
  2184. "exc_text": null,
  2185. "filename": "test.py",
  2186. "funcName": "equivalency_chk",
  2187. "levelname": "INFO",
  2188. "levelno": 20,
  2189. "lineno": 142,
  2190. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <type 'list'>).",
  2191. "module": "test",
  2192. "moduleLogger": [
  2193. {
  2194. "args": [
  2195. "Logged information",
  2196. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  2197. "<type 'list'>"
  2198. ],
  2199. "asctime": "2020-01-02 14:18:00,616",
  2200. "created": 1577971080.616435,
  2201. "exc_info": null,
  2202. "exc_text": null,
  2203. "filename": "test.py",
  2204. "funcName": "__report_result__",
  2205. "levelname": "DEBUG",
  2206. "levelno": 10,
  2207. "lineno": 22,
  2208. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<type 'list'>)",
  2209. "module": "test",
  2210. "msecs": 616.4350509643555,
  2211. "msg": "Result (%s): %s (%s)",
  2212. "name": "__unittest__",
  2213. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2214. "process": 4683,
  2215. "processName": "MainProcess",
  2216. "relativeCreated": 31.84199333190918,
  2217. "thread": 140022745950016,
  2218. "threadName": "MainThread"
  2219. },
  2220. {
  2221. "args": [
  2222. "Logged information",
  2223. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  2224. "<type 'list'>"
  2225. ],
  2226. "asctime": "2020-01-02 14:18:00,616",
  2227. "created": 1577971080.616477,
  2228. "exc_info": null,
  2229. "exc_text": null,
  2230. "filename": "test.py",
  2231. "funcName": "__report_expectation_equivalency__",
  2232. "levelname": "DEBUG",
  2233. "levelno": 10,
  2234. "lineno": 26,
  2235. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<type 'list'>)",
  2236. "module": "test",
  2237. "msecs": 616.4770126342773,
  2238. "msg": "Expectation (%s): result = %s (%s)",
  2239. "name": "__unittest__",
  2240. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2241. "process": 4683,
  2242. "processName": "MainProcess",
  2243. "relativeCreated": 31.883955001831055,
  2244. "thread": 140022745950016,
  2245. "threadName": "MainThread"
  2246. }
  2247. ],
  2248. "msecs": 616.5299415588379,
  2249. "msg": "Logged information is correct (Content %s and Type is %s).",
  2250. "name": "__tLogger__",
  2251. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2252. "process": 4683,
  2253. "processName": "MainProcess",
  2254. "relativeCreated": 31.9368839263916,
  2255. "thread": 140022745950016,
  2256. "threadName": "MainThread",
  2257. "time_consumption": 5.2928924560546875e-05
  2258. },
  2259. {
  2260. "args": [
  2261. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  2262. "<type 'list'>"
  2263. ],
  2264. "asctime": "2020-01-02 14:18:00,616",
  2265. "created": 1577971080.616692,
  2266. "exc_info": null,
  2267. "exc_text": null,
  2268. "filename": "test.py",
  2269. "funcName": "equivalency_chk",
  2270. "levelname": "INFO",
  2271. "levelno": 20,
  2272. "lineno": 142,
  2273. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <type 'list'>).",
  2274. "module": "test",
  2275. "moduleLogger": [
  2276. {
  2277. "args": [
  2278. "Logged information",
  2279. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  2280. "<type 'list'>"
  2281. ],
  2282. "asctime": "2020-01-02 14:18:00,616",
  2283. "created": 1577971080.6166,
  2284. "exc_info": null,
  2285. "exc_text": null,
  2286. "filename": "test.py",
  2287. "funcName": "__report_result__",
  2288. "levelname": "DEBUG",
  2289. "levelno": 10,
  2290. "lineno": 22,
  2291. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<type 'list'>)",
  2292. "module": "test",
  2293. "msecs": 616.6000366210938,
  2294. "msg": "Result (%s): %s (%s)",
  2295. "name": "__unittest__",
  2296. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2297. "process": 4683,
  2298. "processName": "MainProcess",
  2299. "relativeCreated": 32.00697898864746,
  2300. "thread": 140022745950016,
  2301. "threadName": "MainThread"
  2302. },
  2303. {
  2304. "args": [
  2305. "Logged information",
  2306. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  2307. "<type 'list'>"
  2308. ],
  2309. "asctime": "2020-01-02 14:18:00,616",
  2310. "created": 1577971080.616641,
  2311. "exc_info": null,
  2312. "exc_text": null,
  2313. "filename": "test.py",
  2314. "funcName": "__report_expectation_equivalency__",
  2315. "levelname": "DEBUG",
  2316. "levelno": 10,
  2317. "lineno": 26,
  2318. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<type 'list'>)",
  2319. "module": "test",
  2320. "msecs": 616.6410446166992,
  2321. "msg": "Expectation (%s): result = %s (%s)",
  2322. "name": "__unittest__",
  2323. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2324. "process": 4683,
  2325. "processName": "MainProcess",
  2326. "relativeCreated": 32.04798698425293,
  2327. "thread": 140022745950016,
  2328. "threadName": "MainThread"
  2329. }
  2330. ],
  2331. "msecs": 616.692066192627,
  2332. "msg": "Logged information is correct (Content %s and Type is %s).",
  2333. "name": "__tLogger__",
  2334. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2335. "process": 4683,
  2336. "processName": "MainProcess",
  2337. "relativeCreated": 32.099008560180664,
  2338. "thread": 140022745950016,
  2339. "threadName": "MainThread",
  2340. "time_consumption": 5.1021575927734375e-05
  2341. },
  2342. {
  2343. "args": [
  2344. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  2345. "<type 'list'>"
  2346. ],
  2347. "asctime": "2020-01-02 14:18:00,616",
  2348. "created": 1577971080.616851,
  2349. "exc_info": null,
  2350. "exc_text": null,
  2351. "filename": "test.py",
  2352. "funcName": "equivalency_chk",
  2353. "levelname": "INFO",
  2354. "levelno": 20,
  2355. "lineno": 142,
  2356. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <type 'list'>).",
  2357. "module": "test",
  2358. "moduleLogger": [
  2359. {
  2360. "args": [
  2361. "Logged information",
  2362. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  2363. "<type 'list'>"
  2364. ],
  2365. "asctime": "2020-01-02 14:18:00,616",
  2366. "created": 1577971080.61676,
  2367. "exc_info": null,
  2368. "exc_text": null,
  2369. "filename": "test.py",
  2370. "funcName": "__report_result__",
  2371. "levelname": "DEBUG",
  2372. "levelno": 10,
  2373. "lineno": 22,
  2374. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<type 'list'>)",
  2375. "module": "test",
  2376. "msecs": 616.7600154876709,
  2377. "msg": "Result (%s): %s (%s)",
  2378. "name": "__unittest__",
  2379. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2380. "process": 4683,
  2381. "processName": "MainProcess",
  2382. "relativeCreated": 32.16695785522461,
  2383. "thread": 140022745950016,
  2384. "threadName": "MainThread"
  2385. },
  2386. {
  2387. "args": [
  2388. "Logged information",
  2389. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  2390. "<type 'list'>"
  2391. ],
  2392. "asctime": "2020-01-02 14:18:00,616",
  2393. "created": 1577971080.616801,
  2394. "exc_info": null,
  2395. "exc_text": null,
  2396. "filename": "test.py",
  2397. "funcName": "__report_expectation_equivalency__",
  2398. "levelname": "DEBUG",
  2399. "levelno": 10,
  2400. "lineno": 26,
  2401. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<type 'list'>)",
  2402. "module": "test",
  2403. "msecs": 616.8010234832764,
  2404. "msg": "Expectation (%s): result = %s (%s)",
  2405. "name": "__unittest__",
  2406. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2407. "process": 4683,
  2408. "processName": "MainProcess",
  2409. "relativeCreated": 32.20796585083008,
  2410. "thread": 140022745950016,
  2411. "threadName": "MainThread"
  2412. }
  2413. ],
  2414. "msecs": 616.8510913848877,
  2415. "msg": "Logged information is correct (Content %s and Type is %s).",
  2416. "name": "__tLogger__",
  2417. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2418. "process": 4683,
  2419. "processName": "MainProcess",
  2420. "relativeCreated": 32.258033752441406,
  2421. "thread": 140022745950016,
  2422. "threadName": "MainThread",
  2423. "time_consumption": 5.0067901611328125e-05
  2424. }
  2425. ],
  2426. "thread": 140022745950016,
  2427. "threadName": "MainThread",
  2428. "time_consumption": 0.001936197280883789,
  2429. "time_finished": "2020-01-02 14:18:00,616",
  2430. "time_start": "2020-01-02 14:18:00,614"
  2431. },
  2432. "_QBmb8CvVEeqssZLMJF_fcg": {
  2433. "args": null,
  2434. "asctime": "2020-01-02 14:18:00,616",
  2435. "created": 1577971080.61698,
  2436. "exc_info": null,
  2437. "exc_text": null,
  2438. "filename": "__init__.py",
  2439. "funcName": "testrun",
  2440. "levelname": "INFO",
  2441. "levelno": 20,
  2442. "lineno": 22,
  2443. "message": "_QBmb8CvVEeqssZLMJF_fcg",
  2444. "module": "__init__",
  2445. "moduleLogger": [],
  2446. "msecs": 616.9800758361816,
  2447. "msg": "_QBmb8CvVEeqssZLMJF_fcg",
  2448. "name": "__tLogger__",
  2449. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  2450. "process": 4683,
  2451. "processName": "MainProcess",
  2452. "relativeCreated": 32.38701820373535,
  2453. "testcaseLogger": [
  2454. {
  2455. "args": [],
  2456. "asctime": "2020-01-02 14:18:00,618",
  2457. "created": 1577971080.618115,
  2458. "exc_info": null,
  2459. "exc_text": null,
  2460. "filename": "test_helpers.py",
  2461. "funcName": "__init__",
  2462. "levelname": "DEBUG",
  2463. "levelno": 10,
  2464. "lineno": 38,
  2465. "message": "Running logger test sequence.",
  2466. "module": "test_helpers",
  2467. "moduleLogger": [
  2468. {
  2469. "args": [],
  2470. "asctime": "2020-01-02 14:18:00,617",
  2471. "created": 1577971080.617051,
  2472. "exc_info": null,
  2473. "exc_text": null,
  2474. "filename": "test_helpers.py",
  2475. "funcName": "__init__",
  2476. "levelname": "DEBUG",
  2477. "levelno": 10,
  2478. "lineno": 22,
  2479. "message": "Configuring collecting logger",
  2480. "module": "test_helpers",
  2481. "msecs": 617.0508861541748,
  2482. "msg": "Configuring collecting logger",
  2483. "name": "__unittest__",
  2484. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2485. "process": 4683,
  2486. "processName": "MainProcess",
  2487. "relativeCreated": 32.457828521728516,
  2488. "thread": 140022745950016,
  2489. "threadName": "MainThread"
  2490. },
  2491. {
  2492. "args": [
  2493. 1,
  2494. "DEBUG",
  2495. "collectingRingHandler"
  2496. ],
  2497. "asctime": "2020-01-02 14:18:00,617",
  2498. "created": 1577971080.617123,
  2499. "exc_info": null,
  2500. "exc_text": null,
  2501. "filename": "test_helpers.py",
  2502. "funcName": "__init__",
  2503. "levelname": "DEBUG",
  2504. "levelno": 10,
  2505. "lineno": 36,
  2506. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  2507. "module": "test_helpers",
  2508. "msecs": 617.1228885650635,
  2509. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2510. "name": "__unittest__",
  2511. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2512. "process": 4683,
  2513. "processName": "MainProcess",
  2514. "relativeCreated": 32.52983093261719,
  2515. "thread": 140022745950016,
  2516. "threadName": "MainThread"
  2517. },
  2518. {
  2519. "args": [
  2520. 2,
  2521. "INFO",
  2522. "collectingRingHandler"
  2523. ],
  2524. "asctime": "2020-01-02 14:18:00,617",
  2525. "created": 1577971080.617267,
  2526. "exc_info": null,
  2527. "exc_text": null,
  2528. "filename": "test_helpers.py",
  2529. "funcName": "__init__",
  2530. "levelname": "DEBUG",
  2531. "levelno": 10,
  2532. "lineno": 36,
  2533. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  2534. "module": "test_helpers",
  2535. "msecs": 617.2668933868408,
  2536. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2537. "name": "__unittest__",
  2538. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2539. "process": 4683,
  2540. "processName": "MainProcess",
  2541. "relativeCreated": 32.67383575439453,
  2542. "thread": 140022745950016,
  2543. "threadName": "MainThread"
  2544. },
  2545. {
  2546. "args": [
  2547. 3,
  2548. "WARNING",
  2549. "collectingRingHandler"
  2550. ],
  2551. "asctime": "2020-01-02 14:18:00,617",
  2552. "created": 1577971080.617437,
  2553. "exc_info": null,
  2554. "exc_text": null,
  2555. "filename": "test_helpers.py",
  2556. "funcName": "__init__",
  2557. "levelname": "DEBUG",
  2558. "levelno": 10,
  2559. "lineno": 36,
  2560. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  2561. "module": "test_helpers",
  2562. "msecs": 617.4368858337402,
  2563. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2564. "name": "__unittest__",
  2565. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2566. "process": 4683,
  2567. "processName": "MainProcess",
  2568. "relativeCreated": 32.843828201293945,
  2569. "thread": 140022745950016,
  2570. "threadName": "MainThread"
  2571. },
  2572. {
  2573. "args": [
  2574. 4,
  2575. "ERROR",
  2576. "collectingRingHandler"
  2577. ],
  2578. "asctime": "2020-01-02 14:18:00,617",
  2579. "created": 1577971080.617602,
  2580. "exc_info": null,
  2581. "exc_text": null,
  2582. "filename": "test_helpers.py",
  2583. "funcName": "__init__",
  2584. "levelname": "DEBUG",
  2585. "levelno": 10,
  2586. "lineno": 36,
  2587. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  2588. "module": "test_helpers",
  2589. "msecs": 617.6021099090576,
  2590. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2591. "name": "__unittest__",
  2592. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2593. "process": 4683,
  2594. "processName": "MainProcess",
  2595. "relativeCreated": 33.00905227661133,
  2596. "thread": 140022745950016,
  2597. "threadName": "MainThread"
  2598. },
  2599. {
  2600. "args": [
  2601. 5,
  2602. "CRITICAL",
  2603. "collectingRingHandler"
  2604. ],
  2605. "asctime": "2020-01-02 14:18:00,617",
  2606. "created": 1577971080.617734,
  2607. "exc_info": null,
  2608. "exc_text": null,
  2609. "filename": "test_helpers.py",
  2610. "funcName": "__init__",
  2611. "levelname": "DEBUG",
  2612. "levelno": 10,
  2613. "lineno": 36,
  2614. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  2615. "module": "test_helpers",
  2616. "msecs": 617.7339553833008,
  2617. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2618. "name": "__unittest__",
  2619. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2620. "process": 4683,
  2621. "processName": "MainProcess",
  2622. "relativeCreated": 33.14089775085449,
  2623. "thread": 140022745950016,
  2624. "threadName": "MainThread"
  2625. },
  2626. {
  2627. "args": [
  2628. 6,
  2629. "INFO",
  2630. "collectingRingHandler"
  2631. ],
  2632. "asctime": "2020-01-02 14:18:00,617",
  2633. "created": 1577971080.617862,
  2634. "exc_info": null,
  2635. "exc_text": null,
  2636. "filename": "test_helpers.py",
  2637. "funcName": "__init__",
  2638. "levelname": "DEBUG",
  2639. "levelno": 10,
  2640. "lineno": 36,
  2641. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  2642. "module": "test_helpers",
  2643. "msecs": 617.8619861602783,
  2644. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2645. "name": "__unittest__",
  2646. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2647. "process": 4683,
  2648. "processName": "MainProcess",
  2649. "relativeCreated": 33.26892852783203,
  2650. "thread": 140022745950016,
  2651. "threadName": "MainThread"
  2652. },
  2653. {
  2654. "args": [
  2655. 7,
  2656. "ERROR",
  2657. "collectingRingHandler"
  2658. ],
  2659. "asctime": "2020-01-02 14:18:00,617",
  2660. "created": 1577971080.617986,
  2661. "exc_info": null,
  2662. "exc_text": null,
  2663. "filename": "test_helpers.py",
  2664. "funcName": "__init__",
  2665. "levelname": "DEBUG",
  2666. "levelno": 10,
  2667. "lineno": 36,
  2668. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  2669. "module": "test_helpers",
  2670. "msecs": 617.9859638214111,
  2671. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2672. "name": "__unittest__",
  2673. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2674. "process": 4683,
  2675. "processName": "MainProcess",
  2676. "relativeCreated": 33.392906188964844,
  2677. "thread": 140022745950016,
  2678. "threadName": "MainThread"
  2679. }
  2680. ],
  2681. "msecs": 618.1149482727051,
  2682. "msg": "Running logger test sequence.",
  2683. "name": "__tLogger__",
  2684. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  2685. "process": 4683,
  2686. "processName": "MainProcess",
  2687. "relativeCreated": 33.52189064025879,
  2688. "thread": 140022745950016,
  2689. "threadName": "MainThread",
  2690. "time_consumption": 0.0001289844512939453
  2691. },
  2692. {
  2693. "args": [],
  2694. "asctime": "2020-01-02 14:18:00,618",
  2695. "created": 1577971080.618913,
  2696. "exc_info": null,
  2697. "exc_text": null,
  2698. "filename": "test.py",
  2699. "funcName": "report",
  2700. "levelname": "INFO",
  2701. "levelno": 20,
  2702. "lineno": 166,
  2703. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  2704. "module": "test",
  2705. "moduleLogger": [
  2706. {
  2707. "args": [
  2708. "Indexlist of log entries in stringrepresentation",
  2709. "[ 35, 109, 181, 256, 327 ]",
  2710. "<type 'list'>"
  2711. ],
  2712. "asctime": "2020-01-02 14:18:00,618",
  2713. "created": 1577971080.618217,
  2714. "exc_info": null,
  2715. "exc_text": null,
  2716. "filename": "test.py",
  2717. "funcName": "__report_result__",
  2718. "levelname": "DEBUG",
  2719. "levelno": 10,
  2720. "lineno": 22,
  2721. "message": "Result (Indexlist of log entries in stringrepresentation): [ 35, 109, 181, 256, 327 ] (<type 'list'>)",
  2722. "module": "test",
  2723. "msecs": 618.2169914245605,
  2724. "msg": "Result (%s): %s (%s)",
  2725. "name": "__unittest__",
  2726. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2727. "process": 4683,
  2728. "processName": "MainProcess",
  2729. "relativeCreated": 33.62393379211426,
  2730. "thread": 140022745950016,
  2731. "threadName": "MainThread"
  2732. },
  2733. {
  2734. "args": [
  2735. "Indexlist of log entries in stringrepresentation",
  2736. "[ 35, 109, 181, 256, 327 ]",
  2737. "<type 'list'>"
  2738. ],
  2739. "asctime": "2020-01-02 14:18:00,618",
  2740. "created": 1577971080.618262,
  2741. "exc_info": null,
  2742. "exc_text": null,
  2743. "filename": "test.py",
  2744. "funcName": "__report_expectation_equivalency__",
  2745. "levelname": "DEBUG",
  2746. "levelno": 10,
  2747. "lineno": 26,
  2748. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 35, 109, 181, 256, 327 ] (<type 'list'>)",
  2749. "module": "test",
  2750. "msecs": 618.2620525360107,
  2751. "msg": "Expectation (%s): result = %s (%s)",
  2752. "name": "__unittest__",
  2753. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2754. "process": 4683,
  2755. "processName": "MainProcess",
  2756. "relativeCreated": 33.66899490356445,
  2757. "thread": 140022745950016,
  2758. "threadName": "MainThread"
  2759. },
  2760. {
  2761. "args": [
  2762. "Submitted value number 1",
  2763. "35",
  2764. "<type 'int'>"
  2765. ],
  2766. "asctime": "2020-01-02 14:18:00,618",
  2767. "created": 1577971080.618308,
  2768. "exc_info": null,
  2769. "exc_text": null,
  2770. "filename": "test.py",
  2771. "funcName": "__report_result__",
  2772. "levelname": "DEBUG",
  2773. "levelno": 10,
  2774. "lineno": 22,
  2775. "message": "Result (Submitted value number 1): 35 (<type 'int'>)",
  2776. "module": "test",
  2777. "msecs": 618.3080673217773,
  2778. "msg": "Result (%s): %s (%s)",
  2779. "name": "__unittest__",
  2780. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2781. "process": 4683,
  2782. "processName": "MainProcess",
  2783. "relativeCreated": 33.715009689331055,
  2784. "thread": 140022745950016,
  2785. "threadName": "MainThread"
  2786. },
  2787. {
  2788. "args": [
  2789. "Submitted value number 1",
  2790. "35",
  2791. "<type 'int'>"
  2792. ],
  2793. "asctime": "2020-01-02 14:18:00,618",
  2794. "created": 1577971080.618368,
  2795. "exc_info": null,
  2796. "exc_text": null,
  2797. "filename": "test.py",
  2798. "funcName": "__report_expectation_equivalency__",
  2799. "levelname": "DEBUG",
  2800. "levelno": 10,
  2801. "lineno": 26,
  2802. "message": "Expectation (Submitted value number 1): result = 35 (<type 'int'>)",
  2803. "module": "test",
  2804. "msecs": 618.3679103851318,
  2805. "msg": "Expectation (%s): result = %s (%s)",
  2806. "name": "__unittest__",
  2807. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2808. "process": 4683,
  2809. "processName": "MainProcess",
  2810. "relativeCreated": 33.77485275268555,
  2811. "thread": 140022745950016,
  2812. "threadName": "MainThread"
  2813. },
  2814. {
  2815. "args": [
  2816. "35",
  2817. "<type 'int'>"
  2818. ],
  2819. "asctime": "2020-01-02 14:18:00,618",
  2820. "created": 1577971080.618427,
  2821. "exc_info": null,
  2822. "exc_text": null,
  2823. "filename": "test.py",
  2824. "funcName": "equivalency_chk",
  2825. "levelname": "INFO",
  2826. "levelno": 20,
  2827. "lineno": 142,
  2828. "message": "Submitted value number 1 is correct (Content 35 and Type is <type 'int'>).",
  2829. "module": "test",
  2830. "msecs": 618.427038192749,
  2831. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  2832. "name": "__unittest__",
  2833. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2834. "process": 4683,
  2835. "processName": "MainProcess",
  2836. "relativeCreated": 33.833980560302734,
  2837. "thread": 140022745950016,
  2838. "threadName": "MainThread"
  2839. },
  2840. {
  2841. "args": [
  2842. "Submitted value number 2",
  2843. "109",
  2844. "<type 'int'>"
  2845. ],
  2846. "asctime": "2020-01-02 14:18:00,618",
  2847. "created": 1577971080.618466,
  2848. "exc_info": null,
  2849. "exc_text": null,
  2850. "filename": "test.py",
  2851. "funcName": "__report_result__",
  2852. "levelname": "DEBUG",
  2853. "levelno": 10,
  2854. "lineno": 22,
  2855. "message": "Result (Submitted value number 2): 109 (<type 'int'>)",
  2856. "module": "test",
  2857. "msecs": 618.4659004211426,
  2858. "msg": "Result (%s): %s (%s)",
  2859. "name": "__unittest__",
  2860. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2861. "process": 4683,
  2862. "processName": "MainProcess",
  2863. "relativeCreated": 33.87284278869629,
  2864. "thread": 140022745950016,
  2865. "threadName": "MainThread"
  2866. },
  2867. {
  2868. "args": [
  2869. "Submitted value number 2",
  2870. "109",
  2871. "<type 'int'>"
  2872. ],
  2873. "asctime": "2020-01-02 14:18:00,618",
  2874. "created": 1577971080.618505,
  2875. "exc_info": null,
  2876. "exc_text": null,
  2877. "filename": "test.py",
  2878. "funcName": "__report_expectation_equivalency__",
  2879. "levelname": "DEBUG",
  2880. "levelno": 10,
  2881. "lineno": 26,
  2882. "message": "Expectation (Submitted value number 2): result = 109 (<type 'int'>)",
  2883. "module": "test",
  2884. "msecs": 618.5050010681152,
  2885. "msg": "Expectation (%s): result = %s (%s)",
  2886. "name": "__unittest__",
  2887. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2888. "process": 4683,
  2889. "processName": "MainProcess",
  2890. "relativeCreated": 33.911943435668945,
  2891. "thread": 140022745950016,
  2892. "threadName": "MainThread"
  2893. },
  2894. {
  2895. "args": [
  2896. "109",
  2897. "<type 'int'>"
  2898. ],
  2899. "asctime": "2020-01-02 14:18:00,618",
  2900. "created": 1577971080.618541,
  2901. "exc_info": null,
  2902. "exc_text": null,
  2903. "filename": "test.py",
  2904. "funcName": "equivalency_chk",
  2905. "levelname": "INFO",
  2906. "levelno": 20,
  2907. "lineno": 142,
  2908. "message": "Submitted value number 2 is correct (Content 109 and Type is <type 'int'>).",
  2909. "module": "test",
  2910. "msecs": 618.5410022735596,
  2911. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  2912. "name": "__unittest__",
  2913. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2914. "process": 4683,
  2915. "processName": "MainProcess",
  2916. "relativeCreated": 33.94794464111328,
  2917. "thread": 140022745950016,
  2918. "threadName": "MainThread"
  2919. },
  2920. {
  2921. "args": [
  2922. "Submitted value number 3",
  2923. "181",
  2924. "<type 'int'>"
  2925. ],
  2926. "asctime": "2020-01-02 14:18:00,618",
  2927. "created": 1577971080.618578,
  2928. "exc_info": null,
  2929. "exc_text": null,
  2930. "filename": "test.py",
  2931. "funcName": "__report_result__",
  2932. "levelname": "DEBUG",
  2933. "levelno": 10,
  2934. "lineno": 22,
  2935. "message": "Result (Submitted value number 3): 181 (<type 'int'>)",
  2936. "module": "test",
  2937. "msecs": 618.5779571533203,
  2938. "msg": "Result (%s): %s (%s)",
  2939. "name": "__unittest__",
  2940. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2941. "process": 4683,
  2942. "processName": "MainProcess",
  2943. "relativeCreated": 33.98489952087402,
  2944. "thread": 140022745950016,
  2945. "threadName": "MainThread"
  2946. },
  2947. {
  2948. "args": [
  2949. "Submitted value number 3",
  2950. "181",
  2951. "<type 'int'>"
  2952. ],
  2953. "asctime": "2020-01-02 14:18:00,618",
  2954. "created": 1577971080.618614,
  2955. "exc_info": null,
  2956. "exc_text": null,
  2957. "filename": "test.py",
  2958. "funcName": "__report_expectation_equivalency__",
  2959. "levelname": "DEBUG",
  2960. "levelno": 10,
  2961. "lineno": 26,
  2962. "message": "Expectation (Submitted value number 3): result = 181 (<type 'int'>)",
  2963. "module": "test",
  2964. "msecs": 618.6139583587646,
  2965. "msg": "Expectation (%s): result = %s (%s)",
  2966. "name": "__unittest__",
  2967. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2968. "process": 4683,
  2969. "processName": "MainProcess",
  2970. "relativeCreated": 34.02090072631836,
  2971. "thread": 140022745950016,
  2972. "threadName": "MainThread"
  2973. },
  2974. {
  2975. "args": [
  2976. "181",
  2977. "<type 'int'>"
  2978. ],
  2979. "asctime": "2020-01-02 14:18:00,618",
  2980. "created": 1577971080.618653,
  2981. "exc_info": null,
  2982. "exc_text": null,
  2983. "filename": "test.py",
  2984. "funcName": "equivalency_chk",
  2985. "levelname": "INFO",
  2986. "levelno": 20,
  2987. "lineno": 142,
  2988. "message": "Submitted value number 3 is correct (Content 181 and Type is <type 'int'>).",
  2989. "module": "test",
  2990. "msecs": 618.6530590057373,
  2991. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  2992. "name": "__unittest__",
  2993. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  2994. "process": 4683,
  2995. "processName": "MainProcess",
  2996. "relativeCreated": 34.060001373291016,
  2997. "thread": 140022745950016,
  2998. "threadName": "MainThread"
  2999. },
  3000. {
  3001. "args": [
  3002. "Submitted value number 4",
  3003. "256",
  3004. "<type 'int'>"
  3005. ],
  3006. "asctime": "2020-01-02 14:18:00,618",
  3007. "created": 1577971080.61869,
  3008. "exc_info": null,
  3009. "exc_text": null,
  3010. "filename": "test.py",
  3011. "funcName": "__report_result__",
  3012. "levelname": "DEBUG",
  3013. "levelno": 10,
  3014. "lineno": 22,
  3015. "message": "Result (Submitted value number 4): 256 (<type 'int'>)",
  3016. "module": "test",
  3017. "msecs": 618.690013885498,
  3018. "msg": "Result (%s): %s (%s)",
  3019. "name": "__unittest__",
  3020. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3021. "process": 4683,
  3022. "processName": "MainProcess",
  3023. "relativeCreated": 34.09695625305176,
  3024. "thread": 140022745950016,
  3025. "threadName": "MainThread"
  3026. },
  3027. {
  3028. "args": [
  3029. "Submitted value number 4",
  3030. "256",
  3031. "<type 'int'>"
  3032. ],
  3033. "asctime": "2020-01-02 14:18:00,618",
  3034. "created": 1577971080.618725,
  3035. "exc_info": null,
  3036. "exc_text": null,
  3037. "filename": "test.py",
  3038. "funcName": "__report_expectation_equivalency__",
  3039. "levelname": "DEBUG",
  3040. "levelno": 10,
  3041. "lineno": 26,
  3042. "message": "Expectation (Submitted value number 4): result = 256 (<type 'int'>)",
  3043. "module": "test",
  3044. "msecs": 618.725061416626,
  3045. "msg": "Expectation (%s): result = %s (%s)",
  3046. "name": "__unittest__",
  3047. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3048. "process": 4683,
  3049. "processName": "MainProcess",
  3050. "relativeCreated": 34.13200378417969,
  3051. "thread": 140022745950016,
  3052. "threadName": "MainThread"
  3053. },
  3054. {
  3055. "args": [
  3056. "256",
  3057. "<type 'int'>"
  3058. ],
  3059. "asctime": "2020-01-02 14:18:00,618",
  3060. "created": 1577971080.618761,
  3061. "exc_info": null,
  3062. "exc_text": null,
  3063. "filename": "test.py",
  3064. "funcName": "equivalency_chk",
  3065. "levelname": "INFO",
  3066. "levelno": 20,
  3067. "lineno": 142,
  3068. "message": "Submitted value number 4 is correct (Content 256 and Type is <type 'int'>).",
  3069. "module": "test",
  3070. "msecs": 618.7610626220703,
  3071. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  3072. "name": "__unittest__",
  3073. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3074. "process": 4683,
  3075. "processName": "MainProcess",
  3076. "relativeCreated": 34.16800498962402,
  3077. "thread": 140022745950016,
  3078. "threadName": "MainThread"
  3079. },
  3080. {
  3081. "args": [
  3082. "Submitted value number 5",
  3083. "327",
  3084. "<type 'int'>"
  3085. ],
  3086. "asctime": "2020-01-02 14:18:00,618",
  3087. "created": 1577971080.618798,
  3088. "exc_info": null,
  3089. "exc_text": null,
  3090. "filename": "test.py",
  3091. "funcName": "__report_result__",
  3092. "levelname": "DEBUG",
  3093. "levelno": 10,
  3094. "lineno": 22,
  3095. "message": "Result (Submitted value number 5): 327 (<type 'int'>)",
  3096. "module": "test",
  3097. "msecs": 618.798017501831,
  3098. "msg": "Result (%s): %s (%s)",
  3099. "name": "__unittest__",
  3100. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3101. "process": 4683,
  3102. "processName": "MainProcess",
  3103. "relativeCreated": 34.204959869384766,
  3104. "thread": 140022745950016,
  3105. "threadName": "MainThread"
  3106. },
  3107. {
  3108. "args": [
  3109. "Submitted value number 5",
  3110. "327",
  3111. "<type 'int'>"
  3112. ],
  3113. "asctime": "2020-01-02 14:18:00,618",
  3114. "created": 1577971080.618839,
  3115. "exc_info": null,
  3116. "exc_text": null,
  3117. "filename": "test.py",
  3118. "funcName": "__report_expectation_equivalency__",
  3119. "levelname": "DEBUG",
  3120. "levelno": 10,
  3121. "lineno": 26,
  3122. "message": "Expectation (Submitted value number 5): result = 327 (<type 'int'>)",
  3123. "module": "test",
  3124. "msecs": 618.8390254974365,
  3125. "msg": "Expectation (%s): result = %s (%s)",
  3126. "name": "__unittest__",
  3127. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3128. "process": 4683,
  3129. "processName": "MainProcess",
  3130. "relativeCreated": 34.245967864990234,
  3131. "thread": 140022745950016,
  3132. "threadName": "MainThread"
  3133. },
  3134. {
  3135. "args": [
  3136. "327",
  3137. "<type 'int'>"
  3138. ],
  3139. "asctime": "2020-01-02 14:18:00,618",
  3140. "created": 1577971080.618875,
  3141. "exc_info": null,
  3142. "exc_text": null,
  3143. "filename": "test.py",
  3144. "funcName": "equivalency_chk",
  3145. "levelname": "INFO",
  3146. "levelno": 20,
  3147. "lineno": 142,
  3148. "message": "Submitted value number 5 is correct (Content 327 and Type is <type 'int'>).",
  3149. "module": "test",
  3150. "msecs": 618.8750267028809,
  3151. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  3152. "name": "__unittest__",
  3153. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3154. "process": 4683,
  3155. "processName": "MainProcess",
  3156. "relativeCreated": 34.28196907043457,
  3157. "thread": 140022745950016,
  3158. "threadName": "MainThread"
  3159. }
  3160. ],
  3161. "msecs": 618.912935256958,
  3162. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  3163. "name": "__tLogger__",
  3164. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3165. "process": 4683,
  3166. "processName": "MainProcess",
  3167. "relativeCreated": 34.31987762451172,
  3168. "thread": 140022745950016,
  3169. "threadName": "MainThread",
  3170. "time_consumption": 3.790855407714844e-05
  3171. }
  3172. ],
  3173. "thread": 140022745950016,
  3174. "threadName": "MainThread",
  3175. "time_consumption": 0.0019328594207763672,
  3176. "time_finished": "2020-01-02 14:18:00,618",
  3177. "time_start": "2020-01-02 14:18:00,616"
  3178. },
  3179. "_XzMFcHYZEem_kd-7nxt1sg": {
  3180. "args": null,
  3181. "asctime": "2020-01-02 14:18:00,610",
  3182. "created": 1577971080.61057,
  3183. "exc_info": null,
  3184. "exc_text": null,
  3185. "filename": "__init__.py",
  3186. "funcName": "testrun",
  3187. "levelname": "INFO",
  3188. "levelno": 20,
  3189. "lineno": 19,
  3190. "message": "_XzMFcHYZEem_kd-7nxt1sg",
  3191. "module": "__init__",
  3192. "moduleLogger": [],
  3193. "msecs": 610.569953918457,
  3194. "msg": "_XzMFcHYZEem_kd-7nxt1sg",
  3195. "name": "__tLogger__",
  3196. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  3197. "process": 4683,
  3198. "processName": "MainProcess",
  3199. "relativeCreated": 25.976896286010742,
  3200. "testcaseLogger": [
  3201. {
  3202. "args": [],
  3203. "asctime": "2020-01-02 14:18:00,611",
  3204. "created": 1577971080.611397,
  3205. "exc_info": null,
  3206. "exc_text": null,
  3207. "filename": "test_helpers.py",
  3208. "funcName": "__init__",
  3209. "levelname": "DEBUG",
  3210. "levelno": 10,
  3211. "lineno": 38,
  3212. "message": "Running logger test sequence.",
  3213. "module": "test_helpers",
  3214. "moduleLogger": [
  3215. {
  3216. "args": [],
  3217. "asctime": "2020-01-02 14:18:00,610",
  3218. "created": 1577971080.61075,
  3219. "exc_info": null,
  3220. "exc_text": null,
  3221. "filename": "test_helpers.py",
  3222. "funcName": "__init__",
  3223. "levelname": "DEBUG",
  3224. "levelno": 10,
  3225. "lineno": 22,
  3226. "message": "Configuring collecting logger",
  3227. "module": "test_helpers",
  3228. "msecs": 610.7499599456787,
  3229. "msg": "Configuring collecting logger",
  3230. "name": "__unittest__",
  3231. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3232. "process": 4683,
  3233. "processName": "MainProcess",
  3234. "relativeCreated": 26.156902313232422,
  3235. "thread": 140022745950016,
  3236. "threadName": "MainThread"
  3237. },
  3238. {
  3239. "args": [
  3240. 1,
  3241. "DEBUG",
  3242. "collectingHandler"
  3243. ],
  3244. "asctime": "2020-01-02 14:18:00,610",
  3245. "created": 1577971080.610836,
  3246. "exc_info": null,
  3247. "exc_text": null,
  3248. "filename": "test_helpers.py",
  3249. "funcName": "__init__",
  3250. "levelname": "DEBUG",
  3251. "levelno": 10,
  3252. "lineno": 36,
  3253. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  3254. "module": "test_helpers",
  3255. "msecs": 610.8360290527344,
  3256. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3257. "name": "__unittest__",
  3258. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3259. "process": 4683,
  3260. "processName": "MainProcess",
  3261. "relativeCreated": 26.242971420288086,
  3262. "thread": 140022745950016,
  3263. "threadName": "MainThread"
  3264. },
  3265. {
  3266. "args": [
  3267. 2,
  3268. "INFO",
  3269. "collectingHandler"
  3270. ],
  3271. "asctime": "2020-01-02 14:18:00,610",
  3272. "created": 1577971080.610934,
  3273. "exc_info": null,
  3274. "exc_text": null,
  3275. "filename": "test_helpers.py",
  3276. "funcName": "__init__",
  3277. "levelname": "DEBUG",
  3278. "levelno": 10,
  3279. "lineno": 36,
  3280. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  3281. "module": "test_helpers",
  3282. "msecs": 610.9340190887451,
  3283. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3284. "name": "__unittest__",
  3285. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3286. "process": 4683,
  3287. "processName": "MainProcess",
  3288. "relativeCreated": 26.340961456298828,
  3289. "thread": 140022745950016,
  3290. "threadName": "MainThread"
  3291. },
  3292. {
  3293. "args": [
  3294. 3,
  3295. "WARNING",
  3296. "collectingHandler"
  3297. ],
  3298. "asctime": "2020-01-02 14:18:00,611",
  3299. "created": 1577971080.611017,
  3300. "exc_info": null,
  3301. "exc_text": null,
  3302. "filename": "test_helpers.py",
  3303. "funcName": "__init__",
  3304. "levelname": "DEBUG",
  3305. "levelno": 10,
  3306. "lineno": 36,
  3307. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.",
  3308. "module": "test_helpers",
  3309. "msecs": 611.0169887542725,
  3310. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3311. "name": "__unittest__",
  3312. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3313. "process": 4683,
  3314. "processName": "MainProcess",
  3315. "relativeCreated": 26.423931121826172,
  3316. "thread": 140022745950016,
  3317. "threadName": "MainThread"
  3318. },
  3319. {
  3320. "args": [
  3321. 4,
  3322. "ERROR",
  3323. "collectingHandler"
  3324. ],
  3325. "asctime": "2020-01-02 14:18:00,611",
  3326. "created": 1577971080.611094,
  3327. "exc_info": null,
  3328. "exc_text": null,
  3329. "filename": "test_helpers.py",
  3330. "funcName": "__init__",
  3331. "levelname": "DEBUG",
  3332. "levelno": 10,
  3333. "lineno": 36,
  3334. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  3335. "module": "test_helpers",
  3336. "msecs": 611.0939979553223,
  3337. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3338. "name": "__unittest__",
  3339. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3340. "process": 4683,
  3341. "processName": "MainProcess",
  3342. "relativeCreated": 26.500940322875977,
  3343. "thread": 140022745950016,
  3344. "threadName": "MainThread"
  3345. },
  3346. {
  3347. "args": [
  3348. 5,
  3349. "CRITICAL",
  3350. "collectingHandler"
  3351. ],
  3352. "asctime": "2020-01-02 14:18:00,611",
  3353. "created": 1577971080.611173,
  3354. "exc_info": null,
  3355. "exc_text": null,
  3356. "filename": "test_helpers.py",
  3357. "funcName": "__init__",
  3358. "levelname": "DEBUG",
  3359. "levelno": 10,
  3360. "lineno": 36,
  3361. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  3362. "module": "test_helpers",
  3363. "msecs": 611.1729145050049,
  3364. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3365. "name": "__unittest__",
  3366. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3367. "process": 4683,
  3368. "processName": "MainProcess",
  3369. "relativeCreated": 26.579856872558594,
  3370. "thread": 140022745950016,
  3371. "threadName": "MainThread"
  3372. },
  3373. {
  3374. "args": [
  3375. 6,
  3376. "INFO",
  3377. "collectingHandler"
  3378. ],
  3379. "asctime": "2020-01-02 14:18:00,611",
  3380. "created": 1577971080.611247,
  3381. "exc_info": null,
  3382. "exc_text": null,
  3383. "filename": "test_helpers.py",
  3384. "funcName": "__init__",
  3385. "levelname": "DEBUG",
  3386. "levelno": 10,
  3387. "lineno": 36,
  3388. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  3389. "module": "test_helpers",
  3390. "msecs": 611.2470626831055,
  3391. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3392. "name": "__unittest__",
  3393. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3394. "process": 4683,
  3395. "processName": "MainProcess",
  3396. "relativeCreated": 26.65400505065918,
  3397. "thread": 140022745950016,
  3398. "threadName": "MainThread"
  3399. },
  3400. {
  3401. "args": [
  3402. 7,
  3403. "ERROR",
  3404. "collectingHandler"
  3405. ],
  3406. "asctime": "2020-01-02 14:18:00,611",
  3407. "created": 1577971080.611324,
  3408. "exc_info": null,
  3409. "exc_text": null,
  3410. "filename": "test_helpers.py",
  3411. "funcName": "__init__",
  3412. "levelname": "DEBUG",
  3413. "levelno": 10,
  3414. "lineno": 36,
  3415. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.",
  3416. "module": "test_helpers",
  3417. "msecs": 611.3240718841553,
  3418. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3419. "name": "__unittest__",
  3420. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3421. "process": 4683,
  3422. "processName": "MainProcess",
  3423. "relativeCreated": 26.731014251708984,
  3424. "thread": 140022745950016,
  3425. "threadName": "MainThread"
  3426. }
  3427. ],
  3428. "msecs": 611.3970279693604,
  3429. "msg": "Running logger test sequence.",
  3430. "name": "__tLogger__",
  3431. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  3432. "process": 4683,
  3433. "processName": "MainProcess",
  3434. "relativeCreated": 26.803970336914062,
  3435. "thread": 140022745950016,
  3436. "threadName": "MainThread",
  3437. "time_consumption": 7.295608520507812e-05
  3438. },
  3439. {
  3440. "args": [
  3441. "7",
  3442. "<type 'int'>"
  3443. ],
  3444. "asctime": "2020-01-02 14:18:00,611",
  3445. "created": 1577971080.61156,
  3446. "exc_info": null,
  3447. "exc_text": null,
  3448. "filename": "test.py",
  3449. "funcName": "equivalency_chk",
  3450. "levelname": "INFO",
  3451. "levelno": 20,
  3452. "lineno": 142,
  3453. "message": "Length of collected logs is correct (Content 7 and Type is <type 'int'>).",
  3454. "module": "test",
  3455. "moduleLogger": [
  3456. {
  3457. "args": [
  3458. "Length of collected logs",
  3459. "7",
  3460. "<type 'int'>"
  3461. ],
  3462. "asctime": "2020-01-02 14:18:00,611",
  3463. "created": 1577971080.61148,
  3464. "exc_info": null,
  3465. "exc_text": null,
  3466. "filename": "test.py",
  3467. "funcName": "__report_result__",
  3468. "levelname": "DEBUG",
  3469. "levelno": 10,
  3470. "lineno": 22,
  3471. "message": "Result (Length of collected logs): 7 (<type 'int'>)",
  3472. "module": "test",
  3473. "msecs": 611.4799976348877,
  3474. "msg": "Result (%s): %s (%s)",
  3475. "name": "__unittest__",
  3476. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3477. "process": 4683,
  3478. "processName": "MainProcess",
  3479. "relativeCreated": 26.886940002441406,
  3480. "thread": 140022745950016,
  3481. "threadName": "MainThread"
  3482. },
  3483. {
  3484. "args": [
  3485. "Length of collected logs",
  3486. "7",
  3487. "<type 'int'>"
  3488. ],
  3489. "asctime": "2020-01-02 14:18:00,611",
  3490. "created": 1577971080.611521,
  3491. "exc_info": null,
  3492. "exc_text": null,
  3493. "filename": "test.py",
  3494. "funcName": "__report_expectation_equivalency__",
  3495. "levelname": "DEBUG",
  3496. "levelno": 10,
  3497. "lineno": 26,
  3498. "message": "Expectation (Length of collected logs): result = 7 (<type 'int'>)",
  3499. "module": "test",
  3500. "msecs": 611.5210056304932,
  3501. "msg": "Expectation (%s): result = %s (%s)",
  3502. "name": "__unittest__",
  3503. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3504. "process": 4683,
  3505. "processName": "MainProcess",
  3506. "relativeCreated": 26.927947998046875,
  3507. "thread": 140022745950016,
  3508. "threadName": "MainThread"
  3509. }
  3510. ],
  3511. "msecs": 611.5601062774658,
  3512. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  3513. "name": "__tLogger__",
  3514. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3515. "process": 4683,
  3516. "processName": "MainProcess",
  3517. "relativeCreated": 26.96704864501953,
  3518. "thread": 140022745950016,
  3519. "threadName": "MainThread",
  3520. "time_consumption": 3.910064697265625e-05
  3521. },
  3522. {
  3523. "args": [
  3524. "['Log entry number %d with level %s.', 10, 'test_helpers.py', 1]",
  3525. "<type 'list'>"
  3526. ],
  3527. "asctime": "2020-01-02 14:18:00,611",
  3528. "created": 1577971080.611736,
  3529. "exc_info": null,
  3530. "exc_text": null,
  3531. "filename": "test.py",
  3532. "funcName": "equivalency_chk",
  3533. "levelname": "INFO",
  3534. "levelno": 20,
  3535. "lineno": 142,
  3536. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 10, 'test_helpers.py', 1] and Type is <type 'list'>).",
  3537. "module": "test",
  3538. "moduleLogger": [
  3539. {
  3540. "args": [
  3541. "Logged information",
  3542. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  3543. "<type 'list'>"
  3544. ],
  3545. "asctime": "2020-01-02 14:18:00,611",
  3546. "created": 1577971080.611636,
  3547. "exc_info": null,
  3548. "exc_text": null,
  3549. "filename": "test.py",
  3550. "funcName": "__report_result__",
  3551. "levelname": "DEBUG",
  3552. "levelno": 10,
  3553. "lineno": 22,
  3554. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<type 'list'>)",
  3555. "module": "test",
  3556. "msecs": 611.6359233856201,
  3557. "msg": "Result (%s): %s (%s)",
  3558. "name": "__unittest__",
  3559. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3560. "process": 4683,
  3561. "processName": "MainProcess",
  3562. "relativeCreated": 27.042865753173828,
  3563. "thread": 140022745950016,
  3564. "threadName": "MainThread"
  3565. },
  3566. {
  3567. "args": [
  3568. "Logged information",
  3569. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  3570. "<type 'list'>"
  3571. ],
  3572. "asctime": "2020-01-02 14:18:00,611",
  3573. "created": 1577971080.61168,
  3574. "exc_info": null,
  3575. "exc_text": null,
  3576. "filename": "test.py",
  3577. "funcName": "__report_expectation_equivalency__",
  3578. "levelname": "DEBUG",
  3579. "levelno": 10,
  3580. "lineno": 26,
  3581. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<type 'list'>)",
  3582. "module": "test",
  3583. "msecs": 611.6800308227539,
  3584. "msg": "Expectation (%s): result = %s (%s)",
  3585. "name": "__unittest__",
  3586. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3587. "process": 4683,
  3588. "processName": "MainProcess",
  3589. "relativeCreated": 27.086973190307617,
  3590. "thread": 140022745950016,
  3591. "threadName": "MainThread"
  3592. }
  3593. ],
  3594. "msecs": 611.7360591888428,
  3595. "msg": "Logged information is correct (Content %s and Type is %s).",
  3596. "name": "__tLogger__",
  3597. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3598. "process": 4683,
  3599. "processName": "MainProcess",
  3600. "relativeCreated": 27.143001556396484,
  3601. "thread": 140022745950016,
  3602. "threadName": "MainThread",
  3603. "time_consumption": 5.602836608886719e-05
  3604. },
  3605. {
  3606. "args": [
  3607. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 2]",
  3608. "<type 'list'>"
  3609. ],
  3610. "asctime": "2020-01-02 14:18:00,611",
  3611. "created": 1577971080.611908,
  3612. "exc_info": null,
  3613. "exc_text": null,
  3614. "filename": "test.py",
  3615. "funcName": "equivalency_chk",
  3616. "levelname": "INFO",
  3617. "levelno": 20,
  3618. "lineno": 142,
  3619. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 2] and Type is <type 'list'>).",
  3620. "module": "test",
  3621. "moduleLogger": [
  3622. {
  3623. "args": [
  3624. "Logged information",
  3625. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  3626. "<type 'list'>"
  3627. ],
  3628. "asctime": "2020-01-02 14:18:00,611",
  3629. "created": 1577971080.611813,
  3630. "exc_info": null,
  3631. "exc_text": null,
  3632. "filename": "test.py",
  3633. "funcName": "__report_result__",
  3634. "levelname": "DEBUG",
  3635. "levelno": 10,
  3636. "lineno": 22,
  3637. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<type 'list'>)",
  3638. "module": "test",
  3639. "msecs": 611.8130683898926,
  3640. "msg": "Result (%s): %s (%s)",
  3641. "name": "__unittest__",
  3642. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3643. "process": 4683,
  3644. "processName": "MainProcess",
  3645. "relativeCreated": 27.22001075744629,
  3646. "thread": 140022745950016,
  3647. "threadName": "MainThread"
  3648. },
  3649. {
  3650. "args": [
  3651. "Logged information",
  3652. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  3653. "<type 'list'>"
  3654. ],
  3655. "asctime": "2020-01-02 14:18:00,611",
  3656. "created": 1577971080.611855,
  3657. "exc_info": null,
  3658. "exc_text": null,
  3659. "filename": "test.py",
  3660. "funcName": "__report_expectation_equivalency__",
  3661. "levelname": "DEBUG",
  3662. "levelno": 10,
  3663. "lineno": 26,
  3664. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<type 'list'>)",
  3665. "module": "test",
  3666. "msecs": 611.8550300598145,
  3667. "msg": "Expectation (%s): result = %s (%s)",
  3668. "name": "__unittest__",
  3669. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3670. "process": 4683,
  3671. "processName": "MainProcess",
  3672. "relativeCreated": 27.261972427368164,
  3673. "thread": 140022745950016,
  3674. "threadName": "MainThread"
  3675. }
  3676. ],
  3677. "msecs": 611.907958984375,
  3678. "msg": "Logged information is correct (Content %s and Type is %s).",
  3679. "name": "__tLogger__",
  3680. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3681. "process": 4683,
  3682. "processName": "MainProcess",
  3683. "relativeCreated": 27.31490135192871,
  3684. "thread": 140022745950016,
  3685. "threadName": "MainThread",
  3686. "time_consumption": 5.2928924560546875e-05
  3687. },
  3688. {
  3689. "args": [
  3690. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  3691. "<type 'list'>"
  3692. ],
  3693. "asctime": "2020-01-02 14:18:00,612",
  3694. "created": 1577971080.612075,
  3695. "exc_info": null,
  3696. "exc_text": null,
  3697. "filename": "test.py",
  3698. "funcName": "equivalency_chk",
  3699. "levelname": "INFO",
  3700. "levelno": 20,
  3701. "lineno": 142,
  3702. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <type 'list'>).",
  3703. "module": "test",
  3704. "moduleLogger": [
  3705. {
  3706. "args": [
  3707. "Logged information",
  3708. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  3709. "<type 'list'>"
  3710. ],
  3711. "asctime": "2020-01-02 14:18:00,611",
  3712. "created": 1577971080.611978,
  3713. "exc_info": null,
  3714. "exc_text": null,
  3715. "filename": "test.py",
  3716. "funcName": "__report_result__",
  3717. "levelname": "DEBUG",
  3718. "levelno": 10,
  3719. "lineno": 22,
  3720. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<type 'list'>)",
  3721. "module": "test",
  3722. "msecs": 611.9780540466309,
  3723. "msg": "Result (%s): %s (%s)",
  3724. "name": "__unittest__",
  3725. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3726. "process": 4683,
  3727. "processName": "MainProcess",
  3728. "relativeCreated": 27.38499641418457,
  3729. "thread": 140022745950016,
  3730. "threadName": "MainThread"
  3731. },
  3732. {
  3733. "args": [
  3734. "Logged information",
  3735. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  3736. "<type 'list'>"
  3737. ],
  3738. "asctime": "2020-01-02 14:18:00,612",
  3739. "created": 1577971080.612022,
  3740. "exc_info": null,
  3741. "exc_text": null,
  3742. "filename": "test.py",
  3743. "funcName": "__report_expectation_equivalency__",
  3744. "levelname": "DEBUG",
  3745. "levelno": 10,
  3746. "lineno": 26,
  3747. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<type 'list'>)",
  3748. "module": "test",
  3749. "msecs": 612.0219230651855,
  3750. "msg": "Expectation (%s): result = %s (%s)",
  3751. "name": "__unittest__",
  3752. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3753. "process": 4683,
  3754. "processName": "MainProcess",
  3755. "relativeCreated": 27.428865432739258,
  3756. "thread": 140022745950016,
  3757. "threadName": "MainThread"
  3758. }
  3759. ],
  3760. "msecs": 612.0750904083252,
  3761. "msg": "Logged information is correct (Content %s and Type is %s).",
  3762. "name": "__tLogger__",
  3763. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3764. "process": 4683,
  3765. "processName": "MainProcess",
  3766. "relativeCreated": 27.482032775878906,
  3767. "thread": 140022745950016,
  3768. "threadName": "MainThread",
  3769. "time_consumption": 5.316734313964844e-05
  3770. },
  3771. {
  3772. "args": [
  3773. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  3774. "<type 'list'>"
  3775. ],
  3776. "asctime": "2020-01-02 14:18:00,612",
  3777. "created": 1577971080.612239,
  3778. "exc_info": null,
  3779. "exc_text": null,
  3780. "filename": "test.py",
  3781. "funcName": "equivalency_chk",
  3782. "levelname": "INFO",
  3783. "levelno": 20,
  3784. "lineno": 142,
  3785. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <type 'list'>).",
  3786. "module": "test",
  3787. "moduleLogger": [
  3788. {
  3789. "args": [
  3790. "Logged information",
  3791. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  3792. "<type 'list'>"
  3793. ],
  3794. "asctime": "2020-01-02 14:18:00,612",
  3795. "created": 1577971080.612147,
  3796. "exc_info": null,
  3797. "exc_text": null,
  3798. "filename": "test.py",
  3799. "funcName": "__report_result__",
  3800. "levelname": "DEBUG",
  3801. "levelno": 10,
  3802. "lineno": 22,
  3803. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<type 'list'>)",
  3804. "module": "test",
  3805. "msecs": 612.1470928192139,
  3806. "msg": "Result (%s): %s (%s)",
  3807. "name": "__unittest__",
  3808. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3809. "process": 4683,
  3810. "processName": "MainProcess",
  3811. "relativeCreated": 27.554035186767578,
  3812. "thread": 140022745950016,
  3813. "threadName": "MainThread"
  3814. },
  3815. {
  3816. "args": [
  3817. "Logged information",
  3818. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  3819. "<type 'list'>"
  3820. ],
  3821. "asctime": "2020-01-02 14:18:00,612",
  3822. "created": 1577971080.612189,
  3823. "exc_info": null,
  3824. "exc_text": null,
  3825. "filename": "test.py",
  3826. "funcName": "__report_expectation_equivalency__",
  3827. "levelname": "DEBUG",
  3828. "levelno": 10,
  3829. "lineno": 26,
  3830. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<type 'list'>)",
  3831. "module": "test",
  3832. "msecs": 612.1890544891357,
  3833. "msg": "Expectation (%s): result = %s (%s)",
  3834. "name": "__unittest__",
  3835. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3836. "process": 4683,
  3837. "processName": "MainProcess",
  3838. "relativeCreated": 27.595996856689453,
  3839. "thread": 140022745950016,
  3840. "threadName": "MainThread"
  3841. }
  3842. ],
  3843. "msecs": 612.238883972168,
  3844. "msg": "Logged information is correct (Content %s and Type is %s).",
  3845. "name": "__tLogger__",
  3846. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3847. "process": 4683,
  3848. "processName": "MainProcess",
  3849. "relativeCreated": 27.64582633972168,
  3850. "thread": 140022745950016,
  3851. "threadName": "MainThread",
  3852. "time_consumption": 4.982948303222656e-05
  3853. },
  3854. {
  3855. "args": [
  3856. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  3857. "<type 'list'>"
  3858. ],
  3859. "asctime": "2020-01-02 14:18:00,612",
  3860. "created": 1577971080.612399,
  3861. "exc_info": null,
  3862. "exc_text": null,
  3863. "filename": "test.py",
  3864. "funcName": "equivalency_chk",
  3865. "levelname": "INFO",
  3866. "levelno": 20,
  3867. "lineno": 142,
  3868. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <type 'list'>).",
  3869. "module": "test",
  3870. "moduleLogger": [
  3871. {
  3872. "args": [
  3873. "Logged information",
  3874. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  3875. "<type 'list'>"
  3876. ],
  3877. "asctime": "2020-01-02 14:18:00,612",
  3878. "created": 1577971080.612307,
  3879. "exc_info": null,
  3880. "exc_text": null,
  3881. "filename": "test.py",
  3882. "funcName": "__report_result__",
  3883. "levelname": "DEBUG",
  3884. "levelno": 10,
  3885. "lineno": 22,
  3886. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<type 'list'>)",
  3887. "module": "test",
  3888. "msecs": 612.307071685791,
  3889. "msg": "Result (%s): %s (%s)",
  3890. "name": "__unittest__",
  3891. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3892. "process": 4683,
  3893. "processName": "MainProcess",
  3894. "relativeCreated": 27.714014053344727,
  3895. "thread": 140022745950016,
  3896. "threadName": "MainThread"
  3897. },
  3898. {
  3899. "args": [
  3900. "Logged information",
  3901. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  3902. "<type 'list'>"
  3903. ],
  3904. "asctime": "2020-01-02 14:18:00,612",
  3905. "created": 1577971080.612349,
  3906. "exc_info": null,
  3907. "exc_text": null,
  3908. "filename": "test.py",
  3909. "funcName": "__report_expectation_equivalency__",
  3910. "levelname": "DEBUG",
  3911. "levelno": 10,
  3912. "lineno": 26,
  3913. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<type 'list'>)",
  3914. "module": "test",
  3915. "msecs": 612.3490333557129,
  3916. "msg": "Expectation (%s): result = %s (%s)",
  3917. "name": "__unittest__",
  3918. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3919. "process": 4683,
  3920. "processName": "MainProcess",
  3921. "relativeCreated": 27.7559757232666,
  3922. "thread": 140022745950016,
  3923. "threadName": "MainThread"
  3924. }
  3925. ],
  3926. "msecs": 612.3991012573242,
  3927. "msg": "Logged information is correct (Content %s and Type is %s).",
  3928. "name": "__tLogger__",
  3929. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3930. "process": 4683,
  3931. "processName": "MainProcess",
  3932. "relativeCreated": 27.80604362487793,
  3933. "thread": 140022745950016,
  3934. "threadName": "MainThread",
  3935. "time_consumption": 5.0067901611328125e-05
  3936. },
  3937. {
  3938. "args": [
  3939. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  3940. "<type 'list'>"
  3941. ],
  3942. "asctime": "2020-01-02 14:18:00,612",
  3943. "created": 1577971080.612559,
  3944. "exc_info": null,
  3945. "exc_text": null,
  3946. "filename": "test.py",
  3947. "funcName": "equivalency_chk",
  3948. "levelname": "INFO",
  3949. "levelno": 20,
  3950. "lineno": 142,
  3951. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <type 'list'>).",
  3952. "module": "test",
  3953. "moduleLogger": [
  3954. {
  3955. "args": [
  3956. "Logged information",
  3957. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  3958. "<type 'list'>"
  3959. ],
  3960. "asctime": "2020-01-02 14:18:00,612",
  3961. "created": 1577971080.612467,
  3962. "exc_info": null,
  3963. "exc_text": null,
  3964. "filename": "test.py",
  3965. "funcName": "__report_result__",
  3966. "levelname": "DEBUG",
  3967. "levelno": 10,
  3968. "lineno": 22,
  3969. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<type 'list'>)",
  3970. "module": "test",
  3971. "msecs": 612.4670505523682,
  3972. "msg": "Result (%s): %s (%s)",
  3973. "name": "__unittest__",
  3974. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  3975. "process": 4683,
  3976. "processName": "MainProcess",
  3977. "relativeCreated": 27.873992919921875,
  3978. "thread": 140022745950016,
  3979. "threadName": "MainThread"
  3980. },
  3981. {
  3982. "args": [
  3983. "Logged information",
  3984. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  3985. "<type 'list'>"
  3986. ],
  3987. "asctime": "2020-01-02 14:18:00,612",
  3988. "created": 1577971080.612509,
  3989. "exc_info": null,
  3990. "exc_text": null,
  3991. "filename": "test.py",
  3992. "funcName": "__report_expectation_equivalency__",
  3993. "levelname": "DEBUG",
  3994. "levelno": 10,
  3995. "lineno": 26,
  3996. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<type 'list'>)",
  3997. "module": "test",
  3998. "msecs": 612.50901222229,
  3999. "msg": "Expectation (%s): result = %s (%s)",
  4000. "name": "__unittest__",
  4001. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4002. "process": 4683,
  4003. "processName": "MainProcess",
  4004. "relativeCreated": 27.91595458984375,
  4005. "thread": 140022745950016,
  4006. "threadName": "MainThread"
  4007. }
  4008. ],
  4009. "msecs": 612.5590801239014,
  4010. "msg": "Logged information is correct (Content %s and Type is %s).",
  4011. "name": "__tLogger__",
  4012. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4013. "process": 4683,
  4014. "processName": "MainProcess",
  4015. "relativeCreated": 27.966022491455078,
  4016. "thread": 140022745950016,
  4017. "threadName": "MainThread",
  4018. "time_consumption": 5.0067901611328125e-05
  4019. },
  4020. {
  4021. "args": [
  4022. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  4023. "<type 'list'>"
  4024. ],
  4025. "asctime": "2020-01-02 14:18:00,612",
  4026. "created": 1577971080.612718,
  4027. "exc_info": null,
  4028. "exc_text": null,
  4029. "filename": "test.py",
  4030. "funcName": "equivalency_chk",
  4031. "levelname": "INFO",
  4032. "levelno": 20,
  4033. "lineno": 142,
  4034. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <type 'list'>).",
  4035. "module": "test",
  4036. "moduleLogger": [
  4037. {
  4038. "args": [
  4039. "Logged information",
  4040. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  4041. "<type 'list'>"
  4042. ],
  4043. "asctime": "2020-01-02 14:18:00,612",
  4044. "created": 1577971080.612627,
  4045. "exc_info": null,
  4046. "exc_text": null,
  4047. "filename": "test.py",
  4048. "funcName": "__report_result__",
  4049. "levelname": "DEBUG",
  4050. "levelno": 10,
  4051. "lineno": 22,
  4052. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<type 'list'>)",
  4053. "module": "test",
  4054. "msecs": 612.6270294189453,
  4055. "msg": "Result (%s): %s (%s)",
  4056. "name": "__unittest__",
  4057. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4058. "process": 4683,
  4059. "processName": "MainProcess",
  4060. "relativeCreated": 28.033971786499023,
  4061. "thread": 140022745950016,
  4062. "threadName": "MainThread"
  4063. },
  4064. {
  4065. "args": [
  4066. "Logged information",
  4067. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  4068. "<type 'list'>"
  4069. ],
  4070. "asctime": "2020-01-02 14:18:00,612",
  4071. "created": 1577971080.612669,
  4072. "exc_info": null,
  4073. "exc_text": null,
  4074. "filename": "test.py",
  4075. "funcName": "__report_expectation_equivalency__",
  4076. "levelname": "DEBUG",
  4077. "levelno": 10,
  4078. "lineno": 26,
  4079. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<type 'list'>)",
  4080. "module": "test",
  4081. "msecs": 612.6689910888672,
  4082. "msg": "Expectation (%s): result = %s (%s)",
  4083. "name": "__unittest__",
  4084. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4085. "process": 4683,
  4086. "processName": "MainProcess",
  4087. "relativeCreated": 28.0759334564209,
  4088. "thread": 140022745950016,
  4089. "threadName": "MainThread"
  4090. }
  4091. ],
  4092. "msecs": 612.7181053161621,
  4093. "msg": "Logged information is correct (Content %s and Type is %s).",
  4094. "name": "__tLogger__",
  4095. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4096. "process": 4683,
  4097. "processName": "MainProcess",
  4098. "relativeCreated": 28.12504768371582,
  4099. "thread": 140022745950016,
  4100. "threadName": "MainThread",
  4101. "time_consumption": 4.9114227294921875e-05
  4102. }
  4103. ],
  4104. "thread": 140022745950016,
  4105. "threadName": "MainThread",
  4106. "time_consumption": 0.002148151397705078,
  4107. "time_finished": "2020-01-02 14:18:00,612",
  4108. "time_start": "2020-01-02 14:18:00,610"
  4109. },
  4110. "_fW5s8CzQEeqYsdFh5Cd6ng": {
  4111. "args": null,
  4112. "asctime": "2020-01-02 14:18:00,619",
  4113. "created": 1577971080.619049,
  4114. "exc_info": null,
  4115. "exc_text": null,
  4116. "filename": "__init__.py",
  4117. "funcName": "testrun",
  4118. "levelname": "INFO",
  4119. "levelno": 20,
  4120. "lineno": 23,
  4121. "message": "_fW5s8CzQEeqYsdFh5Cd6ng",
  4122. "module": "__init__",
  4123. "moduleLogger": [],
  4124. "msecs": 619.049072265625,
  4125. "msg": "_fW5s8CzQEeqYsdFh5Cd6ng",
  4126. "name": "__tLogger__",
  4127. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  4128. "process": 4683,
  4129. "processName": "MainProcess",
  4130. "relativeCreated": 34.45601463317871,
  4131. "testcaseLogger": [
  4132. {
  4133. "args": [],
  4134. "asctime": "2020-01-02 14:18:00,620",
  4135. "created": 1577971080.620383,
  4136. "exc_info": null,
  4137. "exc_text": null,
  4138. "filename": "test_helpers.py",
  4139. "funcName": "__init__",
  4140. "levelname": "DEBUG",
  4141. "levelno": 10,
  4142. "lineno": 38,
  4143. "message": "Running logger test sequence.",
  4144. "module": "test_helpers",
  4145. "moduleLogger": [
  4146. {
  4147. "args": [],
  4148. "asctime": "2020-01-02 14:18:00,619",
  4149. "created": 1577971080.619121,
  4150. "exc_info": null,
  4151. "exc_text": null,
  4152. "filename": "test_helpers.py",
  4153. "funcName": "__init__",
  4154. "levelname": "DEBUG",
  4155. "levelno": 10,
  4156. "lineno": 22,
  4157. "message": "Configuring collecting logger",
  4158. "module": "test_helpers",
  4159. "msecs": 619.1210746765137,
  4160. "msg": "Configuring collecting logger",
  4161. "name": "__unittest__",
  4162. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4163. "process": 4683,
  4164. "processName": "MainProcess",
  4165. "relativeCreated": 34.52801704406738,
  4166. "thread": 140022745950016,
  4167. "threadName": "MainThread"
  4168. },
  4169. {
  4170. "args": [
  4171. 1,
  4172. "DEBUG",
  4173. "collectingRingHandler"
  4174. ],
  4175. "asctime": "2020-01-02 14:18:00,619",
  4176. "created": 1577971080.61919,
  4177. "exc_info": null,
  4178. "exc_text": null,
  4179. "filename": "test_helpers.py",
  4180. "funcName": "__init__",
  4181. "levelname": "DEBUG",
  4182. "levelno": 10,
  4183. "lineno": 36,
  4184. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  4185. "module": "test_helpers",
  4186. "msecs": 619.189977645874,
  4187. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4188. "name": "__unittest__",
  4189. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4190. "process": 4683,
  4191. "processName": "MainProcess",
  4192. "relativeCreated": 34.596920013427734,
  4193. "thread": 140022745950016,
  4194. "threadName": "MainThread"
  4195. },
  4196. {
  4197. "args": [
  4198. 2,
  4199. "INFO",
  4200. "collectingRingHandler"
  4201. ],
  4202. "asctime": "2020-01-02 14:18:00,619",
  4203. "created": 1577971080.619353,
  4204. "exc_info": null,
  4205. "exc_text": null,
  4206. "filename": "test_helpers.py",
  4207. "funcName": "__init__",
  4208. "levelname": "DEBUG",
  4209. "levelno": 10,
  4210. "lineno": 36,
  4211. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  4212. "module": "test_helpers",
  4213. "msecs": 619.3530559539795,
  4214. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4215. "name": "__unittest__",
  4216. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4217. "process": 4683,
  4218. "processName": "MainProcess",
  4219. "relativeCreated": 34.7599983215332,
  4220. "thread": 140022745950016,
  4221. "threadName": "MainThread"
  4222. },
  4223. {
  4224. "args": [
  4225. 3,
  4226. "WARNING",
  4227. "collectingRingHandler"
  4228. ],
  4229. "asctime": "2020-01-02 14:18:00,619",
  4230. "created": 1577971080.61954,
  4231. "exc_info": null,
  4232. "exc_text": null,
  4233. "filename": "test_helpers.py",
  4234. "funcName": "__init__",
  4235. "levelname": "DEBUG",
  4236. "levelno": 10,
  4237. "lineno": 36,
  4238. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  4239. "module": "test_helpers",
  4240. "msecs": 619.5399761199951,
  4241. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4242. "name": "__unittest__",
  4243. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4244. "process": 4683,
  4245. "processName": "MainProcess",
  4246. "relativeCreated": 34.94691848754883,
  4247. "thread": 140022745950016,
  4248. "threadName": "MainThread"
  4249. },
  4250. {
  4251. "args": [
  4252. 4,
  4253. "ERROR",
  4254. "collectingRingHandler"
  4255. ],
  4256. "asctime": "2020-01-02 14:18:00,619",
  4257. "created": 1577971080.619692,
  4258. "exc_info": null,
  4259. "exc_text": null,
  4260. "filename": "test_helpers.py",
  4261. "funcName": "__init__",
  4262. "levelname": "DEBUG",
  4263. "levelno": 10,
  4264. "lineno": 36,
  4265. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  4266. "module": "test_helpers",
  4267. "msecs": 619.6920871734619,
  4268. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4269. "name": "__unittest__",
  4270. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4271. "process": 4683,
  4272. "processName": "MainProcess",
  4273. "relativeCreated": 35.099029541015625,
  4274. "thread": 140022745950016,
  4275. "threadName": "MainThread"
  4276. },
  4277. {
  4278. "args": [
  4279. 5,
  4280. "CRITICAL",
  4281. "collectingRingHandler"
  4282. ],
  4283. "asctime": "2020-01-02 14:18:00,619",
  4284. "created": 1577971080.61984,
  4285. "exc_info": null,
  4286. "exc_text": null,
  4287. "filename": "test_helpers.py",
  4288. "funcName": "__init__",
  4289. "levelname": "DEBUG",
  4290. "levelno": 10,
  4291. "lineno": 36,
  4292. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  4293. "module": "test_helpers",
  4294. "msecs": 619.8399066925049,
  4295. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4296. "name": "__unittest__",
  4297. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4298. "process": 4683,
  4299. "processName": "MainProcess",
  4300. "relativeCreated": 35.246849060058594,
  4301. "thread": 140022745950016,
  4302. "threadName": "MainThread"
  4303. },
  4304. {
  4305. "args": [
  4306. 6,
  4307. "INFO",
  4308. "collectingRingHandler"
  4309. ],
  4310. "asctime": "2020-01-02 14:18:00,619",
  4311. "created": 1577971080.619987,
  4312. "exc_info": null,
  4313. "exc_text": null,
  4314. "filename": "test_helpers.py",
  4315. "funcName": "__init__",
  4316. "levelname": "DEBUG",
  4317. "levelno": 10,
  4318. "lineno": 36,
  4319. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  4320. "module": "test_helpers",
  4321. "msecs": 619.9870109558105,
  4322. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4323. "name": "__unittest__",
  4324. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4325. "process": 4683,
  4326. "processName": "MainProcess",
  4327. "relativeCreated": 35.39395332336426,
  4328. "thread": 140022745950016,
  4329. "threadName": "MainThread"
  4330. },
  4331. {
  4332. "args": [
  4333. 7,
  4334. "ERROR",
  4335. "collectingRingHandler"
  4336. ],
  4337. "asctime": "2020-01-02 14:18:00,620",
  4338. "created": 1577971080.620132,
  4339. "exc_info": null,
  4340. "exc_text": null,
  4341. "filename": "test_helpers.py",
  4342. "funcName": "__init__",
  4343. "levelname": "DEBUG",
  4344. "levelno": 10,
  4345. "lineno": 36,
  4346. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  4347. "module": "test_helpers",
  4348. "msecs": 620.1319694519043,
  4349. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4350. "name": "__unittest__",
  4351. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4352. "process": 4683,
  4353. "processName": "MainProcess",
  4354. "relativeCreated": 35.53891181945801,
  4355. "thread": 140022745950016,
  4356. "threadName": "MainThread"
  4357. }
  4358. ],
  4359. "msecs": 620.3830242156982,
  4360. "msg": "Running logger test sequence.",
  4361. "name": "__tLogger__",
  4362. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4363. "process": 4683,
  4364. "processName": "MainProcess",
  4365. "relativeCreated": 35.78996658325195,
  4366. "thread": 140022745950016,
  4367. "threadName": "MainThread",
  4368. "time_consumption": 0.0002510547637939453
  4369. },
  4370. {
  4371. "args": [
  4372. "5",
  4373. "<type 'int'>"
  4374. ],
  4375. "asctime": "2020-01-02 14:18:00,620",
  4376. "created": 1577971080.620544,
  4377. "exc_info": null,
  4378. "exc_text": null,
  4379. "filename": "test.py",
  4380. "funcName": "equivalency_chk",
  4381. "levelname": "INFO",
  4382. "levelno": 20,
  4383. "lineno": 142,
  4384. "message": "Length of collectingRingHandler is correct (Content 5 and Type is <type 'int'>).",
  4385. "module": "test",
  4386. "moduleLogger": [
  4387. {
  4388. "args": [
  4389. "Length of collectingRingHandler",
  4390. "5",
  4391. "<type 'int'>"
  4392. ],
  4393. "asctime": "2020-01-02 14:18:00,620",
  4394. "created": 1577971080.620461,
  4395. "exc_info": null,
  4396. "exc_text": null,
  4397. "filename": "test.py",
  4398. "funcName": "__report_result__",
  4399. "levelname": "DEBUG",
  4400. "levelno": 10,
  4401. "lineno": 22,
  4402. "message": "Result (Length of collectingRingHandler): 5 (<type 'int'>)",
  4403. "module": "test",
  4404. "msecs": 620.4609870910645,
  4405. "msg": "Result (%s): %s (%s)",
  4406. "name": "__unittest__",
  4407. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4408. "process": 4683,
  4409. "processName": "MainProcess",
  4410. "relativeCreated": 35.867929458618164,
  4411. "thread": 140022745950016,
  4412. "threadName": "MainThread"
  4413. },
  4414. {
  4415. "args": [
  4416. "Length of collectingRingHandler",
  4417. "5",
  4418. "<type 'int'>"
  4419. ],
  4420. "asctime": "2020-01-02 14:18:00,620",
  4421. "created": 1577971080.620502,
  4422. "exc_info": null,
  4423. "exc_text": null,
  4424. "filename": "test.py",
  4425. "funcName": "__report_expectation_equivalency__",
  4426. "levelname": "DEBUG",
  4427. "levelno": 10,
  4428. "lineno": 26,
  4429. "message": "Expectation (Length of collectingRingHandler): result = 5 (<type 'int'>)",
  4430. "module": "test",
  4431. "msecs": 620.5019950866699,
  4432. "msg": "Expectation (%s): result = %s (%s)",
  4433. "name": "__unittest__",
  4434. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4435. "process": 4683,
  4436. "processName": "MainProcess",
  4437. "relativeCreated": 35.90893745422363,
  4438. "thread": 140022745950016,
  4439. "threadName": "MainThread"
  4440. }
  4441. ],
  4442. "msecs": 620.5439567565918,
  4443. "msg": "Length of collectingRingHandler is correct (Content %s and Type is %s).",
  4444. "name": "__tLogger__",
  4445. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4446. "process": 4683,
  4447. "processName": "MainProcess",
  4448. "relativeCreated": 35.95089912414551,
  4449. "thread": 140022745950016,
  4450. "threadName": "MainThread",
  4451. "time_consumption": 4.1961669921875e-05
  4452. },
  4453. {
  4454. "args": [
  4455. "3",
  4456. "<type 'int'>"
  4457. ],
  4458. "asctime": "2020-01-02 14:18:00,620",
  4459. "created": 1577971080.620707,
  4460. "exc_info": null,
  4461. "exc_text": null,
  4462. "filename": "test.py",
  4463. "funcName": "equivalency_chk",
  4464. "levelname": "INFO",
  4465. "levelno": 20,
  4466. "lineno": 142,
  4467. "message": "Length of collectingRingHandler after reinitialisation is correct (Content 3 and Type is <type 'int'>).",
  4468. "module": "test",
  4469. "moduleLogger": [
  4470. {
  4471. "args": [
  4472. "Length of collectingRingHandler after reinitialisation",
  4473. "3",
  4474. "<type 'int'>"
  4475. ],
  4476. "asctime": "2020-01-02 14:18:00,620",
  4477. "created": 1577971080.620628,
  4478. "exc_info": null,
  4479. "exc_text": null,
  4480. "filename": "test.py",
  4481. "funcName": "__report_result__",
  4482. "levelname": "DEBUG",
  4483. "levelno": 10,
  4484. "lineno": 22,
  4485. "message": "Result (Length of collectingRingHandler after reinitialisation): 3 (<type 'int'>)",
  4486. "module": "test",
  4487. "msecs": 620.6281185150146,
  4488. "msg": "Result (%s): %s (%s)",
  4489. "name": "__unittest__",
  4490. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4491. "process": 4683,
  4492. "processName": "MainProcess",
  4493. "relativeCreated": 36.03506088256836,
  4494. "thread": 140022745950016,
  4495. "threadName": "MainThread"
  4496. },
  4497. {
  4498. "args": [
  4499. "Length of collectingRingHandler after reinitialisation",
  4500. "3",
  4501. "<type 'int'>"
  4502. ],
  4503. "asctime": "2020-01-02 14:18:00,620",
  4504. "created": 1577971080.620668,
  4505. "exc_info": null,
  4506. "exc_text": null,
  4507. "filename": "test.py",
  4508. "funcName": "__report_expectation_equivalency__",
  4509. "levelname": "DEBUG",
  4510. "levelno": 10,
  4511. "lineno": 26,
  4512. "message": "Expectation (Length of collectingRingHandler after reinitialisation): result = 3 (<type 'int'>)",
  4513. "module": "test",
  4514. "msecs": 620.6679344177246,
  4515. "msg": "Expectation (%s): result = %s (%s)",
  4516. "name": "__unittest__",
  4517. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4518. "process": 4683,
  4519. "processName": "MainProcess",
  4520. "relativeCreated": 36.07487678527832,
  4521. "thread": 140022745950016,
  4522. "threadName": "MainThread"
  4523. }
  4524. ],
  4525. "msecs": 620.7070350646973,
  4526. "msg": "Length of collectingRingHandler after reinitialisation is correct (Content %s and Type is %s).",
  4527. "name": "__tLogger__",
  4528. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4529. "process": 4683,
  4530. "processName": "MainProcess",
  4531. "relativeCreated": 36.11397743225098,
  4532. "thread": 140022745950016,
  4533. "threadName": "MainThread",
  4534. "time_consumption": 3.910064697265625e-05
  4535. },
  4536. {
  4537. "args": [
  4538. "'Log entry number 5 with level CRITICAL.'",
  4539. "<type 'str'>"
  4540. ],
  4541. "asctime": "2020-01-02 14:18:00,620",
  4542. "created": 1577971080.620868,
  4543. "exc_info": null,
  4544. "exc_text": null,
  4545. "filename": "test.py",
  4546. "funcName": "equivalency_chk",
  4547. "levelname": "INFO",
  4548. "levelno": 20,
  4549. "lineno": 142,
  4550. "message": "Log text is correct (Content 'Log entry number 5 with level CRITICAL.' and Type is <type 'str'>).",
  4551. "module": "test",
  4552. "moduleLogger": [
  4553. {
  4554. "args": [
  4555. "Log text",
  4556. "'Log entry number 5 with level CRITICAL.'",
  4557. "<type 'str'>"
  4558. ],
  4559. "asctime": "2020-01-02 14:18:00,620",
  4560. "created": 1577971080.62079,
  4561. "exc_info": null,
  4562. "exc_text": null,
  4563. "filename": "test.py",
  4564. "funcName": "__report_result__",
  4565. "levelname": "DEBUG",
  4566. "levelno": 10,
  4567. "lineno": 22,
  4568. "message": "Result (Log text): 'Log entry number 5 with level CRITICAL.' (<type 'str'>)",
  4569. "module": "test",
  4570. "msecs": 620.7900047302246,
  4571. "msg": "Result (%s): %s (%s)",
  4572. "name": "__unittest__",
  4573. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4574. "process": 4683,
  4575. "processName": "MainProcess",
  4576. "relativeCreated": 36.19694709777832,
  4577. "thread": 140022745950016,
  4578. "threadName": "MainThread"
  4579. },
  4580. {
  4581. "args": [
  4582. "Log text",
  4583. "'Log entry number 5 with level CRITICAL.'",
  4584. "<type 'str'>"
  4585. ],
  4586. "asctime": "2020-01-02 14:18:00,620",
  4587. "created": 1577971080.62083,
  4588. "exc_info": null,
  4589. "exc_text": null,
  4590. "filename": "test.py",
  4591. "funcName": "__report_expectation_equivalency__",
  4592. "levelname": "DEBUG",
  4593. "levelno": 10,
  4594. "lineno": 26,
  4595. "message": "Expectation (Log text): result = 'Log entry number 5 with level CRITICAL.' (<type 'str'>)",
  4596. "module": "test",
  4597. "msecs": 620.8300590515137,
  4598. "msg": "Expectation (%s): result = %s (%s)",
  4599. "name": "__unittest__",
  4600. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4601. "process": 4683,
  4602. "processName": "MainProcess",
  4603. "relativeCreated": 36.23700141906738,
  4604. "thread": 140022745950016,
  4605. "threadName": "MainThread"
  4606. }
  4607. ],
  4608. "msecs": 620.8679676055908,
  4609. "msg": "Log text is correct (Content %s and Type is %s).",
  4610. "name": "__tLogger__",
  4611. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4612. "process": 4683,
  4613. "processName": "MainProcess",
  4614. "relativeCreated": 36.27490997314453,
  4615. "thread": 140022745950016,
  4616. "threadName": "MainThread",
  4617. "time_consumption": 3.790855407714844e-05
  4618. },
  4619. {
  4620. "args": [
  4621. "'Log entry number 6 with level INFO.'",
  4622. "<type 'str'>"
  4623. ],
  4624. "asctime": "2020-01-02 14:18:00,621",
  4625. "created": 1577971080.621005,
  4626. "exc_info": null,
  4627. "exc_text": null,
  4628. "filename": "test.py",
  4629. "funcName": "equivalency_chk",
  4630. "levelname": "INFO",
  4631. "levelno": 20,
  4632. "lineno": 142,
  4633. "message": "Log text is correct (Content 'Log entry number 6 with level INFO.' and Type is <type 'str'>).",
  4634. "module": "test",
  4635. "moduleLogger": [
  4636. {
  4637. "args": [
  4638. "Log text",
  4639. "'Log entry number 6 with level INFO.'",
  4640. "<type 'str'>"
  4641. ],
  4642. "asctime": "2020-01-02 14:18:00,620",
  4643. "created": 1577971080.620931,
  4644. "exc_info": null,
  4645. "exc_text": null,
  4646. "filename": "test.py",
  4647. "funcName": "__report_result__",
  4648. "levelname": "DEBUG",
  4649. "levelno": 10,
  4650. "lineno": 22,
  4651. "message": "Result (Log text): 'Log entry number 6 with level INFO.' (<type 'str'>)",
  4652. "module": "test",
  4653. "msecs": 620.9309101104736,
  4654. "msg": "Result (%s): %s (%s)",
  4655. "name": "__unittest__",
  4656. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4657. "process": 4683,
  4658. "processName": "MainProcess",
  4659. "relativeCreated": 36.337852478027344,
  4660. "thread": 140022745950016,
  4661. "threadName": "MainThread"
  4662. },
  4663. {
  4664. "args": [
  4665. "Log text",
  4666. "'Log entry number 6 with level INFO.'",
  4667. "<type 'str'>"
  4668. ],
  4669. "asctime": "2020-01-02 14:18:00,620",
  4670. "created": 1577971080.620968,
  4671. "exc_info": null,
  4672. "exc_text": null,
  4673. "filename": "test.py",
  4674. "funcName": "__report_expectation_equivalency__",
  4675. "levelname": "DEBUG",
  4676. "levelno": 10,
  4677. "lineno": 26,
  4678. "message": "Expectation (Log text): result = 'Log entry number 6 with level INFO.' (<type 'str'>)",
  4679. "module": "test",
  4680. "msecs": 620.9681034088135,
  4681. "msg": "Expectation (%s): result = %s (%s)",
  4682. "name": "__unittest__",
  4683. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4684. "process": 4683,
  4685. "processName": "MainProcess",
  4686. "relativeCreated": 36.37504577636719,
  4687. "thread": 140022745950016,
  4688. "threadName": "MainThread"
  4689. }
  4690. ],
  4691. "msecs": 621.0050582885742,
  4692. "msg": "Log text is correct (Content %s and Type is %s).",
  4693. "name": "__tLogger__",
  4694. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4695. "process": 4683,
  4696. "processName": "MainProcess",
  4697. "relativeCreated": 36.41200065612793,
  4698. "thread": 140022745950016,
  4699. "threadName": "MainThread",
  4700. "time_consumption": 3.695487976074219e-05
  4701. },
  4702. {
  4703. "args": [
  4704. "'Log entry number 7 with level ERROR.'",
  4705. "<type 'str'>"
  4706. ],
  4707. "asctime": "2020-01-02 14:18:00,621",
  4708. "created": 1577971080.621144,
  4709. "exc_info": null,
  4710. "exc_text": null,
  4711. "filename": "test.py",
  4712. "funcName": "equivalency_chk",
  4713. "levelname": "INFO",
  4714. "levelno": 20,
  4715. "lineno": 142,
  4716. "message": "Log text is correct (Content 'Log entry number 7 with level ERROR.' and Type is <type 'str'>).",
  4717. "module": "test",
  4718. "moduleLogger": [
  4719. {
  4720. "args": [
  4721. "Log text",
  4722. "'Log entry number 7 with level ERROR.'",
  4723. "<type 'str'>"
  4724. ],
  4725. "asctime": "2020-01-02 14:18:00,621",
  4726. "created": 1577971080.62107,
  4727. "exc_info": null,
  4728. "exc_text": null,
  4729. "filename": "test.py",
  4730. "funcName": "__report_result__",
  4731. "levelname": "DEBUG",
  4732. "levelno": 10,
  4733. "lineno": 22,
  4734. "message": "Result (Log text): 'Log entry number 7 with level ERROR.' (<type 'str'>)",
  4735. "module": "test",
  4736. "msecs": 621.0699081420898,
  4737. "msg": "Result (%s): %s (%s)",
  4738. "name": "__unittest__",
  4739. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4740. "process": 4683,
  4741. "processName": "MainProcess",
  4742. "relativeCreated": 36.476850509643555,
  4743. "thread": 140022745950016,
  4744. "threadName": "MainThread"
  4745. },
  4746. {
  4747. "args": [
  4748. "Log text",
  4749. "'Log entry number 7 with level ERROR.'",
  4750. "<type 'str'>"
  4751. ],
  4752. "asctime": "2020-01-02 14:18:00,621",
  4753. "created": 1577971080.621107,
  4754. "exc_info": null,
  4755. "exc_text": null,
  4756. "filename": "test.py",
  4757. "funcName": "__report_expectation_equivalency__",
  4758. "levelname": "DEBUG",
  4759. "levelno": 10,
  4760. "lineno": 26,
  4761. "message": "Expectation (Log text): result = 'Log entry number 7 with level ERROR.' (<type 'str'>)",
  4762. "module": "test",
  4763. "msecs": 621.1071014404297,
  4764. "msg": "Expectation (%s): result = %s (%s)",
  4765. "name": "__unittest__",
  4766. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4767. "process": 4683,
  4768. "processName": "MainProcess",
  4769. "relativeCreated": 36.5140438079834,
  4770. "thread": 140022745950016,
  4771. "threadName": "MainThread"
  4772. }
  4773. ],
  4774. "msecs": 621.1440563201904,
  4775. "msg": "Log text is correct (Content %s and Type is %s).",
  4776. "name": "__tLogger__",
  4777. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  4778. "process": 4683,
  4779. "processName": "MainProcess",
  4780. "relativeCreated": 36.55099868774414,
  4781. "thread": 140022745950016,
  4782. "threadName": "MainThread",
  4783. "time_consumption": 3.695487976074219e-05
  4784. }
  4785. ],
  4786. "thread": 140022745950016,
  4787. "threadName": "MainThread",
  4788. "time_consumption": 0.0020949840545654297,
  4789. "time_finished": "2020-01-02 14:18:00,621",
  4790. "time_start": "2020-01-02 14:18:00,619"
  4791. }
  4792. },
  4793. "testrun_id": "p2",
  4794. "time_consumption": 0.010025262832641602,
  4795. "uid_list_sorted": [
  4796. "_XzMFcHYZEem_kd-7nxt1sg",
  4797. "_ErFPoCvVEeqssZLMJF_fcg",
  4798. "_PVhZECvVEeqssZLMJF_fcg",
  4799. "_QBmb8CvVEeqssZLMJF_fcg",
  4800. "_fW5s8CzQEeqYsdFh5Cd6ng"
  4801. ]
  4802. },
  4803. {
  4804. "heading_dict": {
  4805. "_5ZAecCvUEeqssZLMJF_fcg": "collectingHandler",
  4806. "_ErFPoCvVEeqssZLMJF_fcg": "String representation (collectingHandler)",
  4807. "_MR7eOHYYEem_kd-7nxt1sg": "General Information",
  4808. "_NXT_8CvVEeqssZLMJF_fcg": "collectingRingHandler",
  4809. "_PVhZECvVEeqssZLMJF_fcg": "Store log records (collectingRingHandler)",
  4810. "_QBmb8CvVEeqssZLMJF_fcg": "String representation (collectingRingHandler)",
  4811. "_XzMFcHYZEem_kd-7nxt1sg": "Store log records (collectingHandler)",
  4812. "_fW5s8CzQEeqYsdFh5Cd6ng": "Number of stored logs in the RingHandler"
  4813. },
  4814. "interpreter": "python 3.6.9 (final)",
  4815. "name": "Default Testsession name",
  4816. "number_of_failed_tests": 0,
  4817. "number_of_possibly_failed_tests": 0,
  4818. "number_of_successfull_tests": 5,
  4819. "number_of_tests": 5,
  4820. "testcase_execution_level": 90,
  4821. "testcase_names": {
  4822. "0": "Single Test",
  4823. "10": "Smoke Test (Minumum subset)",
  4824. "50": "Short Test (Subset)",
  4825. "90": "Full Test (all defined tests)"
  4826. },
  4827. "testcases": {
  4828. "_ErFPoCvVEeqssZLMJF_fcg": {
  4829. "args": null,
  4830. "asctime": "2020-01-02 14:18:01,255",
  4831. "created": 1577971081.2559237,
  4832. "exc_info": null,
  4833. "exc_text": null,
  4834. "filename": "__init__.py",
  4835. "funcName": "testrun",
  4836. "levelname": "INFO",
  4837. "levelno": 20,
  4838. "lineno": 20,
  4839. "message": "_ErFPoCvVEeqssZLMJF_fcg",
  4840. "module": "__init__",
  4841. "moduleLogger": [],
  4842. "msecs": 255.92374801635742,
  4843. "msg": "_ErFPoCvVEeqssZLMJF_fcg",
  4844. "name": "__tLogger__",
  4845. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  4846. "process": 4685,
  4847. "processName": "MainProcess",
  4848. "relativeCreated": 137.39705085754395,
  4849. "stack_info": null,
  4850. "testcaseLogger": [
  4851. {
  4852. "args": [],
  4853. "asctime": "2020-01-02 14:18:01,256",
  4854. "created": 1577971081.256837,
  4855. "exc_info": null,
  4856. "exc_text": null,
  4857. "filename": "test_helpers.py",
  4858. "funcName": "__init__",
  4859. "levelname": "DEBUG",
  4860. "levelno": 10,
  4861. "lineno": 38,
  4862. "message": "Running logger test sequence.",
  4863. "module": "test_helpers",
  4864. "moduleLogger": [
  4865. {
  4866. "args": [],
  4867. "asctime": "2020-01-02 14:18:01,255",
  4868. "created": 1577971081.2559872,
  4869. "exc_info": null,
  4870. "exc_text": null,
  4871. "filename": "test_helpers.py",
  4872. "funcName": "__init__",
  4873. "levelname": "DEBUG",
  4874. "levelno": 10,
  4875. "lineno": 22,
  4876. "message": "Configuring collecting logger",
  4877. "module": "test_helpers",
  4878. "msecs": 255.98716735839844,
  4879. "msg": "Configuring collecting logger",
  4880. "name": "__unittest__",
  4881. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4882. "process": 4685,
  4883. "processName": "MainProcess",
  4884. "relativeCreated": 137.46047019958496,
  4885. "stack_info": null,
  4886. "thread": 140299185112896,
  4887. "threadName": "MainThread"
  4888. },
  4889. {
  4890. "args": [
  4891. 1,
  4892. "DEBUG",
  4893. "collectingHandler"
  4894. ],
  4895. "asctime": "2020-01-02 14:18:01,256",
  4896. "created": 1577971081.256045,
  4897. "exc_info": null,
  4898. "exc_text": null,
  4899. "filename": "test_helpers.py",
  4900. "funcName": "__init__",
  4901. "levelname": "DEBUG",
  4902. "levelno": 10,
  4903. "lineno": 36,
  4904. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  4905. "module": "test_helpers",
  4906. "msecs": 256.0451030731201,
  4907. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4908. "name": "__unittest__",
  4909. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4910. "process": 4685,
  4911. "processName": "MainProcess",
  4912. "relativeCreated": 137.51840591430664,
  4913. "stack_info": null,
  4914. "thread": 140299185112896,
  4915. "threadName": "MainThread"
  4916. },
  4917. {
  4918. "args": [
  4919. 2,
  4920. "INFO",
  4921. "collectingHandler"
  4922. ],
  4923. "asctime": "2020-01-02 14:18:01,256",
  4924. "created": 1577971081.2561429,
  4925. "exc_info": null,
  4926. "exc_text": null,
  4927. "filename": "test_helpers.py",
  4928. "funcName": "__init__",
  4929. "levelname": "DEBUG",
  4930. "levelno": 10,
  4931. "lineno": 36,
  4932. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  4933. "module": "test_helpers",
  4934. "msecs": 256.14285469055176,
  4935. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4936. "name": "__unittest__",
  4937. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4938. "process": 4685,
  4939. "processName": "MainProcess",
  4940. "relativeCreated": 137.61615753173828,
  4941. "stack_info": null,
  4942. "thread": 140299185112896,
  4943. "threadName": "MainThread"
  4944. },
  4945. {
  4946. "args": [
  4947. 3,
  4948. "WARNING",
  4949. "collectingHandler"
  4950. ],
  4951. "asctime": "2020-01-02 14:18:01,256",
  4952. "created": 1577971081.2562268,
  4953. "exc_info": null,
  4954. "exc_text": null,
  4955. "filename": "test_helpers.py",
  4956. "funcName": "__init__",
  4957. "levelname": "DEBUG",
  4958. "levelno": 10,
  4959. "lineno": 36,
  4960. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.",
  4961. "module": "test_helpers",
  4962. "msecs": 256.2267780303955,
  4963. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4964. "name": "__unittest__",
  4965. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4966. "process": 4685,
  4967. "processName": "MainProcess",
  4968. "relativeCreated": 137.70008087158203,
  4969. "stack_info": null,
  4970. "thread": 140299185112896,
  4971. "threadName": "MainThread"
  4972. },
  4973. {
  4974. "args": [
  4975. 4,
  4976. "ERROR",
  4977. "collectingHandler"
  4978. ],
  4979. "asctime": "2020-01-02 14:18:01,256",
  4980. "created": 1577971081.2563074,
  4981. "exc_info": null,
  4982. "exc_text": null,
  4983. "filename": "test_helpers.py",
  4984. "funcName": "__init__",
  4985. "levelname": "DEBUG",
  4986. "levelno": 10,
  4987. "lineno": 36,
  4988. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  4989. "module": "test_helpers",
  4990. "msecs": 256.30736351013184,
  4991. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4992. "name": "__unittest__",
  4993. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  4994. "process": 4685,
  4995. "processName": "MainProcess",
  4996. "relativeCreated": 137.78066635131836,
  4997. "stack_info": null,
  4998. "thread": 140299185112896,
  4999. "threadName": "MainThread"
  5000. },
  5001. {
  5002. "args": [
  5003. 5,
  5004. "CRITICAL",
  5005. "collectingHandler"
  5006. ],
  5007. "asctime": "2020-01-02 14:18:01,256",
  5008. "created": 1577971081.256395,
  5009. "exc_info": null,
  5010. "exc_text": null,
  5011. "filename": "test_helpers.py",
  5012. "funcName": "__init__",
  5013. "levelname": "DEBUG",
  5014. "levelno": 10,
  5015. "lineno": 36,
  5016. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  5017. "module": "test_helpers",
  5018. "msecs": 256.3951015472412,
  5019. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5020. "name": "__unittest__",
  5021. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5022. "process": 4685,
  5023. "processName": "MainProcess",
  5024. "relativeCreated": 137.86840438842773,
  5025. "stack_info": null,
  5026. "thread": 140299185112896,
  5027. "threadName": "MainThread"
  5028. },
  5029. {
  5030. "args": [
  5031. 6,
  5032. "INFO",
  5033. "collectingHandler"
  5034. ],
  5035. "asctime": "2020-01-02 14:18:01,256",
  5036. "created": 1577971081.256534,
  5037. "exc_info": null,
  5038. "exc_text": null,
  5039. "filename": "test_helpers.py",
  5040. "funcName": "__init__",
  5041. "levelname": "DEBUG",
  5042. "levelno": 10,
  5043. "lineno": 36,
  5044. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  5045. "module": "test_helpers",
  5046. "msecs": 256.5340995788574,
  5047. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5048. "name": "__unittest__",
  5049. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5050. "process": 4685,
  5051. "processName": "MainProcess",
  5052. "relativeCreated": 138.00740242004395,
  5053. "stack_info": null,
  5054. "thread": 140299185112896,
  5055. "threadName": "MainThread"
  5056. },
  5057. {
  5058. "args": [
  5059. 7,
  5060. "ERROR",
  5061. "collectingHandler"
  5062. ],
  5063. "asctime": "2020-01-02 14:18:01,256",
  5064. "created": 1577971081.2566772,
  5065. "exc_info": null,
  5066. "exc_text": null,
  5067. "filename": "test_helpers.py",
  5068. "funcName": "__init__",
  5069. "levelname": "DEBUG",
  5070. "levelno": 10,
  5071. "lineno": 36,
  5072. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.",
  5073. "module": "test_helpers",
  5074. "msecs": 256.67715072631836,
  5075. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5076. "name": "__unittest__",
  5077. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5078. "process": 4685,
  5079. "processName": "MainProcess",
  5080. "relativeCreated": 138.15045356750488,
  5081. "stack_info": null,
  5082. "thread": 140299185112896,
  5083. "threadName": "MainThread"
  5084. }
  5085. ],
  5086. "msecs": 256.8368911743164,
  5087. "msg": "Running logger test sequence.",
  5088. "name": "__tLogger__",
  5089. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5090. "process": 4685,
  5091. "processName": "MainProcess",
  5092. "relativeCreated": 138.31019401550293,
  5093. "stack_info": null,
  5094. "thread": 140299185112896,
  5095. "threadName": "MainThread",
  5096. "time_consumption": 0.00015974044799804688
  5097. },
  5098. {
  5099. "args": [],
  5100. "asctime": "2020-01-02 14:18:01,264",
  5101. "created": 1577971081.2648635,
  5102. "exc_info": null,
  5103. "exc_text": null,
  5104. "filename": "test.py",
  5105. "funcName": "report",
  5106. "levelname": "INFO",
  5107. "levelno": 20,
  5108. "lineno": 166,
  5109. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  5110. "module": "test",
  5111. "moduleLogger": [
  5112. {
  5113. "args": [
  5114. "Indexlist of log entries in stringrepresentation",
  5115. "[ 35, 107, 178, 252, 324, 399, 470 ]",
  5116. "<class 'list'>"
  5117. ],
  5118. "asctime": "2020-01-02 14:18:01,257",
  5119. "created": 1577971081.257061,
  5120. "exc_info": null,
  5121. "exc_text": null,
  5122. "filename": "test.py",
  5123. "funcName": "__report_result__",
  5124. "levelname": "DEBUG",
  5125. "levelno": 10,
  5126. "lineno": 22,
  5127. "message": "Result (Indexlist of log entries in stringrepresentation): [ 35, 107, 178, 252, 324, 399, 470 ] (<class 'list'>)",
  5128. "module": "test",
  5129. "msecs": 257.0610046386719,
  5130. "msg": "Result (%s): %s (%s)",
  5131. "name": "__unittest__",
  5132. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5133. "process": 4685,
  5134. "processName": "MainProcess",
  5135. "relativeCreated": 138.5343074798584,
  5136. "stack_info": null,
  5137. "thread": 140299185112896,
  5138. "threadName": "MainThread"
  5139. },
  5140. {
  5141. "args": [
  5142. "Indexlist of log entries in stringrepresentation",
  5143. "[ 35, 107, 178, 252, 324, 399, 470 ]",
  5144. "<class 'list'>"
  5145. ],
  5146. "asctime": "2020-01-02 14:18:01,257",
  5147. "created": 1577971081.2571511,
  5148. "exc_info": null,
  5149. "exc_text": null,
  5150. "filename": "test.py",
  5151. "funcName": "__report_expectation_equivalency__",
  5152. "levelname": "DEBUG",
  5153. "levelno": 10,
  5154. "lineno": 26,
  5155. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 35, 107, 178, 252, 324, 399, 470 ] (<class 'list'>)",
  5156. "module": "test",
  5157. "msecs": 257.15112686157227,
  5158. "msg": "Expectation (%s): result = %s (%s)",
  5159. "name": "__unittest__",
  5160. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5161. "process": 4685,
  5162. "processName": "MainProcess",
  5163. "relativeCreated": 138.6244297027588,
  5164. "stack_info": null,
  5165. "thread": 140299185112896,
  5166. "threadName": "MainThread"
  5167. },
  5168. {
  5169. "args": [
  5170. "Submitted value number 1",
  5171. "35",
  5172. "<class 'int'>"
  5173. ],
  5174. "asctime": "2020-01-02 14:18:01,257",
  5175. "created": 1577971081.257665,
  5176. "exc_info": null,
  5177. "exc_text": null,
  5178. "filename": "test.py",
  5179. "funcName": "__report_result__",
  5180. "levelname": "DEBUG",
  5181. "levelno": 10,
  5182. "lineno": 22,
  5183. "message": "Result (Submitted value number 1): 35 (<class 'int'>)",
  5184. "module": "test",
  5185. "msecs": 257.66491889953613,
  5186. "msg": "Result (%s): %s (%s)",
  5187. "name": "__unittest__",
  5188. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5189. "process": 4685,
  5190. "processName": "MainProcess",
  5191. "relativeCreated": 139.13822174072266,
  5192. "stack_info": null,
  5193. "thread": 140299185112896,
  5194. "threadName": "MainThread"
  5195. },
  5196. {
  5197. "args": [
  5198. "Submitted value number 1",
  5199. "35",
  5200. "<class 'int'>"
  5201. ],
  5202. "asctime": "2020-01-02 14:18:01,258",
  5203. "created": 1577971081.258119,
  5204. "exc_info": null,
  5205. "exc_text": null,
  5206. "filename": "test.py",
  5207. "funcName": "__report_expectation_equivalency__",
  5208. "levelname": "DEBUG",
  5209. "levelno": 10,
  5210. "lineno": 26,
  5211. "message": "Expectation (Submitted value number 1): result = 35 (<class 'int'>)",
  5212. "module": "test",
  5213. "msecs": 258.1191062927246,
  5214. "msg": "Expectation (%s): result = %s (%s)",
  5215. "name": "__unittest__",
  5216. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5217. "process": 4685,
  5218. "processName": "MainProcess",
  5219. "relativeCreated": 139.59240913391113,
  5220. "stack_info": null,
  5221. "thread": 140299185112896,
  5222. "threadName": "MainThread"
  5223. },
  5224. {
  5225. "args": [
  5226. "35",
  5227. "<class 'int'>"
  5228. ],
  5229. "asctime": "2020-01-02 14:18:01,258",
  5230. "created": 1577971081.2587452,
  5231. "exc_info": null,
  5232. "exc_text": null,
  5233. "filename": "test.py",
  5234. "funcName": "equivalency_chk",
  5235. "levelname": "INFO",
  5236. "levelno": 20,
  5237. "lineno": 142,
  5238. "message": "Submitted value number 1 is correct (Content 35 and Type is <class 'int'>).",
  5239. "module": "test",
  5240. "msecs": 258.7451934814453,
  5241. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  5242. "name": "__unittest__",
  5243. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5244. "process": 4685,
  5245. "processName": "MainProcess",
  5246. "relativeCreated": 140.21849632263184,
  5247. "stack_info": null,
  5248. "thread": 140299185112896,
  5249. "threadName": "MainThread"
  5250. },
  5251. {
  5252. "args": [
  5253. "Submitted value number 2",
  5254. "107",
  5255. "<class 'int'>"
  5256. ],
  5257. "asctime": "2020-01-02 14:18:01,259",
  5258. "created": 1577971081.2591724,
  5259. "exc_info": null,
  5260. "exc_text": null,
  5261. "filename": "test.py",
  5262. "funcName": "__report_result__",
  5263. "levelname": "DEBUG",
  5264. "levelno": 10,
  5265. "lineno": 22,
  5266. "message": "Result (Submitted value number 2): 107 (<class 'int'>)",
  5267. "module": "test",
  5268. "msecs": 259.1724395751953,
  5269. "msg": "Result (%s): %s (%s)",
  5270. "name": "__unittest__",
  5271. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5272. "process": 4685,
  5273. "processName": "MainProcess",
  5274. "relativeCreated": 140.64574241638184,
  5275. "stack_info": null,
  5276. "thread": 140299185112896,
  5277. "threadName": "MainThread"
  5278. },
  5279. {
  5280. "args": [
  5281. "Submitted value number 2",
  5282. "107",
  5283. "<class 'int'>"
  5284. ],
  5285. "asctime": "2020-01-02 14:18:01,259",
  5286. "created": 1577971081.2593842,
  5287. "exc_info": null,
  5288. "exc_text": null,
  5289. "filename": "test.py",
  5290. "funcName": "__report_expectation_equivalency__",
  5291. "levelname": "DEBUG",
  5292. "levelno": 10,
  5293. "lineno": 26,
  5294. "message": "Expectation (Submitted value number 2): result = 107 (<class 'int'>)",
  5295. "module": "test",
  5296. "msecs": 259.3841552734375,
  5297. "msg": "Expectation (%s): result = %s (%s)",
  5298. "name": "__unittest__",
  5299. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5300. "process": 4685,
  5301. "processName": "MainProcess",
  5302. "relativeCreated": 140.85745811462402,
  5303. "stack_info": null,
  5304. "thread": 140299185112896,
  5305. "threadName": "MainThread"
  5306. },
  5307. {
  5308. "args": [
  5309. "107",
  5310. "<class 'int'>"
  5311. ],
  5312. "asctime": "2020-01-02 14:18:01,259",
  5313. "created": 1577971081.2596693,
  5314. "exc_info": null,
  5315. "exc_text": null,
  5316. "filename": "test.py",
  5317. "funcName": "equivalency_chk",
  5318. "levelname": "INFO",
  5319. "levelno": 20,
  5320. "lineno": 142,
  5321. "message": "Submitted value number 2 is correct (Content 107 and Type is <class 'int'>).",
  5322. "module": "test",
  5323. "msecs": 259.66930389404297,
  5324. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  5325. "name": "__unittest__",
  5326. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5327. "process": 4685,
  5328. "processName": "MainProcess",
  5329. "relativeCreated": 141.1426067352295,
  5330. "stack_info": null,
  5331. "thread": 140299185112896,
  5332. "threadName": "MainThread"
  5333. },
  5334. {
  5335. "args": [
  5336. "Submitted value number 3",
  5337. "178",
  5338. "<class 'int'>"
  5339. ],
  5340. "asctime": "2020-01-02 14:18:01,260",
  5341. "created": 1577971081.2600193,
  5342. "exc_info": null,
  5343. "exc_text": null,
  5344. "filename": "test.py",
  5345. "funcName": "__report_result__",
  5346. "levelname": "DEBUG",
  5347. "levelno": 10,
  5348. "lineno": 22,
  5349. "message": "Result (Submitted value number 3): 178 (<class 'int'>)",
  5350. "module": "test",
  5351. "msecs": 260.01930236816406,
  5352. "msg": "Result (%s): %s (%s)",
  5353. "name": "__unittest__",
  5354. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5355. "process": 4685,
  5356. "processName": "MainProcess",
  5357. "relativeCreated": 141.4926052093506,
  5358. "stack_info": null,
  5359. "thread": 140299185112896,
  5360. "threadName": "MainThread"
  5361. },
  5362. {
  5363. "args": [
  5364. "Submitted value number 3",
  5365. "178",
  5366. "<class 'int'>"
  5367. ],
  5368. "asctime": "2020-01-02 14:18:01,260",
  5369. "created": 1577971081.2604039,
  5370. "exc_info": null,
  5371. "exc_text": null,
  5372. "filename": "test.py",
  5373. "funcName": "__report_expectation_equivalency__",
  5374. "levelname": "DEBUG",
  5375. "levelno": 10,
  5376. "lineno": 26,
  5377. "message": "Expectation (Submitted value number 3): result = 178 (<class 'int'>)",
  5378. "module": "test",
  5379. "msecs": 260.4038715362549,
  5380. "msg": "Expectation (%s): result = %s (%s)",
  5381. "name": "__unittest__",
  5382. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5383. "process": 4685,
  5384. "processName": "MainProcess",
  5385. "relativeCreated": 141.8771743774414,
  5386. "stack_info": null,
  5387. "thread": 140299185112896,
  5388. "threadName": "MainThread"
  5389. },
  5390. {
  5391. "args": [
  5392. "178",
  5393. "<class 'int'>"
  5394. ],
  5395. "asctime": "2020-01-02 14:18:01,260",
  5396. "created": 1577971081.2607822,
  5397. "exc_info": null,
  5398. "exc_text": null,
  5399. "filename": "test.py",
  5400. "funcName": "equivalency_chk",
  5401. "levelname": "INFO",
  5402. "levelno": 20,
  5403. "lineno": 142,
  5404. "message": "Submitted value number 3 is correct (Content 178 and Type is <class 'int'>).",
  5405. "module": "test",
  5406. "msecs": 260.78224182128906,
  5407. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  5408. "name": "__unittest__",
  5409. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5410. "process": 4685,
  5411. "processName": "MainProcess",
  5412. "relativeCreated": 142.2555446624756,
  5413. "stack_info": null,
  5414. "thread": 140299185112896,
  5415. "threadName": "MainThread"
  5416. },
  5417. {
  5418. "args": [
  5419. "Submitted value number 4",
  5420. "252",
  5421. "<class 'int'>"
  5422. ],
  5423. "asctime": "2020-01-02 14:18:01,261",
  5424. "created": 1577971081.261113,
  5425. "exc_info": null,
  5426. "exc_text": null,
  5427. "filename": "test.py",
  5428. "funcName": "__report_result__",
  5429. "levelname": "DEBUG",
  5430. "levelno": 10,
  5431. "lineno": 22,
  5432. "message": "Result (Submitted value number 4): 252 (<class 'int'>)",
  5433. "module": "test",
  5434. "msecs": 261.11292839050293,
  5435. "msg": "Result (%s): %s (%s)",
  5436. "name": "__unittest__",
  5437. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5438. "process": 4685,
  5439. "processName": "MainProcess",
  5440. "relativeCreated": 142.58623123168945,
  5441. "stack_info": null,
  5442. "thread": 140299185112896,
  5443. "threadName": "MainThread"
  5444. },
  5445. {
  5446. "args": [
  5447. "Submitted value number 4",
  5448. "252",
  5449. "<class 'int'>"
  5450. ],
  5451. "asctime": "2020-01-02 14:18:01,261",
  5452. "created": 1577971081.2614267,
  5453. "exc_info": null,
  5454. "exc_text": null,
  5455. "filename": "test.py",
  5456. "funcName": "__report_expectation_equivalency__",
  5457. "levelname": "DEBUG",
  5458. "levelno": 10,
  5459. "lineno": 26,
  5460. "message": "Expectation (Submitted value number 4): result = 252 (<class 'int'>)",
  5461. "module": "test",
  5462. "msecs": 261.4266872406006,
  5463. "msg": "Expectation (%s): result = %s (%s)",
  5464. "name": "__unittest__",
  5465. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5466. "process": 4685,
  5467. "processName": "MainProcess",
  5468. "relativeCreated": 142.8999900817871,
  5469. "stack_info": null,
  5470. "thread": 140299185112896,
  5471. "threadName": "MainThread"
  5472. },
  5473. {
  5474. "args": [
  5475. "252",
  5476. "<class 'int'>"
  5477. ],
  5478. "asctime": "2020-01-02 14:18:01,261",
  5479. "created": 1577971081.2617064,
  5480. "exc_info": null,
  5481. "exc_text": null,
  5482. "filename": "test.py",
  5483. "funcName": "equivalency_chk",
  5484. "levelname": "INFO",
  5485. "levelno": 20,
  5486. "lineno": 142,
  5487. "message": "Submitted value number 4 is correct (Content 252 and Type is <class 'int'>).",
  5488. "module": "test",
  5489. "msecs": 261.7063522338867,
  5490. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  5491. "name": "__unittest__",
  5492. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5493. "process": 4685,
  5494. "processName": "MainProcess",
  5495. "relativeCreated": 143.17965507507324,
  5496. "stack_info": null,
  5497. "thread": 140299185112896,
  5498. "threadName": "MainThread"
  5499. },
  5500. {
  5501. "args": [
  5502. "Submitted value number 5",
  5503. "324",
  5504. "<class 'int'>"
  5505. ],
  5506. "asctime": "2020-01-02 14:18:01,262",
  5507. "created": 1577971081.2620733,
  5508. "exc_info": null,
  5509. "exc_text": null,
  5510. "filename": "test.py",
  5511. "funcName": "__report_result__",
  5512. "levelname": "DEBUG",
  5513. "levelno": 10,
  5514. "lineno": 22,
  5515. "message": "Result (Submitted value number 5): 324 (<class 'int'>)",
  5516. "module": "test",
  5517. "msecs": 262.073278427124,
  5518. "msg": "Result (%s): %s (%s)",
  5519. "name": "__unittest__",
  5520. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5521. "process": 4685,
  5522. "processName": "MainProcess",
  5523. "relativeCreated": 143.54658126831055,
  5524. "stack_info": null,
  5525. "thread": 140299185112896,
  5526. "threadName": "MainThread"
  5527. },
  5528. {
  5529. "args": [
  5530. "Submitted value number 5",
  5531. "324",
  5532. "<class 'int'>"
  5533. ],
  5534. "asctime": "2020-01-02 14:18:01,262",
  5535. "created": 1577971081.2624362,
  5536. "exc_info": null,
  5537. "exc_text": null,
  5538. "filename": "test.py",
  5539. "funcName": "__report_expectation_equivalency__",
  5540. "levelname": "DEBUG",
  5541. "levelno": 10,
  5542. "lineno": 26,
  5543. "message": "Expectation (Submitted value number 5): result = 324 (<class 'int'>)",
  5544. "module": "test",
  5545. "msecs": 262.4361515045166,
  5546. "msg": "Expectation (%s): result = %s (%s)",
  5547. "name": "__unittest__",
  5548. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5549. "process": 4685,
  5550. "processName": "MainProcess",
  5551. "relativeCreated": 143.90945434570312,
  5552. "stack_info": null,
  5553. "thread": 140299185112896,
  5554. "threadName": "MainThread"
  5555. },
  5556. {
  5557. "args": [
  5558. "324",
  5559. "<class 'int'>"
  5560. ],
  5561. "asctime": "2020-01-02 14:18:01,262",
  5562. "created": 1577971081.2627933,
  5563. "exc_info": null,
  5564. "exc_text": null,
  5565. "filename": "test.py",
  5566. "funcName": "equivalency_chk",
  5567. "levelname": "INFO",
  5568. "levelno": 20,
  5569. "lineno": 142,
  5570. "message": "Submitted value number 5 is correct (Content 324 and Type is <class 'int'>).",
  5571. "module": "test",
  5572. "msecs": 262.79330253601074,
  5573. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  5574. "name": "__unittest__",
  5575. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5576. "process": 4685,
  5577. "processName": "MainProcess",
  5578. "relativeCreated": 144.26660537719727,
  5579. "stack_info": null,
  5580. "thread": 140299185112896,
  5581. "threadName": "MainThread"
  5582. },
  5583. {
  5584. "args": [
  5585. "Submitted value number 6",
  5586. "399",
  5587. "<class 'int'>"
  5588. ],
  5589. "asctime": "2020-01-02 14:18:01,263",
  5590. "created": 1577971081.263106,
  5591. "exc_info": null,
  5592. "exc_text": null,
  5593. "filename": "test.py",
  5594. "funcName": "__report_result__",
  5595. "levelname": "DEBUG",
  5596. "levelno": 10,
  5597. "lineno": 22,
  5598. "message": "Result (Submitted value number 6): 399 (<class 'int'>)",
  5599. "module": "test",
  5600. "msecs": 263.106107711792,
  5601. "msg": "Result (%s): %s (%s)",
  5602. "name": "__unittest__",
  5603. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5604. "process": 4685,
  5605. "processName": "MainProcess",
  5606. "relativeCreated": 144.57941055297852,
  5607. "stack_info": null,
  5608. "thread": 140299185112896,
  5609. "threadName": "MainThread"
  5610. },
  5611. {
  5612. "args": [
  5613. "Submitted value number 6",
  5614. "399",
  5615. "<class 'int'>"
  5616. ],
  5617. "asctime": "2020-01-02 14:18:01,263",
  5618. "created": 1577971081.26341,
  5619. "exc_info": null,
  5620. "exc_text": null,
  5621. "filename": "test.py",
  5622. "funcName": "__report_expectation_equivalency__",
  5623. "levelname": "DEBUG",
  5624. "levelno": 10,
  5625. "lineno": 26,
  5626. "message": "Expectation (Submitted value number 6): result = 399 (<class 'int'>)",
  5627. "module": "test",
  5628. "msecs": 263.4100914001465,
  5629. "msg": "Expectation (%s): result = %s (%s)",
  5630. "name": "__unittest__",
  5631. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5632. "process": 4685,
  5633. "processName": "MainProcess",
  5634. "relativeCreated": 144.883394241333,
  5635. "stack_info": null,
  5636. "thread": 140299185112896,
  5637. "threadName": "MainThread"
  5638. },
  5639. {
  5640. "args": [
  5641. "399",
  5642. "<class 'int'>"
  5643. ],
  5644. "asctime": "2020-01-02 14:18:01,263",
  5645. "created": 1577971081.2637007,
  5646. "exc_info": null,
  5647. "exc_text": null,
  5648. "filename": "test.py",
  5649. "funcName": "equivalency_chk",
  5650. "levelname": "INFO",
  5651. "levelno": 20,
  5652. "lineno": 142,
  5653. "message": "Submitted value number 6 is correct (Content 399 and Type is <class 'int'>).",
  5654. "module": "test",
  5655. "msecs": 263.7007236480713,
  5656. "msg": "Submitted value number 6 is correct (Content %s and Type is %s).",
  5657. "name": "__unittest__",
  5658. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5659. "process": 4685,
  5660. "processName": "MainProcess",
  5661. "relativeCreated": 145.1740264892578,
  5662. "stack_info": null,
  5663. "thread": 140299185112896,
  5664. "threadName": "MainThread"
  5665. },
  5666. {
  5667. "args": [
  5668. "Submitted value number 7",
  5669. "470",
  5670. "<class 'int'>"
  5671. ],
  5672. "asctime": "2020-01-02 14:18:01,264",
  5673. "created": 1577971081.2640064,
  5674. "exc_info": null,
  5675. "exc_text": null,
  5676. "filename": "test.py",
  5677. "funcName": "__report_result__",
  5678. "levelname": "DEBUG",
  5679. "levelno": 10,
  5680. "lineno": 22,
  5681. "message": "Result (Submitted value number 7): 470 (<class 'int'>)",
  5682. "module": "test",
  5683. "msecs": 264.0063762664795,
  5684. "msg": "Result (%s): %s (%s)",
  5685. "name": "__unittest__",
  5686. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5687. "process": 4685,
  5688. "processName": "MainProcess",
  5689. "relativeCreated": 145.47967910766602,
  5690. "stack_info": null,
  5691. "thread": 140299185112896,
  5692. "threadName": "MainThread"
  5693. },
  5694. {
  5695. "args": [
  5696. "Submitted value number 7",
  5697. "470",
  5698. "<class 'int'>"
  5699. ],
  5700. "asctime": "2020-01-02 14:18:01,264",
  5701. "created": 1577971081.2643118,
  5702. "exc_info": null,
  5703. "exc_text": null,
  5704. "filename": "test.py",
  5705. "funcName": "__report_expectation_equivalency__",
  5706. "levelname": "DEBUG",
  5707. "levelno": 10,
  5708. "lineno": 26,
  5709. "message": "Expectation (Submitted value number 7): result = 470 (<class 'int'>)",
  5710. "module": "test",
  5711. "msecs": 264.3117904663086,
  5712. "msg": "Expectation (%s): result = %s (%s)",
  5713. "name": "__unittest__",
  5714. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5715. "process": 4685,
  5716. "processName": "MainProcess",
  5717. "relativeCreated": 145.78509330749512,
  5718. "stack_info": null,
  5719. "thread": 140299185112896,
  5720. "threadName": "MainThread"
  5721. },
  5722. {
  5723. "args": [
  5724. "470",
  5725. "<class 'int'>"
  5726. ],
  5727. "asctime": "2020-01-02 14:18:01,264",
  5728. "created": 1577971081.264566,
  5729. "exc_info": null,
  5730. "exc_text": null,
  5731. "filename": "test.py",
  5732. "funcName": "equivalency_chk",
  5733. "levelname": "INFO",
  5734. "levelno": 20,
  5735. "lineno": 142,
  5736. "message": "Submitted value number 7 is correct (Content 470 and Type is <class 'int'>).",
  5737. "module": "test",
  5738. "msecs": 264.56594467163086,
  5739. "msg": "Submitted value number 7 is correct (Content %s and Type is %s).",
  5740. "name": "__unittest__",
  5741. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5742. "process": 4685,
  5743. "processName": "MainProcess",
  5744. "relativeCreated": 146.03924751281738,
  5745. "stack_info": null,
  5746. "thread": 140299185112896,
  5747. "threadName": "MainThread"
  5748. }
  5749. ],
  5750. "msecs": 264.8634910583496,
  5751. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  5752. "name": "__tLogger__",
  5753. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  5754. "process": 4685,
  5755. "processName": "MainProcess",
  5756. "relativeCreated": 146.33679389953613,
  5757. "stack_info": null,
  5758. "thread": 140299185112896,
  5759. "threadName": "MainThread",
  5760. "time_consumption": 0.00029754638671875
  5761. }
  5762. ],
  5763. "thread": 140299185112896,
  5764. "threadName": "MainThread",
  5765. "time_consumption": 0.008939743041992188,
  5766. "time_finished": "2020-01-02 14:18:01,264",
  5767. "time_start": "2020-01-02 14:18:01,255"
  5768. },
  5769. "_PVhZECvVEeqssZLMJF_fcg": {
  5770. "args": null,
  5771. "asctime": "2020-01-02 14:18:01,267",
  5772. "created": 1577971081.2671778,
  5773. "exc_info": null,
  5774. "exc_text": null,
  5775. "filename": "__init__.py",
  5776. "funcName": "testrun",
  5777. "levelname": "INFO",
  5778. "levelno": 20,
  5779. "lineno": 21,
  5780. "message": "_PVhZECvVEeqssZLMJF_fcg",
  5781. "module": "__init__",
  5782. "moduleLogger": [],
  5783. "msecs": 267.1778202056885,
  5784. "msg": "_PVhZECvVEeqssZLMJF_fcg",
  5785. "name": "__tLogger__",
  5786. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  5787. "process": 4685,
  5788. "processName": "MainProcess",
  5789. "relativeCreated": 148.651123046875,
  5790. "stack_info": null,
  5791. "testcaseLogger": [
  5792. {
  5793. "args": [],
  5794. "asctime": "2020-01-02 14:18:01,269",
  5795. "created": 1577971081.2696824,
  5796. "exc_info": null,
  5797. "exc_text": null,
  5798. "filename": "test_helpers.py",
  5799. "funcName": "__init__",
  5800. "levelname": "DEBUG",
  5801. "levelno": 10,
  5802. "lineno": 38,
  5803. "message": "Running logger test sequence.",
  5804. "module": "test_helpers",
  5805. "moduleLogger": [
  5806. {
  5807. "args": [],
  5808. "asctime": "2020-01-02 14:18:01,267",
  5809. "created": 1577971081.2673862,
  5810. "exc_info": null,
  5811. "exc_text": null,
  5812. "filename": "test_helpers.py",
  5813. "funcName": "__init__",
  5814. "levelname": "DEBUG",
  5815. "levelno": 10,
  5816. "lineno": 22,
  5817. "message": "Configuring collecting logger",
  5818. "module": "test_helpers",
  5819. "msecs": 267.38619804382324,
  5820. "msg": "Configuring collecting logger",
  5821. "name": "__unittest__",
  5822. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5823. "process": 4685,
  5824. "processName": "MainProcess",
  5825. "relativeCreated": 148.85950088500977,
  5826. "stack_info": null,
  5827. "thread": 140299185112896,
  5828. "threadName": "MainThread"
  5829. },
  5830. {
  5831. "args": [
  5832. 1,
  5833. "DEBUG",
  5834. "collectingRingHandler"
  5835. ],
  5836. "asctime": "2020-01-02 14:18:01,267",
  5837. "created": 1577971081.2675893,
  5838. "exc_info": null,
  5839. "exc_text": null,
  5840. "filename": "test_helpers.py",
  5841. "funcName": "__init__",
  5842. "levelname": "DEBUG",
  5843. "levelno": 10,
  5844. "lineno": 36,
  5845. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  5846. "module": "test_helpers",
  5847. "msecs": 267.5893306732178,
  5848. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5849. "name": "__unittest__",
  5850. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5851. "process": 4685,
  5852. "processName": "MainProcess",
  5853. "relativeCreated": 149.0626335144043,
  5854. "stack_info": null,
  5855. "thread": 140299185112896,
  5856. "threadName": "MainThread"
  5857. },
  5858. {
  5859. "args": [
  5860. 2,
  5861. "INFO",
  5862. "collectingRingHandler"
  5863. ],
  5864. "asctime": "2020-01-02 14:18:01,267",
  5865. "created": 1577971081.267857,
  5866. "exc_info": null,
  5867. "exc_text": null,
  5868. "filename": "test_helpers.py",
  5869. "funcName": "__init__",
  5870. "levelname": "DEBUG",
  5871. "levelno": 10,
  5872. "lineno": 36,
  5873. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  5874. "module": "test_helpers",
  5875. "msecs": 267.8570747375488,
  5876. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5877. "name": "__unittest__",
  5878. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5879. "process": 4685,
  5880. "processName": "MainProcess",
  5881. "relativeCreated": 149.33037757873535,
  5882. "stack_info": null,
  5883. "thread": 140299185112896,
  5884. "threadName": "MainThread"
  5885. },
  5886. {
  5887. "args": [
  5888. 3,
  5889. "WARNING",
  5890. "collectingRingHandler"
  5891. ],
  5892. "asctime": "2020-01-02 14:18:01,268",
  5893. "created": 1577971081.2682197,
  5894. "exc_info": null,
  5895. "exc_text": null,
  5896. "filename": "test_helpers.py",
  5897. "funcName": "__init__",
  5898. "levelname": "DEBUG",
  5899. "levelno": 10,
  5900. "lineno": 36,
  5901. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  5902. "module": "test_helpers",
  5903. "msecs": 268.2197093963623,
  5904. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5905. "name": "__unittest__",
  5906. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5907. "process": 4685,
  5908. "processName": "MainProcess",
  5909. "relativeCreated": 149.69301223754883,
  5910. "stack_info": null,
  5911. "thread": 140299185112896,
  5912. "threadName": "MainThread"
  5913. },
  5914. {
  5915. "args": [
  5916. 4,
  5917. "ERROR",
  5918. "collectingRingHandler"
  5919. ],
  5920. "asctime": "2020-01-02 14:18:01,268",
  5921. "created": 1577971081.2685354,
  5922. "exc_info": null,
  5923. "exc_text": null,
  5924. "filename": "test_helpers.py",
  5925. "funcName": "__init__",
  5926. "levelname": "DEBUG",
  5927. "levelno": 10,
  5928. "lineno": 36,
  5929. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  5930. "module": "test_helpers",
  5931. "msecs": 268.5353755950928,
  5932. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5933. "name": "__unittest__",
  5934. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5935. "process": 4685,
  5936. "processName": "MainProcess",
  5937. "relativeCreated": 150.0086784362793,
  5938. "stack_info": null,
  5939. "thread": 140299185112896,
  5940. "threadName": "MainThread"
  5941. },
  5942. {
  5943. "args": [
  5944. 5,
  5945. "CRITICAL",
  5946. "collectingRingHandler"
  5947. ],
  5948. "asctime": "2020-01-02 14:18:01,268",
  5949. "created": 1577971081.2688382,
  5950. "exc_info": null,
  5951. "exc_text": null,
  5952. "filename": "test_helpers.py",
  5953. "funcName": "__init__",
  5954. "levelname": "DEBUG",
  5955. "levelno": 10,
  5956. "lineno": 36,
  5957. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  5958. "module": "test_helpers",
  5959. "msecs": 268.83816719055176,
  5960. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5961. "name": "__unittest__",
  5962. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5963. "process": 4685,
  5964. "processName": "MainProcess",
  5965. "relativeCreated": 150.31147003173828,
  5966. "stack_info": null,
  5967. "thread": 140299185112896,
  5968. "threadName": "MainThread"
  5969. },
  5970. {
  5971. "args": [
  5972. 6,
  5973. "INFO",
  5974. "collectingRingHandler"
  5975. ],
  5976. "asctime": "2020-01-02 14:18:01,269",
  5977. "created": 1577971081.269131,
  5978. "exc_info": null,
  5979. "exc_text": null,
  5980. "filename": "test_helpers.py",
  5981. "funcName": "__init__",
  5982. "levelname": "DEBUG",
  5983. "levelno": 10,
  5984. "lineno": 36,
  5985. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  5986. "module": "test_helpers",
  5987. "msecs": 269.1309452056885,
  5988. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5989. "name": "__unittest__",
  5990. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  5991. "process": 4685,
  5992. "processName": "MainProcess",
  5993. "relativeCreated": 150.604248046875,
  5994. "stack_info": null,
  5995. "thread": 140299185112896,
  5996. "threadName": "MainThread"
  5997. },
  5998. {
  5999. "args": [
  6000. 7,
  6001. "ERROR",
  6002. "collectingRingHandler"
  6003. ],
  6004. "asctime": "2020-01-02 14:18:01,269",
  6005. "created": 1577971081.2694283,
  6006. "exc_info": null,
  6007. "exc_text": null,
  6008. "filename": "test_helpers.py",
  6009. "funcName": "__init__",
  6010. "levelname": "DEBUG",
  6011. "levelno": 10,
  6012. "lineno": 36,
  6013. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  6014. "module": "test_helpers",
  6015. "msecs": 269.4282531738281,
  6016. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6017. "name": "__unittest__",
  6018. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6019. "process": 4685,
  6020. "processName": "MainProcess",
  6021. "relativeCreated": 150.90155601501465,
  6022. "stack_info": null,
  6023. "thread": 140299185112896,
  6024. "threadName": "MainThread"
  6025. }
  6026. ],
  6027. "msecs": 269.6824073791504,
  6028. "msg": "Running logger test sequence.",
  6029. "name": "__tLogger__",
  6030. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6031. "process": 4685,
  6032. "processName": "MainProcess",
  6033. "relativeCreated": 151.1557102203369,
  6034. "stack_info": null,
  6035. "thread": 140299185112896,
  6036. "threadName": "MainThread",
  6037. "time_consumption": 0.0002541542053222656
  6038. },
  6039. {
  6040. "args": [
  6041. "5",
  6042. "<class 'int'>"
  6043. ],
  6044. "asctime": "2020-01-02 14:18:01,270",
  6045. "created": 1577971081.2702174,
  6046. "exc_info": null,
  6047. "exc_text": null,
  6048. "filename": "test.py",
  6049. "funcName": "equivalency_chk",
  6050. "levelname": "INFO",
  6051. "levelno": 20,
  6052. "lineno": 142,
  6053. "message": "Length of collected logs is correct (Content 5 and Type is <class 'int'>).",
  6054. "module": "test",
  6055. "moduleLogger": [
  6056. {
  6057. "args": [
  6058. "Length of collected logs",
  6059. "5",
  6060. "<class 'int'>"
  6061. ],
  6062. "asctime": "2020-01-02 14:18:01,269",
  6063. "created": 1577971081.269945,
  6064. "exc_info": null,
  6065. "exc_text": null,
  6066. "filename": "test.py",
  6067. "funcName": "__report_result__",
  6068. "levelname": "DEBUG",
  6069. "levelno": 10,
  6070. "lineno": 22,
  6071. "message": "Result (Length of collected logs): 5 (<class 'int'>)",
  6072. "module": "test",
  6073. "msecs": 269.9449062347412,
  6074. "msg": "Result (%s): %s (%s)",
  6075. "name": "__unittest__",
  6076. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6077. "process": 4685,
  6078. "processName": "MainProcess",
  6079. "relativeCreated": 151.41820907592773,
  6080. "stack_info": null,
  6081. "thread": 140299185112896,
  6082. "threadName": "MainThread"
  6083. },
  6084. {
  6085. "args": [
  6086. "Length of collected logs",
  6087. "5",
  6088. "<class 'int'>"
  6089. ],
  6090. "asctime": "2020-01-02 14:18:01,270",
  6091. "created": 1577971081.2700973,
  6092. "exc_info": null,
  6093. "exc_text": null,
  6094. "filename": "test.py",
  6095. "funcName": "__report_expectation_equivalency__",
  6096. "levelname": "DEBUG",
  6097. "levelno": 10,
  6098. "lineno": 26,
  6099. "message": "Expectation (Length of collected logs): result = 5 (<class 'int'>)",
  6100. "module": "test",
  6101. "msecs": 270.0972557067871,
  6102. "msg": "Expectation (%s): result = %s (%s)",
  6103. "name": "__unittest__",
  6104. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6105. "process": 4685,
  6106. "processName": "MainProcess",
  6107. "relativeCreated": 151.57055854797363,
  6108. "stack_info": null,
  6109. "thread": 140299185112896,
  6110. "threadName": "MainThread"
  6111. }
  6112. ],
  6113. "msecs": 270.2174186706543,
  6114. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  6115. "name": "__tLogger__",
  6116. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6117. "process": 4685,
  6118. "processName": "MainProcess",
  6119. "relativeCreated": 151.69072151184082,
  6120. "stack_info": null,
  6121. "thread": 140299185112896,
  6122. "threadName": "MainThread",
  6123. "time_consumption": 0.0001201629638671875
  6124. },
  6125. {
  6126. "args": [
  6127. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  6128. "<class 'list'>"
  6129. ],
  6130. "asctime": "2020-01-02 14:18:01,270",
  6131. "created": 1577971081.2708633,
  6132. "exc_info": null,
  6133. "exc_text": null,
  6134. "filename": "test.py",
  6135. "funcName": "equivalency_chk",
  6136. "levelname": "INFO",
  6137. "levelno": 20,
  6138. "lineno": 142,
  6139. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <class 'list'>).",
  6140. "module": "test",
  6141. "moduleLogger": [
  6142. {
  6143. "args": [
  6144. "Logged information",
  6145. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  6146. "<class 'list'>"
  6147. ],
  6148. "asctime": "2020-01-02 14:18:01,270",
  6149. "created": 1577971081.270554,
  6150. "exc_info": null,
  6151. "exc_text": null,
  6152. "filename": "test.py",
  6153. "funcName": "__report_result__",
  6154. "levelname": "DEBUG",
  6155. "levelno": 10,
  6156. "lineno": 22,
  6157. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  6158. "module": "test",
  6159. "msecs": 270.5540657043457,
  6160. "msg": "Result (%s): %s (%s)",
  6161. "name": "__unittest__",
  6162. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6163. "process": 4685,
  6164. "processName": "MainProcess",
  6165. "relativeCreated": 152.02736854553223,
  6166. "stack_info": null,
  6167. "thread": 140299185112896,
  6168. "threadName": "MainThread"
  6169. },
  6170. {
  6171. "args": [
  6172. "Logged information",
  6173. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  6174. "<class 'list'>"
  6175. ],
  6176. "asctime": "2020-01-02 14:18:01,270",
  6177. "created": 1577971081.2706923,
  6178. "exc_info": null,
  6179. "exc_text": null,
  6180. "filename": "test.py",
  6181. "funcName": "__report_expectation_equivalency__",
  6182. "levelname": "DEBUG",
  6183. "levelno": 10,
  6184. "lineno": 26,
  6185. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  6186. "module": "test",
  6187. "msecs": 270.6923484802246,
  6188. "msg": "Expectation (%s): result = %s (%s)",
  6189. "name": "__unittest__",
  6190. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6191. "process": 4685,
  6192. "processName": "MainProcess",
  6193. "relativeCreated": 152.16565132141113,
  6194. "stack_info": null,
  6195. "thread": 140299185112896,
  6196. "threadName": "MainThread"
  6197. }
  6198. ],
  6199. "msecs": 270.86329460144043,
  6200. "msg": "Logged information is correct (Content %s and Type is %s).",
  6201. "name": "__tLogger__",
  6202. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6203. "process": 4685,
  6204. "processName": "MainProcess",
  6205. "relativeCreated": 152.33659744262695,
  6206. "stack_info": null,
  6207. "thread": 140299185112896,
  6208. "threadName": "MainThread",
  6209. "time_consumption": 0.0001709461212158203
  6210. },
  6211. {
  6212. "args": [
  6213. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  6214. "<class 'list'>"
  6215. ],
  6216. "asctime": "2020-01-02 14:18:01,271",
  6217. "created": 1577971081.2715352,
  6218. "exc_info": null,
  6219. "exc_text": null,
  6220. "filename": "test.py",
  6221. "funcName": "equivalency_chk",
  6222. "levelname": "INFO",
  6223. "levelno": 20,
  6224. "lineno": 142,
  6225. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <class 'list'>).",
  6226. "module": "test",
  6227. "moduleLogger": [
  6228. {
  6229. "args": [
  6230. "Logged information",
  6231. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  6232. "<class 'list'>"
  6233. ],
  6234. "asctime": "2020-01-02 14:18:01,271",
  6235. "created": 1577971081.2710547,
  6236. "exc_info": null,
  6237. "exc_text": null,
  6238. "filename": "test.py",
  6239. "funcName": "__report_result__",
  6240. "levelname": "DEBUG",
  6241. "levelno": 10,
  6242. "lineno": 22,
  6243. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  6244. "module": "test",
  6245. "msecs": 271.054744720459,
  6246. "msg": "Result (%s): %s (%s)",
  6247. "name": "__unittest__",
  6248. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6249. "process": 4685,
  6250. "processName": "MainProcess",
  6251. "relativeCreated": 152.5280475616455,
  6252. "stack_info": null,
  6253. "thread": 140299185112896,
  6254. "threadName": "MainThread"
  6255. },
  6256. {
  6257. "args": [
  6258. "Logged information",
  6259. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  6260. "<class 'list'>"
  6261. ],
  6262. "asctime": "2020-01-02 14:18:01,271",
  6263. "created": 1577971081.271247,
  6264. "exc_info": null,
  6265. "exc_text": null,
  6266. "filename": "test.py",
  6267. "funcName": "__report_expectation_equivalency__",
  6268. "levelname": "DEBUG",
  6269. "levelno": 10,
  6270. "lineno": 26,
  6271. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  6272. "module": "test",
  6273. "msecs": 271.24691009521484,
  6274. "msg": "Expectation (%s): result = %s (%s)",
  6275. "name": "__unittest__",
  6276. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6277. "process": 4685,
  6278. "processName": "MainProcess",
  6279. "relativeCreated": 152.72021293640137,
  6280. "stack_info": null,
  6281. "thread": 140299185112896,
  6282. "threadName": "MainThread"
  6283. }
  6284. ],
  6285. "msecs": 271.53515815734863,
  6286. "msg": "Logged information is correct (Content %s and Type is %s).",
  6287. "name": "__tLogger__",
  6288. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6289. "process": 4685,
  6290. "processName": "MainProcess",
  6291. "relativeCreated": 153.00846099853516,
  6292. "stack_info": null,
  6293. "thread": 140299185112896,
  6294. "threadName": "MainThread",
  6295. "time_consumption": 0.00028824806213378906
  6296. },
  6297. {
  6298. "args": [
  6299. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  6300. "<class 'list'>"
  6301. ],
  6302. "asctime": "2020-01-02 14:18:01,271",
  6303. "created": 1577971081.2718482,
  6304. "exc_info": null,
  6305. "exc_text": null,
  6306. "filename": "test.py",
  6307. "funcName": "equivalency_chk",
  6308. "levelname": "INFO",
  6309. "levelno": 20,
  6310. "lineno": 142,
  6311. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <class 'list'>).",
  6312. "module": "test",
  6313. "moduleLogger": [
  6314. {
  6315. "args": [
  6316. "Logged information",
  6317. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  6318. "<class 'list'>"
  6319. ],
  6320. "asctime": "2020-01-02 14:18:01,271",
  6321. "created": 1577971081.2716813,
  6322. "exc_info": null,
  6323. "exc_text": null,
  6324. "filename": "test.py",
  6325. "funcName": "__report_result__",
  6326. "levelname": "DEBUG",
  6327. "levelno": 10,
  6328. "lineno": 22,
  6329. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  6330. "module": "test",
  6331. "msecs": 271.6813087463379,
  6332. "msg": "Result (%s): %s (%s)",
  6333. "name": "__unittest__",
  6334. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6335. "process": 4685,
  6336. "processName": "MainProcess",
  6337. "relativeCreated": 153.1546115875244,
  6338. "stack_info": null,
  6339. "thread": 140299185112896,
  6340. "threadName": "MainThread"
  6341. },
  6342. {
  6343. "args": [
  6344. "Logged information",
  6345. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  6346. "<class 'list'>"
  6347. ],
  6348. "asctime": "2020-01-02 14:18:01,271",
  6349. "created": 1577971081.2717535,
  6350. "exc_info": null,
  6351. "exc_text": null,
  6352. "filename": "test.py",
  6353. "funcName": "__report_expectation_equivalency__",
  6354. "levelname": "DEBUG",
  6355. "levelno": 10,
  6356. "lineno": 26,
  6357. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  6358. "module": "test",
  6359. "msecs": 271.75354957580566,
  6360. "msg": "Expectation (%s): result = %s (%s)",
  6361. "name": "__unittest__",
  6362. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6363. "process": 4685,
  6364. "processName": "MainProcess",
  6365. "relativeCreated": 153.2268524169922,
  6366. "stack_info": null,
  6367. "thread": 140299185112896,
  6368. "threadName": "MainThread"
  6369. }
  6370. ],
  6371. "msecs": 271.848201751709,
  6372. "msg": "Logged information is correct (Content %s and Type is %s).",
  6373. "name": "__tLogger__",
  6374. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6375. "process": 4685,
  6376. "processName": "MainProcess",
  6377. "relativeCreated": 153.3215045928955,
  6378. "stack_info": null,
  6379. "thread": 140299185112896,
  6380. "threadName": "MainThread",
  6381. "time_consumption": 9.465217590332031e-05
  6382. },
  6383. {
  6384. "args": [
  6385. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  6386. "<class 'list'>"
  6387. ],
  6388. "asctime": "2020-01-02 14:18:01,272",
  6389. "created": 1577971081.2720573,
  6390. "exc_info": null,
  6391. "exc_text": null,
  6392. "filename": "test.py",
  6393. "funcName": "equivalency_chk",
  6394. "levelname": "INFO",
  6395. "levelno": 20,
  6396. "lineno": 142,
  6397. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <class 'list'>).",
  6398. "module": "test",
  6399. "moduleLogger": [
  6400. {
  6401. "args": [
  6402. "Logged information",
  6403. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  6404. "<class 'list'>"
  6405. ],
  6406. "asctime": "2020-01-02 14:18:01,271",
  6407. "created": 1577971081.2719462,
  6408. "exc_info": null,
  6409. "exc_text": null,
  6410. "filename": "test.py",
  6411. "funcName": "__report_result__",
  6412. "levelname": "DEBUG",
  6413. "levelno": 10,
  6414. "lineno": 22,
  6415. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  6416. "module": "test",
  6417. "msecs": 271.9461917877197,
  6418. "msg": "Result (%s): %s (%s)",
  6419. "name": "__unittest__",
  6420. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6421. "process": 4685,
  6422. "processName": "MainProcess",
  6423. "relativeCreated": 153.41949462890625,
  6424. "stack_info": null,
  6425. "thread": 140299185112896,
  6426. "threadName": "MainThread"
  6427. },
  6428. {
  6429. "args": [
  6430. "Logged information",
  6431. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  6432. "<class 'list'>"
  6433. ],
  6434. "asctime": "2020-01-02 14:18:01,272",
  6435. "created": 1577971081.2720032,
  6436. "exc_info": null,
  6437. "exc_text": null,
  6438. "filename": "test.py",
  6439. "funcName": "__report_expectation_equivalency__",
  6440. "levelname": "DEBUG",
  6441. "levelno": 10,
  6442. "lineno": 26,
  6443. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  6444. "module": "test",
  6445. "msecs": 272.003173828125,
  6446. "msg": "Expectation (%s): result = %s (%s)",
  6447. "name": "__unittest__",
  6448. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6449. "process": 4685,
  6450. "processName": "MainProcess",
  6451. "relativeCreated": 153.47647666931152,
  6452. "stack_info": null,
  6453. "thread": 140299185112896,
  6454. "threadName": "MainThread"
  6455. }
  6456. ],
  6457. "msecs": 272.05729484558105,
  6458. "msg": "Logged information is correct (Content %s and Type is %s).",
  6459. "name": "__tLogger__",
  6460. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6461. "process": 4685,
  6462. "processName": "MainProcess",
  6463. "relativeCreated": 153.53059768676758,
  6464. "stack_info": null,
  6465. "thread": 140299185112896,
  6466. "threadName": "MainThread",
  6467. "time_consumption": 5.412101745605469e-05
  6468. },
  6469. {
  6470. "args": [
  6471. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  6472. "<class 'list'>"
  6473. ],
  6474. "asctime": "2020-01-02 14:18:01,272",
  6475. "created": 1577971081.2722325,
  6476. "exc_info": null,
  6477. "exc_text": null,
  6478. "filename": "test.py",
  6479. "funcName": "equivalency_chk",
  6480. "levelname": "INFO",
  6481. "levelno": 20,
  6482. "lineno": 142,
  6483. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <class 'list'>).",
  6484. "module": "test",
  6485. "moduleLogger": [
  6486. {
  6487. "args": [
  6488. "Logged information",
  6489. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  6490. "<class 'list'>"
  6491. ],
  6492. "asctime": "2020-01-02 14:18:01,272",
  6493. "created": 1577971081.2721395,
  6494. "exc_info": null,
  6495. "exc_text": null,
  6496. "filename": "test.py",
  6497. "funcName": "__report_result__",
  6498. "levelname": "DEBUG",
  6499. "levelno": 10,
  6500. "lineno": 22,
  6501. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  6502. "module": "test",
  6503. "msecs": 272.1395492553711,
  6504. "msg": "Result (%s): %s (%s)",
  6505. "name": "__unittest__",
  6506. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6507. "process": 4685,
  6508. "processName": "MainProcess",
  6509. "relativeCreated": 153.61285209655762,
  6510. "stack_info": null,
  6511. "thread": 140299185112896,
  6512. "threadName": "MainThread"
  6513. },
  6514. {
  6515. "args": [
  6516. "Logged information",
  6517. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  6518. "<class 'list'>"
  6519. ],
  6520. "asctime": "2020-01-02 14:18:01,272",
  6521. "created": 1577971081.2721827,
  6522. "exc_info": null,
  6523. "exc_text": null,
  6524. "filename": "test.py",
  6525. "funcName": "__report_expectation_equivalency__",
  6526. "levelname": "DEBUG",
  6527. "levelno": 10,
  6528. "lineno": 26,
  6529. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  6530. "module": "test",
  6531. "msecs": 272.1827030181885,
  6532. "msg": "Expectation (%s): result = %s (%s)",
  6533. "name": "__unittest__",
  6534. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6535. "process": 4685,
  6536. "processName": "MainProcess",
  6537. "relativeCreated": 153.656005859375,
  6538. "stack_info": null,
  6539. "thread": 140299185112896,
  6540. "threadName": "MainThread"
  6541. }
  6542. ],
  6543. "msecs": 272.2325325012207,
  6544. "msg": "Logged information is correct (Content %s and Type is %s).",
  6545. "name": "__tLogger__",
  6546. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6547. "process": 4685,
  6548. "processName": "MainProcess",
  6549. "relativeCreated": 153.70583534240723,
  6550. "stack_info": null,
  6551. "thread": 140299185112896,
  6552. "threadName": "MainThread",
  6553. "time_consumption": 4.982948303222656e-05
  6554. }
  6555. ],
  6556. "thread": 140299185112896,
  6557. "threadName": "MainThread",
  6558. "time_consumption": 0.0050547122955322266,
  6559. "time_finished": "2020-01-02 14:18:01,272",
  6560. "time_start": "2020-01-02 14:18:01,267"
  6561. },
  6562. "_QBmb8CvVEeqssZLMJF_fcg": {
  6563. "args": null,
  6564. "asctime": "2020-01-02 14:18:01,272",
  6565. "created": 1577971081.2723713,
  6566. "exc_info": null,
  6567. "exc_text": null,
  6568. "filename": "__init__.py",
  6569. "funcName": "testrun",
  6570. "levelname": "INFO",
  6571. "levelno": 20,
  6572. "lineno": 22,
  6573. "message": "_QBmb8CvVEeqssZLMJF_fcg",
  6574. "module": "__init__",
  6575. "moduleLogger": [],
  6576. "msecs": 272.3712921142578,
  6577. "msg": "_QBmb8CvVEeqssZLMJF_fcg",
  6578. "name": "__tLogger__",
  6579. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  6580. "process": 4685,
  6581. "processName": "MainProcess",
  6582. "relativeCreated": 153.84459495544434,
  6583. "stack_info": null,
  6584. "testcaseLogger": [
  6585. {
  6586. "args": [],
  6587. "asctime": "2020-01-02 14:18:01,276",
  6588. "created": 1577971081.2763171,
  6589. "exc_info": null,
  6590. "exc_text": null,
  6591. "filename": "test_helpers.py",
  6592. "funcName": "__init__",
  6593. "levelname": "DEBUG",
  6594. "levelno": 10,
  6595. "lineno": 38,
  6596. "message": "Running logger test sequence.",
  6597. "module": "test_helpers",
  6598. "moduleLogger": [
  6599. {
  6600. "args": [],
  6601. "asctime": "2020-01-02 14:18:01,272",
  6602. "created": 1577971081.2724357,
  6603. "exc_info": null,
  6604. "exc_text": null,
  6605. "filename": "test_helpers.py",
  6606. "funcName": "__init__",
  6607. "levelname": "DEBUG",
  6608. "levelno": 10,
  6609. "lineno": 22,
  6610. "message": "Configuring collecting logger",
  6611. "module": "test_helpers",
  6612. "msecs": 272.43566513061523,
  6613. "msg": "Configuring collecting logger",
  6614. "name": "__unittest__",
  6615. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6616. "process": 4685,
  6617. "processName": "MainProcess",
  6618. "relativeCreated": 153.90896797180176,
  6619. "stack_info": null,
  6620. "thread": 140299185112896,
  6621. "threadName": "MainThread"
  6622. },
  6623. {
  6624. "args": [
  6625. 1,
  6626. "DEBUG",
  6627. "collectingRingHandler"
  6628. ],
  6629. "asctime": "2020-01-02 14:18:01,272",
  6630. "created": 1577971081.272501,
  6631. "exc_info": null,
  6632. "exc_text": null,
  6633. "filename": "test_helpers.py",
  6634. "funcName": "__init__",
  6635. "levelname": "DEBUG",
  6636. "levelno": 10,
  6637. "lineno": 36,
  6638. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  6639. "module": "test_helpers",
  6640. "msecs": 272.50099182128906,
  6641. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6642. "name": "__unittest__",
  6643. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6644. "process": 4685,
  6645. "processName": "MainProcess",
  6646. "relativeCreated": 153.9742946624756,
  6647. "stack_info": null,
  6648. "thread": 140299185112896,
  6649. "threadName": "MainThread"
  6650. },
  6651. {
  6652. "args": [
  6653. 2,
  6654. "INFO",
  6655. "collectingRingHandler"
  6656. ],
  6657. "asctime": "2020-01-02 14:18:01,272",
  6658. "created": 1577971081.272633,
  6659. "exc_info": null,
  6660. "exc_text": null,
  6661. "filename": "test_helpers.py",
  6662. "funcName": "__init__",
  6663. "levelname": "DEBUG",
  6664. "levelno": 10,
  6665. "lineno": 36,
  6666. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  6667. "module": "test_helpers",
  6668. "msecs": 272.6330757141113,
  6669. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6670. "name": "__unittest__",
  6671. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6672. "process": 4685,
  6673. "processName": "MainProcess",
  6674. "relativeCreated": 154.10637855529785,
  6675. "stack_info": null,
  6676. "thread": 140299185112896,
  6677. "threadName": "MainThread"
  6678. },
  6679. {
  6680. "args": [
  6681. 3,
  6682. "WARNING",
  6683. "collectingRingHandler"
  6684. ],
  6685. "asctime": "2020-01-02 14:18:01,272",
  6686. "created": 1577971081.2727966,
  6687. "exc_info": null,
  6688. "exc_text": null,
  6689. "filename": "test_helpers.py",
  6690. "funcName": "__init__",
  6691. "levelname": "DEBUG",
  6692. "levelno": 10,
  6693. "lineno": 36,
  6694. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  6695. "module": "test_helpers",
  6696. "msecs": 272.796630859375,
  6697. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6698. "name": "__unittest__",
  6699. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6700. "process": 4685,
  6701. "processName": "MainProcess",
  6702. "relativeCreated": 154.26993370056152,
  6703. "stack_info": null,
  6704. "thread": 140299185112896,
  6705. "threadName": "MainThread"
  6706. },
  6707. {
  6708. "args": [
  6709. 4,
  6710. "ERROR",
  6711. "collectingRingHandler"
  6712. ],
  6713. "asctime": "2020-01-02 14:18:01,273",
  6714. "created": 1577971081.2730107,
  6715. "exc_info": null,
  6716. "exc_text": null,
  6717. "filename": "test_helpers.py",
  6718. "funcName": "__init__",
  6719. "levelname": "DEBUG",
  6720. "levelno": 10,
  6721. "lineno": 36,
  6722. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  6723. "module": "test_helpers",
  6724. "msecs": 273.0107307434082,
  6725. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6726. "name": "__unittest__",
  6727. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6728. "process": 4685,
  6729. "processName": "MainProcess",
  6730. "relativeCreated": 154.48403358459473,
  6731. "stack_info": null,
  6732. "thread": 140299185112896,
  6733. "threadName": "MainThread"
  6734. },
  6735. {
  6736. "args": [
  6737. 5,
  6738. "CRITICAL",
  6739. "collectingRingHandler"
  6740. ],
  6741. "asctime": "2020-01-02 14:18:01,273",
  6742. "created": 1577971081.2732306,
  6743. "exc_info": null,
  6744. "exc_text": null,
  6745. "filename": "test_helpers.py",
  6746. "funcName": "__init__",
  6747. "levelname": "DEBUG",
  6748. "levelno": 10,
  6749. "lineno": 36,
  6750. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  6751. "module": "test_helpers",
  6752. "msecs": 273.23055267333984,
  6753. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6754. "name": "__unittest__",
  6755. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6756. "process": 4685,
  6757. "processName": "MainProcess",
  6758. "relativeCreated": 154.70385551452637,
  6759. "stack_info": null,
  6760. "thread": 140299185112896,
  6761. "threadName": "MainThread"
  6762. },
  6763. {
  6764. "args": [
  6765. 6,
  6766. "INFO",
  6767. "collectingRingHandler"
  6768. ],
  6769. "asctime": "2020-01-02 14:18:01,273",
  6770. "created": 1577971081.2737849,
  6771. "exc_info": null,
  6772. "exc_text": null,
  6773. "filename": "test_helpers.py",
  6774. "funcName": "__init__",
  6775. "levelname": "DEBUG",
  6776. "levelno": 10,
  6777. "lineno": 36,
  6778. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  6779. "module": "test_helpers",
  6780. "msecs": 273.784875869751,
  6781. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6782. "name": "__unittest__",
  6783. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6784. "process": 4685,
  6785. "processName": "MainProcess",
  6786. "relativeCreated": 155.2581787109375,
  6787. "stack_info": null,
  6788. "thread": 140299185112896,
  6789. "threadName": "MainThread"
  6790. },
  6791. {
  6792. "args": [
  6793. 7,
  6794. "ERROR",
  6795. "collectingRingHandler"
  6796. ],
  6797. "asctime": "2020-01-02 14:18:01,275",
  6798. "created": 1577971081.2753723,
  6799. "exc_info": null,
  6800. "exc_text": null,
  6801. "filename": "test_helpers.py",
  6802. "funcName": "__init__",
  6803. "levelname": "DEBUG",
  6804. "levelno": 10,
  6805. "lineno": 36,
  6806. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  6807. "module": "test_helpers",
  6808. "msecs": 275.3722667694092,
  6809. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  6810. "name": "__unittest__",
  6811. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6812. "process": 4685,
  6813. "processName": "MainProcess",
  6814. "relativeCreated": 156.8455696105957,
  6815. "stack_info": null,
  6816. "thread": 140299185112896,
  6817. "threadName": "MainThread"
  6818. }
  6819. ],
  6820. "msecs": 276.3171195983887,
  6821. "msg": "Running logger test sequence.",
  6822. "name": "__tLogger__",
  6823. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  6824. "process": 4685,
  6825. "processName": "MainProcess",
  6826. "relativeCreated": 157.7904224395752,
  6827. "stack_info": null,
  6828. "thread": 140299185112896,
  6829. "threadName": "MainThread",
  6830. "time_consumption": 0.0009448528289794922
  6831. },
  6832. {
  6833. "args": [],
  6834. "asctime": "2020-01-02 14:18:01,281",
  6835. "created": 1577971081.2814572,
  6836. "exc_info": null,
  6837. "exc_text": null,
  6838. "filename": "test.py",
  6839. "funcName": "report",
  6840. "levelname": "INFO",
  6841. "levelno": 20,
  6842. "lineno": 166,
  6843. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  6844. "module": "test",
  6845. "moduleLogger": [
  6846. {
  6847. "args": [
  6848. "Indexlist of log entries in stringrepresentation",
  6849. "[ 35, 109, 181, 256, 327 ]",
  6850. "<class 'list'>"
  6851. ],
  6852. "asctime": "2020-01-02 14:18:01,277",
  6853. "created": 1577971081.2775178,
  6854. "exc_info": null,
  6855. "exc_text": null,
  6856. "filename": "test.py",
  6857. "funcName": "__report_result__",
  6858. "levelname": "DEBUG",
  6859. "levelno": 10,
  6860. "lineno": 22,
  6861. "message": "Result (Indexlist of log entries in stringrepresentation): [ 35, 109, 181, 256, 327 ] (<class 'list'>)",
  6862. "module": "test",
  6863. "msecs": 277.51779556274414,
  6864. "msg": "Result (%s): %s (%s)",
  6865. "name": "__unittest__",
  6866. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6867. "process": 4685,
  6868. "processName": "MainProcess",
  6869. "relativeCreated": 158.99109840393066,
  6870. "stack_info": null,
  6871. "thread": 140299185112896,
  6872. "threadName": "MainThread"
  6873. },
  6874. {
  6875. "args": [
  6876. "Indexlist of log entries in stringrepresentation",
  6877. "[ 35, 109, 181, 256, 327 ]",
  6878. "<class 'list'>"
  6879. ],
  6880. "asctime": "2020-01-02 14:18:01,277",
  6881. "created": 1577971081.2779648,
  6882. "exc_info": null,
  6883. "exc_text": null,
  6884. "filename": "test.py",
  6885. "funcName": "__report_expectation_equivalency__",
  6886. "levelname": "DEBUG",
  6887. "levelno": 10,
  6888. "lineno": 26,
  6889. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 35, 109, 181, 256, 327 ] (<class 'list'>)",
  6890. "module": "test",
  6891. "msecs": 277.96483039855957,
  6892. "msg": "Expectation (%s): result = %s (%s)",
  6893. "name": "__unittest__",
  6894. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6895. "process": 4685,
  6896. "processName": "MainProcess",
  6897. "relativeCreated": 159.4381332397461,
  6898. "stack_info": null,
  6899. "thread": 140299185112896,
  6900. "threadName": "MainThread"
  6901. },
  6902. {
  6903. "args": [
  6904. "Submitted value number 1",
  6905. "35",
  6906. "<class 'int'>"
  6907. ],
  6908. "asctime": "2020-01-02 14:18:01,278",
  6909. "created": 1577971081.2784462,
  6910. "exc_info": null,
  6911. "exc_text": null,
  6912. "filename": "test.py",
  6913. "funcName": "__report_result__",
  6914. "levelname": "DEBUG",
  6915. "levelno": 10,
  6916. "lineno": 22,
  6917. "message": "Result (Submitted value number 1): 35 (<class 'int'>)",
  6918. "module": "test",
  6919. "msecs": 278.4461975097656,
  6920. "msg": "Result (%s): %s (%s)",
  6921. "name": "__unittest__",
  6922. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6923. "process": 4685,
  6924. "processName": "MainProcess",
  6925. "relativeCreated": 159.91950035095215,
  6926. "stack_info": null,
  6927. "thread": 140299185112896,
  6928. "threadName": "MainThread"
  6929. },
  6930. {
  6931. "args": [
  6932. "Submitted value number 1",
  6933. "35",
  6934. "<class 'int'>"
  6935. ],
  6936. "asctime": "2020-01-02 14:18:01,278",
  6937. "created": 1577971081.2787557,
  6938. "exc_info": null,
  6939. "exc_text": null,
  6940. "filename": "test.py",
  6941. "funcName": "__report_expectation_equivalency__",
  6942. "levelname": "DEBUG",
  6943. "levelno": 10,
  6944. "lineno": 26,
  6945. "message": "Expectation (Submitted value number 1): result = 35 (<class 'int'>)",
  6946. "module": "test",
  6947. "msecs": 278.75566482543945,
  6948. "msg": "Expectation (%s): result = %s (%s)",
  6949. "name": "__unittest__",
  6950. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6951. "process": 4685,
  6952. "processName": "MainProcess",
  6953. "relativeCreated": 160.22896766662598,
  6954. "stack_info": null,
  6955. "thread": 140299185112896,
  6956. "threadName": "MainThread"
  6957. },
  6958. {
  6959. "args": [
  6960. "35",
  6961. "<class 'int'>"
  6962. ],
  6963. "asctime": "2020-01-02 14:18:01,278",
  6964. "created": 1577971081.2789938,
  6965. "exc_info": null,
  6966. "exc_text": null,
  6967. "filename": "test.py",
  6968. "funcName": "equivalency_chk",
  6969. "levelname": "INFO",
  6970. "levelno": 20,
  6971. "lineno": 142,
  6972. "message": "Submitted value number 1 is correct (Content 35 and Type is <class 'int'>).",
  6973. "module": "test",
  6974. "msecs": 278.9938449859619,
  6975. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  6976. "name": "__unittest__",
  6977. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  6978. "process": 4685,
  6979. "processName": "MainProcess",
  6980. "relativeCreated": 160.46714782714844,
  6981. "stack_info": null,
  6982. "thread": 140299185112896,
  6983. "threadName": "MainThread"
  6984. },
  6985. {
  6986. "args": [
  6987. "Submitted value number 2",
  6988. "109",
  6989. "<class 'int'>"
  6990. ],
  6991. "asctime": "2020-01-02 14:18:01,279",
  6992. "created": 1577971081.279194,
  6993. "exc_info": null,
  6994. "exc_text": null,
  6995. "filename": "test.py",
  6996. "funcName": "__report_result__",
  6997. "levelname": "DEBUG",
  6998. "levelno": 10,
  6999. "lineno": 22,
  7000. "message": "Result (Submitted value number 2): 109 (<class 'int'>)",
  7001. "module": "test",
  7002. "msecs": 279.1941165924072,
  7003. "msg": "Result (%s): %s (%s)",
  7004. "name": "__unittest__",
  7005. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7006. "process": 4685,
  7007. "processName": "MainProcess",
  7008. "relativeCreated": 160.66741943359375,
  7009. "stack_info": null,
  7010. "thread": 140299185112896,
  7011. "threadName": "MainThread"
  7012. },
  7013. {
  7014. "args": [
  7015. "Submitted value number 2",
  7016. "109",
  7017. "<class 'int'>"
  7018. ],
  7019. "asctime": "2020-01-02 14:18:01,279",
  7020. "created": 1577971081.27936,
  7021. "exc_info": null,
  7022. "exc_text": null,
  7023. "filename": "test.py",
  7024. "funcName": "__report_expectation_equivalency__",
  7025. "levelname": "DEBUG",
  7026. "levelno": 10,
  7027. "lineno": 26,
  7028. "message": "Expectation (Submitted value number 2): result = 109 (<class 'int'>)",
  7029. "module": "test",
  7030. "msecs": 279.3600559234619,
  7031. "msg": "Expectation (%s): result = %s (%s)",
  7032. "name": "__unittest__",
  7033. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7034. "process": 4685,
  7035. "processName": "MainProcess",
  7036. "relativeCreated": 160.83335876464844,
  7037. "stack_info": null,
  7038. "thread": 140299185112896,
  7039. "threadName": "MainThread"
  7040. },
  7041. {
  7042. "args": [
  7043. "109",
  7044. "<class 'int'>"
  7045. ],
  7046. "asctime": "2020-01-02 14:18:01,279",
  7047. "created": 1577971081.2795143,
  7048. "exc_info": null,
  7049. "exc_text": null,
  7050. "filename": "test.py",
  7051. "funcName": "equivalency_chk",
  7052. "levelname": "INFO",
  7053. "levelno": 20,
  7054. "lineno": 142,
  7055. "message": "Submitted value number 2 is correct (Content 109 and Type is <class 'int'>).",
  7056. "module": "test",
  7057. "msecs": 279.5143127441406,
  7058. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  7059. "name": "__unittest__",
  7060. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7061. "process": 4685,
  7062. "processName": "MainProcess",
  7063. "relativeCreated": 160.98761558532715,
  7064. "stack_info": null,
  7065. "thread": 140299185112896,
  7066. "threadName": "MainThread"
  7067. },
  7068. {
  7069. "args": [
  7070. "Submitted value number 3",
  7071. "181",
  7072. "<class 'int'>"
  7073. ],
  7074. "asctime": "2020-01-02 14:18:01,279",
  7075. "created": 1577971081.2797508,
  7076. "exc_info": null,
  7077. "exc_text": null,
  7078. "filename": "test.py",
  7079. "funcName": "__report_result__",
  7080. "levelname": "DEBUG",
  7081. "levelno": 10,
  7082. "lineno": 22,
  7083. "message": "Result (Submitted value number 3): 181 (<class 'int'>)",
  7084. "module": "test",
  7085. "msecs": 279.7508239746094,
  7086. "msg": "Result (%s): %s (%s)",
  7087. "name": "__unittest__",
  7088. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7089. "process": 4685,
  7090. "processName": "MainProcess",
  7091. "relativeCreated": 161.2241268157959,
  7092. "stack_info": null,
  7093. "thread": 140299185112896,
  7094. "threadName": "MainThread"
  7095. },
  7096. {
  7097. "args": [
  7098. "Submitted value number 3",
  7099. "181",
  7100. "<class 'int'>"
  7101. ],
  7102. "asctime": "2020-01-02 14:18:01,279",
  7103. "created": 1577971081.2799485,
  7104. "exc_info": null,
  7105. "exc_text": null,
  7106. "filename": "test.py",
  7107. "funcName": "__report_expectation_equivalency__",
  7108. "levelname": "DEBUG",
  7109. "levelno": 10,
  7110. "lineno": 26,
  7111. "message": "Expectation (Submitted value number 3): result = 181 (<class 'int'>)",
  7112. "module": "test",
  7113. "msecs": 279.94847297668457,
  7114. "msg": "Expectation (%s): result = %s (%s)",
  7115. "name": "__unittest__",
  7116. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7117. "process": 4685,
  7118. "processName": "MainProcess",
  7119. "relativeCreated": 161.4217758178711,
  7120. "stack_info": null,
  7121. "thread": 140299185112896,
  7122. "threadName": "MainThread"
  7123. },
  7124. {
  7125. "args": [
  7126. "181",
  7127. "<class 'int'>"
  7128. ],
  7129. "asctime": "2020-01-02 14:18:01,280",
  7130. "created": 1577971081.2801156,
  7131. "exc_info": null,
  7132. "exc_text": null,
  7133. "filename": "test.py",
  7134. "funcName": "equivalency_chk",
  7135. "levelname": "INFO",
  7136. "levelno": 20,
  7137. "lineno": 142,
  7138. "message": "Submitted value number 3 is correct (Content 181 and Type is <class 'int'>).",
  7139. "module": "test",
  7140. "msecs": 280.11560440063477,
  7141. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  7142. "name": "__unittest__",
  7143. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7144. "process": 4685,
  7145. "processName": "MainProcess",
  7146. "relativeCreated": 161.5889072418213,
  7147. "stack_info": null,
  7148. "thread": 140299185112896,
  7149. "threadName": "MainThread"
  7150. },
  7151. {
  7152. "args": [
  7153. "Submitted value number 4",
  7154. "256",
  7155. "<class 'int'>"
  7156. ],
  7157. "asctime": "2020-01-02 14:18:01,280",
  7158. "created": 1577971081.2802942,
  7159. "exc_info": null,
  7160. "exc_text": null,
  7161. "filename": "test.py",
  7162. "funcName": "__report_result__",
  7163. "levelname": "DEBUG",
  7164. "levelno": 10,
  7165. "lineno": 22,
  7166. "message": "Result (Submitted value number 4): 256 (<class 'int'>)",
  7167. "module": "test",
  7168. "msecs": 280.29417991638184,
  7169. "msg": "Result (%s): %s (%s)",
  7170. "name": "__unittest__",
  7171. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7172. "process": 4685,
  7173. "processName": "MainProcess",
  7174. "relativeCreated": 161.76748275756836,
  7175. "stack_info": null,
  7176. "thread": 140299185112896,
  7177. "threadName": "MainThread"
  7178. },
  7179. {
  7180. "args": [
  7181. "Submitted value number 4",
  7182. "256",
  7183. "<class 'int'>"
  7184. ],
  7185. "asctime": "2020-01-02 14:18:01,280",
  7186. "created": 1577971081.2804635,
  7187. "exc_info": null,
  7188. "exc_text": null,
  7189. "filename": "test.py",
  7190. "funcName": "__report_expectation_equivalency__",
  7191. "levelname": "DEBUG",
  7192. "levelno": 10,
  7193. "lineno": 26,
  7194. "message": "Expectation (Submitted value number 4): result = 256 (<class 'int'>)",
  7195. "module": "test",
  7196. "msecs": 280.46345710754395,
  7197. "msg": "Expectation (%s): result = %s (%s)",
  7198. "name": "__unittest__",
  7199. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7200. "process": 4685,
  7201. "processName": "MainProcess",
  7202. "relativeCreated": 161.93675994873047,
  7203. "stack_info": null,
  7204. "thread": 140299185112896,
  7205. "threadName": "MainThread"
  7206. },
  7207. {
  7208. "args": [
  7209. "256",
  7210. "<class 'int'>"
  7211. ],
  7212. "asctime": "2020-01-02 14:18:01,280",
  7213. "created": 1577971081.2806451,
  7214. "exc_info": null,
  7215. "exc_text": null,
  7216. "filename": "test.py",
  7217. "funcName": "equivalency_chk",
  7218. "levelname": "INFO",
  7219. "levelno": 20,
  7220. "lineno": 142,
  7221. "message": "Submitted value number 4 is correct (Content 256 and Type is <class 'int'>).",
  7222. "module": "test",
  7223. "msecs": 280.64513206481934,
  7224. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  7225. "name": "__unittest__",
  7226. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7227. "process": 4685,
  7228. "processName": "MainProcess",
  7229. "relativeCreated": 162.11843490600586,
  7230. "stack_info": null,
  7231. "thread": 140299185112896,
  7232. "threadName": "MainThread"
  7233. },
  7234. {
  7235. "args": [
  7236. "Submitted value number 5",
  7237. "327",
  7238. "<class 'int'>"
  7239. ],
  7240. "asctime": "2020-01-02 14:18:01,280",
  7241. "created": 1577971081.2808077,
  7242. "exc_info": null,
  7243. "exc_text": null,
  7244. "filename": "test.py",
  7245. "funcName": "__report_result__",
  7246. "levelname": "DEBUG",
  7247. "levelno": 10,
  7248. "lineno": 22,
  7249. "message": "Result (Submitted value number 5): 327 (<class 'int'>)",
  7250. "module": "test",
  7251. "msecs": 280.8077335357666,
  7252. "msg": "Result (%s): %s (%s)",
  7253. "name": "__unittest__",
  7254. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7255. "process": 4685,
  7256. "processName": "MainProcess",
  7257. "relativeCreated": 162.28103637695312,
  7258. "stack_info": null,
  7259. "thread": 140299185112896,
  7260. "threadName": "MainThread"
  7261. },
  7262. {
  7263. "args": [
  7264. "Submitted value number 5",
  7265. "327",
  7266. "<class 'int'>"
  7267. ],
  7268. "asctime": "2020-01-02 14:18:01,280",
  7269. "created": 1577971081.2809606,
  7270. "exc_info": null,
  7271. "exc_text": null,
  7272. "filename": "test.py",
  7273. "funcName": "__report_expectation_equivalency__",
  7274. "levelname": "DEBUG",
  7275. "levelno": 10,
  7276. "lineno": 26,
  7277. "message": "Expectation (Submitted value number 5): result = 327 (<class 'int'>)",
  7278. "module": "test",
  7279. "msecs": 280.9605598449707,
  7280. "msg": "Expectation (%s): result = %s (%s)",
  7281. "name": "__unittest__",
  7282. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7283. "process": 4685,
  7284. "processName": "MainProcess",
  7285. "relativeCreated": 162.43386268615723,
  7286. "stack_info": null,
  7287. "thread": 140299185112896,
  7288. "threadName": "MainThread"
  7289. },
  7290. {
  7291. "args": [
  7292. "327",
  7293. "<class 'int'>"
  7294. ],
  7295. "asctime": "2020-01-02 14:18:01,281",
  7296. "created": 1577971081.2811735,
  7297. "exc_info": null,
  7298. "exc_text": null,
  7299. "filename": "test.py",
  7300. "funcName": "equivalency_chk",
  7301. "levelname": "INFO",
  7302. "levelno": 20,
  7303. "lineno": 142,
  7304. "message": "Submitted value number 5 is correct (Content 327 and Type is <class 'int'>).",
  7305. "module": "test",
  7306. "msecs": 281.1734676361084,
  7307. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  7308. "name": "__unittest__",
  7309. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7310. "process": 4685,
  7311. "processName": "MainProcess",
  7312. "relativeCreated": 162.64677047729492,
  7313. "stack_info": null,
  7314. "thread": 140299185112896,
  7315. "threadName": "MainThread"
  7316. }
  7317. ],
  7318. "msecs": 281.45718574523926,
  7319. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  7320. "name": "__tLogger__",
  7321. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7322. "process": 4685,
  7323. "processName": "MainProcess",
  7324. "relativeCreated": 162.93048858642578,
  7325. "stack_info": null,
  7326. "thread": 140299185112896,
  7327. "threadName": "MainThread",
  7328. "time_consumption": 0.0002837181091308594
  7329. }
  7330. ],
  7331. "thread": 140299185112896,
  7332. "threadName": "MainThread",
  7333. "time_consumption": 0.009085893630981445,
  7334. "time_finished": "2020-01-02 14:18:01,281",
  7335. "time_start": "2020-01-02 14:18:01,272"
  7336. },
  7337. "_XzMFcHYZEem_kd-7nxt1sg": {
  7338. "args": null,
  7339. "asctime": "2020-01-02 14:18:01,250",
  7340. "created": 1577971081.250383,
  7341. "exc_info": null,
  7342. "exc_text": null,
  7343. "filename": "__init__.py",
  7344. "funcName": "testrun",
  7345. "levelname": "INFO",
  7346. "levelno": 20,
  7347. "lineno": 19,
  7348. "message": "_XzMFcHYZEem_kd-7nxt1sg",
  7349. "module": "__init__",
  7350. "moduleLogger": [],
  7351. "msecs": 250.3829002380371,
  7352. "msg": "_XzMFcHYZEem_kd-7nxt1sg",
  7353. "name": "__tLogger__",
  7354. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  7355. "process": 4685,
  7356. "processName": "MainProcess",
  7357. "relativeCreated": 131.85620307922363,
  7358. "stack_info": null,
  7359. "testcaseLogger": [
  7360. {
  7361. "args": [],
  7362. "asctime": "2020-01-02 14:18:01,252",
  7363. "created": 1577971081.2524824,
  7364. "exc_info": null,
  7365. "exc_text": null,
  7366. "filename": "test_helpers.py",
  7367. "funcName": "__init__",
  7368. "levelname": "DEBUG",
  7369. "levelno": 10,
  7370. "lineno": 38,
  7371. "message": "Running logger test sequence.",
  7372. "module": "test_helpers",
  7373. "moduleLogger": [
  7374. {
  7375. "args": [],
  7376. "asctime": "2020-01-02 14:18:01,251",
  7377. "created": 1577971081.2511094,
  7378. "exc_info": null,
  7379. "exc_text": null,
  7380. "filename": "test_helpers.py",
  7381. "funcName": "__init__",
  7382. "levelname": "DEBUG",
  7383. "levelno": 10,
  7384. "lineno": 22,
  7385. "message": "Configuring collecting logger",
  7386. "module": "test_helpers",
  7387. "msecs": 251.10936164855957,
  7388. "msg": "Configuring collecting logger",
  7389. "name": "__unittest__",
  7390. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7391. "process": 4685,
  7392. "processName": "MainProcess",
  7393. "relativeCreated": 132.5826644897461,
  7394. "stack_info": null,
  7395. "thread": 140299185112896,
  7396. "threadName": "MainThread"
  7397. },
  7398. {
  7399. "args": [
  7400. 1,
  7401. "DEBUG",
  7402. "collectingHandler"
  7403. ],
  7404. "asctime": "2020-01-02 14:18:01,251",
  7405. "created": 1577971081.2513108,
  7406. "exc_info": null,
  7407. "exc_text": null,
  7408. "filename": "test_helpers.py",
  7409. "funcName": "__init__",
  7410. "levelname": "DEBUG",
  7411. "levelno": 10,
  7412. "lineno": 36,
  7413. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  7414. "module": "test_helpers",
  7415. "msecs": 251.3108253479004,
  7416. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7417. "name": "__unittest__",
  7418. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7419. "process": 4685,
  7420. "processName": "MainProcess",
  7421. "relativeCreated": 132.7841281890869,
  7422. "stack_info": null,
  7423. "thread": 140299185112896,
  7424. "threadName": "MainThread"
  7425. },
  7426. {
  7427. "args": [
  7428. 2,
  7429. "INFO",
  7430. "collectingHandler"
  7431. ],
  7432. "asctime": "2020-01-02 14:18:01,251",
  7433. "created": 1577971081.2514842,
  7434. "exc_info": null,
  7435. "exc_text": null,
  7436. "filename": "test_helpers.py",
  7437. "funcName": "__init__",
  7438. "levelname": "DEBUG",
  7439. "levelno": 10,
  7440. "lineno": 36,
  7441. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  7442. "module": "test_helpers",
  7443. "msecs": 251.48415565490723,
  7444. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7445. "name": "__unittest__",
  7446. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7447. "process": 4685,
  7448. "processName": "MainProcess",
  7449. "relativeCreated": 132.95745849609375,
  7450. "stack_info": null,
  7451. "thread": 140299185112896,
  7452. "threadName": "MainThread"
  7453. },
  7454. {
  7455. "args": [
  7456. 3,
  7457. "WARNING",
  7458. "collectingHandler"
  7459. ],
  7460. "asctime": "2020-01-02 14:18:01,251",
  7461. "created": 1577971081.2515988,
  7462. "exc_info": null,
  7463. "exc_text": null,
  7464. "filename": "test_helpers.py",
  7465. "funcName": "__init__",
  7466. "levelname": "DEBUG",
  7467. "levelno": 10,
  7468. "lineno": 36,
  7469. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.",
  7470. "module": "test_helpers",
  7471. "msecs": 251.59883499145508,
  7472. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7473. "name": "__unittest__",
  7474. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7475. "process": 4685,
  7476. "processName": "MainProcess",
  7477. "relativeCreated": 133.0721378326416,
  7478. "stack_info": null,
  7479. "thread": 140299185112896,
  7480. "threadName": "MainThread"
  7481. },
  7482. {
  7483. "args": [
  7484. 4,
  7485. "ERROR",
  7486. "collectingHandler"
  7487. ],
  7488. "asctime": "2020-01-02 14:18:01,251",
  7489. "created": 1577971081.2517097,
  7490. "exc_info": null,
  7491. "exc_text": null,
  7492. "filename": "test_helpers.py",
  7493. "funcName": "__init__",
  7494. "levelname": "DEBUG",
  7495. "levelno": 10,
  7496. "lineno": 36,
  7497. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  7498. "module": "test_helpers",
  7499. "msecs": 251.7096996307373,
  7500. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7501. "name": "__unittest__",
  7502. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7503. "process": 4685,
  7504. "processName": "MainProcess",
  7505. "relativeCreated": 133.18300247192383,
  7506. "stack_info": null,
  7507. "thread": 140299185112896,
  7508. "threadName": "MainThread"
  7509. },
  7510. {
  7511. "args": [
  7512. 5,
  7513. "CRITICAL",
  7514. "collectingHandler"
  7515. ],
  7516. "asctime": "2020-01-02 14:18:01,251",
  7517. "created": 1577971081.251915,
  7518. "exc_info": null,
  7519. "exc_text": null,
  7520. "filename": "test_helpers.py",
  7521. "funcName": "__init__",
  7522. "levelname": "DEBUG",
  7523. "levelno": 10,
  7524. "lineno": 36,
  7525. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  7526. "module": "test_helpers",
  7527. "msecs": 251.91497802734375,
  7528. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7529. "name": "__unittest__",
  7530. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7531. "process": 4685,
  7532. "processName": "MainProcess",
  7533. "relativeCreated": 133.38828086853027,
  7534. "stack_info": null,
  7535. "thread": 140299185112896,
  7536. "threadName": "MainThread"
  7537. },
  7538. {
  7539. "args": [
  7540. 6,
  7541. "INFO",
  7542. "collectingHandler"
  7543. ],
  7544. "asctime": "2020-01-02 14:18:01,252",
  7545. "created": 1577971081.2521074,
  7546. "exc_info": null,
  7547. "exc_text": null,
  7548. "filename": "test_helpers.py",
  7549. "funcName": "__init__",
  7550. "levelname": "DEBUG",
  7551. "levelno": 10,
  7552. "lineno": 36,
  7553. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  7554. "module": "test_helpers",
  7555. "msecs": 252.1073818206787,
  7556. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7557. "name": "__unittest__",
  7558. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7559. "process": 4685,
  7560. "processName": "MainProcess",
  7561. "relativeCreated": 133.58068466186523,
  7562. "stack_info": null,
  7563. "thread": 140299185112896,
  7564. "threadName": "MainThread"
  7565. },
  7566. {
  7567. "args": [
  7568. 7,
  7569. "ERROR",
  7570. "collectingHandler"
  7571. ],
  7572. "asctime": "2020-01-02 14:18:01,252",
  7573. "created": 1577971081.2522988,
  7574. "exc_info": null,
  7575. "exc_text": null,
  7576. "filename": "test_helpers.py",
  7577. "funcName": "__init__",
  7578. "levelname": "DEBUG",
  7579. "levelno": 10,
  7580. "lineno": 36,
  7581. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.",
  7582. "module": "test_helpers",
  7583. "msecs": 252.29883193969727,
  7584. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  7585. "name": "__unittest__",
  7586. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7587. "process": 4685,
  7588. "processName": "MainProcess",
  7589. "relativeCreated": 133.7721347808838,
  7590. "stack_info": null,
  7591. "thread": 140299185112896,
  7592. "threadName": "MainThread"
  7593. }
  7594. ],
  7595. "msecs": 252.48241424560547,
  7596. "msg": "Running logger test sequence.",
  7597. "name": "__tLogger__",
  7598. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  7599. "process": 4685,
  7600. "processName": "MainProcess",
  7601. "relativeCreated": 133.955717086792,
  7602. "stack_info": null,
  7603. "thread": 140299185112896,
  7604. "threadName": "MainThread",
  7605. "time_consumption": 0.00018358230590820312
  7606. },
  7607. {
  7608. "args": [
  7609. "7",
  7610. "<class 'int'>"
  7611. ],
  7612. "asctime": "2020-01-02 14:18:01,252",
  7613. "created": 1577971081.2529378,
  7614. "exc_info": null,
  7615. "exc_text": null,
  7616. "filename": "test.py",
  7617. "funcName": "equivalency_chk",
  7618. "levelname": "INFO",
  7619. "levelno": 20,
  7620. "lineno": 142,
  7621. "message": "Length of collected logs is correct (Content 7 and Type is <class 'int'>).",
  7622. "module": "test",
  7623. "moduleLogger": [
  7624. {
  7625. "args": [
  7626. "Length of collected logs",
  7627. "7",
  7628. "<class 'int'>"
  7629. ],
  7630. "asctime": "2020-01-02 14:18:01,252",
  7631. "created": 1577971081.2527163,
  7632. "exc_info": null,
  7633. "exc_text": null,
  7634. "filename": "test.py",
  7635. "funcName": "__report_result__",
  7636. "levelname": "DEBUG",
  7637. "levelno": 10,
  7638. "lineno": 22,
  7639. "message": "Result (Length of collected logs): 7 (<class 'int'>)",
  7640. "module": "test",
  7641. "msecs": 252.7163028717041,
  7642. "msg": "Result (%s): %s (%s)",
  7643. "name": "__unittest__",
  7644. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7645. "process": 4685,
  7646. "processName": "MainProcess",
  7647. "relativeCreated": 134.18960571289062,
  7648. "stack_info": null,
  7649. "thread": 140299185112896,
  7650. "threadName": "MainThread"
  7651. },
  7652. {
  7653. "args": [
  7654. "Length of collected logs",
  7655. "7",
  7656. "<class 'int'>"
  7657. ],
  7658. "asctime": "2020-01-02 14:18:01,252",
  7659. "created": 1577971081.2528367,
  7660. "exc_info": null,
  7661. "exc_text": null,
  7662. "filename": "test.py",
  7663. "funcName": "__report_expectation_equivalency__",
  7664. "levelname": "DEBUG",
  7665. "levelno": 10,
  7666. "lineno": 26,
  7667. "message": "Expectation (Length of collected logs): result = 7 (<class 'int'>)",
  7668. "module": "test",
  7669. "msecs": 252.8367042541504,
  7670. "msg": "Expectation (%s): result = %s (%s)",
  7671. "name": "__unittest__",
  7672. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7673. "process": 4685,
  7674. "processName": "MainProcess",
  7675. "relativeCreated": 134.3100070953369,
  7676. "stack_info": null,
  7677. "thread": 140299185112896,
  7678. "threadName": "MainThread"
  7679. }
  7680. ],
  7681. "msecs": 252.93779373168945,
  7682. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  7683. "name": "__tLogger__",
  7684. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7685. "process": 4685,
  7686. "processName": "MainProcess",
  7687. "relativeCreated": 134.41109657287598,
  7688. "stack_info": null,
  7689. "thread": 140299185112896,
  7690. "threadName": "MainThread",
  7691. "time_consumption": 0.0001010894775390625
  7692. },
  7693. {
  7694. "args": [
  7695. "['Log entry number %d with level %s.', 10, 'test_helpers.py', 1]",
  7696. "<class 'list'>"
  7697. ],
  7698. "asctime": "2020-01-02 14:18:01,253",
  7699. "created": 1577971081.2534418,
  7700. "exc_info": null,
  7701. "exc_text": null,
  7702. "filename": "test.py",
  7703. "funcName": "equivalency_chk",
  7704. "levelname": "INFO",
  7705. "levelno": 20,
  7706. "lineno": 142,
  7707. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 10, 'test_helpers.py', 1] and Type is <class 'list'>).",
  7708. "module": "test",
  7709. "moduleLogger": [
  7710. {
  7711. "args": [
  7712. "Logged information",
  7713. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  7714. "<class 'list'>"
  7715. ],
  7716. "asctime": "2020-01-02 14:18:01,253",
  7717. "created": 1577971081.253165,
  7718. "exc_info": null,
  7719. "exc_text": null,
  7720. "filename": "test.py",
  7721. "funcName": "__report_result__",
  7722. "levelname": "DEBUG",
  7723. "levelno": 10,
  7724. "lineno": 22,
  7725. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<class 'list'>)",
  7726. "module": "test",
  7727. "msecs": 253.16500663757324,
  7728. "msg": "Result (%s): %s (%s)",
  7729. "name": "__unittest__",
  7730. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7731. "process": 4685,
  7732. "processName": "MainProcess",
  7733. "relativeCreated": 134.63830947875977,
  7734. "stack_info": null,
  7735. "thread": 140299185112896,
  7736. "threadName": "MainThread"
  7737. },
  7738. {
  7739. "args": [
  7740. "Logged information",
  7741. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  7742. "<class 'list'>"
  7743. ],
  7744. "asctime": "2020-01-02 14:18:01,253",
  7745. "created": 1577971081.2532818,
  7746. "exc_info": null,
  7747. "exc_text": null,
  7748. "filename": "test.py",
  7749. "funcName": "__report_expectation_equivalency__",
  7750. "levelname": "DEBUG",
  7751. "levelno": 10,
  7752. "lineno": 26,
  7753. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<class 'list'>)",
  7754. "module": "test",
  7755. "msecs": 253.281831741333,
  7756. "msg": "Expectation (%s): result = %s (%s)",
  7757. "name": "__unittest__",
  7758. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7759. "process": 4685,
  7760. "processName": "MainProcess",
  7761. "relativeCreated": 134.75513458251953,
  7762. "stack_info": null,
  7763. "thread": 140299185112896,
  7764. "threadName": "MainThread"
  7765. }
  7766. ],
  7767. "msecs": 253.44181060791016,
  7768. "msg": "Logged information is correct (Content %s and Type is %s).",
  7769. "name": "__tLogger__",
  7770. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7771. "process": 4685,
  7772. "processName": "MainProcess",
  7773. "relativeCreated": 134.91511344909668,
  7774. "stack_info": null,
  7775. "thread": 140299185112896,
  7776. "threadName": "MainThread",
  7777. "time_consumption": 0.00015997886657714844
  7778. },
  7779. {
  7780. "args": [
  7781. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 2]",
  7782. "<class 'list'>"
  7783. ],
  7784. "asctime": "2020-01-02 14:18:01,253",
  7785. "created": 1577971081.2538872,
  7786. "exc_info": null,
  7787. "exc_text": null,
  7788. "filename": "test.py",
  7789. "funcName": "equivalency_chk",
  7790. "levelname": "INFO",
  7791. "levelno": 20,
  7792. "lineno": 142,
  7793. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 2] and Type is <class 'list'>).",
  7794. "module": "test",
  7795. "moduleLogger": [
  7796. {
  7797. "args": [
  7798. "Logged information",
  7799. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  7800. "<class 'list'>"
  7801. ],
  7802. "asctime": "2020-01-02 14:18:01,253",
  7803. "created": 1577971081.2536337,
  7804. "exc_info": null,
  7805. "exc_text": null,
  7806. "filename": "test.py",
  7807. "funcName": "__report_result__",
  7808. "levelname": "DEBUG",
  7809. "levelno": 10,
  7810. "lineno": 22,
  7811. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<class 'list'>)",
  7812. "module": "test",
  7813. "msecs": 253.6337375640869,
  7814. "msg": "Result (%s): %s (%s)",
  7815. "name": "__unittest__",
  7816. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7817. "process": 4685,
  7818. "processName": "MainProcess",
  7819. "relativeCreated": 135.10704040527344,
  7820. "stack_info": null,
  7821. "thread": 140299185112896,
  7822. "threadName": "MainThread"
  7823. },
  7824. {
  7825. "args": [
  7826. "Logged information",
  7827. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  7828. "<class 'list'>"
  7829. ],
  7830. "asctime": "2020-01-02 14:18:01,253",
  7831. "created": 1577971081.2537491,
  7832. "exc_info": null,
  7833. "exc_text": null,
  7834. "filename": "test.py",
  7835. "funcName": "__report_expectation_equivalency__",
  7836. "levelname": "DEBUG",
  7837. "levelno": 10,
  7838. "lineno": 26,
  7839. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<class 'list'>)",
  7840. "module": "test",
  7841. "msecs": 253.74913215637207,
  7842. "msg": "Expectation (%s): result = %s (%s)",
  7843. "name": "__unittest__",
  7844. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7845. "process": 4685,
  7846. "processName": "MainProcess",
  7847. "relativeCreated": 135.2224349975586,
  7848. "stack_info": null,
  7849. "thread": 140299185112896,
  7850. "threadName": "MainThread"
  7851. }
  7852. ],
  7853. "msecs": 253.88717651367188,
  7854. "msg": "Logged information is correct (Content %s and Type is %s).",
  7855. "name": "__tLogger__",
  7856. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7857. "process": 4685,
  7858. "processName": "MainProcess",
  7859. "relativeCreated": 135.3604793548584,
  7860. "stack_info": null,
  7861. "thread": 140299185112896,
  7862. "threadName": "MainThread",
  7863. "time_consumption": 0.0001380443572998047
  7864. },
  7865. {
  7866. "args": [
  7867. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  7868. "<class 'list'>"
  7869. ],
  7870. "asctime": "2020-01-02 14:18:01,254",
  7871. "created": 1577971081.2542515,
  7872. "exc_info": null,
  7873. "exc_text": null,
  7874. "filename": "test.py",
  7875. "funcName": "equivalency_chk",
  7876. "levelname": "INFO",
  7877. "levelno": 20,
  7878. "lineno": 142,
  7879. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <class 'list'>).",
  7880. "module": "test",
  7881. "moduleLogger": [
  7882. {
  7883. "args": [
  7884. "Logged information",
  7885. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  7886. "<class 'list'>"
  7887. ],
  7888. "asctime": "2020-01-02 14:18:01,254",
  7889. "created": 1577971081.2540145,
  7890. "exc_info": null,
  7891. "exc_text": null,
  7892. "filename": "test.py",
  7893. "funcName": "__report_result__",
  7894. "levelname": "DEBUG",
  7895. "levelno": 10,
  7896. "lineno": 22,
  7897. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  7898. "module": "test",
  7899. "msecs": 254.0144920349121,
  7900. "msg": "Result (%s): %s (%s)",
  7901. "name": "__unittest__",
  7902. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7903. "process": 4685,
  7904. "processName": "MainProcess",
  7905. "relativeCreated": 135.48779487609863,
  7906. "stack_info": null,
  7907. "thread": 140299185112896,
  7908. "threadName": "MainThread"
  7909. },
  7910. {
  7911. "args": [
  7912. "Logged information",
  7913. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  7914. "<class 'list'>"
  7915. ],
  7916. "asctime": "2020-01-02 14:18:01,254",
  7917. "created": 1577971081.254132,
  7918. "exc_info": null,
  7919. "exc_text": null,
  7920. "filename": "test.py",
  7921. "funcName": "__report_expectation_equivalency__",
  7922. "levelname": "DEBUG",
  7923. "levelno": 10,
  7924. "lineno": 26,
  7925. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  7926. "module": "test",
  7927. "msecs": 254.13203239440918,
  7928. "msg": "Expectation (%s): result = %s (%s)",
  7929. "name": "__unittest__",
  7930. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7931. "process": 4685,
  7932. "processName": "MainProcess",
  7933. "relativeCreated": 135.6053352355957,
  7934. "stack_info": null,
  7935. "thread": 140299185112896,
  7936. "threadName": "MainThread"
  7937. }
  7938. ],
  7939. "msecs": 254.25148010253906,
  7940. "msg": "Logged information is correct (Content %s and Type is %s).",
  7941. "name": "__tLogger__",
  7942. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7943. "process": 4685,
  7944. "processName": "MainProcess",
  7945. "relativeCreated": 135.7247829437256,
  7946. "stack_info": null,
  7947. "thread": 140299185112896,
  7948. "threadName": "MainThread",
  7949. "time_consumption": 0.00011944770812988281
  7950. },
  7951. {
  7952. "args": [
  7953. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  7954. "<class 'list'>"
  7955. ],
  7956. "asctime": "2020-01-02 14:18:01,254",
  7957. "created": 1577971081.2547715,
  7958. "exc_info": null,
  7959. "exc_text": null,
  7960. "filename": "test.py",
  7961. "funcName": "equivalency_chk",
  7962. "levelname": "INFO",
  7963. "levelno": 20,
  7964. "lineno": 142,
  7965. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <class 'list'>).",
  7966. "module": "test",
  7967. "moduleLogger": [
  7968. {
  7969. "args": [
  7970. "Logged information",
  7971. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  7972. "<class 'list'>"
  7973. ],
  7974. "asctime": "2020-01-02 14:18:01,254",
  7975. "created": 1577971081.254537,
  7976. "exc_info": null,
  7977. "exc_text": null,
  7978. "filename": "test.py",
  7979. "funcName": "__report_result__",
  7980. "levelname": "DEBUG",
  7981. "levelno": 10,
  7982. "lineno": 22,
  7983. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  7984. "module": "test",
  7985. "msecs": 254.53710556030273,
  7986. "msg": "Result (%s): %s (%s)",
  7987. "name": "__unittest__",
  7988. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  7989. "process": 4685,
  7990. "processName": "MainProcess",
  7991. "relativeCreated": 136.01040840148926,
  7992. "stack_info": null,
  7993. "thread": 140299185112896,
  7994. "threadName": "MainThread"
  7995. },
  7996. {
  7997. "args": [
  7998. "Logged information",
  7999. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  8000. "<class 'list'>"
  8001. ],
  8002. "asctime": "2020-01-02 14:18:01,254",
  8003. "created": 1577971081.2546568,
  8004. "exc_info": null,
  8005. "exc_text": null,
  8006. "filename": "test.py",
  8007. "funcName": "__report_expectation_equivalency__",
  8008. "levelname": "DEBUG",
  8009. "levelno": 10,
  8010. "lineno": 26,
  8011. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  8012. "module": "test",
  8013. "msecs": 254.65679168701172,
  8014. "msg": "Expectation (%s): result = %s (%s)",
  8015. "name": "__unittest__",
  8016. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8017. "process": 4685,
  8018. "processName": "MainProcess",
  8019. "relativeCreated": 136.13009452819824,
  8020. "stack_info": null,
  8021. "thread": 140299185112896,
  8022. "threadName": "MainThread"
  8023. }
  8024. ],
  8025. "msecs": 254.77147102355957,
  8026. "msg": "Logged information is correct (Content %s and Type is %s).",
  8027. "name": "__tLogger__",
  8028. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8029. "process": 4685,
  8030. "processName": "MainProcess",
  8031. "relativeCreated": 136.2447738647461,
  8032. "stack_info": null,
  8033. "thread": 140299185112896,
  8034. "threadName": "MainThread",
  8035. "time_consumption": 0.00011467933654785156
  8036. },
  8037. {
  8038. "args": [
  8039. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  8040. "<class 'list'>"
  8041. ],
  8042. "asctime": "2020-01-02 14:18:01,255",
  8043. "created": 1577971081.255194,
  8044. "exc_info": null,
  8045. "exc_text": null,
  8046. "filename": "test.py",
  8047. "funcName": "equivalency_chk",
  8048. "levelname": "INFO",
  8049. "levelno": 20,
  8050. "lineno": 142,
  8051. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <class 'list'>).",
  8052. "module": "test",
  8053. "moduleLogger": [
  8054. {
  8055. "args": [
  8056. "Logged information",
  8057. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  8058. "<class 'list'>"
  8059. ],
  8060. "asctime": "2020-01-02 14:18:01,254",
  8061. "created": 1577971081.2549257,
  8062. "exc_info": null,
  8063. "exc_text": null,
  8064. "filename": "test.py",
  8065. "funcName": "__report_result__",
  8066. "levelname": "DEBUG",
  8067. "levelno": 10,
  8068. "lineno": 22,
  8069. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  8070. "module": "test",
  8071. "msecs": 254.92572784423828,
  8072. "msg": "Result (%s): %s (%s)",
  8073. "name": "__unittest__",
  8074. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8075. "process": 4685,
  8076. "processName": "MainProcess",
  8077. "relativeCreated": 136.3990306854248,
  8078. "stack_info": null,
  8079. "thread": 140299185112896,
  8080. "threadName": "MainThread"
  8081. },
  8082. {
  8083. "args": [
  8084. "Logged information",
  8085. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  8086. "<class 'list'>"
  8087. ],
  8088. "asctime": "2020-01-02 14:18:01,255",
  8089. "created": 1577971081.2550426,
  8090. "exc_info": null,
  8091. "exc_text": null,
  8092. "filename": "test.py",
  8093. "funcName": "__report_expectation_equivalency__",
  8094. "levelname": "DEBUG",
  8095. "levelno": 10,
  8096. "lineno": 26,
  8097. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  8098. "module": "test",
  8099. "msecs": 255.04255294799805,
  8100. "msg": "Expectation (%s): result = %s (%s)",
  8101. "name": "__unittest__",
  8102. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8103. "process": 4685,
  8104. "processName": "MainProcess",
  8105. "relativeCreated": 136.51585578918457,
  8106. "stack_info": null,
  8107. "thread": 140299185112896,
  8108. "threadName": "MainThread"
  8109. }
  8110. ],
  8111. "msecs": 255.19394874572754,
  8112. "msg": "Logged information is correct (Content %s and Type is %s).",
  8113. "name": "__tLogger__",
  8114. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8115. "process": 4685,
  8116. "processName": "MainProcess",
  8117. "relativeCreated": 136.66725158691406,
  8118. "stack_info": null,
  8119. "thread": 140299185112896,
  8120. "threadName": "MainThread",
  8121. "time_consumption": 0.0001513957977294922
  8122. },
  8123. {
  8124. "args": [
  8125. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  8126. "<class 'list'>"
  8127. ],
  8128. "asctime": "2020-01-02 14:18:01,255",
  8129. "created": 1577971081.2555676,
  8130. "exc_info": null,
  8131. "exc_text": null,
  8132. "filename": "test.py",
  8133. "funcName": "equivalency_chk",
  8134. "levelname": "INFO",
  8135. "levelno": 20,
  8136. "lineno": 142,
  8137. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <class 'list'>).",
  8138. "module": "test",
  8139. "moduleLogger": [
  8140. {
  8141. "args": [
  8142. "Logged information",
  8143. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  8144. "<class 'list'>"
  8145. ],
  8146. "asctime": "2020-01-02 14:18:01,255",
  8147. "created": 1577971081.2554073,
  8148. "exc_info": null,
  8149. "exc_text": null,
  8150. "filename": "test.py",
  8151. "funcName": "__report_result__",
  8152. "levelname": "DEBUG",
  8153. "levelno": 10,
  8154. "lineno": 22,
  8155. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  8156. "module": "test",
  8157. "msecs": 255.40733337402344,
  8158. "msg": "Result (%s): %s (%s)",
  8159. "name": "__unittest__",
  8160. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8161. "process": 4685,
  8162. "processName": "MainProcess",
  8163. "relativeCreated": 136.88063621520996,
  8164. "stack_info": null,
  8165. "thread": 140299185112896,
  8166. "threadName": "MainThread"
  8167. },
  8168. {
  8169. "args": [
  8170. "Logged information",
  8171. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  8172. "<class 'list'>"
  8173. ],
  8174. "asctime": "2020-01-02 14:18:01,255",
  8175. "created": 1577971081.255482,
  8176. "exc_info": null,
  8177. "exc_text": null,
  8178. "filename": "test.py",
  8179. "funcName": "__report_expectation_equivalency__",
  8180. "levelname": "DEBUG",
  8181. "levelno": 10,
  8182. "lineno": 26,
  8183. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  8184. "module": "test",
  8185. "msecs": 255.48195838928223,
  8186. "msg": "Expectation (%s): result = %s (%s)",
  8187. "name": "__unittest__",
  8188. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8189. "process": 4685,
  8190. "processName": "MainProcess",
  8191. "relativeCreated": 136.95526123046875,
  8192. "stack_info": null,
  8193. "thread": 140299185112896,
  8194. "threadName": "MainThread"
  8195. }
  8196. ],
  8197. "msecs": 255.5675506591797,
  8198. "msg": "Logged information is correct (Content %s and Type is %s).",
  8199. "name": "__tLogger__",
  8200. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8201. "process": 4685,
  8202. "processName": "MainProcess",
  8203. "relativeCreated": 137.0408535003662,
  8204. "stack_info": null,
  8205. "thread": 140299185112896,
  8206. "threadName": "MainThread",
  8207. "time_consumption": 8.559226989746094e-05
  8208. },
  8209. {
  8210. "args": [
  8211. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  8212. "<class 'list'>"
  8213. ],
  8214. "asctime": "2020-01-02 14:18:01,255",
  8215. "created": 1577971081.2557657,
  8216. "exc_info": null,
  8217. "exc_text": null,
  8218. "filename": "test.py",
  8219. "funcName": "equivalency_chk",
  8220. "levelname": "INFO",
  8221. "levelno": 20,
  8222. "lineno": 142,
  8223. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <class 'list'>).",
  8224. "module": "test",
  8225. "moduleLogger": [
  8226. {
  8227. "args": [
  8228. "Logged information",
  8229. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  8230. "<class 'list'>"
  8231. ],
  8232. "asctime": "2020-01-02 14:18:01,255",
  8233. "created": 1577971081.2556713,
  8234. "exc_info": null,
  8235. "exc_text": null,
  8236. "filename": "test.py",
  8237. "funcName": "__report_result__",
  8238. "levelname": "DEBUG",
  8239. "levelno": 10,
  8240. "lineno": 22,
  8241. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  8242. "module": "test",
  8243. "msecs": 255.67126274108887,
  8244. "msg": "Result (%s): %s (%s)",
  8245. "name": "__unittest__",
  8246. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8247. "process": 4685,
  8248. "processName": "MainProcess",
  8249. "relativeCreated": 137.1445655822754,
  8250. "stack_info": null,
  8251. "thread": 140299185112896,
  8252. "threadName": "MainThread"
  8253. },
  8254. {
  8255. "args": [
  8256. "Logged information",
  8257. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  8258. "<class 'list'>"
  8259. ],
  8260. "asctime": "2020-01-02 14:18:01,255",
  8261. "created": 1577971081.255716,
  8262. "exc_info": null,
  8263. "exc_text": null,
  8264. "filename": "test.py",
  8265. "funcName": "__report_expectation_equivalency__",
  8266. "levelname": "DEBUG",
  8267. "levelno": 10,
  8268. "lineno": 26,
  8269. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  8270. "module": "test",
  8271. "msecs": 255.71608543395996,
  8272. "msg": "Expectation (%s): result = %s (%s)",
  8273. "name": "__unittest__",
  8274. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8275. "process": 4685,
  8276. "processName": "MainProcess",
  8277. "relativeCreated": 137.18938827514648,
  8278. "stack_info": null,
  8279. "thread": 140299185112896,
  8280. "threadName": "MainThread"
  8281. }
  8282. ],
  8283. "msecs": 255.7656764984131,
  8284. "msg": "Logged information is correct (Content %s and Type is %s).",
  8285. "name": "__tLogger__",
  8286. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8287. "process": 4685,
  8288. "processName": "MainProcess",
  8289. "relativeCreated": 137.2389793395996,
  8290. "stack_info": null,
  8291. "thread": 140299185112896,
  8292. "threadName": "MainThread",
  8293. "time_consumption": 4.9591064453125e-05
  8294. }
  8295. ],
  8296. "thread": 140299185112896,
  8297. "threadName": "MainThread",
  8298. "time_consumption": 0.0053827762603759766,
  8299. "time_finished": "2020-01-02 14:18:01,255",
  8300. "time_start": "2020-01-02 14:18:01,250"
  8301. },
  8302. "_fW5s8CzQEeqYsdFh5Cd6ng": {
  8303. "args": null,
  8304. "asctime": "2020-01-02 14:18:01,282",
  8305. "created": 1577971081.2825027,
  8306. "exc_info": null,
  8307. "exc_text": null,
  8308. "filename": "__init__.py",
  8309. "funcName": "testrun",
  8310. "levelname": "INFO",
  8311. "levelno": 20,
  8312. "lineno": 23,
  8313. "message": "_fW5s8CzQEeqYsdFh5Cd6ng",
  8314. "module": "__init__",
  8315. "moduleLogger": [],
  8316. "msecs": 282.5026512145996,
  8317. "msg": "_fW5s8CzQEeqYsdFh5Cd6ng",
  8318. "name": "__tLogger__",
  8319. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/__init__.py",
  8320. "process": 4685,
  8321. "processName": "MainProcess",
  8322. "relativeCreated": 163.97595405578613,
  8323. "stack_info": null,
  8324. "testcaseLogger": [
  8325. {
  8326. "args": [],
  8327. "asctime": "2020-01-02 14:18:01,285",
  8328. "created": 1577971081.2850447,
  8329. "exc_info": null,
  8330. "exc_text": null,
  8331. "filename": "test_helpers.py",
  8332. "funcName": "__init__",
  8333. "levelname": "DEBUG",
  8334. "levelno": 10,
  8335. "lineno": 38,
  8336. "message": "Running logger test sequence.",
  8337. "module": "test_helpers",
  8338. "moduleLogger": [
  8339. {
  8340. "args": [],
  8341. "asctime": "2020-01-02 14:18:01,282",
  8342. "created": 1577971081.2827208,
  8343. "exc_info": null,
  8344. "exc_text": null,
  8345. "filename": "test_helpers.py",
  8346. "funcName": "__init__",
  8347. "levelname": "DEBUG",
  8348. "levelno": 10,
  8349. "lineno": 22,
  8350. "message": "Configuring collecting logger",
  8351. "module": "test_helpers",
  8352. "msecs": 282.72080421447754,
  8353. "msg": "Configuring collecting logger",
  8354. "name": "__unittest__",
  8355. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8356. "process": 4685,
  8357. "processName": "MainProcess",
  8358. "relativeCreated": 164.19410705566406,
  8359. "stack_info": null,
  8360. "thread": 140299185112896,
  8361. "threadName": "MainThread"
  8362. },
  8363. {
  8364. "args": [
  8365. 1,
  8366. "DEBUG",
  8367. "collectingRingHandler"
  8368. ],
  8369. "asctime": "2020-01-02 14:18:01,282",
  8370. "created": 1577971081.2829366,
  8371. "exc_info": null,
  8372. "exc_text": null,
  8373. "filename": "test_helpers.py",
  8374. "funcName": "__init__",
  8375. "levelname": "DEBUG",
  8376. "levelno": 10,
  8377. "lineno": 36,
  8378. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  8379. "module": "test_helpers",
  8380. "msecs": 282.93657302856445,
  8381. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8382. "name": "__unittest__",
  8383. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8384. "process": 4685,
  8385. "processName": "MainProcess",
  8386. "relativeCreated": 164.40987586975098,
  8387. "stack_info": null,
  8388. "thread": 140299185112896,
  8389. "threadName": "MainThread"
  8390. },
  8391. {
  8392. "args": [
  8393. 2,
  8394. "INFO",
  8395. "collectingRingHandler"
  8396. ],
  8397. "asctime": "2020-01-02 14:18:01,283",
  8398. "created": 1577971081.2833364,
  8399. "exc_info": null,
  8400. "exc_text": null,
  8401. "filename": "test_helpers.py",
  8402. "funcName": "__init__",
  8403. "levelname": "DEBUG",
  8404. "levelno": 10,
  8405. "lineno": 36,
  8406. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  8407. "module": "test_helpers",
  8408. "msecs": 283.3364009857178,
  8409. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8410. "name": "__unittest__",
  8411. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8412. "process": 4685,
  8413. "processName": "MainProcess",
  8414. "relativeCreated": 164.8097038269043,
  8415. "stack_info": null,
  8416. "thread": 140299185112896,
  8417. "threadName": "MainThread"
  8418. },
  8419. {
  8420. "args": [
  8421. 3,
  8422. "WARNING",
  8423. "collectingRingHandler"
  8424. ],
  8425. "asctime": "2020-01-02 14:18:01,283",
  8426. "created": 1577971081.2837079,
  8427. "exc_info": null,
  8428. "exc_text": null,
  8429. "filename": "test_helpers.py",
  8430. "funcName": "__init__",
  8431. "levelname": "DEBUG",
  8432. "levelno": 10,
  8433. "lineno": 36,
  8434. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  8435. "module": "test_helpers",
  8436. "msecs": 283.707857131958,
  8437. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8438. "name": "__unittest__",
  8439. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8440. "process": 4685,
  8441. "processName": "MainProcess",
  8442. "relativeCreated": 165.18115997314453,
  8443. "stack_info": null,
  8444. "thread": 140299185112896,
  8445. "threadName": "MainThread"
  8446. },
  8447. {
  8448. "args": [
  8449. 4,
  8450. "ERROR",
  8451. "collectingRingHandler"
  8452. ],
  8453. "asctime": "2020-01-02 14:18:01,283",
  8454. "created": 1577971081.2838824,
  8455. "exc_info": null,
  8456. "exc_text": null,
  8457. "filename": "test_helpers.py",
  8458. "funcName": "__init__",
  8459. "levelname": "DEBUG",
  8460. "levelno": 10,
  8461. "lineno": 36,
  8462. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  8463. "module": "test_helpers",
  8464. "msecs": 283.88237953186035,
  8465. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8466. "name": "__unittest__",
  8467. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8468. "process": 4685,
  8469. "processName": "MainProcess",
  8470. "relativeCreated": 165.35568237304688,
  8471. "stack_info": null,
  8472. "thread": 140299185112896,
  8473. "threadName": "MainThread"
  8474. },
  8475. {
  8476. "args": [
  8477. 5,
  8478. "CRITICAL",
  8479. "collectingRingHandler"
  8480. ],
  8481. "asctime": "2020-01-02 14:18:01,284",
  8482. "created": 1577971081.284117,
  8483. "exc_info": null,
  8484. "exc_text": null,
  8485. "filename": "test_helpers.py",
  8486. "funcName": "__init__",
  8487. "levelname": "DEBUG",
  8488. "levelno": 10,
  8489. "lineno": 36,
  8490. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  8491. "module": "test_helpers",
  8492. "msecs": 284.1169834136963,
  8493. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8494. "name": "__unittest__",
  8495. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8496. "process": 4685,
  8497. "processName": "MainProcess",
  8498. "relativeCreated": 165.5902862548828,
  8499. "stack_info": null,
  8500. "thread": 140299185112896,
  8501. "threadName": "MainThread"
  8502. },
  8503. {
  8504. "args": [
  8505. 6,
  8506. "INFO",
  8507. "collectingRingHandler"
  8508. ],
  8509. "asctime": "2020-01-02 14:18:01,284",
  8510. "created": 1577971081.284448,
  8511. "exc_info": null,
  8512. "exc_text": null,
  8513. "filename": "test_helpers.py",
  8514. "funcName": "__init__",
  8515. "levelname": "DEBUG",
  8516. "levelno": 10,
  8517. "lineno": 36,
  8518. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  8519. "module": "test_helpers",
  8520. "msecs": 284.44790840148926,
  8521. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8522. "name": "__unittest__",
  8523. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8524. "process": 4685,
  8525. "processName": "MainProcess",
  8526. "relativeCreated": 165.92121124267578,
  8527. "stack_info": null,
  8528. "thread": 140299185112896,
  8529. "threadName": "MainThread"
  8530. },
  8531. {
  8532. "args": [
  8533. 7,
  8534. "ERROR",
  8535. "collectingRingHandler"
  8536. ],
  8537. "asctime": "2020-01-02 14:18:01,284",
  8538. "created": 1577971081.2847464,
  8539. "exc_info": null,
  8540. "exc_text": null,
  8541. "filename": "test_helpers.py",
  8542. "funcName": "__init__",
  8543. "levelname": "DEBUG",
  8544. "levelno": 10,
  8545. "lineno": 36,
  8546. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  8547. "module": "test_helpers",
  8548. "msecs": 284.7464084625244,
  8549. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  8550. "name": "__unittest__",
  8551. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8552. "process": 4685,
  8553. "processName": "MainProcess",
  8554. "relativeCreated": 166.21971130371094,
  8555. "stack_info": null,
  8556. "thread": 140299185112896,
  8557. "threadName": "MainThread"
  8558. }
  8559. ],
  8560. "msecs": 285.04467010498047,
  8561. "msg": "Running logger test sequence.",
  8562. "name": "__tLogger__",
  8563. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/tests/test_helpers.py",
  8564. "process": 4685,
  8565. "processName": "MainProcess",
  8566. "relativeCreated": 166.517972946167,
  8567. "stack_info": null,
  8568. "thread": 140299185112896,
  8569. "threadName": "MainThread",
  8570. "time_consumption": 0.0002982616424560547
  8571. },
  8572. {
  8573. "args": [
  8574. "5",
  8575. "<class 'int'>"
  8576. ],
  8577. "asctime": "2020-01-02 14:18:01,285",
  8578. "created": 1577971081.2855568,
  8579. "exc_info": null,
  8580. "exc_text": null,
  8581. "filename": "test.py",
  8582. "funcName": "equivalency_chk",
  8583. "levelname": "INFO",
  8584. "levelno": 20,
  8585. "lineno": 142,
  8586. "message": "Length of collectingRingHandler is correct (Content 5 and Type is <class 'int'>).",
  8587. "module": "test",
  8588. "moduleLogger": [
  8589. {
  8590. "args": [
  8591. "Length of collectingRingHandler",
  8592. "5",
  8593. "<class 'int'>"
  8594. ],
  8595. "asctime": "2020-01-02 14:18:01,285",
  8596. "created": 1577971081.285322,
  8597. "exc_info": null,
  8598. "exc_text": null,
  8599. "filename": "test.py",
  8600. "funcName": "__report_result__",
  8601. "levelname": "DEBUG",
  8602. "levelno": 10,
  8603. "lineno": 22,
  8604. "message": "Result (Length of collectingRingHandler): 5 (<class 'int'>)",
  8605. "module": "test",
  8606. "msecs": 285.3219509124756,
  8607. "msg": "Result (%s): %s (%s)",
  8608. "name": "__unittest__",
  8609. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8610. "process": 4685,
  8611. "processName": "MainProcess",
  8612. "relativeCreated": 166.7952537536621,
  8613. "stack_info": null,
  8614. "thread": 140299185112896,
  8615. "threadName": "MainThread"
  8616. },
  8617. {
  8618. "args": [
  8619. "Length of collectingRingHandler",
  8620. "5",
  8621. "<class 'int'>"
  8622. ],
  8623. "asctime": "2020-01-02 14:18:01,285",
  8624. "created": 1577971081.2854416,
  8625. "exc_info": null,
  8626. "exc_text": null,
  8627. "filename": "test.py",
  8628. "funcName": "__report_expectation_equivalency__",
  8629. "levelname": "DEBUG",
  8630. "levelno": 10,
  8631. "lineno": 26,
  8632. "message": "Expectation (Length of collectingRingHandler): result = 5 (<class 'int'>)",
  8633. "module": "test",
  8634. "msecs": 285.44163703918457,
  8635. "msg": "Expectation (%s): result = %s (%s)",
  8636. "name": "__unittest__",
  8637. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8638. "process": 4685,
  8639. "processName": "MainProcess",
  8640. "relativeCreated": 166.9149398803711,
  8641. "stack_info": null,
  8642. "thread": 140299185112896,
  8643. "threadName": "MainThread"
  8644. }
  8645. ],
  8646. "msecs": 285.5567932128906,
  8647. "msg": "Length of collectingRingHandler is correct (Content %s and Type is %s).",
  8648. "name": "__tLogger__",
  8649. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8650. "process": 4685,
  8651. "processName": "MainProcess",
  8652. "relativeCreated": 167.03009605407715,
  8653. "stack_info": null,
  8654. "thread": 140299185112896,
  8655. "threadName": "MainThread",
  8656. "time_consumption": 0.00011515617370605469
  8657. },
  8658. {
  8659. "args": [
  8660. "3",
  8661. "<class 'int'>"
  8662. ],
  8663. "asctime": "2020-01-02 14:18:01,286",
  8664. "created": 1577971081.2860403,
  8665. "exc_info": null,
  8666. "exc_text": null,
  8667. "filename": "test.py",
  8668. "funcName": "equivalency_chk",
  8669. "levelname": "INFO",
  8670. "levelno": 20,
  8671. "lineno": 142,
  8672. "message": "Length of collectingRingHandler after reinitialisation is correct (Content 3 and Type is <class 'int'>).",
  8673. "module": "test",
  8674. "moduleLogger": [
  8675. {
  8676. "args": [
  8677. "Length of collectingRingHandler after reinitialisation",
  8678. "3",
  8679. "<class 'int'>"
  8680. ],
  8681. "asctime": "2020-01-02 14:18:01,285",
  8682. "created": 1577971081.2857995,
  8683. "exc_info": null,
  8684. "exc_text": null,
  8685. "filename": "test.py",
  8686. "funcName": "__report_result__",
  8687. "levelname": "DEBUG",
  8688. "levelno": 10,
  8689. "lineno": 22,
  8690. "message": "Result (Length of collectingRingHandler after reinitialisation): 3 (<class 'int'>)",
  8691. "module": "test",
  8692. "msecs": 285.799503326416,
  8693. "msg": "Result (%s): %s (%s)",
  8694. "name": "__unittest__",
  8695. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8696. "process": 4685,
  8697. "processName": "MainProcess",
  8698. "relativeCreated": 167.27280616760254,
  8699. "stack_info": null,
  8700. "thread": 140299185112896,
  8701. "threadName": "MainThread"
  8702. },
  8703. {
  8704. "args": [
  8705. "Length of collectingRingHandler after reinitialisation",
  8706. "3",
  8707. "<class 'int'>"
  8708. ],
  8709. "asctime": "2020-01-02 14:18:01,285",
  8710. "created": 1577971081.2859278,
  8711. "exc_info": null,
  8712. "exc_text": null,
  8713. "filename": "test.py",
  8714. "funcName": "__report_expectation_equivalency__",
  8715. "levelname": "DEBUG",
  8716. "levelno": 10,
  8717. "lineno": 26,
  8718. "message": "Expectation (Length of collectingRingHandler after reinitialisation): result = 3 (<class 'int'>)",
  8719. "module": "test",
  8720. "msecs": 285.92777252197266,
  8721. "msg": "Expectation (%s): result = %s (%s)",
  8722. "name": "__unittest__",
  8723. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8724. "process": 4685,
  8725. "processName": "MainProcess",
  8726. "relativeCreated": 167.40107536315918,
  8727. "stack_info": null,
  8728. "thread": 140299185112896,
  8729. "threadName": "MainThread"
  8730. }
  8731. ],
  8732. "msecs": 286.0403060913086,
  8733. "msg": "Length of collectingRingHandler after reinitialisation is correct (Content %s and Type is %s).",
  8734. "name": "__tLogger__",
  8735. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8736. "process": 4685,
  8737. "processName": "MainProcess",
  8738. "relativeCreated": 167.51360893249512,
  8739. "stack_info": null,
  8740. "thread": 140299185112896,
  8741. "threadName": "MainThread",
  8742. "time_consumption": 0.0001125335693359375
  8743. },
  8744. {
  8745. "args": [
  8746. "'Log entry number 5 with level CRITICAL.'",
  8747. "<class 'str'>"
  8748. ],
  8749. "asctime": "2020-01-02 14:18:01,286",
  8750. "created": 1577971081.2866797,
  8751. "exc_info": null,
  8752. "exc_text": null,
  8753. "filename": "test.py",
  8754. "funcName": "equivalency_chk",
  8755. "levelname": "INFO",
  8756. "levelno": 20,
  8757. "lineno": 142,
  8758. "message": "Log text is correct (Content 'Log entry number 5 with level CRITICAL.' and Type is <class 'str'>).",
  8759. "module": "test",
  8760. "moduleLogger": [
  8761. {
  8762. "args": [
  8763. "Log text",
  8764. "'Log entry number 5 with level CRITICAL.'",
  8765. "<class 'str'>"
  8766. ],
  8767. "asctime": "2020-01-02 14:18:01,286",
  8768. "created": 1577971081.2863154,
  8769. "exc_info": null,
  8770. "exc_text": null,
  8771. "filename": "test.py",
  8772. "funcName": "__report_result__",
  8773. "levelname": "DEBUG",
  8774. "levelno": 10,
  8775. "lineno": 22,
  8776. "message": "Result (Log text): 'Log entry number 5 with level CRITICAL.' (<class 'str'>)",
  8777. "module": "test",
  8778. "msecs": 286.3154411315918,
  8779. "msg": "Result (%s): %s (%s)",
  8780. "name": "__unittest__",
  8781. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8782. "process": 4685,
  8783. "processName": "MainProcess",
  8784. "relativeCreated": 167.78874397277832,
  8785. "stack_info": null,
  8786. "thread": 140299185112896,
  8787. "threadName": "MainThread"
  8788. },
  8789. {
  8790. "args": [
  8791. "Log text",
  8792. "'Log entry number 5 with level CRITICAL.'",
  8793. "<class 'str'>"
  8794. ],
  8795. "asctime": "2020-01-02 14:18:01,286",
  8796. "created": 1577971081.2865634,
  8797. "exc_info": null,
  8798. "exc_text": null,
  8799. "filename": "test.py",
  8800. "funcName": "__report_expectation_equivalency__",
  8801. "levelname": "DEBUG",
  8802. "levelno": 10,
  8803. "lineno": 26,
  8804. "message": "Expectation (Log text): result = 'Log entry number 5 with level CRITICAL.' (<class 'str'>)",
  8805. "module": "test",
  8806. "msecs": 286.5633964538574,
  8807. "msg": "Expectation (%s): result = %s (%s)",
  8808. "name": "__unittest__",
  8809. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8810. "process": 4685,
  8811. "processName": "MainProcess",
  8812. "relativeCreated": 168.03669929504395,
  8813. "stack_info": null,
  8814. "thread": 140299185112896,
  8815. "threadName": "MainThread"
  8816. }
  8817. ],
  8818. "msecs": 286.679744720459,
  8819. "msg": "Log text is correct (Content %s and Type is %s).",
  8820. "name": "__tLogger__",
  8821. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8822. "process": 4685,
  8823. "processName": "MainProcess",
  8824. "relativeCreated": 168.1530475616455,
  8825. "stack_info": null,
  8826. "thread": 140299185112896,
  8827. "threadName": "MainThread",
  8828. "time_consumption": 0.0001163482666015625
  8829. },
  8830. {
  8831. "args": [
  8832. "'Log entry number 6 with level INFO.'",
  8833. "<class 'str'>"
  8834. ],
  8835. "asctime": "2020-01-02 14:18:01,287",
  8836. "created": 1577971081.287112,
  8837. "exc_info": null,
  8838. "exc_text": null,
  8839. "filename": "test.py",
  8840. "funcName": "equivalency_chk",
  8841. "levelname": "INFO",
  8842. "levelno": 20,
  8843. "lineno": 142,
  8844. "message": "Log text is correct (Content 'Log entry number 6 with level INFO.' and Type is <class 'str'>).",
  8845. "module": "test",
  8846. "moduleLogger": [
  8847. {
  8848. "args": [
  8849. "Log text",
  8850. "'Log entry number 6 with level INFO.'",
  8851. "<class 'str'>"
  8852. ],
  8853. "asctime": "2020-01-02 14:18:01,286",
  8854. "created": 1577971081.2868745,
  8855. "exc_info": null,
  8856. "exc_text": null,
  8857. "filename": "test.py",
  8858. "funcName": "__report_result__",
  8859. "levelname": "DEBUG",
  8860. "levelno": 10,
  8861. "lineno": 22,
  8862. "message": "Result (Log text): 'Log entry number 6 with level INFO.' (<class 'str'>)",
  8863. "module": "test",
  8864. "msecs": 286.87453269958496,
  8865. "msg": "Result (%s): %s (%s)",
  8866. "name": "__unittest__",
  8867. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8868. "process": 4685,
  8869. "processName": "MainProcess",
  8870. "relativeCreated": 168.34783554077148,
  8871. "stack_info": null,
  8872. "thread": 140299185112896,
  8873. "threadName": "MainThread"
  8874. },
  8875. {
  8876. "args": [
  8877. "Log text",
  8878. "'Log entry number 6 with level INFO.'",
  8879. "<class 'str'>"
  8880. ],
  8881. "asctime": "2020-01-02 14:18:01,286",
  8882. "created": 1577971081.286983,
  8883. "exc_info": null,
  8884. "exc_text": null,
  8885. "filename": "test.py",
  8886. "funcName": "__report_expectation_equivalency__",
  8887. "levelname": "DEBUG",
  8888. "levelno": 10,
  8889. "lineno": 26,
  8890. "message": "Expectation (Log text): result = 'Log entry number 6 with level INFO.' (<class 'str'>)",
  8891. "module": "test",
  8892. "msecs": 286.9830131530762,
  8893. "msg": "Expectation (%s): result = %s (%s)",
  8894. "name": "__unittest__",
  8895. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8896. "process": 4685,
  8897. "processName": "MainProcess",
  8898. "relativeCreated": 168.4563159942627,
  8899. "stack_info": null,
  8900. "thread": 140299185112896,
  8901. "threadName": "MainThread"
  8902. }
  8903. ],
  8904. "msecs": 287.1119976043701,
  8905. "msg": "Log text is correct (Content %s and Type is %s).",
  8906. "name": "__tLogger__",
  8907. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8908. "process": 4685,
  8909. "processName": "MainProcess",
  8910. "relativeCreated": 168.58530044555664,
  8911. "stack_info": null,
  8912. "thread": 140299185112896,
  8913. "threadName": "MainThread",
  8914. "time_consumption": 0.0001289844512939453
  8915. },
  8916. {
  8917. "args": [
  8918. "'Log entry number 7 with level ERROR.'",
  8919. "<class 'str'>"
  8920. ],
  8921. "asctime": "2020-01-02 14:18:01,287",
  8922. "created": 1577971081.287569,
  8923. "exc_info": null,
  8924. "exc_text": null,
  8925. "filename": "test.py",
  8926. "funcName": "equivalency_chk",
  8927. "levelname": "INFO",
  8928. "levelno": 20,
  8929. "lineno": 142,
  8930. "message": "Log text is correct (Content 'Log entry number 7 with level ERROR.' and Type is <class 'str'>).",
  8931. "module": "test",
  8932. "moduleLogger": [
  8933. {
  8934. "args": [
  8935. "Log text",
  8936. "'Log entry number 7 with level ERROR.'",
  8937. "<class 'str'>"
  8938. ],
  8939. "asctime": "2020-01-02 14:18:01,287",
  8940. "created": 1577971081.2873218,
  8941. "exc_info": null,
  8942. "exc_text": null,
  8943. "filename": "test.py",
  8944. "funcName": "__report_result__",
  8945. "levelname": "DEBUG",
  8946. "levelno": 10,
  8947. "lineno": 22,
  8948. "message": "Result (Log text): 'Log entry number 7 with level ERROR.' (<class 'str'>)",
  8949. "module": "test",
  8950. "msecs": 287.3218059539795,
  8951. "msg": "Result (%s): %s (%s)",
  8952. "name": "__unittest__",
  8953. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8954. "process": 4685,
  8955. "processName": "MainProcess",
  8956. "relativeCreated": 168.79510879516602,
  8957. "stack_info": null,
  8958. "thread": 140299185112896,
  8959. "threadName": "MainThread"
  8960. },
  8961. {
  8962. "args": [
  8963. "Log text",
  8964. "'Log entry number 7 with level ERROR.'",
  8965. "<class 'str'>"
  8966. ],
  8967. "asctime": "2020-01-02 14:18:01,287",
  8968. "created": 1577971081.2874453,
  8969. "exc_info": null,
  8970. "exc_text": null,
  8971. "filename": "test.py",
  8972. "funcName": "__report_expectation_equivalency__",
  8973. "levelname": "DEBUG",
  8974. "levelno": 10,
  8975. "lineno": 26,
  8976. "message": "Expectation (Log text): result = 'Log entry number 7 with level ERROR.' (<class 'str'>)",
  8977. "module": "test",
  8978. "msecs": 287.4453067779541,
  8979. "msg": "Expectation (%s): result = %s (%s)",
  8980. "name": "__unittest__",
  8981. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8982. "process": 4685,
  8983. "processName": "MainProcess",
  8984. "relativeCreated": 168.91860961914062,
  8985. "stack_info": null,
  8986. "thread": 140299185112896,
  8987. "threadName": "MainThread"
  8988. }
  8989. ],
  8990. "msecs": 287.5690460205078,
  8991. "msg": "Log text is correct (Content %s and Type is %s).",
  8992. "name": "__tLogger__",
  8993. "pathname": "/user_data/data/dirk/prj/modules/report/unittest/src/unittest/test.py",
  8994. "process": 4685,
  8995. "processName": "MainProcess",
  8996. "relativeCreated": 169.04234886169434,
  8997. "stack_info": null,
  8998. "thread": 140299185112896,
  8999. "threadName": "MainThread",
  9000. "time_consumption": 0.00012373924255371094
  9001. }
  9002. ],
  9003. "thread": 140299185112896,
  9004. "threadName": "MainThread",
  9005. "time_consumption": 0.005066394805908203,
  9006. "time_finished": "2020-01-02 14:18:01,287",
  9007. "time_start": "2020-01-02 14:18:01,282"
  9008. }
  9009. },
  9010. "testrun_id": "p3",
  9011. "time_consumption": 0.03352952003479004,
  9012. "uid_list_sorted": [
  9013. "_XzMFcHYZEem_kd-7nxt1sg",
  9014. "_ErFPoCvVEeqssZLMJF_fcg",
  9015. "_PVhZECvVEeqssZLMJF_fcg",
  9016. "_QBmb8CvVEeqssZLMJF_fcg",
  9017. "_fW5s8CzQEeqYsdFh5Cd6ng"
  9018. ]
  9019. }
  9020. ],
  9021. "unittest_information": {
  9022. "Version": "2c03d3eba161a9fb0dbf0594fbda3965"
  9023. }
  9024. }