Python Library Report
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

unittest.json 340KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951
  1. {
  2. "coverage_information": [
  3. {
  4. "branch_coverage": 60.78,
  5. "filepath": "/home/dirk/my_repositories/unittest/report/pylibs/report",
  6. "files": [
  7. {
  8. "branch_coverage": 60.78,
  9. "filepath": "/home/dirk/my_repositories/unittest/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": 36,
  39. "start": 31
  40. },
  41. {
  42. "coverage_state": "clean",
  43. "end": 37,
  44. "start": 37
  45. },
  46. {
  47. "coverage_state": "covered",
  48. "end": 42,
  49. "start": 38
  50. },
  51. {
  52. "coverage_state": "clean",
  53. "end": 43,
  54. "start": 43
  55. },
  56. {
  57. "coverage_state": "covered",
  58. "end": 44,
  59. "start": 44
  60. },
  61. {
  62. "coverage_state": "clean",
  63. "end": 45,
  64. "start": 45
  65. },
  66. {
  67. "coverage_state": "covered",
  68. "end": 48,
  69. "start": 46
  70. },
  71. {
  72. "coverage_state": "clean",
  73. "end": 49,
  74. "start": 49
  75. },
  76. {
  77. "coverage_state": "covered",
  78. "end": 52,
  79. "start": 50
  80. },
  81. {
  82. "coverage_state": "clean",
  83. "end": 55,
  84. "start": 53
  85. },
  86. {
  87. "coverage_state": "covered",
  88. "end": 57,
  89. "start": 56
  90. },
  91. {
  92. "coverage_state": "clean",
  93. "end": 73,
  94. "start": 58
  95. },
  96. {
  97. "coverage_state": "covered",
  98. "end": 75,
  99. "start": 74
  100. },
  101. {
  102. "coverage_state": "clean",
  103. "end": 77,
  104. "start": 76
  105. },
  106. {
  107. "coverage_state": "covered",
  108. "end": 79,
  109. "start": 78
  110. },
  111. {
  112. "coverage_state": "clean",
  113. "end": 80,
  114. "start": 80
  115. },
  116. {
  117. "coverage_state": "covered",
  118. "end": 84,
  119. "start": 81
  120. },
  121. {
  122. "coverage_state": "clean",
  123. "end": 85,
  124. "start": 85
  125. },
  126. {
  127. "coverage_state": "covered",
  128. "end": 88,
  129. "start": 86
  130. },
  131. {
  132. "coverage_state": "clean",
  133. "end": 89,
  134. "start": 89
  135. },
  136. {
  137. "coverage_state": "covered",
  138. "end": 91,
  139. "start": 90
  140. },
  141. {
  142. "coverage_state": "clean",
  143. "end": 92,
  144. "start": 92
  145. },
  146. {
  147. "coverage_state": "covered",
  148. "end": 97,
  149. "start": 93
  150. },
  151. {
  152. "coverage_state": "clean",
  153. "end": 98,
  154. "start": 98
  155. },
  156. {
  157. "coverage_state": "covered",
  158. "end": 101,
  159. "start": 99
  160. },
  161. {
  162. "coverage_state": "clean",
  163. "end": 102,
  164. "start": 102
  165. },
  166. {
  167. "coverage_state": "covered",
  168. "end": 104,
  169. "start": 103
  170. },
  171. {
  172. "coverage_state": "clean",
  173. "end": 105,
  174. "start": 105
  175. },
  176. {
  177. "coverage_state": "covered",
  178. "end": 106,
  179. "start": 106
  180. },
  181. {
  182. "coverage_state": "uncovered",
  183. "end": 107,
  184. "start": 107
  185. },
  186. {
  187. "coverage_state": "clean",
  188. "end": 109,
  189. "start": 108
  190. },
  191. {
  192. "coverage_state": "covered",
  193. "end": 111,
  194. "start": 110
  195. },
  196. {
  197. "coverage_state": "clean",
  198. "end": 112,
  199. "start": 112
  200. },
  201. {
  202. "coverage_state": "covered",
  203. "end": 116,
  204. "start": 113
  205. },
  206. {
  207. "coverage_state": "clean",
  208. "end": 117,
  209. "start": 117
  210. },
  211. {
  212. "coverage_state": "covered",
  213. "end": 119,
  214. "start": 118
  215. },
  216. {
  217. "coverage_state": "clean",
  218. "end": 120,
  219. "start": 120
  220. },
  221. {
  222. "coverage_state": "covered",
  223. "end": 122,
  224. "start": 121
  225. },
  226. {
  227. "coverage_state": "clean",
  228. "end": 124,
  229. "start": 123
  230. },
  231. {
  232. "coverage_state": "covered",
  233. "end": 133,
  234. "start": 125
  235. },
  236. {
  237. "coverage_state": "clean",
  238. "end": 138,
  239. "start": 134
  240. },
  241. {
  242. "coverage_state": "covered",
  243. "end": 139,
  244. "start": 139
  245. },
  246. {
  247. "coverage_state": "clean",
  248. "end": 140,
  249. "start": 140
  250. },
  251. {
  252. "coverage_state": "covered",
  253. "end": 141,
  254. "start": 141
  255. },
  256. {
  257. "coverage_state": "clean",
  258. "end": 146,
  259. "start": 142
  260. },
  261. {
  262. "coverage_state": "covered",
  263. "end": 147,
  264. "start": 147
  265. },
  266. {
  267. "coverage_state": "clean",
  268. "end": 149,
  269. "start": 148
  270. },
  271. {
  272. "coverage_state": "covered",
  273. "end": 151,
  274. "start": 150
  275. },
  276. {
  277. "coverage_state": "clean",
  278. "end": 152,
  279. "start": 152
  280. },
  281. {
  282. "coverage_state": "covered",
  283. "end": 156,
  284. "start": 153
  285. },
  286. {
  287. "coverage_state": "clean",
  288. "end": 158,
  289. "start": 157
  290. },
  291. {
  292. "coverage_state": "covered",
  293. "end": 160,
  294. "start": 159
  295. },
  296. {
  297. "coverage_state": "uncovered",
  298. "end": 165,
  299. "start": 161
  300. },
  301. {
  302. "coverage_state": "clean",
  303. "end": 167,
  304. "start": 166
  305. },
  306. {
  307. "coverage_state": "covered",
  308. "end": 168,
  309. "start": 168
  310. },
  311. {
  312. "coverage_state": "uncovered",
  313. "end": 169,
  314. "start": 169
  315. },
  316. {
  317. "coverage_state": "clean",
  318. "end": 171,
  319. "start": 170
  320. },
  321. {
  322. "coverage_state": "uncovered",
  323. "end": 173,
  324. "start": 172
  325. },
  326. {
  327. "coverage_state": "clean",
  328. "end": 178,
  329. "start": 174
  330. },
  331. {
  332. "coverage_state": "uncovered",
  333. "end": 180,
  334. "start": 179
  335. },
  336. {
  337. "coverage_state": "clean",
  338. "end": 189,
  339. "start": 181
  340. },
  341. {
  342. "coverage_state": "uncovered",
  343. "end": 190,
  344. "start": 190
  345. },
  346. {
  347. "coverage_state": "clean",
  348. "end": 194,
  349. "start": 191
  350. },
  351. {
  352. "coverage_state": "uncovered",
  353. "end": 197,
  354. "start": 195
  355. },
  356. {
  357. "coverage_state": "clean",
  358. "end": 202,
  359. "start": 198
  360. },
  361. {
  362. "coverage_state": "uncovered",
  363. "end": 205,
  364. "start": 203
  365. },
  366. {
  367. "coverage_state": "clean",
  368. "end": 210,
  369. "start": 206
  370. },
  371. {
  372. "coverage_state": "uncovered",
  373. "end": 213,
  374. "start": 211
  375. },
  376. {
  377. "coverage_state": "clean",
  378. "end": 219,
  379. "start": 214
  380. },
  381. {
  382. "coverage_state": "uncovered",
  383. "end": 220,
  384. "start": 220
  385. },
  386. {
  387. "coverage_state": "clean",
  388. "end": 237,
  389. "start": 221
  390. },
  391. {
  392. "coverage_state": "covered",
  393. "end": 238,
  394. "start": 238
  395. },
  396. {
  397. "coverage_state": "uncovered",
  398. "end": 239,
  399. "start": 239
  400. },
  401. {
  402. "coverage_state": "clean",
  403. "end": 241,
  404. "start": 240
  405. },
  406. {
  407. "coverage_state": "covered",
  408. "end": 252,
  409. "start": 242
  410. },
  411. {
  412. "coverage_state": "clean",
  413. "end": 253,
  414. "start": 253
  415. },
  416. {
  417. "coverage_state": "covered",
  418. "end": 254,
  419. "start": 254
  420. },
  421. {
  422. "coverage_state": "clean",
  423. "end": 264,
  424. "start": 255
  425. },
  426. {
  427. "coverage_state": "covered",
  428. "end": 269,
  429. "start": 265
  430. },
  431. {
  432. "coverage_state": "clean",
  433. "end": 270,
  434. "start": 270
  435. },
  436. {
  437. "coverage_state": "covered",
  438. "end": 275,
  439. "start": 271
  440. },
  441. {
  442. "coverage_state": "clean",
  443. "end": 276,
  444. "start": 276
  445. },
  446. {
  447. "coverage_state": "covered",
  448. "end": 277,
  449. "start": 277
  450. },
  451. {
  452. "coverage_state": "clean",
  453. "end": 280,
  454. "start": 278
  455. },
  456. {
  457. "coverage_state": "covered",
  458. "end": 281,
  459. "start": 281
  460. },
  461. {
  462. "coverage_state": "clean",
  463. "end": 309,
  464. "start": 282
  465. },
  466. {
  467. "coverage_state": "covered",
  468. "end": 310,
  469. "start": 310
  470. },
  471. {
  472. "coverage_state": "clean",
  473. "end": 311,
  474. "start": 311
  475. },
  476. {
  477. "coverage_state": "covered",
  478. "end": 317,
  479. "start": 312
  480. },
  481. {
  482. "coverage_state": "clean",
  483. "end": 318,
  484. "start": 318
  485. },
  486. {
  487. "coverage_state": "covered",
  488. "end": 319,
  489. "start": 319
  490. },
  491. {
  492. "coverage_state": "partially-covered",
  493. "end": 320,
  494. "start": 320
  495. },
  496. {
  497. "coverage_state": "covered",
  498. "end": 323,
  499. "start": 321
  500. },
  501. {
  502. "coverage_state": "partially-covered",
  503. "end": 324,
  504. "start": 324
  505. },
  506. {
  507. "coverage_state": "uncovered",
  508. "end": 325,
  509. "start": 325
  510. },
  511. {
  512. "coverage_state": "covered",
  513. "end": 326,
  514. "start": 326
  515. },
  516. {
  517. "coverage_state": "partially-covered",
  518. "end": 327,
  519. "start": 327
  520. },
  521. {
  522. "coverage_state": "uncovered",
  523. "end": 328,
  524. "start": 328
  525. },
  526. {
  527. "coverage_state": "covered",
  528. "end": 331,
  529. "start": 329
  530. },
  531. {
  532. "coverage_state": "clean",
  533. "end": 332,
  534. "start": 332
  535. },
  536. {
  537. "coverage_state": "covered",
  538. "end": 333,
  539. "start": 333
  540. },
  541. {
  542. "coverage_state": "partially-covered",
  543. "end": 334,
  544. "start": 334
  545. },
  546. {
  547. "coverage_state": "covered",
  548. "end": 335,
  549. "start": 335
  550. },
  551. {
  552. "coverage_state": "clean",
  553. "end": 338,
  554. "start": 336
  555. },
  556. {
  557. "coverage_state": "covered",
  558. "end": 340,
  559. "start": 339
  560. },
  561. {
  562. "coverage_state": "partially-covered",
  563. "end": 341,
  564. "start": 341
  565. },
  566. {
  567. "coverage_state": "uncovered",
  568. "end": 342,
  569. "start": 342
  570. },
  571. {
  572. "coverage_state": "covered",
  573. "end": 344,
  574. "start": 343
  575. },
  576. {
  577. "coverage_state": "clean",
  578. "end": 347,
  579. "start": 345
  580. },
  581. {
  582. "coverage_state": "covered",
  583. "end": 350,
  584. "start": 348
  585. },
  586. {
  587. "coverage_state": "clean",
  588. "end": 351,
  589. "start": 351
  590. },
  591. {
  592. "coverage_state": "covered",
  593. "end": 354,
  594. "start": 352
  595. },
  596. {
  597. "coverage_state": "clean",
  598. "end": 355,
  599. "start": 355
  600. },
  601. {
  602. "coverage_state": "covered",
  603. "end": 357,
  604. "start": 356
  605. },
  606. {
  607. "coverage_state": "uncovered",
  608. "end": 359,
  609. "start": 358
  610. },
  611. {
  612. "coverage_state": "clean",
  613. "end": 362,
  614. "start": 360
  615. },
  616. {
  617. "coverage_state": "covered",
  618. "end": 363,
  619. "start": 363
  620. },
  621. {
  622. "coverage_state": "partially-covered",
  623. "end": 364,
  624. "start": 364
  625. },
  626. {
  627. "coverage_state": "covered",
  628. "end": 366,
  629. "start": 365
  630. },
  631. {
  632. "coverage_state": "uncovered",
  633. "end": 369,
  634. "start": 367
  635. },
  636. {
  637. "coverage_state": "clean",
  638. "end": 370,
  639. "start": 370
  640. },
  641. {
  642. "coverage_state": "uncovered",
  643. "end": 372,
  644. "start": 371
  645. },
  646. {
  647. "coverage_state": "clean",
  648. "end": 373,
  649. "start": 373
  650. },
  651. {
  652. "coverage_state": "covered",
  653. "end": 376,
  654. "start": 374
  655. },
  656. {
  657. "coverage_state": "clean",
  658. "end": 377,
  659. "start": 377
  660. },
  661. {
  662. "coverage_state": "covered",
  663. "end": 379,
  664. "start": 378
  665. },
  666. {
  667. "coverage_state": "clean",
  668. "end": null,
  669. "start": 380
  670. }
  671. ],
  672. "line_coverage": 81.46,
  673. "name": "report.__init__.py"
  674. }
  675. ],
  676. "line_coverage": 81.46,
  677. "name": "report"
  678. }
  679. ],
  680. "lost_souls": {
  681. "item_list": [],
  682. "testcase_list": []
  683. },
  684. "specification": {
  685. "comment": "Comment",
  686. "item_dict": {
  687. "_5ZAecCvUEeqssZLMJF_fcg": {
  688. "Heading": "collectingHandler",
  689. "last_change": "2019-12-31T14:53:09.820+01:00",
  690. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  691. "system_uid": "_5ZAecCvUEeqssZLMJF_fcg",
  692. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  693. },
  694. "_ErFPoCvVEeqssZLMJF_fcg": {
  695. "Heading": "String representation (collectingHandler)",
  696. "ID": "REQ-2",
  697. "last_change": "2019-12-31T14:58:31.681+01:00",
  698. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  699. "system_uid": "_ErFPoCvVEeqssZLMJF_fcg",
  700. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  701. },
  702. "_MR7eOHYYEem_kd-7nxt1sg": {
  703. "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.",
  704. "Heading": "General Information",
  705. "last_change": "2019-12-31T14:53:09.779+01:00",
  706. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  707. "system_uid": "_MR7eOHYYEem_kd-7nxt1sg",
  708. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  709. },
  710. "_NXT_8CvVEeqssZLMJF_fcg": {
  711. "Heading": "collectingRingHandler",
  712. "last_change": "2019-12-31T14:55:23.658+01:00",
  713. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  714. "system_uid": "_NXT_8CvVEeqssZLMJF_fcg",
  715. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  716. },
  717. "_PVhZECvVEeqssZLMJF_fcg": {
  718. "Heading": "Store log records (collectingRingHandler)",
  719. "ID": "REQ-3",
  720. "last_change": "2019-12-31T14:59:27.841+01:00",
  721. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  722. "system_uid": "_PVhZECvVEeqssZLMJF_fcg",
  723. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  724. },
  725. "_QBmb8CvVEeqssZLMJF_fcg": {
  726. "Heading": "String representation (collectingRingHandler)",
  727. "ID": "REQ-4",
  728. "last_change": "2019-12-31T14:59:35.961+01:00",
  729. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  730. "system_uid": "_QBmb8CvVEeqssZLMJF_fcg",
  731. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  732. },
  733. "_XzMFcHYZEem_kd-7nxt1sg": {
  734. "Description": "Description 1.",
  735. "Fitcriterion": "",
  736. "Heading": "Store log records (collectingHandler)",
  737. "ID": "REQ-1",
  738. "ReasonForImplementation": "",
  739. "last_change": "2019-12-31T15:00:22.677+01:00",
  740. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  741. "system_uid": "_XzMFcHYZEem_kd-7nxt1sg",
  742. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  743. },
  744. "_fW5s8CzQEeqYsdFh5Cd6ng": {
  745. "Description": "The number of stored log-records shall be given on initialisation or reinitialisation. ",
  746. "Heading": "Number of stored logs in the RingHandler",
  747. "ID": "REQ-5",
  748. "last_change": "2020-01-01T20:54:04.445+01:00",
  749. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  750. "system_uid": "_fW5s8CzQEeqYsdFh5Cd6ng",
  751. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  752. }
  753. },
  754. "titel": "Title",
  755. "uid_list_sorted": [
  756. "_MR7eOHYYEem_kd-7nxt1sg",
  757. "_5ZAecCvUEeqssZLMJF_fcg",
  758. "_XzMFcHYZEem_kd-7nxt1sg",
  759. "_ErFPoCvVEeqssZLMJF_fcg",
  760. "_NXT_8CvVEeqssZLMJF_fcg",
  761. "_PVhZECvVEeqssZLMJF_fcg",
  762. "_QBmb8CvVEeqssZLMJF_fcg",
  763. "_fW5s8CzQEeqYsdFh5Cd6ng"
  764. ]
  765. },
  766. "system_information": {
  767. "Architecture": "64bit",
  768. "Distribution": "Ubuntu 22.04 Jammy Jellyfish",
  769. "Hostname": "ahorn",
  770. "Kernel": "5.15.0-27-lowlatency (#28-Ubuntu SMP PREEMPT Tue Apr 19 15:27:08 UTC 2022)",
  771. "Machine": "x86_64",
  772. "Path": "/home/dirk/my_repositories/unittest/report",
  773. "System": "Linux",
  774. "Username": "dirk"
  775. },
  776. "testobject_information": {
  777. "Dependencies": [],
  778. "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.",
  779. "Name": "report",
  780. "State": "Released",
  781. "Supported Interpreters": "python3",
  782. "Version": "6d66b6f5e942506500a4c4a1e2e6f8e2"
  783. },
  784. "testrun_list": [
  785. {
  786. "heading_dict": {
  787. "_5ZAecCvUEeqssZLMJF_fcg": "collectingHandler",
  788. "_ErFPoCvVEeqssZLMJF_fcg": "String representation (collectingHandler)",
  789. "_MR7eOHYYEem_kd-7nxt1sg": "General Information",
  790. "_NXT_8CvVEeqssZLMJF_fcg": "collectingRingHandler",
  791. "_PVhZECvVEeqssZLMJF_fcg": "Store log records (collectingRingHandler)",
  792. "_QBmb8CvVEeqssZLMJF_fcg": "String representation (collectingRingHandler)",
  793. "_XzMFcHYZEem_kd-7nxt1sg": "Store log records (collectingHandler)",
  794. "_fW5s8CzQEeqYsdFh5Cd6ng": "Number of stored logs in the RingHandler"
  795. },
  796. "interpreter": "python 3.10.4 (final)",
  797. "name": "Default Testsession name",
  798. "number_of_failed_tests": 0,
  799. "number_of_possibly_failed_tests": 0,
  800. "number_of_successfull_tests": 5,
  801. "number_of_tests": 5,
  802. "testcase_execution_level": 90,
  803. "testcase_names": {
  804. "0": "Single Test",
  805. "10": "Smoke Test (Minumum subset)",
  806. "50": "Short Test (Subset)",
  807. "90": "Full Test (all defined tests)"
  808. },
  809. "testcases": {
  810. "_ErFPoCvVEeqssZLMJF_fcg": {
  811. "args": null,
  812. "asctime": "2022-05-08 21:03:46,974",
  813. "created": 1652036626.974001,
  814. "exc_info": null,
  815. "exc_text": null,
  816. "filename": "__init__.py",
  817. "funcName": "testrun",
  818. "levelname": "INFO",
  819. "levelno": 20,
  820. "lineno": 20,
  821. "message": "_ErFPoCvVEeqssZLMJF_fcg",
  822. "module": "__init__",
  823. "moduleLogger": [],
  824. "msecs": 974.0009307861328,
  825. "msg": "_ErFPoCvVEeqssZLMJF_fcg",
  826. "name": "__tLogger__",
  827. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/__init__.py",
  828. "process": 247081,
  829. "processName": "MainProcess",
  830. "relativeCreated": 71.07281684875488,
  831. "stack_info": null,
  832. "testcaseLogger": [
  833. {
  834. "args": [],
  835. "asctime": "2022-05-08 21:03:46,975",
  836. "created": 1652036626.975016,
  837. "exc_info": null,
  838. "exc_text": null,
  839. "filename": "test_helpers.py",
  840. "funcName": "__init__",
  841. "levelname": "DEBUG",
  842. "levelno": 10,
  843. "lineno": 38,
  844. "message": "Running logger test sequence.",
  845. "module": "test_helpers",
  846. "moduleLogger": [
  847. {
  848. "args": [],
  849. "asctime": "2022-05-08 21:03:46,974",
  850. "created": 1652036626.9740832,
  851. "exc_info": null,
  852. "exc_text": null,
  853. "filename": "test_helpers.py",
  854. "funcName": "__init__",
  855. "levelname": "DEBUG",
  856. "levelno": 10,
  857. "lineno": 22,
  858. "message": "Configuring collecting logger",
  859. "module": "test_helpers",
  860. "msecs": 974.0831851959229,
  861. "msg": "Configuring collecting logger",
  862. "name": "__unittest__",
  863. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  864. "process": 247081,
  865. "processName": "MainProcess",
  866. "relativeCreated": 71.15507125854492,
  867. "stack_info": null,
  868. "thread": 140429627637760,
  869. "threadName": "MainThread"
  870. },
  871. {
  872. "args": [
  873. 1,
  874. "DEBUG",
  875. "collectingHandler"
  876. ],
  877. "asctime": "2022-05-08 21:03:46,974",
  878. "created": 1652036626.9741676,
  879. "exc_info": null,
  880. "exc_text": null,
  881. "filename": "test_helpers.py",
  882. "funcName": "__init__",
  883. "levelname": "DEBUG",
  884. "levelno": 10,
  885. "lineno": 36,
  886. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  887. "module": "test_helpers",
  888. "msecs": 974.1675853729248,
  889. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  890. "name": "__unittest__",
  891. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  892. "process": 247081,
  893. "processName": "MainProcess",
  894. "relativeCreated": 71.23947143554688,
  895. "stack_info": null,
  896. "thread": 140429627637760,
  897. "threadName": "MainThread"
  898. },
  899. {
  900. "args": [
  901. 1,
  902. "DEBUG"
  903. ],
  904. "asctime": "2022-05-08 21:03:46,974",
  905. "created": 1652036626.9742167,
  906. "exc_info": null,
  907. "exc_text": null,
  908. "filename": "test_helpers.py",
  909. "funcName": "__init__",
  910. "levelname": "DEBUG",
  911. "levelno": 10,
  912. "lineno": 37,
  913. "message": "Log entry number 1 with level DEBUG.",
  914. "module": "test_helpers",
  915. "msecs": 974.2166996002197,
  916. "msg": "Log entry number %d with level %s.",
  917. "name": "test_sequence",
  918. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  919. "process": 247081,
  920. "processName": "MainProcess",
  921. "relativeCreated": 71.2885856628418,
  922. "stack_info": null,
  923. "thread": 140429627637760,
  924. "threadName": "MainThread"
  925. },
  926. {
  927. "args": [
  928. 2,
  929. "INFO",
  930. "collectingHandler"
  931. ],
  932. "asctime": "2022-05-08 21:03:46,974",
  933. "created": 1652036626.9742973,
  934. "exc_info": null,
  935. "exc_text": null,
  936. "filename": "test_helpers.py",
  937. "funcName": "__init__",
  938. "levelname": "DEBUG",
  939. "levelno": 10,
  940. "lineno": 36,
  941. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  942. "module": "test_helpers",
  943. "msecs": 974.297285079956,
  944. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  945. "name": "__unittest__",
  946. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  947. "process": 247081,
  948. "processName": "MainProcess",
  949. "relativeCreated": 71.36917114257812,
  950. "stack_info": null,
  951. "thread": 140429627637760,
  952. "threadName": "MainThread"
  953. },
  954. {
  955. "args": [
  956. 2,
  957. "INFO"
  958. ],
  959. "asctime": "2022-05-08 21:03:46,974",
  960. "created": 1652036626.9743428,
  961. "exc_info": null,
  962. "exc_text": null,
  963. "filename": "test_helpers.py",
  964. "funcName": "__init__",
  965. "levelname": "INFO",
  966. "levelno": 20,
  967. "lineno": 37,
  968. "message": "Log entry number 2 with level INFO.",
  969. "module": "test_helpers",
  970. "msecs": 974.3428230285645,
  971. "msg": "Log entry number %d with level %s.",
  972. "name": "test_sequence",
  973. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  974. "process": 247081,
  975. "processName": "MainProcess",
  976. "relativeCreated": 71.41470909118652,
  977. "stack_info": null,
  978. "thread": 140429627637760,
  979. "threadName": "MainThread"
  980. },
  981. {
  982. "args": [
  983. 3,
  984. "WARNING",
  985. "collectingHandler"
  986. ],
  987. "asctime": "2022-05-08 21:03:46,974",
  988. "created": 1652036626.9744203,
  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 3 with level WARNING.\" to collectingHandler.",
  997. "module": "test_helpers",
  998. "msecs": 974.4203090667725,
  999. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1000. "name": "__unittest__",
  1001. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1002. "process": 247081,
  1003. "processName": "MainProcess",
  1004. "relativeCreated": 71.49219512939453,
  1005. "stack_info": null,
  1006. "thread": 140429627637760,
  1007. "threadName": "MainThread"
  1008. },
  1009. {
  1010. "args": [
  1011. 3,
  1012. "WARNING"
  1013. ],
  1014. "asctime": "2022-05-08 21:03:46,974",
  1015. "created": 1652036626.9744666,
  1016. "exc_info": null,
  1017. "exc_text": null,
  1018. "filename": "test_helpers.py",
  1019. "funcName": "__init__",
  1020. "levelname": "WARNING",
  1021. "levelno": 30,
  1022. "lineno": 37,
  1023. "message": "Log entry number 3 with level WARNING.",
  1024. "module": "test_helpers",
  1025. "msecs": 974.4665622711182,
  1026. "msg": "Log entry number %d with level %s.",
  1027. "name": "test_sequence",
  1028. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1029. "process": 247081,
  1030. "processName": "MainProcess",
  1031. "relativeCreated": 71.53844833374023,
  1032. "stack_info": null,
  1033. "thread": 140429627637760,
  1034. "threadName": "MainThread"
  1035. },
  1036. {
  1037. "args": [
  1038. 4,
  1039. "ERROR",
  1040. "collectingHandler"
  1041. ],
  1042. "asctime": "2022-05-08 21:03:46,974",
  1043. "created": 1652036626.9745436,
  1044. "exc_info": null,
  1045. "exc_text": null,
  1046. "filename": "test_helpers.py",
  1047. "funcName": "__init__",
  1048. "levelname": "DEBUG",
  1049. "levelno": 10,
  1050. "lineno": 36,
  1051. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  1052. "module": "test_helpers",
  1053. "msecs": 974.543571472168,
  1054. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1055. "name": "__unittest__",
  1056. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1057. "process": 247081,
  1058. "processName": "MainProcess",
  1059. "relativeCreated": 71.61545753479004,
  1060. "stack_info": null,
  1061. "thread": 140429627637760,
  1062. "threadName": "MainThread"
  1063. },
  1064. {
  1065. "args": [
  1066. 4,
  1067. "ERROR"
  1068. ],
  1069. "asctime": "2022-05-08 21:03:46,974",
  1070. "created": 1652036626.9745882,
  1071. "exc_info": null,
  1072. "exc_text": null,
  1073. "filename": "test_helpers.py",
  1074. "funcName": "__init__",
  1075. "levelname": "ERROR",
  1076. "levelno": 40,
  1077. "lineno": 37,
  1078. "message": "Log entry number 4 with level ERROR.",
  1079. "module": "test_helpers",
  1080. "msecs": 974.58815574646,
  1081. "msg": "Log entry number %d with level %s.",
  1082. "name": "test_sequence",
  1083. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1084. "process": 247081,
  1085. "processName": "MainProcess",
  1086. "relativeCreated": 71.66004180908203,
  1087. "stack_info": null,
  1088. "thread": 140429627637760,
  1089. "threadName": "MainThread"
  1090. },
  1091. {
  1092. "args": [
  1093. 5,
  1094. "CRITICAL",
  1095. "collectingHandler"
  1096. ],
  1097. "asctime": "2022-05-08 21:03:46,974",
  1098. "created": 1652036626.9746683,
  1099. "exc_info": null,
  1100. "exc_text": null,
  1101. "filename": "test_helpers.py",
  1102. "funcName": "__init__",
  1103. "levelname": "DEBUG",
  1104. "levelno": 10,
  1105. "lineno": 36,
  1106. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  1107. "module": "test_helpers",
  1108. "msecs": 974.6682643890381,
  1109. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1110. "name": "__unittest__",
  1111. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1112. "process": 247081,
  1113. "processName": "MainProcess",
  1114. "relativeCreated": 71.74015045166016,
  1115. "stack_info": null,
  1116. "thread": 140429627637760,
  1117. "threadName": "MainThread"
  1118. },
  1119. {
  1120. "args": [
  1121. 5,
  1122. "CRITICAL"
  1123. ],
  1124. "asctime": "2022-05-08 21:03:46,974",
  1125. "created": 1652036626.9747138,
  1126. "exc_info": null,
  1127. "exc_text": null,
  1128. "filename": "test_helpers.py",
  1129. "funcName": "__init__",
  1130. "levelname": "CRITICAL",
  1131. "levelno": 50,
  1132. "lineno": 37,
  1133. "message": "Log entry number 5 with level CRITICAL.",
  1134. "module": "test_helpers",
  1135. "msecs": 974.7138023376465,
  1136. "msg": "Log entry number %d with level %s.",
  1137. "name": "test_sequence",
  1138. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1139. "process": 247081,
  1140. "processName": "MainProcess",
  1141. "relativeCreated": 71.78568840026855,
  1142. "stack_info": null,
  1143. "thread": 140429627637760,
  1144. "threadName": "MainThread"
  1145. },
  1146. {
  1147. "args": [
  1148. 6,
  1149. "INFO",
  1150. "collectingHandler"
  1151. ],
  1152. "asctime": "2022-05-08 21:03:46,974",
  1153. "created": 1652036626.9747884,
  1154. "exc_info": null,
  1155. "exc_text": null,
  1156. "filename": "test_helpers.py",
  1157. "funcName": "__init__",
  1158. "levelname": "DEBUG",
  1159. "levelno": 10,
  1160. "lineno": 36,
  1161. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  1162. "module": "test_helpers",
  1163. "msecs": 974.7884273529053,
  1164. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1165. "name": "__unittest__",
  1166. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1167. "process": 247081,
  1168. "processName": "MainProcess",
  1169. "relativeCreated": 71.86031341552734,
  1170. "stack_info": null,
  1171. "thread": 140429627637760,
  1172. "threadName": "MainThread"
  1173. },
  1174. {
  1175. "args": [
  1176. 6,
  1177. "INFO"
  1178. ],
  1179. "asctime": "2022-05-08 21:03:46,974",
  1180. "created": 1652036626.9748282,
  1181. "exc_info": null,
  1182. "exc_text": null,
  1183. "filename": "test_helpers.py",
  1184. "funcName": "__init__",
  1185. "levelname": "INFO",
  1186. "levelno": 20,
  1187. "lineno": 37,
  1188. "message": "Log entry number 6 with level INFO.",
  1189. "module": "test_helpers",
  1190. "msecs": 974.8282432556152,
  1191. "msg": "Log entry number %d with level %s.",
  1192. "name": "test_sequence",
  1193. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1194. "process": 247081,
  1195. "processName": "MainProcess",
  1196. "relativeCreated": 71.9001293182373,
  1197. "stack_info": null,
  1198. "thread": 140429627637760,
  1199. "threadName": "MainThread"
  1200. },
  1201. {
  1202. "args": [
  1203. 7,
  1204. "ERROR",
  1205. "collectingHandler"
  1206. ],
  1207. "asctime": "2022-05-08 21:03:46,974",
  1208. "created": 1652036626.9749007,
  1209. "exc_info": null,
  1210. "exc_text": null,
  1211. "filename": "test_helpers.py",
  1212. "funcName": "__init__",
  1213. "levelname": "DEBUG",
  1214. "levelno": 10,
  1215. "lineno": 36,
  1216. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.",
  1217. "module": "test_helpers",
  1218. "msecs": 974.9007225036621,
  1219. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  1220. "name": "__unittest__",
  1221. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1222. "process": 247081,
  1223. "processName": "MainProcess",
  1224. "relativeCreated": 71.97260856628418,
  1225. "stack_info": null,
  1226. "thread": 140429627637760,
  1227. "threadName": "MainThread"
  1228. },
  1229. {
  1230. "args": [
  1231. 7,
  1232. "ERROR"
  1233. ],
  1234. "asctime": "2022-05-08 21:03:46,974",
  1235. "created": 1652036626.9749408,
  1236. "exc_info": null,
  1237. "exc_text": null,
  1238. "filename": "test_helpers.py",
  1239. "funcName": "__init__",
  1240. "levelname": "ERROR",
  1241. "levelno": 40,
  1242. "lineno": 37,
  1243. "message": "Log entry number 7 with level ERROR.",
  1244. "module": "test_helpers",
  1245. "msecs": 974.9407768249512,
  1246. "msg": "Log entry number %d with level %s.",
  1247. "name": "test_sequence",
  1248. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1249. "process": 247081,
  1250. "processName": "MainProcess",
  1251. "relativeCreated": 72.01266288757324,
  1252. "stack_info": null,
  1253. "thread": 140429627637760,
  1254. "threadName": "MainThread"
  1255. }
  1256. ],
  1257. "msecs": 975.0161170959473,
  1258. "msg": "Running logger test sequence.",
  1259. "name": "__tLogger__",
  1260. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1261. "process": 247081,
  1262. "processName": "MainProcess",
  1263. "relativeCreated": 72.08800315856934,
  1264. "stack_info": null,
  1265. "thread": 140429627637760,
  1266. "threadName": "MainThread",
  1267. "time_consumption": 7.534027099609375e-05
  1268. },
  1269. {
  1270. "args": [],
  1271. "asctime": "2022-05-08 21:03:46,976",
  1272. "created": 1652036626.9761987,
  1273. "exc_info": null,
  1274. "exc_text": null,
  1275. "filename": "test.py",
  1276. "funcName": "report",
  1277. "levelname": "INFO",
  1278. "levelno": 20,
  1279. "lineno": 168,
  1280. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  1281. "module": "test",
  1282. "moduleLogger": [
  1283. {
  1284. "args": [
  1285. "Indexlist of log entries in stringrepresentation",
  1286. "[ 49, 134, 221, 309, 398, 486, 571 ]",
  1287. "<class 'list'>"
  1288. ],
  1289. "asctime": "2022-05-08 21:03:46,975",
  1290. "created": 1652036626.9751563,
  1291. "exc_info": null,
  1292. "exc_text": null,
  1293. "filename": "test.py",
  1294. "funcName": "__report_result__",
  1295. "levelname": "DEBUG",
  1296. "levelno": 10,
  1297. "lineno": 22,
  1298. "message": "Result (Indexlist of log entries in stringrepresentation): [ 49, 134, 221, 309, 398, 486, 571 ] (<class 'list'>)",
  1299. "module": "test",
  1300. "msecs": 975.156307220459,
  1301. "msg": "Result (%s): %s (%s)",
  1302. "name": "__unittest__",
  1303. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1304. "process": 247081,
  1305. "processName": "MainProcess",
  1306. "relativeCreated": 72.22819328308105,
  1307. "stack_info": null,
  1308. "thread": 140429627637760,
  1309. "threadName": "MainThread"
  1310. },
  1311. {
  1312. "args": [
  1313. "Indexlist of log entries in stringrepresentation",
  1314. "[ 49, 134, 221, 309, 398, 486, 571 ]",
  1315. "<class 'list'>"
  1316. ],
  1317. "asctime": "2022-05-08 21:03:46,975",
  1318. "created": 1652036626.975221,
  1319. "exc_info": null,
  1320. "exc_text": null,
  1321. "filename": "test.py",
  1322. "funcName": "__report_expectation_equivalency__",
  1323. "levelname": "DEBUG",
  1324. "levelno": 10,
  1325. "lineno": 26,
  1326. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 49, 134, 221, 309, 398, 486, 571 ] (<class 'list'>)",
  1327. "module": "test",
  1328. "msecs": 975.2209186553955,
  1329. "msg": "Expectation (%s): result = %s (%s)",
  1330. "name": "__unittest__",
  1331. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1332. "process": 247081,
  1333. "processName": "MainProcess",
  1334. "relativeCreated": 72.29280471801758,
  1335. "stack_info": null,
  1336. "thread": 140429627637760,
  1337. "threadName": "MainThread"
  1338. },
  1339. {
  1340. "args": [
  1341. "Submitted value number 1",
  1342. "49",
  1343. "<class 'int'>"
  1344. ],
  1345. "asctime": "2022-05-08 21:03:46,975",
  1346. "created": 1652036626.9752707,
  1347. "exc_info": null,
  1348. "exc_text": null,
  1349. "filename": "test.py",
  1350. "funcName": "__report_result__",
  1351. "levelname": "DEBUG",
  1352. "levelno": 10,
  1353. "lineno": 22,
  1354. "message": "Result (Submitted value number 1): 49 (<class 'int'>)",
  1355. "module": "test",
  1356. "msecs": 975.2707481384277,
  1357. "msg": "Result (%s): %s (%s)",
  1358. "name": "__unittest__",
  1359. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1360. "process": 247081,
  1361. "processName": "MainProcess",
  1362. "relativeCreated": 72.3426342010498,
  1363. "stack_info": null,
  1364. "thread": 140429627637760,
  1365. "threadName": "MainThread"
  1366. },
  1367. {
  1368. "args": [
  1369. "Submitted value number 1",
  1370. "49",
  1371. "<class 'int'>"
  1372. ],
  1373. "asctime": "2022-05-08 21:03:46,975",
  1374. "created": 1652036626.9753146,
  1375. "exc_info": null,
  1376. "exc_text": null,
  1377. "filename": "test.py",
  1378. "funcName": "__report_expectation_equivalency__",
  1379. "levelname": "DEBUG",
  1380. "levelno": 10,
  1381. "lineno": 26,
  1382. "message": "Expectation (Submitted value number 1): result = 49 (<class 'int'>)",
  1383. "module": "test",
  1384. "msecs": 975.3146171569824,
  1385. "msg": "Expectation (%s): result = %s (%s)",
  1386. "name": "__unittest__",
  1387. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1388. "process": 247081,
  1389. "processName": "MainProcess",
  1390. "relativeCreated": 72.38650321960449,
  1391. "stack_info": null,
  1392. "thread": 140429627637760,
  1393. "threadName": "MainThread"
  1394. },
  1395. {
  1396. "args": [
  1397. "49",
  1398. "<class 'int'>"
  1399. ],
  1400. "asctime": "2022-05-08 21:03:46,975",
  1401. "created": 1652036626.9753633,
  1402. "exc_info": null,
  1403. "exc_text": null,
  1404. "filename": "test.py",
  1405. "funcName": "equivalency_chk",
  1406. "levelname": "INFO",
  1407. "levelno": 20,
  1408. "lineno": 144,
  1409. "message": "Submitted value number 1 is correct (Content 49 and Type is <class 'int'>).",
  1410. "module": "test",
  1411. "msecs": 975.3632545471191,
  1412. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  1413. "name": "__unittest__",
  1414. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1415. "process": 247081,
  1416. "processName": "MainProcess",
  1417. "relativeCreated": 72.43514060974121,
  1418. "stack_info": null,
  1419. "thread": 140429627637760,
  1420. "threadName": "MainThread"
  1421. },
  1422. {
  1423. "args": [
  1424. "Submitted value number 2",
  1425. "134",
  1426. "<class 'int'>"
  1427. ],
  1428. "asctime": "2022-05-08 21:03:46,975",
  1429. "created": 1652036626.975412,
  1430. "exc_info": null,
  1431. "exc_text": null,
  1432. "filename": "test.py",
  1433. "funcName": "__report_result__",
  1434. "levelname": "DEBUG",
  1435. "levelno": 10,
  1436. "lineno": 22,
  1437. "message": "Result (Submitted value number 2): 134 (<class 'int'>)",
  1438. "module": "test",
  1439. "msecs": 975.4118919372559,
  1440. "msg": "Result (%s): %s (%s)",
  1441. "name": "__unittest__",
  1442. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1443. "process": 247081,
  1444. "processName": "MainProcess",
  1445. "relativeCreated": 72.48377799987793,
  1446. "stack_info": null,
  1447. "thread": 140429627637760,
  1448. "threadName": "MainThread"
  1449. },
  1450. {
  1451. "args": [
  1452. "Submitted value number 2",
  1453. "134",
  1454. "<class 'int'>"
  1455. ],
  1456. "asctime": "2022-05-08 21:03:46,975",
  1457. "created": 1652036626.9754546,
  1458. "exc_info": null,
  1459. "exc_text": null,
  1460. "filename": "test.py",
  1461. "funcName": "__report_expectation_equivalency__",
  1462. "levelname": "DEBUG",
  1463. "levelno": 10,
  1464. "lineno": 26,
  1465. "message": "Expectation (Submitted value number 2): result = 134 (<class 'int'>)",
  1466. "module": "test",
  1467. "msecs": 975.454568862915,
  1468. "msg": "Expectation (%s): result = %s (%s)",
  1469. "name": "__unittest__",
  1470. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1471. "process": 247081,
  1472. "processName": "MainProcess",
  1473. "relativeCreated": 72.52645492553711,
  1474. "stack_info": null,
  1475. "thread": 140429627637760,
  1476. "threadName": "MainThread"
  1477. },
  1478. {
  1479. "args": [
  1480. "134",
  1481. "<class 'int'>"
  1482. ],
  1483. "asctime": "2022-05-08 21:03:46,975",
  1484. "created": 1652036626.9754972,
  1485. "exc_info": null,
  1486. "exc_text": null,
  1487. "filename": "test.py",
  1488. "funcName": "equivalency_chk",
  1489. "levelname": "INFO",
  1490. "levelno": 20,
  1491. "lineno": 144,
  1492. "message": "Submitted value number 2 is correct (Content 134 and Type is <class 'int'>).",
  1493. "module": "test",
  1494. "msecs": 975.4972457885742,
  1495. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  1496. "name": "__unittest__",
  1497. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1498. "process": 247081,
  1499. "processName": "MainProcess",
  1500. "relativeCreated": 72.56913185119629,
  1501. "stack_info": null,
  1502. "thread": 140429627637760,
  1503. "threadName": "MainThread"
  1504. },
  1505. {
  1506. "args": [
  1507. "Submitted value number 3",
  1508. "221",
  1509. "<class 'int'>"
  1510. ],
  1511. "asctime": "2022-05-08 21:03:46,975",
  1512. "created": 1652036626.9755406,
  1513. "exc_info": null,
  1514. "exc_text": null,
  1515. "filename": "test.py",
  1516. "funcName": "__report_result__",
  1517. "levelname": "DEBUG",
  1518. "levelno": 10,
  1519. "lineno": 22,
  1520. "message": "Result (Submitted value number 3): 221 (<class 'int'>)",
  1521. "module": "test",
  1522. "msecs": 975.5406379699707,
  1523. "msg": "Result (%s): %s (%s)",
  1524. "name": "__unittest__",
  1525. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1526. "process": 247081,
  1527. "processName": "MainProcess",
  1528. "relativeCreated": 72.61252403259277,
  1529. "stack_info": null,
  1530. "thread": 140429627637760,
  1531. "threadName": "MainThread"
  1532. },
  1533. {
  1534. "args": [
  1535. "Submitted value number 3",
  1536. "221",
  1537. "<class 'int'>"
  1538. ],
  1539. "asctime": "2022-05-08 21:03:46,975",
  1540. "created": 1652036626.975583,
  1541. "exc_info": null,
  1542. "exc_text": null,
  1543. "filename": "test.py",
  1544. "funcName": "__report_expectation_equivalency__",
  1545. "levelname": "DEBUG",
  1546. "levelno": 10,
  1547. "lineno": 26,
  1548. "message": "Expectation (Submitted value number 3): result = 221 (<class 'int'>)",
  1549. "module": "test",
  1550. "msecs": 975.5830764770508,
  1551. "msg": "Expectation (%s): result = %s (%s)",
  1552. "name": "__unittest__",
  1553. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1554. "process": 247081,
  1555. "processName": "MainProcess",
  1556. "relativeCreated": 72.65496253967285,
  1557. "stack_info": null,
  1558. "thread": 140429627637760,
  1559. "threadName": "MainThread"
  1560. },
  1561. {
  1562. "args": [
  1563. "221",
  1564. "<class 'int'>"
  1565. ],
  1566. "asctime": "2022-05-08 21:03:46,975",
  1567. "created": 1652036626.9756298,
  1568. "exc_info": null,
  1569. "exc_text": null,
  1570. "filename": "test.py",
  1571. "funcName": "equivalency_chk",
  1572. "levelname": "INFO",
  1573. "levelno": 20,
  1574. "lineno": 144,
  1575. "message": "Submitted value number 3 is correct (Content 221 and Type is <class 'int'>).",
  1576. "module": "test",
  1577. "msecs": 975.6298065185547,
  1578. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  1579. "name": "__unittest__",
  1580. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1581. "process": 247081,
  1582. "processName": "MainProcess",
  1583. "relativeCreated": 72.70169258117676,
  1584. "stack_info": null,
  1585. "thread": 140429627637760,
  1586. "threadName": "MainThread"
  1587. },
  1588. {
  1589. "args": [
  1590. "Submitted value number 4",
  1591. "309",
  1592. "<class 'int'>"
  1593. ],
  1594. "asctime": "2022-05-08 21:03:46,975",
  1595. "created": 1652036626.9756749,
  1596. "exc_info": null,
  1597. "exc_text": null,
  1598. "filename": "test.py",
  1599. "funcName": "__report_result__",
  1600. "levelname": "DEBUG",
  1601. "levelno": 10,
  1602. "lineno": 22,
  1603. "message": "Result (Submitted value number 4): 309 (<class 'int'>)",
  1604. "module": "test",
  1605. "msecs": 975.6748676300049,
  1606. "msg": "Result (%s): %s (%s)",
  1607. "name": "__unittest__",
  1608. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1609. "process": 247081,
  1610. "processName": "MainProcess",
  1611. "relativeCreated": 72.74675369262695,
  1612. "stack_info": null,
  1613. "thread": 140429627637760,
  1614. "threadName": "MainThread"
  1615. },
  1616. {
  1617. "args": [
  1618. "Submitted value number 4",
  1619. "309",
  1620. "<class 'int'>"
  1621. ],
  1622. "asctime": "2022-05-08 21:03:46,975",
  1623. "created": 1652036626.9757168,
  1624. "exc_info": null,
  1625. "exc_text": null,
  1626. "filename": "test.py",
  1627. "funcName": "__report_expectation_equivalency__",
  1628. "levelname": "DEBUG",
  1629. "levelno": 10,
  1630. "lineno": 26,
  1631. "message": "Expectation (Submitted value number 4): result = 309 (<class 'int'>)",
  1632. "module": "test",
  1633. "msecs": 975.7168292999268,
  1634. "msg": "Expectation (%s): result = %s (%s)",
  1635. "name": "__unittest__",
  1636. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1637. "process": 247081,
  1638. "processName": "MainProcess",
  1639. "relativeCreated": 72.78871536254883,
  1640. "stack_info": null,
  1641. "thread": 140429627637760,
  1642. "threadName": "MainThread"
  1643. },
  1644. {
  1645. "args": [
  1646. "309",
  1647. "<class 'int'>"
  1648. ],
  1649. "asctime": "2022-05-08 21:03:46,975",
  1650. "created": 1652036626.9757624,
  1651. "exc_info": null,
  1652. "exc_text": null,
  1653. "filename": "test.py",
  1654. "funcName": "equivalency_chk",
  1655. "levelname": "INFO",
  1656. "levelno": 20,
  1657. "lineno": 144,
  1658. "message": "Submitted value number 4 is correct (Content 309 and Type is <class 'int'>).",
  1659. "module": "test",
  1660. "msecs": 975.7623672485352,
  1661. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  1662. "name": "__unittest__",
  1663. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1664. "process": 247081,
  1665. "processName": "MainProcess",
  1666. "relativeCreated": 72.83425331115723,
  1667. "stack_info": null,
  1668. "thread": 140429627637760,
  1669. "threadName": "MainThread"
  1670. },
  1671. {
  1672. "args": [
  1673. "Submitted value number 5",
  1674. "398",
  1675. "<class 'int'>"
  1676. ],
  1677. "asctime": "2022-05-08 21:03:46,975",
  1678. "created": 1652036626.975806,
  1679. "exc_info": null,
  1680. "exc_text": null,
  1681. "filename": "test.py",
  1682. "funcName": "__report_result__",
  1683. "levelname": "DEBUG",
  1684. "levelno": 10,
  1685. "lineno": 22,
  1686. "message": "Result (Submitted value number 5): 398 (<class 'int'>)",
  1687. "module": "test",
  1688. "msecs": 975.8059978485107,
  1689. "msg": "Result (%s): %s (%s)",
  1690. "name": "__unittest__",
  1691. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1692. "process": 247081,
  1693. "processName": "MainProcess",
  1694. "relativeCreated": 72.87788391113281,
  1695. "stack_info": null,
  1696. "thread": 140429627637760,
  1697. "threadName": "MainThread"
  1698. },
  1699. {
  1700. "args": [
  1701. "Submitted value number 5",
  1702. "398",
  1703. "<class 'int'>"
  1704. ],
  1705. "asctime": "2022-05-08 21:03:46,975",
  1706. "created": 1652036626.9758477,
  1707. "exc_info": null,
  1708. "exc_text": null,
  1709. "filename": "test.py",
  1710. "funcName": "__report_expectation_equivalency__",
  1711. "levelname": "DEBUG",
  1712. "levelno": 10,
  1713. "lineno": 26,
  1714. "message": "Expectation (Submitted value number 5): result = 398 (<class 'int'>)",
  1715. "module": "test",
  1716. "msecs": 975.8477210998535,
  1717. "msg": "Expectation (%s): result = %s (%s)",
  1718. "name": "__unittest__",
  1719. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1720. "process": 247081,
  1721. "processName": "MainProcess",
  1722. "relativeCreated": 72.91960716247559,
  1723. "stack_info": null,
  1724. "thread": 140429627637760,
  1725. "threadName": "MainThread"
  1726. },
  1727. {
  1728. "args": [
  1729. "398",
  1730. "<class 'int'>"
  1731. ],
  1732. "asctime": "2022-05-08 21:03:46,975",
  1733. "created": 1652036626.9758933,
  1734. "exc_info": null,
  1735. "exc_text": null,
  1736. "filename": "test.py",
  1737. "funcName": "equivalency_chk",
  1738. "levelname": "INFO",
  1739. "levelno": 20,
  1740. "lineno": 144,
  1741. "message": "Submitted value number 5 is correct (Content 398 and Type is <class 'int'>).",
  1742. "module": "test",
  1743. "msecs": 975.8932590484619,
  1744. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  1745. "name": "__unittest__",
  1746. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1747. "process": 247081,
  1748. "processName": "MainProcess",
  1749. "relativeCreated": 72.96514511108398,
  1750. "stack_info": null,
  1751. "thread": 140429627637760,
  1752. "threadName": "MainThread"
  1753. },
  1754. {
  1755. "args": [
  1756. "Submitted value number 6",
  1757. "486",
  1758. "<class 'int'>"
  1759. ],
  1760. "asctime": "2022-05-08 21:03:46,975",
  1761. "created": 1652036626.9759364,
  1762. "exc_info": null,
  1763. "exc_text": null,
  1764. "filename": "test.py",
  1765. "funcName": "__report_result__",
  1766. "levelname": "DEBUG",
  1767. "levelno": 10,
  1768. "lineno": 22,
  1769. "message": "Result (Submitted value number 6): 486 (<class 'int'>)",
  1770. "module": "test",
  1771. "msecs": 975.9364128112793,
  1772. "msg": "Result (%s): %s (%s)",
  1773. "name": "__unittest__",
  1774. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1775. "process": 247081,
  1776. "processName": "MainProcess",
  1777. "relativeCreated": 73.00829887390137,
  1778. "stack_info": null,
  1779. "thread": 140429627637760,
  1780. "threadName": "MainThread"
  1781. },
  1782. {
  1783. "args": [
  1784. "Submitted value number 6",
  1785. "486",
  1786. "<class 'int'>"
  1787. ],
  1788. "asctime": "2022-05-08 21:03:46,975",
  1789. "created": 1652036626.9759786,
  1790. "exc_info": null,
  1791. "exc_text": null,
  1792. "filename": "test.py",
  1793. "funcName": "__report_expectation_equivalency__",
  1794. "levelname": "DEBUG",
  1795. "levelno": 10,
  1796. "lineno": 26,
  1797. "message": "Expectation (Submitted value number 6): result = 486 (<class 'int'>)",
  1798. "module": "test",
  1799. "msecs": 975.9786128997803,
  1800. "msg": "Expectation (%s): result = %s (%s)",
  1801. "name": "__unittest__",
  1802. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1803. "process": 247081,
  1804. "processName": "MainProcess",
  1805. "relativeCreated": 73.05049896240234,
  1806. "stack_info": null,
  1807. "thread": 140429627637760,
  1808. "threadName": "MainThread"
  1809. },
  1810. {
  1811. "args": [
  1812. "486",
  1813. "<class 'int'>"
  1814. ],
  1815. "asctime": "2022-05-08 21:03:46,976",
  1816. "created": 1652036626.9760208,
  1817. "exc_info": null,
  1818. "exc_text": null,
  1819. "filename": "test.py",
  1820. "funcName": "equivalency_chk",
  1821. "levelname": "INFO",
  1822. "levelno": 20,
  1823. "lineno": 144,
  1824. "message": "Submitted value number 6 is correct (Content 486 and Type is <class 'int'>).",
  1825. "module": "test",
  1826. "msecs": 976.0208129882812,
  1827. "msg": "Submitted value number 6 is correct (Content %s and Type is %s).",
  1828. "name": "__unittest__",
  1829. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1830. "process": 247081,
  1831. "processName": "MainProcess",
  1832. "relativeCreated": 73.09269905090332,
  1833. "stack_info": null,
  1834. "thread": 140429627637760,
  1835. "threadName": "MainThread"
  1836. },
  1837. {
  1838. "args": [
  1839. "Submitted value number 7",
  1840. "571",
  1841. "<class 'int'>"
  1842. ],
  1843. "asctime": "2022-05-08 21:03:46,976",
  1844. "created": 1652036626.9760637,
  1845. "exc_info": null,
  1846. "exc_text": null,
  1847. "filename": "test.py",
  1848. "funcName": "__report_result__",
  1849. "levelname": "DEBUG",
  1850. "levelno": 10,
  1851. "lineno": 22,
  1852. "message": "Result (Submitted value number 7): 571 (<class 'int'>)",
  1853. "module": "test",
  1854. "msecs": 976.0637283325195,
  1855. "msg": "Result (%s): %s (%s)",
  1856. "name": "__unittest__",
  1857. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1858. "process": 247081,
  1859. "processName": "MainProcess",
  1860. "relativeCreated": 73.1356143951416,
  1861. "stack_info": null,
  1862. "thread": 140429627637760,
  1863. "threadName": "MainThread"
  1864. },
  1865. {
  1866. "args": [
  1867. "Submitted value number 7",
  1868. "571",
  1869. "<class 'int'>"
  1870. ],
  1871. "asctime": "2022-05-08 21:03:46,976",
  1872. "created": 1652036626.9761064,
  1873. "exc_info": null,
  1874. "exc_text": null,
  1875. "filename": "test.py",
  1876. "funcName": "__report_expectation_equivalency__",
  1877. "levelname": "DEBUG",
  1878. "levelno": 10,
  1879. "lineno": 26,
  1880. "message": "Expectation (Submitted value number 7): result = 571 (<class 'int'>)",
  1881. "module": "test",
  1882. "msecs": 976.1064052581787,
  1883. "msg": "Expectation (%s): result = %s (%s)",
  1884. "name": "__unittest__",
  1885. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1886. "process": 247081,
  1887. "processName": "MainProcess",
  1888. "relativeCreated": 73.17829132080078,
  1889. "stack_info": null,
  1890. "thread": 140429627637760,
  1891. "threadName": "MainThread"
  1892. },
  1893. {
  1894. "args": [
  1895. "571",
  1896. "<class 'int'>"
  1897. ],
  1898. "asctime": "2022-05-08 21:03:46,976",
  1899. "created": 1652036626.976153,
  1900. "exc_info": null,
  1901. "exc_text": null,
  1902. "filename": "test.py",
  1903. "funcName": "equivalency_chk",
  1904. "levelname": "INFO",
  1905. "levelno": 20,
  1906. "lineno": 144,
  1907. "message": "Submitted value number 7 is correct (Content 571 and Type is <class 'int'>).",
  1908. "module": "test",
  1909. "msecs": 976.1528968811035,
  1910. "msg": "Submitted value number 7 is correct (Content %s and Type is %s).",
  1911. "name": "__unittest__",
  1912. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1913. "process": 247081,
  1914. "processName": "MainProcess",
  1915. "relativeCreated": 73.22478294372559,
  1916. "stack_info": null,
  1917. "thread": 140429627637760,
  1918. "threadName": "MainThread"
  1919. }
  1920. ],
  1921. "msecs": 976.198673248291,
  1922. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  1923. "name": "__tLogger__",
  1924. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  1925. "process": 247081,
  1926. "processName": "MainProcess",
  1927. "relativeCreated": 73.27055931091309,
  1928. "stack_info": null,
  1929. "thread": 140429627637760,
  1930. "threadName": "MainThread",
  1931. "time_consumption": 4.57763671875e-05
  1932. }
  1933. ],
  1934. "thread": 140429627637760,
  1935. "threadName": "MainThread",
  1936. "time_consumption": 0.002197742462158203,
  1937. "time_finished": "2022-05-08 21:03:46,976",
  1938. "time_start": "2022-05-08 21:03:46,974"
  1939. },
  1940. "_PVhZECvVEeqssZLMJF_fcg": {
  1941. "args": null,
  1942. "asctime": "2022-05-08 21:03:46,976",
  1943. "created": 1652036626.9763613,
  1944. "exc_info": null,
  1945. "exc_text": null,
  1946. "filename": "__init__.py",
  1947. "funcName": "testrun",
  1948. "levelname": "INFO",
  1949. "levelno": 20,
  1950. "lineno": 21,
  1951. "message": "_PVhZECvVEeqssZLMJF_fcg",
  1952. "module": "__init__",
  1953. "moduleLogger": [],
  1954. "msecs": 976.3612747192383,
  1955. "msg": "_PVhZECvVEeqssZLMJF_fcg",
  1956. "name": "__tLogger__",
  1957. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/__init__.py",
  1958. "process": 247081,
  1959. "processName": "MainProcess",
  1960. "relativeCreated": 73.43316078186035,
  1961. "stack_info": null,
  1962. "testcaseLogger": [
  1963. {
  1964. "args": [],
  1965. "asctime": "2022-05-08 21:03:46,977",
  1966. "created": 1652036626.9775243,
  1967. "exc_info": null,
  1968. "exc_text": null,
  1969. "filename": "test_helpers.py",
  1970. "funcName": "__init__",
  1971. "levelname": "DEBUG",
  1972. "levelno": 10,
  1973. "lineno": 38,
  1974. "message": "Running logger test sequence.",
  1975. "module": "test_helpers",
  1976. "moduleLogger": [
  1977. {
  1978. "args": [],
  1979. "asctime": "2022-05-08 21:03:46,976",
  1980. "created": 1652036626.9764411,
  1981. "exc_info": null,
  1982. "exc_text": null,
  1983. "filename": "test_helpers.py",
  1984. "funcName": "__init__",
  1985. "levelname": "DEBUG",
  1986. "levelno": 10,
  1987. "lineno": 22,
  1988. "message": "Configuring collecting logger",
  1989. "module": "test_helpers",
  1990. "msecs": 976.4411449432373,
  1991. "msg": "Configuring collecting logger",
  1992. "name": "__unittest__",
  1993. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  1994. "process": 247081,
  1995. "processName": "MainProcess",
  1996. "relativeCreated": 73.51303100585938,
  1997. "stack_info": null,
  1998. "thread": 140429627637760,
  1999. "threadName": "MainThread"
  2000. },
  2001. {
  2002. "args": [
  2003. 1,
  2004. "DEBUG",
  2005. "collectingRingHandler"
  2006. ],
  2007. "asctime": "2022-05-08 21:03:46,976",
  2008. "created": 1652036626.9765446,
  2009. "exc_info": null,
  2010. "exc_text": null,
  2011. "filename": "test_helpers.py",
  2012. "funcName": "__init__",
  2013. "levelname": "DEBUG",
  2014. "levelno": 10,
  2015. "lineno": 36,
  2016. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  2017. "module": "test_helpers",
  2018. "msecs": 976.5446186065674,
  2019. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2020. "name": "__unittest__",
  2021. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2022. "process": 247081,
  2023. "processName": "MainProcess",
  2024. "relativeCreated": 73.61650466918945,
  2025. "stack_info": null,
  2026. "thread": 140429627637760,
  2027. "threadName": "MainThread"
  2028. },
  2029. {
  2030. "args": [
  2031. 1,
  2032. "DEBUG"
  2033. ],
  2034. "asctime": "2022-05-08 21:03:46,976",
  2035. "created": 1652036626.9765985,
  2036. "exc_info": null,
  2037. "exc_text": null,
  2038. "filename": "test_helpers.py",
  2039. "funcName": "__init__",
  2040. "levelname": "DEBUG",
  2041. "levelno": 10,
  2042. "lineno": 37,
  2043. "message": "Log entry number 1 with level DEBUG.",
  2044. "module": "test_helpers",
  2045. "msecs": 976.5985012054443,
  2046. "msg": "Log entry number %d with level %s.",
  2047. "name": "test_sequence",
  2048. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2049. "process": 247081,
  2050. "processName": "MainProcess",
  2051. "relativeCreated": 73.6703872680664,
  2052. "stack_info": null,
  2053. "thread": 140429627637760,
  2054. "threadName": "MainThread"
  2055. },
  2056. {
  2057. "args": [
  2058. 2,
  2059. "INFO",
  2060. "collectingRingHandler"
  2061. ],
  2062. "asctime": "2022-05-08 21:03:46,976",
  2063. "created": 1652036626.976713,
  2064. "exc_info": null,
  2065. "exc_text": null,
  2066. "filename": "test_helpers.py",
  2067. "funcName": "__init__",
  2068. "levelname": "DEBUG",
  2069. "levelno": 10,
  2070. "lineno": 36,
  2071. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  2072. "module": "test_helpers",
  2073. "msecs": 976.7129421234131,
  2074. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2075. "name": "__unittest__",
  2076. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2077. "process": 247081,
  2078. "processName": "MainProcess",
  2079. "relativeCreated": 73.78482818603516,
  2080. "stack_info": null,
  2081. "thread": 140429627637760,
  2082. "threadName": "MainThread"
  2083. },
  2084. {
  2085. "args": [
  2086. 2,
  2087. "INFO"
  2088. ],
  2089. "asctime": "2022-05-08 21:03:46,976",
  2090. "created": 1652036626.9767606,
  2091. "exc_info": null,
  2092. "exc_text": null,
  2093. "filename": "test_helpers.py",
  2094. "funcName": "__init__",
  2095. "levelname": "INFO",
  2096. "levelno": 20,
  2097. "lineno": 37,
  2098. "message": "Log entry number 2 with level INFO.",
  2099. "module": "test_helpers",
  2100. "msecs": 976.7606258392334,
  2101. "msg": "Log entry number %d with level %s.",
  2102. "name": "test_sequence",
  2103. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2104. "process": 247081,
  2105. "processName": "MainProcess",
  2106. "relativeCreated": 73.83251190185547,
  2107. "stack_info": null,
  2108. "thread": 140429627637760,
  2109. "threadName": "MainThread"
  2110. },
  2111. {
  2112. "args": [
  2113. 3,
  2114. "WARNING",
  2115. "collectingRingHandler"
  2116. ],
  2117. "asctime": "2022-05-08 21:03:46,976",
  2118. "created": 1652036626.976857,
  2119. "exc_info": null,
  2120. "exc_text": null,
  2121. "filename": "test_helpers.py",
  2122. "funcName": "__init__",
  2123. "levelname": "DEBUG",
  2124. "levelno": 10,
  2125. "lineno": 36,
  2126. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  2127. "module": "test_helpers",
  2128. "msecs": 976.8569469451904,
  2129. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2130. "name": "__unittest__",
  2131. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2132. "process": 247081,
  2133. "processName": "MainProcess",
  2134. "relativeCreated": 73.9288330078125,
  2135. "stack_info": null,
  2136. "thread": 140429627637760,
  2137. "threadName": "MainThread"
  2138. },
  2139. {
  2140. "args": [
  2141. 3,
  2142. "WARNING"
  2143. ],
  2144. "asctime": "2022-05-08 21:03:46,976",
  2145. "created": 1652036626.9769022,
  2146. "exc_info": null,
  2147. "exc_text": null,
  2148. "filename": "test_helpers.py",
  2149. "funcName": "__init__",
  2150. "levelname": "WARNING",
  2151. "levelno": 30,
  2152. "lineno": 37,
  2153. "message": "Log entry number 3 with level WARNING.",
  2154. "module": "test_helpers",
  2155. "msecs": 976.9022464752197,
  2156. "msg": "Log entry number %d with level %s.",
  2157. "name": "test_sequence",
  2158. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2159. "process": 247081,
  2160. "processName": "MainProcess",
  2161. "relativeCreated": 73.9741325378418,
  2162. "stack_info": null,
  2163. "thread": 140429627637760,
  2164. "threadName": "MainThread"
  2165. },
  2166. {
  2167. "args": [
  2168. 4,
  2169. "ERROR",
  2170. "collectingRingHandler"
  2171. ],
  2172. "asctime": "2022-05-08 21:03:46,976",
  2173. "created": 1652036626.976992,
  2174. "exc_info": null,
  2175. "exc_text": null,
  2176. "filename": "test_helpers.py",
  2177. "funcName": "__init__",
  2178. "levelname": "DEBUG",
  2179. "levelno": 10,
  2180. "lineno": 36,
  2181. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  2182. "module": "test_helpers",
  2183. "msecs": 976.9918918609619,
  2184. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2185. "name": "__unittest__",
  2186. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2187. "process": 247081,
  2188. "processName": "MainProcess",
  2189. "relativeCreated": 74.06377792358398,
  2190. "stack_info": null,
  2191. "thread": 140429627637760,
  2192. "threadName": "MainThread"
  2193. },
  2194. {
  2195. "args": [
  2196. 4,
  2197. "ERROR"
  2198. ],
  2199. "asctime": "2022-05-08 21:03:46,977",
  2200. "created": 1652036626.9770367,
  2201. "exc_info": null,
  2202. "exc_text": null,
  2203. "filename": "test_helpers.py",
  2204. "funcName": "__init__",
  2205. "levelname": "ERROR",
  2206. "levelno": 40,
  2207. "lineno": 37,
  2208. "message": "Log entry number 4 with level ERROR.",
  2209. "module": "test_helpers",
  2210. "msecs": 977.036714553833,
  2211. "msg": "Log entry number %d with level %s.",
  2212. "name": "test_sequence",
  2213. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2214. "process": 247081,
  2215. "processName": "MainProcess",
  2216. "relativeCreated": 74.10860061645508,
  2217. "stack_info": null,
  2218. "thread": 140429627637760,
  2219. "threadName": "MainThread"
  2220. },
  2221. {
  2222. "args": [
  2223. 5,
  2224. "CRITICAL",
  2225. "collectingRingHandler"
  2226. ],
  2227. "asctime": "2022-05-08 21:03:46,977",
  2228. "created": 1652036626.9771264,
  2229. "exc_info": null,
  2230. "exc_text": null,
  2231. "filename": "test_helpers.py",
  2232. "funcName": "__init__",
  2233. "levelname": "DEBUG",
  2234. "levelno": 10,
  2235. "lineno": 36,
  2236. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  2237. "module": "test_helpers",
  2238. "msecs": 977.1263599395752,
  2239. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2240. "name": "__unittest__",
  2241. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2242. "process": 247081,
  2243. "processName": "MainProcess",
  2244. "relativeCreated": 74.19824600219727,
  2245. "stack_info": null,
  2246. "thread": 140429627637760,
  2247. "threadName": "MainThread"
  2248. },
  2249. {
  2250. "args": [
  2251. 5,
  2252. "CRITICAL"
  2253. ],
  2254. "asctime": "2022-05-08 21:03:46,977",
  2255. "created": 1652036626.9771714,
  2256. "exc_info": null,
  2257. "exc_text": null,
  2258. "filename": "test_helpers.py",
  2259. "funcName": "__init__",
  2260. "levelname": "CRITICAL",
  2261. "levelno": 50,
  2262. "lineno": 37,
  2263. "message": "Log entry number 5 with level CRITICAL.",
  2264. "module": "test_helpers",
  2265. "msecs": 977.1714210510254,
  2266. "msg": "Log entry number %d with level %s.",
  2267. "name": "test_sequence",
  2268. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2269. "process": 247081,
  2270. "processName": "MainProcess",
  2271. "relativeCreated": 74.24330711364746,
  2272. "stack_info": null,
  2273. "thread": 140429627637760,
  2274. "threadName": "MainThread"
  2275. },
  2276. {
  2277. "args": [
  2278. 6,
  2279. "INFO",
  2280. "collectingRingHandler"
  2281. ],
  2282. "asctime": "2022-05-08 21:03:46,977",
  2283. "created": 1652036626.9772606,
  2284. "exc_info": null,
  2285. "exc_text": null,
  2286. "filename": "test_helpers.py",
  2287. "funcName": "__init__",
  2288. "levelname": "DEBUG",
  2289. "levelno": 10,
  2290. "lineno": 36,
  2291. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  2292. "module": "test_helpers",
  2293. "msecs": 977.2605895996094,
  2294. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2295. "name": "__unittest__",
  2296. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2297. "process": 247081,
  2298. "processName": "MainProcess",
  2299. "relativeCreated": 74.33247566223145,
  2300. "stack_info": null,
  2301. "thread": 140429627637760,
  2302. "threadName": "MainThread"
  2303. },
  2304. {
  2305. "args": [
  2306. 6,
  2307. "INFO"
  2308. ],
  2309. "asctime": "2022-05-08 21:03:46,977",
  2310. "created": 1652036626.9773006,
  2311. "exc_info": null,
  2312. "exc_text": null,
  2313. "filename": "test_helpers.py",
  2314. "funcName": "__init__",
  2315. "levelname": "INFO",
  2316. "levelno": 20,
  2317. "lineno": 37,
  2318. "message": "Log entry number 6 with level INFO.",
  2319. "module": "test_helpers",
  2320. "msecs": 977.3006439208984,
  2321. "msg": "Log entry number %d with level %s.",
  2322. "name": "test_sequence",
  2323. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2324. "process": 247081,
  2325. "processName": "MainProcess",
  2326. "relativeCreated": 74.37252998352051,
  2327. "stack_info": null,
  2328. "thread": 140429627637760,
  2329. "threadName": "MainThread"
  2330. },
  2331. {
  2332. "args": [
  2333. 7,
  2334. "ERROR",
  2335. "collectingRingHandler"
  2336. ],
  2337. "asctime": "2022-05-08 21:03:46,977",
  2338. "created": 1652036626.9773898,
  2339. "exc_info": null,
  2340. "exc_text": null,
  2341. "filename": "test_helpers.py",
  2342. "funcName": "__init__",
  2343. "levelname": "DEBUG",
  2344. "levelno": 10,
  2345. "lineno": 36,
  2346. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  2347. "module": "test_helpers",
  2348. "msecs": 977.3898124694824,
  2349. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  2350. "name": "__unittest__",
  2351. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2352. "process": 247081,
  2353. "processName": "MainProcess",
  2354. "relativeCreated": 74.46169853210449,
  2355. "stack_info": null,
  2356. "thread": 140429627637760,
  2357. "threadName": "MainThread"
  2358. },
  2359. {
  2360. "args": [
  2361. 7,
  2362. "ERROR"
  2363. ],
  2364. "asctime": "2022-05-08 21:03:46,977",
  2365. "created": 1652036626.9774334,
  2366. "exc_info": null,
  2367. "exc_text": null,
  2368. "filename": "test_helpers.py",
  2369. "funcName": "__init__",
  2370. "levelname": "ERROR",
  2371. "levelno": 40,
  2372. "lineno": 37,
  2373. "message": "Log entry number 7 with level ERROR.",
  2374. "module": "test_helpers",
  2375. "msecs": 977.433443069458,
  2376. "msg": "Log entry number %d with level %s.",
  2377. "name": "test_sequence",
  2378. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2379. "process": 247081,
  2380. "processName": "MainProcess",
  2381. "relativeCreated": 74.50532913208008,
  2382. "stack_info": null,
  2383. "thread": 140429627637760,
  2384. "threadName": "MainThread"
  2385. }
  2386. ],
  2387. "msecs": 977.5242805480957,
  2388. "msg": "Running logger test sequence.",
  2389. "name": "__tLogger__",
  2390. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2391. "process": 247081,
  2392. "processName": "MainProcess",
  2393. "relativeCreated": 74.59616661071777,
  2394. "stack_info": null,
  2395. "thread": 140429627637760,
  2396. "threadName": "MainThread",
  2397. "time_consumption": 9.083747863769531e-05
  2398. },
  2399. {
  2400. "args": [
  2401. "5",
  2402. "<class 'int'>"
  2403. ],
  2404. "asctime": "2022-05-08 21:03:46,977",
  2405. "created": 1652036626.977733,
  2406. "exc_info": null,
  2407. "exc_text": null,
  2408. "filename": "test.py",
  2409. "funcName": "equivalency_chk",
  2410. "levelname": "INFO",
  2411. "levelno": 20,
  2412. "lineno": 144,
  2413. "message": "Length of collected logs is correct (Content 5 and Type is <class 'int'>).",
  2414. "module": "test",
  2415. "moduleLogger": [
  2416. {
  2417. "args": [
  2418. "Length of collected logs",
  2419. "5",
  2420. "<class 'int'>"
  2421. ],
  2422. "asctime": "2022-05-08 21:03:46,977",
  2423. "created": 1652036626.9776218,
  2424. "exc_info": null,
  2425. "exc_text": null,
  2426. "filename": "test.py",
  2427. "funcName": "__report_result__",
  2428. "levelname": "DEBUG",
  2429. "levelno": 10,
  2430. "lineno": 22,
  2431. "message": "Result (Length of collected logs): 5 (<class 'int'>)",
  2432. "module": "test",
  2433. "msecs": 977.6217937469482,
  2434. "msg": "Result (%s): %s (%s)",
  2435. "name": "__unittest__",
  2436. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2437. "process": 247081,
  2438. "processName": "MainProcess",
  2439. "relativeCreated": 74.69367980957031,
  2440. "stack_info": null,
  2441. "thread": 140429627637760,
  2442. "threadName": "MainThread"
  2443. },
  2444. {
  2445. "args": [
  2446. "Length of collected logs",
  2447. "5",
  2448. "<class 'int'>"
  2449. ],
  2450. "asctime": "2022-05-08 21:03:46,977",
  2451. "created": 1652036626.9776804,
  2452. "exc_info": null,
  2453. "exc_text": null,
  2454. "filename": "test.py",
  2455. "funcName": "__report_expectation_equivalency__",
  2456. "levelname": "DEBUG",
  2457. "levelno": 10,
  2458. "lineno": 26,
  2459. "message": "Expectation (Length of collected logs): result = 5 (<class 'int'>)",
  2460. "module": "test",
  2461. "msecs": 977.6804447174072,
  2462. "msg": "Expectation (%s): result = %s (%s)",
  2463. "name": "__unittest__",
  2464. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2465. "process": 247081,
  2466. "processName": "MainProcess",
  2467. "relativeCreated": 74.7523307800293,
  2468. "stack_info": null,
  2469. "thread": 140429627637760,
  2470. "threadName": "MainThread"
  2471. }
  2472. ],
  2473. "msecs": 977.7328968048096,
  2474. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  2475. "name": "__tLogger__",
  2476. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2477. "process": 247081,
  2478. "processName": "MainProcess",
  2479. "relativeCreated": 74.80478286743164,
  2480. "stack_info": null,
  2481. "thread": 140429627637760,
  2482. "threadName": "MainThread",
  2483. "time_consumption": 5.245208740234375e-05
  2484. },
  2485. {
  2486. "args": [
  2487. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  2488. "<class 'list'>"
  2489. ],
  2490. "asctime": "2022-05-08 21:03:46,977",
  2491. "created": 1652036626.9779477,
  2492. "exc_info": null,
  2493. "exc_text": null,
  2494. "filename": "test.py",
  2495. "funcName": "equivalency_chk",
  2496. "levelname": "INFO",
  2497. "levelno": 20,
  2498. "lineno": 144,
  2499. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <class 'list'>).",
  2500. "module": "test",
  2501. "moduleLogger": [
  2502. {
  2503. "args": [
  2504. "Logged information",
  2505. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  2506. "<class 'list'>"
  2507. ],
  2508. "asctime": "2022-05-08 21:03:46,977",
  2509. "created": 1652036626.9778209,
  2510. "exc_info": null,
  2511. "exc_text": null,
  2512. "filename": "test.py",
  2513. "funcName": "__report_result__",
  2514. "levelname": "DEBUG",
  2515. "levelno": 10,
  2516. "lineno": 22,
  2517. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  2518. "module": "test",
  2519. "msecs": 977.820873260498,
  2520. "msg": "Result (%s): %s (%s)",
  2521. "name": "__unittest__",
  2522. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2523. "process": 247081,
  2524. "processName": "MainProcess",
  2525. "relativeCreated": 74.89275932312012,
  2526. "stack_info": null,
  2527. "thread": 140429627637760,
  2528. "threadName": "MainThread"
  2529. },
  2530. {
  2531. "args": [
  2532. "Logged information",
  2533. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  2534. "<class 'list'>"
  2535. ],
  2536. "asctime": "2022-05-08 21:03:46,977",
  2537. "created": 1652036626.9778824,
  2538. "exc_info": null,
  2539. "exc_text": null,
  2540. "filename": "test.py",
  2541. "funcName": "__report_expectation_equivalency__",
  2542. "levelname": "DEBUG",
  2543. "levelno": 10,
  2544. "lineno": 26,
  2545. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  2546. "module": "test",
  2547. "msecs": 977.8823852539062,
  2548. "msg": "Expectation (%s): result = %s (%s)",
  2549. "name": "__unittest__",
  2550. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2551. "process": 247081,
  2552. "processName": "MainProcess",
  2553. "relativeCreated": 74.95427131652832,
  2554. "stack_info": null,
  2555. "thread": 140429627637760,
  2556. "threadName": "MainThread"
  2557. }
  2558. ],
  2559. "msecs": 977.9477119445801,
  2560. "msg": "Logged information is correct (Content %s and Type is %s).",
  2561. "name": "__tLogger__",
  2562. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2563. "process": 247081,
  2564. "processName": "MainProcess",
  2565. "relativeCreated": 75.01959800720215,
  2566. "stack_info": null,
  2567. "thread": 140429627637760,
  2568. "threadName": "MainThread",
  2569. "time_consumption": 6.532669067382812e-05
  2570. },
  2571. {
  2572. "args": [
  2573. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  2574. "<class 'list'>"
  2575. ],
  2576. "asctime": "2022-05-08 21:03:46,978",
  2577. "created": 1652036626.9781456,
  2578. "exc_info": null,
  2579. "exc_text": null,
  2580. "filename": "test.py",
  2581. "funcName": "equivalency_chk",
  2582. "levelname": "INFO",
  2583. "levelno": 20,
  2584. "lineno": 144,
  2585. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <class 'list'>).",
  2586. "module": "test",
  2587. "moduleLogger": [
  2588. {
  2589. "args": [
  2590. "Logged information",
  2591. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  2592. "<class 'list'>"
  2593. ],
  2594. "asctime": "2022-05-08 21:03:46,978",
  2595. "created": 1652036626.9780293,
  2596. "exc_info": null,
  2597. "exc_text": null,
  2598. "filename": "test.py",
  2599. "funcName": "__report_result__",
  2600. "levelname": "DEBUG",
  2601. "levelno": 10,
  2602. "lineno": 22,
  2603. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  2604. "module": "test",
  2605. "msecs": 978.0292510986328,
  2606. "msg": "Result (%s): %s (%s)",
  2607. "name": "__unittest__",
  2608. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2609. "process": 247081,
  2610. "processName": "MainProcess",
  2611. "relativeCreated": 75.10113716125488,
  2612. "stack_info": null,
  2613. "thread": 140429627637760,
  2614. "threadName": "MainThread"
  2615. },
  2616. {
  2617. "args": [
  2618. "Logged information",
  2619. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  2620. "<class 'list'>"
  2621. ],
  2622. "asctime": "2022-05-08 21:03:46,978",
  2623. "created": 1652036626.9780815,
  2624. "exc_info": null,
  2625. "exc_text": null,
  2626. "filename": "test.py",
  2627. "funcName": "__report_expectation_equivalency__",
  2628. "levelname": "DEBUG",
  2629. "levelno": 10,
  2630. "lineno": 26,
  2631. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  2632. "module": "test",
  2633. "msecs": 978.081464767456,
  2634. "msg": "Expectation (%s): result = %s (%s)",
  2635. "name": "__unittest__",
  2636. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2637. "process": 247081,
  2638. "processName": "MainProcess",
  2639. "relativeCreated": 75.15335083007812,
  2640. "stack_info": null,
  2641. "thread": 140429627637760,
  2642. "threadName": "MainThread"
  2643. }
  2644. ],
  2645. "msecs": 978.1455993652344,
  2646. "msg": "Logged information is correct (Content %s and Type is %s).",
  2647. "name": "__tLogger__",
  2648. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2649. "process": 247081,
  2650. "processName": "MainProcess",
  2651. "relativeCreated": 75.21748542785645,
  2652. "stack_info": null,
  2653. "thread": 140429627637760,
  2654. "threadName": "MainThread",
  2655. "time_consumption": 6.413459777832031e-05
  2656. },
  2657. {
  2658. "args": [
  2659. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  2660. "<class 'list'>"
  2661. ],
  2662. "asctime": "2022-05-08 21:03:46,978",
  2663. "created": 1652036626.9783385,
  2664. "exc_info": null,
  2665. "exc_text": null,
  2666. "filename": "test.py",
  2667. "funcName": "equivalency_chk",
  2668. "levelname": "INFO",
  2669. "levelno": 20,
  2670. "lineno": 144,
  2671. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <class 'list'>).",
  2672. "module": "test",
  2673. "moduleLogger": [
  2674. {
  2675. "args": [
  2676. "Logged information",
  2677. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  2678. "<class 'list'>"
  2679. ],
  2680. "asctime": "2022-05-08 21:03:46,978",
  2681. "created": 1652036626.9782252,
  2682. "exc_info": null,
  2683. "exc_text": null,
  2684. "filename": "test.py",
  2685. "funcName": "__report_result__",
  2686. "levelname": "DEBUG",
  2687. "levelno": 10,
  2688. "lineno": 22,
  2689. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  2690. "module": "test",
  2691. "msecs": 978.2252311706543,
  2692. "msg": "Result (%s): %s (%s)",
  2693. "name": "__unittest__",
  2694. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2695. "process": 247081,
  2696. "processName": "MainProcess",
  2697. "relativeCreated": 75.29711723327637,
  2698. "stack_info": null,
  2699. "thread": 140429627637760,
  2700. "threadName": "MainThread"
  2701. },
  2702. {
  2703. "args": [
  2704. "Logged information",
  2705. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  2706. "<class 'list'>"
  2707. ],
  2708. "asctime": "2022-05-08 21:03:46,978",
  2709. "created": 1652036626.9782786,
  2710. "exc_info": null,
  2711. "exc_text": null,
  2712. "filename": "test.py",
  2713. "funcName": "__report_expectation_equivalency__",
  2714. "levelname": "DEBUG",
  2715. "levelno": 10,
  2716. "lineno": 26,
  2717. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  2718. "module": "test",
  2719. "msecs": 978.278636932373,
  2720. "msg": "Expectation (%s): result = %s (%s)",
  2721. "name": "__unittest__",
  2722. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2723. "process": 247081,
  2724. "processName": "MainProcess",
  2725. "relativeCreated": 75.35052299499512,
  2726. "stack_info": null,
  2727. "thread": 140429627637760,
  2728. "threadName": "MainThread"
  2729. }
  2730. ],
  2731. "msecs": 978.3384799957275,
  2732. "msg": "Logged information is correct (Content %s and Type is %s).",
  2733. "name": "__tLogger__",
  2734. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2735. "process": 247081,
  2736. "processName": "MainProcess",
  2737. "relativeCreated": 75.41036605834961,
  2738. "stack_info": null,
  2739. "thread": 140429627637760,
  2740. "threadName": "MainThread",
  2741. "time_consumption": 5.984306335449219e-05
  2742. },
  2743. {
  2744. "args": [
  2745. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  2746. "<class 'list'>"
  2747. ],
  2748. "asctime": "2022-05-08 21:03:46,978",
  2749. "created": 1652036626.9785264,
  2750. "exc_info": null,
  2751. "exc_text": null,
  2752. "filename": "test.py",
  2753. "funcName": "equivalency_chk",
  2754. "levelname": "INFO",
  2755. "levelno": 20,
  2756. "lineno": 144,
  2757. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <class 'list'>).",
  2758. "module": "test",
  2759. "moduleLogger": [
  2760. {
  2761. "args": [
  2762. "Logged information",
  2763. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  2764. "<class 'list'>"
  2765. ],
  2766. "asctime": "2022-05-08 21:03:46,978",
  2767. "created": 1652036626.9784167,
  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 (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  2776. "module": "test",
  2777. "msecs": 978.4166812896729,
  2778. "msg": "Result (%s): %s (%s)",
  2779. "name": "__unittest__",
  2780. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2781. "process": 247081,
  2782. "processName": "MainProcess",
  2783. "relativeCreated": 75.48856735229492,
  2784. "stack_info": null,
  2785. "thread": 140429627637760,
  2786. "threadName": "MainThread"
  2787. },
  2788. {
  2789. "args": [
  2790. "Logged information",
  2791. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  2792. "<class 'list'>"
  2793. ],
  2794. "asctime": "2022-05-08 21:03:46,978",
  2795. "created": 1652036626.978467,
  2796. "exc_info": null,
  2797. "exc_text": null,
  2798. "filename": "test.py",
  2799. "funcName": "__report_expectation_equivalency__",
  2800. "levelname": "DEBUG",
  2801. "levelno": 10,
  2802. "lineno": 26,
  2803. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  2804. "module": "test",
  2805. "msecs": 978.4669876098633,
  2806. "msg": "Expectation (%s): result = %s (%s)",
  2807. "name": "__unittest__",
  2808. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2809. "process": 247081,
  2810. "processName": "MainProcess",
  2811. "relativeCreated": 75.53887367248535,
  2812. "stack_info": null,
  2813. "thread": 140429627637760,
  2814. "threadName": "MainThread"
  2815. }
  2816. ],
  2817. "msecs": 978.5263538360596,
  2818. "msg": "Logged information is correct (Content %s and Type is %s).",
  2819. "name": "__tLogger__",
  2820. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2821. "process": 247081,
  2822. "processName": "MainProcess",
  2823. "relativeCreated": 75.59823989868164,
  2824. "stack_info": null,
  2825. "thread": 140429627637760,
  2826. "threadName": "MainThread",
  2827. "time_consumption": 5.936622619628906e-05
  2828. },
  2829. {
  2830. "args": [
  2831. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  2832. "<class 'list'>"
  2833. ],
  2834. "asctime": "2022-05-08 21:03:46,978",
  2835. "created": 1652036626.9787297,
  2836. "exc_info": null,
  2837. "exc_text": null,
  2838. "filename": "test.py",
  2839. "funcName": "equivalency_chk",
  2840. "levelname": "INFO",
  2841. "levelno": 20,
  2842. "lineno": 144,
  2843. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <class 'list'>).",
  2844. "module": "test",
  2845. "moduleLogger": [
  2846. {
  2847. "args": [
  2848. "Logged information",
  2849. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  2850. "<class 'list'>"
  2851. ],
  2852. "asctime": "2022-05-08 21:03:46,978",
  2853. "created": 1652036626.978609,
  2854. "exc_info": null,
  2855. "exc_text": null,
  2856. "filename": "test.py",
  2857. "funcName": "__report_result__",
  2858. "levelname": "DEBUG",
  2859. "levelno": 10,
  2860. "lineno": 22,
  2861. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  2862. "module": "test",
  2863. "msecs": 978.6090850830078,
  2864. "msg": "Result (%s): %s (%s)",
  2865. "name": "__unittest__",
  2866. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2867. "process": 247081,
  2868. "processName": "MainProcess",
  2869. "relativeCreated": 75.68097114562988,
  2870. "stack_info": null,
  2871. "thread": 140429627637760,
  2872. "threadName": "MainThread"
  2873. },
  2874. {
  2875. "args": [
  2876. "Logged information",
  2877. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  2878. "<class 'list'>"
  2879. ],
  2880. "asctime": "2022-05-08 21:03:46,978",
  2881. "created": 1652036626.978666,
  2882. "exc_info": null,
  2883. "exc_text": null,
  2884. "filename": "test.py",
  2885. "funcName": "__report_expectation_equivalency__",
  2886. "levelname": "DEBUG",
  2887. "levelno": 10,
  2888. "lineno": 26,
  2889. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  2890. "module": "test",
  2891. "msecs": 978.6660671234131,
  2892. "msg": "Expectation (%s): result = %s (%s)",
  2893. "name": "__unittest__",
  2894. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2895. "process": 247081,
  2896. "processName": "MainProcess",
  2897. "relativeCreated": 75.73795318603516,
  2898. "stack_info": null,
  2899. "thread": 140429627637760,
  2900. "threadName": "MainThread"
  2901. }
  2902. ],
  2903. "msecs": 978.7297248840332,
  2904. "msg": "Logged information is correct (Content %s and Type is %s).",
  2905. "name": "__tLogger__",
  2906. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  2907. "process": 247081,
  2908. "processName": "MainProcess",
  2909. "relativeCreated": 75.80161094665527,
  2910. "stack_info": null,
  2911. "thread": 140429627637760,
  2912. "threadName": "MainThread",
  2913. "time_consumption": 6.365776062011719e-05
  2914. }
  2915. ],
  2916. "thread": 140429627637760,
  2917. "threadName": "MainThread",
  2918. "time_consumption": 0.002368450164794922,
  2919. "time_finished": "2022-05-08 21:03:46,978",
  2920. "time_start": "2022-05-08 21:03:46,976"
  2921. },
  2922. "_QBmb8CvVEeqssZLMJF_fcg": {
  2923. "args": null,
  2924. "asctime": "2022-05-08 21:03:46,978",
  2925. "created": 1652036626.9788895,
  2926. "exc_info": null,
  2927. "exc_text": null,
  2928. "filename": "__init__.py",
  2929. "funcName": "testrun",
  2930. "levelname": "INFO",
  2931. "levelno": 20,
  2932. "lineno": 22,
  2933. "message": "_QBmb8CvVEeqssZLMJF_fcg",
  2934. "module": "__init__",
  2935. "moduleLogger": [],
  2936. "msecs": 978.8894653320312,
  2937. "msg": "_QBmb8CvVEeqssZLMJF_fcg",
  2938. "name": "__tLogger__",
  2939. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/__init__.py",
  2940. "process": 247081,
  2941. "processName": "MainProcess",
  2942. "relativeCreated": 75.96135139465332,
  2943. "stack_info": null,
  2944. "testcaseLogger": [
  2945. {
  2946. "args": [],
  2947. "asctime": "2022-05-08 21:03:46,980",
  2948. "created": 1652036626.9801426,
  2949. "exc_info": null,
  2950. "exc_text": null,
  2951. "filename": "test_helpers.py",
  2952. "funcName": "__init__",
  2953. "levelname": "DEBUG",
  2954. "levelno": 10,
  2955. "lineno": 38,
  2956. "message": "Running logger test sequence.",
  2957. "module": "test_helpers",
  2958. "moduleLogger": [
  2959. {
  2960. "args": [],
  2961. "asctime": "2022-05-08 21:03:46,978",
  2962. "created": 1652036626.97897,
  2963. "exc_info": null,
  2964. "exc_text": null,
  2965. "filename": "test_helpers.py",
  2966. "funcName": "__init__",
  2967. "levelname": "DEBUG",
  2968. "levelno": 10,
  2969. "lineno": 22,
  2970. "message": "Configuring collecting logger",
  2971. "module": "test_helpers",
  2972. "msecs": 978.9700508117676,
  2973. "msg": "Configuring collecting logger",
  2974. "name": "__unittest__",
  2975. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  2976. "process": 247081,
  2977. "processName": "MainProcess",
  2978. "relativeCreated": 76.04193687438965,
  2979. "stack_info": null,
  2980. "thread": 140429627637760,
  2981. "threadName": "MainThread"
  2982. },
  2983. {
  2984. "args": [
  2985. 1,
  2986. "DEBUG",
  2987. "collectingRingHandler"
  2988. ],
  2989. "asctime": "2022-05-08 21:03:46,979",
  2990. "created": 1652036626.9790583,
  2991. "exc_info": null,
  2992. "exc_text": null,
  2993. "filename": "test_helpers.py",
  2994. "funcName": "__init__",
  2995. "levelname": "DEBUG",
  2996. "levelno": 10,
  2997. "lineno": 36,
  2998. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  2999. "module": "test_helpers",
  3000. "msecs": 979.0582656860352,
  3001. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3002. "name": "__unittest__",
  3003. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3004. "process": 247081,
  3005. "processName": "MainProcess",
  3006. "relativeCreated": 76.13015174865723,
  3007. "stack_info": null,
  3008. "thread": 140429627637760,
  3009. "threadName": "MainThread"
  3010. },
  3011. {
  3012. "args": [
  3013. 1,
  3014. "DEBUG"
  3015. ],
  3016. "asctime": "2022-05-08 21:03:46,979",
  3017. "created": 1652036626.979108,
  3018. "exc_info": null,
  3019. "exc_text": null,
  3020. "filename": "test_helpers.py",
  3021. "funcName": "__init__",
  3022. "levelname": "DEBUG",
  3023. "levelno": 10,
  3024. "lineno": 37,
  3025. "message": "Log entry number 1 with level DEBUG.",
  3026. "module": "test_helpers",
  3027. "msecs": 979.1080951690674,
  3028. "msg": "Log entry number %d with level %s.",
  3029. "name": "test_sequence",
  3030. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3031. "process": 247081,
  3032. "processName": "MainProcess",
  3033. "relativeCreated": 76.17998123168945,
  3034. "stack_info": null,
  3035. "thread": 140429627637760,
  3036. "threadName": "MainThread"
  3037. },
  3038. {
  3039. "args": [
  3040. 2,
  3041. "INFO",
  3042. "collectingRingHandler"
  3043. ],
  3044. "asctime": "2022-05-08 21:03:46,979",
  3045. "created": 1652036626.9792213,
  3046. "exc_info": null,
  3047. "exc_text": null,
  3048. "filename": "test_helpers.py",
  3049. "funcName": "__init__",
  3050. "levelname": "DEBUG",
  3051. "levelno": 10,
  3052. "lineno": 36,
  3053. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  3054. "module": "test_helpers",
  3055. "msecs": 979.2213439941406,
  3056. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3057. "name": "__unittest__",
  3058. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3059. "process": 247081,
  3060. "processName": "MainProcess",
  3061. "relativeCreated": 76.2932300567627,
  3062. "stack_info": null,
  3063. "thread": 140429627637760,
  3064. "threadName": "MainThread"
  3065. },
  3066. {
  3067. "args": [
  3068. 2,
  3069. "INFO"
  3070. ],
  3071. "asctime": "2022-05-08 21:03:46,979",
  3072. "created": 1652036626.9792671,
  3073. "exc_info": null,
  3074. "exc_text": null,
  3075. "filename": "test_helpers.py",
  3076. "funcName": "__init__",
  3077. "levelname": "INFO",
  3078. "levelno": 20,
  3079. "lineno": 37,
  3080. "message": "Log entry number 2 with level INFO.",
  3081. "module": "test_helpers",
  3082. "msecs": 979.2671203613281,
  3083. "msg": "Log entry number %d with level %s.",
  3084. "name": "test_sequence",
  3085. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3086. "process": 247081,
  3087. "processName": "MainProcess",
  3088. "relativeCreated": 76.3390064239502,
  3089. "stack_info": null,
  3090. "thread": 140429627637760,
  3091. "threadName": "MainThread"
  3092. },
  3093. {
  3094. "args": [
  3095. 3,
  3096. "WARNING",
  3097. "collectingRingHandler"
  3098. ],
  3099. "asctime": "2022-05-08 21:03:46,979",
  3100. "created": 1652036626.9793773,
  3101. "exc_info": null,
  3102. "exc_text": null,
  3103. "filename": "test_helpers.py",
  3104. "funcName": "__init__",
  3105. "levelname": "DEBUG",
  3106. "levelno": 10,
  3107. "lineno": 36,
  3108. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  3109. "module": "test_helpers",
  3110. "msecs": 979.377269744873,
  3111. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3112. "name": "__unittest__",
  3113. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3114. "process": 247081,
  3115. "processName": "MainProcess",
  3116. "relativeCreated": 76.44915580749512,
  3117. "stack_info": null,
  3118. "thread": 140429627637760,
  3119. "threadName": "MainThread"
  3120. },
  3121. {
  3122. "args": [
  3123. 3,
  3124. "WARNING"
  3125. ],
  3126. "asctime": "2022-05-08 21:03:46,979",
  3127. "created": 1652036626.979423,
  3128. "exc_info": null,
  3129. "exc_text": null,
  3130. "filename": "test_helpers.py",
  3131. "funcName": "__init__",
  3132. "levelname": "WARNING",
  3133. "levelno": 30,
  3134. "lineno": 37,
  3135. "message": "Log entry number 3 with level WARNING.",
  3136. "module": "test_helpers",
  3137. "msecs": 979.4230461120605,
  3138. "msg": "Log entry number %d with level %s.",
  3139. "name": "test_sequence",
  3140. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3141. "process": 247081,
  3142. "processName": "MainProcess",
  3143. "relativeCreated": 76.49493217468262,
  3144. "stack_info": null,
  3145. "thread": 140429627637760,
  3146. "threadName": "MainThread"
  3147. },
  3148. {
  3149. "args": [
  3150. 4,
  3151. "ERROR",
  3152. "collectingRingHandler"
  3153. ],
  3154. "asctime": "2022-05-08 21:03:46,979",
  3155. "created": 1652036626.979531,
  3156. "exc_info": null,
  3157. "exc_text": null,
  3158. "filename": "test_helpers.py",
  3159. "funcName": "__init__",
  3160. "levelname": "DEBUG",
  3161. "levelno": 10,
  3162. "lineno": 36,
  3163. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  3164. "module": "test_helpers",
  3165. "msecs": 979.5310497283936,
  3166. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3167. "name": "__unittest__",
  3168. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3169. "process": 247081,
  3170. "processName": "MainProcess",
  3171. "relativeCreated": 76.60293579101562,
  3172. "stack_info": null,
  3173. "thread": 140429627637760,
  3174. "threadName": "MainThread"
  3175. },
  3176. {
  3177. "args": [
  3178. 4,
  3179. "ERROR"
  3180. ],
  3181. "asctime": "2022-05-08 21:03:46,979",
  3182. "created": 1652036626.9795759,
  3183. "exc_info": null,
  3184. "exc_text": null,
  3185. "filename": "test_helpers.py",
  3186. "funcName": "__init__",
  3187. "levelname": "ERROR",
  3188. "levelno": 40,
  3189. "lineno": 37,
  3190. "message": "Log entry number 4 with level ERROR.",
  3191. "module": "test_helpers",
  3192. "msecs": 979.5758724212646,
  3193. "msg": "Log entry number %d with level %s.",
  3194. "name": "test_sequence",
  3195. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3196. "process": 247081,
  3197. "processName": "MainProcess",
  3198. "relativeCreated": 76.64775848388672,
  3199. "stack_info": null,
  3200. "thread": 140429627637760,
  3201. "threadName": "MainThread"
  3202. },
  3203. {
  3204. "args": [
  3205. 5,
  3206. "CRITICAL",
  3207. "collectingRingHandler"
  3208. ],
  3209. "asctime": "2022-05-08 21:03:46,979",
  3210. "created": 1652036626.9796875,
  3211. "exc_info": null,
  3212. "exc_text": null,
  3213. "filename": "test_helpers.py",
  3214. "funcName": "__init__",
  3215. "levelname": "DEBUG",
  3216. "levelno": 10,
  3217. "lineno": 36,
  3218. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  3219. "module": "test_helpers",
  3220. "msecs": 979.6874523162842,
  3221. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3222. "name": "__unittest__",
  3223. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3224. "process": 247081,
  3225. "processName": "MainProcess",
  3226. "relativeCreated": 76.75933837890625,
  3227. "stack_info": null,
  3228. "thread": 140429627637760,
  3229. "threadName": "MainThread"
  3230. },
  3231. {
  3232. "args": [
  3233. 5,
  3234. "CRITICAL"
  3235. ],
  3236. "asctime": "2022-05-08 21:03:46,979",
  3237. "created": 1652036626.9797359,
  3238. "exc_info": null,
  3239. "exc_text": null,
  3240. "filename": "test_helpers.py",
  3241. "funcName": "__init__",
  3242. "levelname": "CRITICAL",
  3243. "levelno": 50,
  3244. "lineno": 37,
  3245. "message": "Log entry number 5 with level CRITICAL.",
  3246. "module": "test_helpers",
  3247. "msecs": 979.7358512878418,
  3248. "msg": "Log entry number %d with level %s.",
  3249. "name": "test_sequence",
  3250. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3251. "process": 247081,
  3252. "processName": "MainProcess",
  3253. "relativeCreated": 76.80773735046387,
  3254. "stack_info": null,
  3255. "thread": 140429627637760,
  3256. "threadName": "MainThread"
  3257. },
  3258. {
  3259. "args": [
  3260. 6,
  3261. "INFO",
  3262. "collectingRingHandler"
  3263. ],
  3264. "asctime": "2022-05-08 21:03:46,979",
  3265. "created": 1652036626.9798412,
  3266. "exc_info": null,
  3267. "exc_text": null,
  3268. "filename": "test_helpers.py",
  3269. "funcName": "__init__",
  3270. "levelname": "DEBUG",
  3271. "levelno": 10,
  3272. "lineno": 36,
  3273. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  3274. "module": "test_helpers",
  3275. "msecs": 979.8412322998047,
  3276. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3277. "name": "__unittest__",
  3278. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3279. "process": 247081,
  3280. "processName": "MainProcess",
  3281. "relativeCreated": 76.91311836242676,
  3282. "stack_info": null,
  3283. "thread": 140429627637760,
  3284. "threadName": "MainThread"
  3285. },
  3286. {
  3287. "args": [
  3288. 6,
  3289. "INFO"
  3290. ],
  3291. "asctime": "2022-05-08 21:03:46,979",
  3292. "created": 1652036626.9798846,
  3293. "exc_info": null,
  3294. "exc_text": null,
  3295. "filename": "test_helpers.py",
  3296. "funcName": "__init__",
  3297. "levelname": "INFO",
  3298. "levelno": 20,
  3299. "lineno": 37,
  3300. "message": "Log entry number 6 with level INFO.",
  3301. "module": "test_helpers",
  3302. "msecs": 979.8846244812012,
  3303. "msg": "Log entry number %d with level %s.",
  3304. "name": "test_sequence",
  3305. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3306. "process": 247081,
  3307. "processName": "MainProcess",
  3308. "relativeCreated": 76.95651054382324,
  3309. "stack_info": null,
  3310. "thread": 140429627637760,
  3311. "threadName": "MainThread"
  3312. },
  3313. {
  3314. "args": [
  3315. 7,
  3316. "ERROR",
  3317. "collectingRingHandler"
  3318. ],
  3319. "asctime": "2022-05-08 21:03:46,979",
  3320. "created": 1652036626.9799912,
  3321. "exc_info": null,
  3322. "exc_text": null,
  3323. "filename": "test_helpers.py",
  3324. "funcName": "__init__",
  3325. "levelname": "DEBUG",
  3326. "levelno": 10,
  3327. "lineno": 36,
  3328. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  3329. "module": "test_helpers",
  3330. "msecs": 979.9911975860596,
  3331. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3332. "name": "__unittest__",
  3333. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3334. "process": 247081,
  3335. "processName": "MainProcess",
  3336. "relativeCreated": 77.06308364868164,
  3337. "stack_info": null,
  3338. "thread": 140429627637760,
  3339. "threadName": "MainThread"
  3340. },
  3341. {
  3342. "args": [
  3343. 7,
  3344. "ERROR"
  3345. ],
  3346. "asctime": "2022-05-08 21:03:46,980",
  3347. "created": 1652036626.9800324,
  3348. "exc_info": null,
  3349. "exc_text": null,
  3350. "filename": "test_helpers.py",
  3351. "funcName": "__init__",
  3352. "levelname": "ERROR",
  3353. "levelno": 40,
  3354. "lineno": 37,
  3355. "message": "Log entry number 7 with level ERROR.",
  3356. "module": "test_helpers",
  3357. "msecs": 980.0324440002441,
  3358. "msg": "Log entry number %d with level %s.",
  3359. "name": "test_sequence",
  3360. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3361. "process": 247081,
  3362. "processName": "MainProcess",
  3363. "relativeCreated": 77.10433006286621,
  3364. "stack_info": null,
  3365. "thread": 140429627637760,
  3366. "threadName": "MainThread"
  3367. }
  3368. ],
  3369. "msecs": 980.1425933837891,
  3370. "msg": "Running logger test sequence.",
  3371. "name": "__tLogger__",
  3372. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3373. "process": 247081,
  3374. "processName": "MainProcess",
  3375. "relativeCreated": 77.21447944641113,
  3376. "stack_info": null,
  3377. "thread": 140429627637760,
  3378. "threadName": "MainThread",
  3379. "time_consumption": 0.00011014938354492188
  3380. },
  3381. {
  3382. "args": [],
  3383. "asctime": "2022-05-08 21:03:46,981",
  3384. "created": 1652036626.9810581,
  3385. "exc_info": null,
  3386. "exc_text": null,
  3387. "filename": "test.py",
  3388. "funcName": "report",
  3389. "levelname": "INFO",
  3390. "levelno": 20,
  3391. "lineno": 168,
  3392. "message": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  3393. "module": "test",
  3394. "moduleLogger": [
  3395. {
  3396. "args": [
  3397. "Indexlist of log entries in stringrepresentation",
  3398. "[ 51, 139, 228, 316, 401 ]",
  3399. "<class 'list'>"
  3400. ],
  3401. "asctime": "2022-05-08 21:03:46,980",
  3402. "created": 1652036626.9802709,
  3403. "exc_info": null,
  3404. "exc_text": null,
  3405. "filename": "test.py",
  3406. "funcName": "__report_result__",
  3407. "levelname": "DEBUG",
  3408. "levelno": 10,
  3409. "lineno": 22,
  3410. "message": "Result (Indexlist of log entries in stringrepresentation): [ 51, 139, 228, 316, 401 ] (<class 'list'>)",
  3411. "module": "test",
  3412. "msecs": 980.2708625793457,
  3413. "msg": "Result (%s): %s (%s)",
  3414. "name": "__unittest__",
  3415. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3416. "process": 247081,
  3417. "processName": "MainProcess",
  3418. "relativeCreated": 77.34274864196777,
  3419. "stack_info": null,
  3420. "thread": 140429627637760,
  3421. "threadName": "MainThread"
  3422. },
  3423. {
  3424. "args": [
  3425. "Indexlist of log entries in stringrepresentation",
  3426. "[ 51, 139, 228, 316, 401 ]",
  3427. "<class 'list'>"
  3428. ],
  3429. "asctime": "2022-05-08 21:03:46,980",
  3430. "created": 1652036626.9803271,
  3431. "exc_info": null,
  3432. "exc_text": null,
  3433. "filename": "test.py",
  3434. "funcName": "__report_expectation_equivalency__",
  3435. "levelname": "DEBUG",
  3436. "levelno": 10,
  3437. "lineno": 26,
  3438. "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 51, 139, 228, 316, 401 ] (<class 'list'>)",
  3439. "module": "test",
  3440. "msecs": 980.3271293640137,
  3441. "msg": "Expectation (%s): result = %s (%s)",
  3442. "name": "__unittest__",
  3443. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3444. "process": 247081,
  3445. "processName": "MainProcess",
  3446. "relativeCreated": 77.39901542663574,
  3447. "stack_info": null,
  3448. "thread": 140429627637760,
  3449. "threadName": "MainThread"
  3450. },
  3451. {
  3452. "args": [
  3453. "Submitted value number 1",
  3454. "51",
  3455. "<class 'int'>"
  3456. ],
  3457. "asctime": "2022-05-08 21:03:46,980",
  3458. "created": 1652036626.9803765,
  3459. "exc_info": null,
  3460. "exc_text": null,
  3461. "filename": "test.py",
  3462. "funcName": "__report_result__",
  3463. "levelname": "DEBUG",
  3464. "levelno": 10,
  3465. "lineno": 22,
  3466. "message": "Result (Submitted value number 1): 51 (<class 'int'>)",
  3467. "module": "test",
  3468. "msecs": 980.3764820098877,
  3469. "msg": "Result (%s): %s (%s)",
  3470. "name": "__unittest__",
  3471. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3472. "process": 247081,
  3473. "processName": "MainProcess",
  3474. "relativeCreated": 77.44836807250977,
  3475. "stack_info": null,
  3476. "thread": 140429627637760,
  3477. "threadName": "MainThread"
  3478. },
  3479. {
  3480. "args": [
  3481. "Submitted value number 1",
  3482. "51",
  3483. "<class 'int'>"
  3484. ],
  3485. "asctime": "2022-05-08 21:03:46,980",
  3486. "created": 1652036626.9804204,
  3487. "exc_info": null,
  3488. "exc_text": null,
  3489. "filename": "test.py",
  3490. "funcName": "__report_expectation_equivalency__",
  3491. "levelname": "DEBUG",
  3492. "levelno": 10,
  3493. "lineno": 26,
  3494. "message": "Expectation (Submitted value number 1): result = 51 (<class 'int'>)",
  3495. "module": "test",
  3496. "msecs": 980.4203510284424,
  3497. "msg": "Expectation (%s): result = %s (%s)",
  3498. "name": "__unittest__",
  3499. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3500. "process": 247081,
  3501. "processName": "MainProcess",
  3502. "relativeCreated": 77.49223709106445,
  3503. "stack_info": null,
  3504. "thread": 140429627637760,
  3505. "threadName": "MainThread"
  3506. },
  3507. {
  3508. "args": [
  3509. "51",
  3510. "<class 'int'>"
  3511. ],
  3512. "asctime": "2022-05-08 21:03:46,980",
  3513. "created": 1652036626.980472,
  3514. "exc_info": null,
  3515. "exc_text": null,
  3516. "filename": "test.py",
  3517. "funcName": "equivalency_chk",
  3518. "levelname": "INFO",
  3519. "levelno": 20,
  3520. "lineno": 144,
  3521. "message": "Submitted value number 1 is correct (Content 51 and Type is <class 'int'>).",
  3522. "module": "test",
  3523. "msecs": 980.4720878601074,
  3524. "msg": "Submitted value number 1 is correct (Content %s and Type is %s).",
  3525. "name": "__unittest__",
  3526. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3527. "process": 247081,
  3528. "processName": "MainProcess",
  3529. "relativeCreated": 77.54397392272949,
  3530. "stack_info": null,
  3531. "thread": 140429627637760,
  3532. "threadName": "MainThread"
  3533. },
  3534. {
  3535. "args": [
  3536. "Submitted value number 2",
  3537. "139",
  3538. "<class 'int'>"
  3539. ],
  3540. "asctime": "2022-05-08 21:03:46,980",
  3541. "created": 1652036626.9805174,
  3542. "exc_info": null,
  3543. "exc_text": null,
  3544. "filename": "test.py",
  3545. "funcName": "__report_result__",
  3546. "levelname": "DEBUG",
  3547. "levelno": 10,
  3548. "lineno": 22,
  3549. "message": "Result (Submitted value number 2): 139 (<class 'int'>)",
  3550. "module": "test",
  3551. "msecs": 980.5173873901367,
  3552. "msg": "Result (%s): %s (%s)",
  3553. "name": "__unittest__",
  3554. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3555. "process": 247081,
  3556. "processName": "MainProcess",
  3557. "relativeCreated": 77.58927345275879,
  3558. "stack_info": null,
  3559. "thread": 140429627637760,
  3560. "threadName": "MainThread"
  3561. },
  3562. {
  3563. "args": [
  3564. "Submitted value number 2",
  3565. "139",
  3566. "<class 'int'>"
  3567. ],
  3568. "asctime": "2022-05-08 21:03:46,980",
  3569. "created": 1652036626.9805632,
  3570. "exc_info": null,
  3571. "exc_text": null,
  3572. "filename": "test.py",
  3573. "funcName": "__report_expectation_equivalency__",
  3574. "levelname": "DEBUG",
  3575. "levelno": 10,
  3576. "lineno": 26,
  3577. "message": "Expectation (Submitted value number 2): result = 139 (<class 'int'>)",
  3578. "module": "test",
  3579. "msecs": 980.5631637573242,
  3580. "msg": "Expectation (%s): result = %s (%s)",
  3581. "name": "__unittest__",
  3582. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3583. "process": 247081,
  3584. "processName": "MainProcess",
  3585. "relativeCreated": 77.63504981994629,
  3586. "stack_info": null,
  3587. "thread": 140429627637760,
  3588. "threadName": "MainThread"
  3589. },
  3590. {
  3591. "args": [
  3592. "139",
  3593. "<class 'int'>"
  3594. ],
  3595. "asctime": "2022-05-08 21:03:46,980",
  3596. "created": 1652036626.9806058,
  3597. "exc_info": null,
  3598. "exc_text": null,
  3599. "filename": "test.py",
  3600. "funcName": "equivalency_chk",
  3601. "levelname": "INFO",
  3602. "levelno": 20,
  3603. "lineno": 144,
  3604. "message": "Submitted value number 2 is correct (Content 139 and Type is <class 'int'>).",
  3605. "module": "test",
  3606. "msecs": 980.6058406829834,
  3607. "msg": "Submitted value number 2 is correct (Content %s and Type is %s).",
  3608. "name": "__unittest__",
  3609. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3610. "process": 247081,
  3611. "processName": "MainProcess",
  3612. "relativeCreated": 77.67772674560547,
  3613. "stack_info": null,
  3614. "thread": 140429627637760,
  3615. "threadName": "MainThread"
  3616. },
  3617. {
  3618. "args": [
  3619. "Submitted value number 3",
  3620. "228",
  3621. "<class 'int'>"
  3622. ],
  3623. "asctime": "2022-05-08 21:03:46,980",
  3624. "created": 1652036626.980655,
  3625. "exc_info": null,
  3626. "exc_text": null,
  3627. "filename": "test.py",
  3628. "funcName": "__report_result__",
  3629. "levelname": "DEBUG",
  3630. "levelno": 10,
  3631. "lineno": 22,
  3632. "message": "Result (Submitted value number 3): 228 (<class 'int'>)",
  3633. "module": "test",
  3634. "msecs": 980.6549549102783,
  3635. "msg": "Result (%s): %s (%s)",
  3636. "name": "__unittest__",
  3637. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3638. "process": 247081,
  3639. "processName": "MainProcess",
  3640. "relativeCreated": 77.72684097290039,
  3641. "stack_info": null,
  3642. "thread": 140429627637760,
  3643. "threadName": "MainThread"
  3644. },
  3645. {
  3646. "args": [
  3647. "Submitted value number 3",
  3648. "228",
  3649. "<class 'int'>"
  3650. ],
  3651. "asctime": "2022-05-08 21:03:46,980",
  3652. "created": 1652036626.9806979,
  3653. "exc_info": null,
  3654. "exc_text": null,
  3655. "filename": "test.py",
  3656. "funcName": "__report_expectation_equivalency__",
  3657. "levelname": "DEBUG",
  3658. "levelno": 10,
  3659. "lineno": 26,
  3660. "message": "Expectation (Submitted value number 3): result = 228 (<class 'int'>)",
  3661. "module": "test",
  3662. "msecs": 980.6978702545166,
  3663. "msg": "Expectation (%s): result = %s (%s)",
  3664. "name": "__unittest__",
  3665. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3666. "process": 247081,
  3667. "processName": "MainProcess",
  3668. "relativeCreated": 77.76975631713867,
  3669. "stack_info": null,
  3670. "thread": 140429627637760,
  3671. "threadName": "MainThread"
  3672. },
  3673. {
  3674. "args": [
  3675. "228",
  3676. "<class 'int'>"
  3677. ],
  3678. "asctime": "2022-05-08 21:03:46,980",
  3679. "created": 1652036626.9807515,
  3680. "exc_info": null,
  3681. "exc_text": null,
  3682. "filename": "test.py",
  3683. "funcName": "equivalency_chk",
  3684. "levelname": "INFO",
  3685. "levelno": 20,
  3686. "lineno": 144,
  3687. "message": "Submitted value number 3 is correct (Content 228 and Type is <class 'int'>).",
  3688. "module": "test",
  3689. "msecs": 980.7515144348145,
  3690. "msg": "Submitted value number 3 is correct (Content %s and Type is %s).",
  3691. "name": "__unittest__",
  3692. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3693. "process": 247081,
  3694. "processName": "MainProcess",
  3695. "relativeCreated": 77.82340049743652,
  3696. "stack_info": null,
  3697. "thread": 140429627637760,
  3698. "threadName": "MainThread"
  3699. },
  3700. {
  3701. "args": [
  3702. "Submitted value number 4",
  3703. "316",
  3704. "<class 'int'>"
  3705. ],
  3706. "asctime": "2022-05-08 21:03:46,980",
  3707. "created": 1652036626.9807982,
  3708. "exc_info": null,
  3709. "exc_text": null,
  3710. "filename": "test.py",
  3711. "funcName": "__report_result__",
  3712. "levelname": "DEBUG",
  3713. "levelno": 10,
  3714. "lineno": 22,
  3715. "message": "Result (Submitted value number 4): 316 (<class 'int'>)",
  3716. "module": "test",
  3717. "msecs": 980.7982444763184,
  3718. "msg": "Result (%s): %s (%s)",
  3719. "name": "__unittest__",
  3720. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3721. "process": 247081,
  3722. "processName": "MainProcess",
  3723. "relativeCreated": 77.87013053894043,
  3724. "stack_info": null,
  3725. "thread": 140429627637760,
  3726. "threadName": "MainThread"
  3727. },
  3728. {
  3729. "args": [
  3730. "Submitted value number 4",
  3731. "316",
  3732. "<class 'int'>"
  3733. ],
  3734. "asctime": "2022-05-08 21:03:46,980",
  3735. "created": 1652036626.9808407,
  3736. "exc_info": null,
  3737. "exc_text": null,
  3738. "filename": "test.py",
  3739. "funcName": "__report_expectation_equivalency__",
  3740. "levelname": "DEBUG",
  3741. "levelno": 10,
  3742. "lineno": 26,
  3743. "message": "Expectation (Submitted value number 4): result = 316 (<class 'int'>)",
  3744. "module": "test",
  3745. "msecs": 980.8406829833984,
  3746. "msg": "Expectation (%s): result = %s (%s)",
  3747. "name": "__unittest__",
  3748. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3749. "process": 247081,
  3750. "processName": "MainProcess",
  3751. "relativeCreated": 77.91256904602051,
  3752. "stack_info": null,
  3753. "thread": 140429627637760,
  3754. "threadName": "MainThread"
  3755. },
  3756. {
  3757. "args": [
  3758. "316",
  3759. "<class 'int'>"
  3760. ],
  3761. "asctime": "2022-05-08 21:03:46,980",
  3762. "created": 1652036626.9808831,
  3763. "exc_info": null,
  3764. "exc_text": null,
  3765. "filename": "test.py",
  3766. "funcName": "equivalency_chk",
  3767. "levelname": "INFO",
  3768. "levelno": 20,
  3769. "lineno": 144,
  3770. "message": "Submitted value number 4 is correct (Content 316 and Type is <class 'int'>).",
  3771. "module": "test",
  3772. "msecs": 980.8831214904785,
  3773. "msg": "Submitted value number 4 is correct (Content %s and Type is %s).",
  3774. "name": "__unittest__",
  3775. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3776. "process": 247081,
  3777. "processName": "MainProcess",
  3778. "relativeCreated": 77.95500755310059,
  3779. "stack_info": null,
  3780. "thread": 140429627637760,
  3781. "threadName": "MainThread"
  3782. },
  3783. {
  3784. "args": [
  3785. "Submitted value number 5",
  3786. "401",
  3787. "<class 'int'>"
  3788. ],
  3789. "asctime": "2022-05-08 21:03:46,980",
  3790. "created": 1652036626.9809263,
  3791. "exc_info": null,
  3792. "exc_text": null,
  3793. "filename": "test.py",
  3794. "funcName": "__report_result__",
  3795. "levelname": "DEBUG",
  3796. "levelno": 10,
  3797. "lineno": 22,
  3798. "message": "Result (Submitted value number 5): 401 (<class 'int'>)",
  3799. "module": "test",
  3800. "msecs": 980.9262752532959,
  3801. "msg": "Result (%s): %s (%s)",
  3802. "name": "__unittest__",
  3803. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3804. "process": 247081,
  3805. "processName": "MainProcess",
  3806. "relativeCreated": 77.99816131591797,
  3807. "stack_info": null,
  3808. "thread": 140429627637760,
  3809. "threadName": "MainThread"
  3810. },
  3811. {
  3812. "args": [
  3813. "Submitted value number 5",
  3814. "401",
  3815. "<class 'int'>"
  3816. ],
  3817. "asctime": "2022-05-08 21:03:46,980",
  3818. "created": 1652036626.9809704,
  3819. "exc_info": null,
  3820. "exc_text": null,
  3821. "filename": "test.py",
  3822. "funcName": "__report_expectation_equivalency__",
  3823. "levelname": "DEBUG",
  3824. "levelno": 10,
  3825. "lineno": 26,
  3826. "message": "Expectation (Submitted value number 5): result = 401 (<class 'int'>)",
  3827. "module": "test",
  3828. "msecs": 980.9703826904297,
  3829. "msg": "Expectation (%s): result = %s (%s)",
  3830. "name": "__unittest__",
  3831. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3832. "process": 247081,
  3833. "processName": "MainProcess",
  3834. "relativeCreated": 78.04226875305176,
  3835. "stack_info": null,
  3836. "thread": 140429627637760,
  3837. "threadName": "MainThread"
  3838. },
  3839. {
  3840. "args": [
  3841. "401",
  3842. "<class 'int'>"
  3843. ],
  3844. "asctime": "2022-05-08 21:03:46,981",
  3845. "created": 1652036626.981013,
  3846. "exc_info": null,
  3847. "exc_text": null,
  3848. "filename": "test.py",
  3849. "funcName": "equivalency_chk",
  3850. "levelname": "INFO",
  3851. "levelno": 20,
  3852. "lineno": 144,
  3853. "message": "Submitted value number 5 is correct (Content 401 and Type is <class 'int'>).",
  3854. "module": "test",
  3855. "msecs": 981.0130596160889,
  3856. "msg": "Submitted value number 5 is correct (Content %s and Type is %s).",
  3857. "name": "__unittest__",
  3858. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3859. "process": 247081,
  3860. "processName": "MainProcess",
  3861. "relativeCreated": 78.08494567871094,
  3862. "stack_info": null,
  3863. "thread": 140429627637760,
  3864. "threadName": "MainThread"
  3865. }
  3866. ],
  3867. "msecs": 981.0581207275391,
  3868. "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.",
  3869. "name": "__tLogger__",
  3870. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  3871. "process": 247081,
  3872. "processName": "MainProcess",
  3873. "relativeCreated": 78.13000679016113,
  3874. "stack_info": null,
  3875. "thread": 140429627637760,
  3876. "threadName": "MainThread",
  3877. "time_consumption": 4.506111145019531e-05
  3878. }
  3879. ],
  3880. "thread": 140429627637760,
  3881. "threadName": "MainThread",
  3882. "time_consumption": 0.0021686553955078125,
  3883. "time_finished": "2022-05-08 21:03:46,981",
  3884. "time_start": "2022-05-08 21:03:46,978"
  3885. },
  3886. "_XzMFcHYZEem_kd-7nxt1sg": {
  3887. "args": null,
  3888. "asctime": "2022-05-08 21:03:46,971",
  3889. "created": 1652036626.9712284,
  3890. "exc_info": null,
  3891. "exc_text": null,
  3892. "filename": "__init__.py",
  3893. "funcName": "testrun",
  3894. "levelname": "INFO",
  3895. "levelno": 20,
  3896. "lineno": 19,
  3897. "message": "_XzMFcHYZEem_kd-7nxt1sg",
  3898. "module": "__init__",
  3899. "moduleLogger": [],
  3900. "msecs": 971.2283611297607,
  3901. "msg": "_XzMFcHYZEem_kd-7nxt1sg",
  3902. "name": "__tLogger__",
  3903. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/__init__.py",
  3904. "process": 247081,
  3905. "processName": "MainProcess",
  3906. "relativeCreated": 68.30024719238281,
  3907. "stack_info": null,
  3908. "testcaseLogger": [
  3909. {
  3910. "args": [],
  3911. "asctime": "2022-05-08 21:03:46,972",
  3912. "created": 1652036626.9722538,
  3913. "exc_info": null,
  3914. "exc_text": null,
  3915. "filename": "test_helpers.py",
  3916. "funcName": "__init__",
  3917. "levelname": "DEBUG",
  3918. "levelno": 10,
  3919. "lineno": 38,
  3920. "message": "Running logger test sequence.",
  3921. "module": "test_helpers",
  3922. "moduleLogger": [
  3923. {
  3924. "args": [],
  3925. "asctime": "2022-05-08 21:03:46,971",
  3926. "created": 1652036626.9713829,
  3927. "exc_info": null,
  3928. "exc_text": null,
  3929. "filename": "test_helpers.py",
  3930. "funcName": "__init__",
  3931. "levelname": "DEBUG",
  3932. "levelno": 10,
  3933. "lineno": 22,
  3934. "message": "Configuring collecting logger",
  3935. "module": "test_helpers",
  3936. "msecs": 971.3828563690186,
  3937. "msg": "Configuring collecting logger",
  3938. "name": "__unittest__",
  3939. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3940. "process": 247081,
  3941. "processName": "MainProcess",
  3942. "relativeCreated": 68.45474243164062,
  3943. "stack_info": null,
  3944. "thread": 140429627637760,
  3945. "threadName": "MainThread"
  3946. },
  3947. {
  3948. "args": [
  3949. 1,
  3950. "DEBUG",
  3951. "collectingHandler"
  3952. ],
  3953. "asctime": "2022-05-08 21:03:46,971",
  3954. "created": 1652036626.9714868,
  3955. "exc_info": null,
  3956. "exc_text": null,
  3957. "filename": "test_helpers.py",
  3958. "funcName": "__init__",
  3959. "levelname": "DEBUG",
  3960. "levelno": 10,
  3961. "lineno": 36,
  3962. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.",
  3963. "module": "test_helpers",
  3964. "msecs": 971.4868068695068,
  3965. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  3966. "name": "__unittest__",
  3967. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3968. "process": 247081,
  3969. "processName": "MainProcess",
  3970. "relativeCreated": 68.5586929321289,
  3971. "stack_info": null,
  3972. "thread": 140429627637760,
  3973. "threadName": "MainThread"
  3974. },
  3975. {
  3976. "args": [
  3977. 1,
  3978. "DEBUG"
  3979. ],
  3980. "asctime": "2022-05-08 21:03:46,971",
  3981. "created": 1652036626.9715421,
  3982. "exc_info": null,
  3983. "exc_text": null,
  3984. "filename": "test_helpers.py",
  3985. "funcName": "__init__",
  3986. "levelname": "DEBUG",
  3987. "levelno": 10,
  3988. "lineno": 37,
  3989. "message": "Log entry number 1 with level DEBUG.",
  3990. "module": "test_helpers",
  3991. "msecs": 971.5421199798584,
  3992. "msg": "Log entry number %d with level %s.",
  3993. "name": "test_sequence",
  3994. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  3995. "process": 247081,
  3996. "processName": "MainProcess",
  3997. "relativeCreated": 68.61400604248047,
  3998. "stack_info": null,
  3999. "thread": 140429627637760,
  4000. "threadName": "MainThread"
  4001. },
  4002. {
  4003. "args": [
  4004. 2,
  4005. "INFO",
  4006. "collectingHandler"
  4007. ],
  4008. "asctime": "2022-05-08 21:03:46,971",
  4009. "created": 1652036626.9716127,
  4010. "exc_info": null,
  4011. "exc_text": null,
  4012. "filename": "test_helpers.py",
  4013. "funcName": "__init__",
  4014. "levelname": "DEBUG",
  4015. "levelno": 10,
  4016. "lineno": 36,
  4017. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.",
  4018. "module": "test_helpers",
  4019. "msecs": 971.6126918792725,
  4020. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4021. "name": "__unittest__",
  4022. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4023. "process": 247081,
  4024. "processName": "MainProcess",
  4025. "relativeCreated": 68.68457794189453,
  4026. "stack_info": null,
  4027. "thread": 140429627637760,
  4028. "threadName": "MainThread"
  4029. },
  4030. {
  4031. "args": [
  4032. 2,
  4033. "INFO"
  4034. ],
  4035. "asctime": "2022-05-08 21:03:46,971",
  4036. "created": 1652036626.971678,
  4037. "exc_info": null,
  4038. "exc_text": null,
  4039. "filename": "test_helpers.py",
  4040. "funcName": "__init__",
  4041. "levelname": "INFO",
  4042. "levelno": 20,
  4043. "lineno": 37,
  4044. "message": "Log entry number 2 with level INFO.",
  4045. "module": "test_helpers",
  4046. "msecs": 971.6780185699463,
  4047. "msg": "Log entry number %d with level %s.",
  4048. "name": "test_sequence",
  4049. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4050. "process": 247081,
  4051. "processName": "MainProcess",
  4052. "relativeCreated": 68.74990463256836,
  4053. "stack_info": null,
  4054. "thread": 140429627637760,
  4055. "threadName": "MainThread"
  4056. },
  4057. {
  4058. "args": [
  4059. 3,
  4060. "WARNING",
  4061. "collectingHandler"
  4062. ],
  4063. "asctime": "2022-05-08 21:03:46,971",
  4064. "created": 1652036626.9717424,
  4065. "exc_info": null,
  4066. "exc_text": null,
  4067. "filename": "test_helpers.py",
  4068. "funcName": "__init__",
  4069. "levelname": "DEBUG",
  4070. "levelno": 10,
  4071. "lineno": 36,
  4072. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.",
  4073. "module": "test_helpers",
  4074. "msecs": 971.7423915863037,
  4075. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4076. "name": "__unittest__",
  4077. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4078. "process": 247081,
  4079. "processName": "MainProcess",
  4080. "relativeCreated": 68.81427764892578,
  4081. "stack_info": null,
  4082. "thread": 140429627637760,
  4083. "threadName": "MainThread"
  4084. },
  4085. {
  4086. "args": [
  4087. 3,
  4088. "WARNING"
  4089. ],
  4090. "asctime": "2022-05-08 21:03:46,971",
  4091. "created": 1652036626.9717884,
  4092. "exc_info": null,
  4093. "exc_text": null,
  4094. "filename": "test_helpers.py",
  4095. "funcName": "__init__",
  4096. "levelname": "WARNING",
  4097. "levelno": 30,
  4098. "lineno": 37,
  4099. "message": "Log entry number 3 with level WARNING.",
  4100. "module": "test_helpers",
  4101. "msecs": 971.7884063720703,
  4102. "msg": "Log entry number %d with level %s.",
  4103. "name": "test_sequence",
  4104. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4105. "process": 247081,
  4106. "processName": "MainProcess",
  4107. "relativeCreated": 68.86029243469238,
  4108. "stack_info": null,
  4109. "thread": 140429627637760,
  4110. "threadName": "MainThread"
  4111. },
  4112. {
  4113. "args": [
  4114. 4,
  4115. "ERROR",
  4116. "collectingHandler"
  4117. ],
  4118. "asctime": "2022-05-08 21:03:46,971",
  4119. "created": 1652036626.9718478,
  4120. "exc_info": null,
  4121. "exc_text": null,
  4122. "filename": "test_helpers.py",
  4123. "funcName": "__init__",
  4124. "levelname": "DEBUG",
  4125. "levelno": 10,
  4126. "lineno": 36,
  4127. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.",
  4128. "module": "test_helpers",
  4129. "msecs": 971.8477725982666,
  4130. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4131. "name": "__unittest__",
  4132. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4133. "process": 247081,
  4134. "processName": "MainProcess",
  4135. "relativeCreated": 68.91965866088867,
  4136. "stack_info": null,
  4137. "thread": 140429627637760,
  4138. "threadName": "MainThread"
  4139. },
  4140. {
  4141. "args": [
  4142. 4,
  4143. "ERROR"
  4144. ],
  4145. "asctime": "2022-05-08 21:03:46,971",
  4146. "created": 1652036626.9718919,
  4147. "exc_info": null,
  4148. "exc_text": null,
  4149. "filename": "test_helpers.py",
  4150. "funcName": "__init__",
  4151. "levelname": "ERROR",
  4152. "levelno": 40,
  4153. "lineno": 37,
  4154. "message": "Log entry number 4 with level ERROR.",
  4155. "module": "test_helpers",
  4156. "msecs": 971.8918800354004,
  4157. "msg": "Log entry number %d with level %s.",
  4158. "name": "test_sequence",
  4159. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4160. "process": 247081,
  4161. "processName": "MainProcess",
  4162. "relativeCreated": 68.96376609802246,
  4163. "stack_info": null,
  4164. "thread": 140429627637760,
  4165. "threadName": "MainThread"
  4166. },
  4167. {
  4168. "args": [
  4169. 5,
  4170. "CRITICAL",
  4171. "collectingHandler"
  4172. ],
  4173. "asctime": "2022-05-08 21:03:46,971",
  4174. "created": 1652036626.9719503,
  4175. "exc_info": null,
  4176. "exc_text": null,
  4177. "filename": "test_helpers.py",
  4178. "funcName": "__init__",
  4179. "levelname": "DEBUG",
  4180. "levelno": 10,
  4181. "lineno": 36,
  4182. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.",
  4183. "module": "test_helpers",
  4184. "msecs": 971.9502925872803,
  4185. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4186. "name": "__unittest__",
  4187. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4188. "process": 247081,
  4189. "processName": "MainProcess",
  4190. "relativeCreated": 69.02217864990234,
  4191. "stack_info": null,
  4192. "thread": 140429627637760,
  4193. "threadName": "MainThread"
  4194. },
  4195. {
  4196. "args": [
  4197. 5,
  4198. "CRITICAL"
  4199. ],
  4200. "asctime": "2022-05-08 21:03:46,971",
  4201. "created": 1652036626.9719949,
  4202. "exc_info": null,
  4203. "exc_text": null,
  4204. "filename": "test_helpers.py",
  4205. "funcName": "__init__",
  4206. "levelname": "CRITICAL",
  4207. "levelno": 50,
  4208. "lineno": 37,
  4209. "message": "Log entry number 5 with level CRITICAL.",
  4210. "module": "test_helpers",
  4211. "msecs": 971.9948768615723,
  4212. "msg": "Log entry number %d with level %s.",
  4213. "name": "test_sequence",
  4214. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4215. "process": 247081,
  4216. "processName": "MainProcess",
  4217. "relativeCreated": 69.06676292419434,
  4218. "stack_info": null,
  4219. "thread": 140429627637760,
  4220. "threadName": "MainThread"
  4221. },
  4222. {
  4223. "args": [
  4224. 6,
  4225. "INFO",
  4226. "collectingHandler"
  4227. ],
  4228. "asctime": "2022-05-08 21:03:46,972",
  4229. "created": 1652036626.9720533,
  4230. "exc_info": null,
  4231. "exc_text": null,
  4232. "filename": "test_helpers.py",
  4233. "funcName": "__init__",
  4234. "levelname": "DEBUG",
  4235. "levelno": 10,
  4236. "lineno": 36,
  4237. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.",
  4238. "module": "test_helpers",
  4239. "msecs": 972.0532894134521,
  4240. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4241. "name": "__unittest__",
  4242. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4243. "process": 247081,
  4244. "processName": "MainProcess",
  4245. "relativeCreated": 69.12517547607422,
  4246. "stack_info": null,
  4247. "thread": 140429627637760,
  4248. "threadName": "MainThread"
  4249. },
  4250. {
  4251. "args": [
  4252. 6,
  4253. "INFO"
  4254. ],
  4255. "asctime": "2022-05-08 21:03:46,972",
  4256. "created": 1652036626.9720933,
  4257. "exc_info": null,
  4258. "exc_text": null,
  4259. "filename": "test_helpers.py",
  4260. "funcName": "__init__",
  4261. "levelname": "INFO",
  4262. "levelno": 20,
  4263. "lineno": 37,
  4264. "message": "Log entry number 6 with level INFO.",
  4265. "module": "test_helpers",
  4266. "msecs": 972.0933437347412,
  4267. "msg": "Log entry number %d with level %s.",
  4268. "name": "test_sequence",
  4269. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4270. "process": 247081,
  4271. "processName": "MainProcess",
  4272. "relativeCreated": 69.16522979736328,
  4273. "stack_info": null,
  4274. "thread": 140429627637760,
  4275. "threadName": "MainThread"
  4276. },
  4277. {
  4278. "args": [
  4279. 7,
  4280. "ERROR",
  4281. "collectingHandler"
  4282. ],
  4283. "asctime": "2022-05-08 21:03:46,972",
  4284. "created": 1652036626.9721544,
  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 7 with level ERROR.\" to collectingHandler.",
  4293. "module": "test_helpers",
  4294. "msecs": 972.1543788909912,
  4295. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  4296. "name": "__unittest__",
  4297. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4298. "process": 247081,
  4299. "processName": "MainProcess",
  4300. "relativeCreated": 69.22626495361328,
  4301. "stack_info": null,
  4302. "thread": 140429627637760,
  4303. "threadName": "MainThread"
  4304. },
  4305. {
  4306. "args": [
  4307. 7,
  4308. "ERROR"
  4309. ],
  4310. "asctime": "2022-05-08 21:03:46,972",
  4311. "created": 1652036626.972194,
  4312. "exc_info": null,
  4313. "exc_text": null,
  4314. "filename": "test_helpers.py",
  4315. "funcName": "__init__",
  4316. "levelname": "ERROR",
  4317. "levelno": 40,
  4318. "lineno": 37,
  4319. "message": "Log entry number 7 with level ERROR.",
  4320. "module": "test_helpers",
  4321. "msecs": 972.1939563751221,
  4322. "msg": "Log entry number %d with level %s.",
  4323. "name": "test_sequence",
  4324. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4325. "process": 247081,
  4326. "processName": "MainProcess",
  4327. "relativeCreated": 69.26584243774414,
  4328. "stack_info": null,
  4329. "thread": 140429627637760,
  4330. "threadName": "MainThread"
  4331. }
  4332. ],
  4333. "msecs": 972.2537994384766,
  4334. "msg": "Running logger test sequence.",
  4335. "name": "__tLogger__",
  4336. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  4337. "process": 247081,
  4338. "processName": "MainProcess",
  4339. "relativeCreated": 69.32568550109863,
  4340. "stack_info": null,
  4341. "thread": 140429627637760,
  4342. "threadName": "MainThread",
  4343. "time_consumption": 5.984306335449219e-05
  4344. },
  4345. {
  4346. "args": [
  4347. "7",
  4348. "<class 'int'>"
  4349. ],
  4350. "asctime": "2022-05-08 21:03:46,972",
  4351. "created": 1652036626.972461,
  4352. "exc_info": null,
  4353. "exc_text": null,
  4354. "filename": "test.py",
  4355. "funcName": "equivalency_chk",
  4356. "levelname": "INFO",
  4357. "levelno": 20,
  4358. "lineno": 144,
  4359. "message": "Length of collected logs is correct (Content 7 and Type is <class 'int'>).",
  4360. "module": "test",
  4361. "moduleLogger": [
  4362. {
  4363. "args": [
  4364. "Length of collected logs",
  4365. "7",
  4366. "<class 'int'>"
  4367. ],
  4368. "asctime": "2022-05-08 21:03:46,972",
  4369. "created": 1652036626.9723606,
  4370. "exc_info": null,
  4371. "exc_text": null,
  4372. "filename": "test.py",
  4373. "funcName": "__report_result__",
  4374. "levelname": "DEBUG",
  4375. "levelno": 10,
  4376. "lineno": 22,
  4377. "message": "Result (Length of collected logs): 7 (<class 'int'>)",
  4378. "module": "test",
  4379. "msecs": 972.3606109619141,
  4380. "msg": "Result (%s): %s (%s)",
  4381. "name": "__unittest__",
  4382. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4383. "process": 247081,
  4384. "processName": "MainProcess",
  4385. "relativeCreated": 69.43249702453613,
  4386. "stack_info": null,
  4387. "thread": 140429627637760,
  4388. "threadName": "MainThread"
  4389. },
  4390. {
  4391. "args": [
  4392. "Length of collected logs",
  4393. "7",
  4394. "<class 'int'>"
  4395. ],
  4396. "asctime": "2022-05-08 21:03:46,972",
  4397. "created": 1652036626.9724085,
  4398. "exc_info": null,
  4399. "exc_text": null,
  4400. "filename": "test.py",
  4401. "funcName": "__report_expectation_equivalency__",
  4402. "levelname": "DEBUG",
  4403. "levelno": 10,
  4404. "lineno": 26,
  4405. "message": "Expectation (Length of collected logs): result = 7 (<class 'int'>)",
  4406. "module": "test",
  4407. "msecs": 972.4085330963135,
  4408. "msg": "Expectation (%s): result = %s (%s)",
  4409. "name": "__unittest__",
  4410. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4411. "process": 247081,
  4412. "processName": "MainProcess",
  4413. "relativeCreated": 69.48041915893555,
  4414. "stack_info": null,
  4415. "thread": 140429627637760,
  4416. "threadName": "MainThread"
  4417. }
  4418. ],
  4419. "msecs": 972.4609851837158,
  4420. "msg": "Length of collected logs is correct (Content %s and Type is %s).",
  4421. "name": "__tLogger__",
  4422. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4423. "process": 247081,
  4424. "processName": "MainProcess",
  4425. "relativeCreated": 69.53287124633789,
  4426. "stack_info": null,
  4427. "thread": 140429627637760,
  4428. "threadName": "MainThread",
  4429. "time_consumption": 5.245208740234375e-05
  4430. },
  4431. {
  4432. "args": [
  4433. "['Log entry number %d with level %s.', 10, 'test_helpers.py', 1]",
  4434. "<class 'list'>"
  4435. ],
  4436. "asctime": "2022-05-08 21:03:46,972",
  4437. "created": 1652036626.9726777,
  4438. "exc_info": null,
  4439. "exc_text": null,
  4440. "filename": "test.py",
  4441. "funcName": "equivalency_chk",
  4442. "levelname": "INFO",
  4443. "levelno": 20,
  4444. "lineno": 144,
  4445. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 10, 'test_helpers.py', 1] and Type is <class 'list'>).",
  4446. "module": "test",
  4447. "moduleLogger": [
  4448. {
  4449. "args": [
  4450. "Logged information",
  4451. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  4452. "<class 'list'>"
  4453. ],
  4454. "asctime": "2022-05-08 21:03:46,972",
  4455. "created": 1652036626.9725525,
  4456. "exc_info": null,
  4457. "exc_text": null,
  4458. "filename": "test.py",
  4459. "funcName": "__report_result__",
  4460. "levelname": "DEBUG",
  4461. "levelno": 10,
  4462. "lineno": 22,
  4463. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<class 'list'>)",
  4464. "module": "test",
  4465. "msecs": 972.5525379180908,
  4466. "msg": "Result (%s): %s (%s)",
  4467. "name": "__unittest__",
  4468. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4469. "process": 247081,
  4470. "processName": "MainProcess",
  4471. "relativeCreated": 69.62442398071289,
  4472. "stack_info": null,
  4473. "thread": 140429627637760,
  4474. "threadName": "MainThread"
  4475. },
  4476. {
  4477. "args": [
  4478. "Logged information",
  4479. "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]",
  4480. "<class 'list'>"
  4481. ],
  4482. "asctime": "2022-05-08 21:03:46,972",
  4483. "created": 1652036626.9726064,
  4484. "exc_info": null,
  4485. "exc_text": null,
  4486. "filename": "test.py",
  4487. "funcName": "__report_expectation_equivalency__",
  4488. "levelname": "DEBUG",
  4489. "levelno": 10,
  4490. "lineno": 26,
  4491. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] (<class 'list'>)",
  4492. "module": "test",
  4493. "msecs": 972.6064205169678,
  4494. "msg": "Expectation (%s): result = %s (%s)",
  4495. "name": "__unittest__",
  4496. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4497. "process": 247081,
  4498. "processName": "MainProcess",
  4499. "relativeCreated": 69.67830657958984,
  4500. "stack_info": null,
  4501. "thread": 140429627637760,
  4502. "threadName": "MainThread"
  4503. }
  4504. ],
  4505. "msecs": 972.6777076721191,
  4506. "msg": "Logged information is correct (Content %s and Type is %s).",
  4507. "name": "__tLogger__",
  4508. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4509. "process": 247081,
  4510. "processName": "MainProcess",
  4511. "relativeCreated": 69.74959373474121,
  4512. "stack_info": null,
  4513. "thread": 140429627637760,
  4514. "threadName": "MainThread",
  4515. "time_consumption": 7.128715515136719e-05
  4516. },
  4517. {
  4518. "args": [
  4519. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 2]",
  4520. "<class 'list'>"
  4521. ],
  4522. "asctime": "2022-05-08 21:03:46,972",
  4523. "created": 1652036626.9728708,
  4524. "exc_info": null,
  4525. "exc_text": null,
  4526. "filename": "test.py",
  4527. "funcName": "equivalency_chk",
  4528. "levelname": "INFO",
  4529. "levelno": 20,
  4530. "lineno": 144,
  4531. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 2] and Type is <class 'list'>).",
  4532. "module": "test",
  4533. "moduleLogger": [
  4534. {
  4535. "args": [
  4536. "Logged information",
  4537. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  4538. "<class 'list'>"
  4539. ],
  4540. "asctime": "2022-05-08 21:03:46,972",
  4541. "created": 1652036626.9727595,
  4542. "exc_info": null,
  4543. "exc_text": null,
  4544. "filename": "test.py",
  4545. "funcName": "__report_result__",
  4546. "levelname": "DEBUG",
  4547. "levelno": 10,
  4548. "lineno": 22,
  4549. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<class 'list'>)",
  4550. "module": "test",
  4551. "msecs": 972.759485244751,
  4552. "msg": "Result (%s): %s (%s)",
  4553. "name": "__unittest__",
  4554. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4555. "process": 247081,
  4556. "processName": "MainProcess",
  4557. "relativeCreated": 69.83137130737305,
  4558. "stack_info": null,
  4559. "thread": 140429627637760,
  4560. "threadName": "MainThread"
  4561. },
  4562. {
  4563. "args": [
  4564. "Logged information",
  4565. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]",
  4566. "<class 'list'>"
  4567. ],
  4568. "asctime": "2022-05-08 21:03:46,972",
  4569. "created": 1652036626.9728103,
  4570. "exc_info": null,
  4571. "exc_text": null,
  4572. "filename": "test.py",
  4573. "funcName": "__report_expectation_equivalency__",
  4574. "levelname": "DEBUG",
  4575. "levelno": 10,
  4576. "lineno": 26,
  4577. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] (<class 'list'>)",
  4578. "module": "test",
  4579. "msecs": 972.8102684020996,
  4580. "msg": "Expectation (%s): result = %s (%s)",
  4581. "name": "__unittest__",
  4582. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4583. "process": 247081,
  4584. "processName": "MainProcess",
  4585. "relativeCreated": 69.88215446472168,
  4586. "stack_info": null,
  4587. "thread": 140429627637760,
  4588. "threadName": "MainThread"
  4589. }
  4590. ],
  4591. "msecs": 972.8708267211914,
  4592. "msg": "Logged information is correct (Content %s and Type is %s).",
  4593. "name": "__tLogger__",
  4594. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4595. "process": 247081,
  4596. "processName": "MainProcess",
  4597. "relativeCreated": 69.94271278381348,
  4598. "stack_info": null,
  4599. "thread": 140429627637760,
  4600. "threadName": "MainThread",
  4601. "time_consumption": 6.0558319091796875e-05
  4602. },
  4603. {
  4604. "args": [
  4605. "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]",
  4606. "<class 'list'>"
  4607. ],
  4608. "asctime": "2022-05-08 21:03:46,973",
  4609. "created": 1652036626.9730637,
  4610. "exc_info": null,
  4611. "exc_text": null,
  4612. "filename": "test.py",
  4613. "funcName": "equivalency_chk",
  4614. "levelname": "INFO",
  4615. "levelno": 20,
  4616. "lineno": 144,
  4617. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 30, 'test_helpers.py', 3] and Type is <class 'list'>).",
  4618. "module": "test",
  4619. "moduleLogger": [
  4620. {
  4621. "args": [
  4622. "Logged information",
  4623. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  4624. "<class 'list'>"
  4625. ],
  4626. "asctime": "2022-05-08 21:03:46,972",
  4627. "created": 1652036626.9729533,
  4628. "exc_info": null,
  4629. "exc_text": null,
  4630. "filename": "test.py",
  4631. "funcName": "__report_result__",
  4632. "levelname": "DEBUG",
  4633. "levelno": 10,
  4634. "lineno": 22,
  4635. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  4636. "module": "test",
  4637. "msecs": 972.9533195495605,
  4638. "msg": "Result (%s): %s (%s)",
  4639. "name": "__unittest__",
  4640. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4641. "process": 247081,
  4642. "processName": "MainProcess",
  4643. "relativeCreated": 70.02520561218262,
  4644. "stack_info": null,
  4645. "thread": 140429627637760,
  4646. "threadName": "MainThread"
  4647. },
  4648. {
  4649. "args": [
  4650. "Logged information",
  4651. "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]",
  4652. "<class 'list'>"
  4653. ],
  4654. "asctime": "2022-05-08 21:03:46,973",
  4655. "created": 1652036626.9730039,
  4656. "exc_info": null,
  4657. "exc_text": null,
  4658. "filename": "test.py",
  4659. "funcName": "__report_expectation_equivalency__",
  4660. "levelname": "DEBUG",
  4661. "levelno": 10,
  4662. "lineno": 26,
  4663. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] (<class 'list'>)",
  4664. "module": "test",
  4665. "msecs": 973.0038642883301,
  4666. "msg": "Expectation (%s): result = %s (%s)",
  4667. "name": "__unittest__",
  4668. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4669. "process": 247081,
  4670. "processName": "MainProcess",
  4671. "relativeCreated": 70.07575035095215,
  4672. "stack_info": null,
  4673. "thread": 140429627637760,
  4674. "threadName": "MainThread"
  4675. }
  4676. ],
  4677. "msecs": 973.0637073516846,
  4678. "msg": "Logged information is correct (Content %s and Type is %s).",
  4679. "name": "__tLogger__",
  4680. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4681. "process": 247081,
  4682. "processName": "MainProcess",
  4683. "relativeCreated": 70.13559341430664,
  4684. "stack_info": null,
  4685. "thread": 140429627637760,
  4686. "threadName": "MainThread",
  4687. "time_consumption": 5.984306335449219e-05
  4688. },
  4689. {
  4690. "args": [
  4691. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]",
  4692. "<class 'list'>"
  4693. ],
  4694. "asctime": "2022-05-08 21:03:46,973",
  4695. "created": 1652036626.9732528,
  4696. "exc_info": null,
  4697. "exc_text": null,
  4698. "filename": "test.py",
  4699. "funcName": "equivalency_chk",
  4700. "levelname": "INFO",
  4701. "levelno": 20,
  4702. "lineno": 144,
  4703. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 4] and Type is <class 'list'>).",
  4704. "module": "test",
  4705. "moduleLogger": [
  4706. {
  4707. "args": [
  4708. "Logged information",
  4709. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  4710. "<class 'list'>"
  4711. ],
  4712. "asctime": "2022-05-08 21:03:46,973",
  4713. "created": 1652036626.9731426,
  4714. "exc_info": null,
  4715. "exc_text": null,
  4716. "filename": "test.py",
  4717. "funcName": "__report_result__",
  4718. "levelname": "DEBUG",
  4719. "levelno": 10,
  4720. "lineno": 22,
  4721. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  4722. "module": "test",
  4723. "msecs": 973.1426239013672,
  4724. "msg": "Result (%s): %s (%s)",
  4725. "name": "__unittest__",
  4726. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4727. "process": 247081,
  4728. "processName": "MainProcess",
  4729. "relativeCreated": 70.21450996398926,
  4730. "stack_info": null,
  4731. "thread": 140429627637760,
  4732. "threadName": "MainThread"
  4733. },
  4734. {
  4735. "args": [
  4736. "Logged information",
  4737. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]",
  4738. "<class 'list'>"
  4739. ],
  4740. "asctime": "2022-05-08 21:03:46,973",
  4741. "created": 1652036626.9731932,
  4742. "exc_info": null,
  4743. "exc_text": null,
  4744. "filename": "test.py",
  4745. "funcName": "__report_expectation_equivalency__",
  4746. "levelname": "DEBUG",
  4747. "levelno": 10,
  4748. "lineno": 26,
  4749. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] (<class 'list'>)",
  4750. "module": "test",
  4751. "msecs": 973.1931686401367,
  4752. "msg": "Expectation (%s): result = %s (%s)",
  4753. "name": "__unittest__",
  4754. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4755. "process": 247081,
  4756. "processName": "MainProcess",
  4757. "relativeCreated": 70.26505470275879,
  4758. "stack_info": null,
  4759. "thread": 140429627637760,
  4760. "threadName": "MainThread"
  4761. }
  4762. ],
  4763. "msecs": 973.2527732849121,
  4764. "msg": "Logged information is correct (Content %s and Type is %s).",
  4765. "name": "__tLogger__",
  4766. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4767. "process": 247081,
  4768. "processName": "MainProcess",
  4769. "relativeCreated": 70.32465934753418,
  4770. "stack_info": null,
  4771. "thread": 140429627637760,
  4772. "threadName": "MainThread",
  4773. "time_consumption": 5.9604644775390625e-05
  4774. },
  4775. {
  4776. "args": [
  4777. "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]",
  4778. "<class 'list'>"
  4779. ],
  4780. "asctime": "2022-05-08 21:03:46,973",
  4781. "created": 1652036626.973446,
  4782. "exc_info": null,
  4783. "exc_text": null,
  4784. "filename": "test.py",
  4785. "funcName": "equivalency_chk",
  4786. "levelname": "INFO",
  4787. "levelno": 20,
  4788. "lineno": 144,
  4789. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 50, 'test_helpers.py', 5] and Type is <class 'list'>).",
  4790. "module": "test",
  4791. "moduleLogger": [
  4792. {
  4793. "args": [
  4794. "Logged information",
  4795. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  4796. "<class 'list'>"
  4797. ],
  4798. "asctime": "2022-05-08 21:03:46,973",
  4799. "created": 1652036626.9733307,
  4800. "exc_info": null,
  4801. "exc_text": null,
  4802. "filename": "test.py",
  4803. "funcName": "__report_result__",
  4804. "levelname": "DEBUG",
  4805. "levelno": 10,
  4806. "lineno": 22,
  4807. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  4808. "module": "test",
  4809. "msecs": 973.3307361602783,
  4810. "msg": "Result (%s): %s (%s)",
  4811. "name": "__unittest__",
  4812. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4813. "process": 247081,
  4814. "processName": "MainProcess",
  4815. "relativeCreated": 70.40262222290039,
  4816. "stack_info": null,
  4817. "thread": 140429627637760,
  4818. "threadName": "MainThread"
  4819. },
  4820. {
  4821. "args": [
  4822. "Logged information",
  4823. "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]",
  4824. "<class 'list'>"
  4825. ],
  4826. "asctime": "2022-05-08 21:03:46,973",
  4827. "created": 1652036626.9733863,
  4828. "exc_info": null,
  4829. "exc_text": null,
  4830. "filename": "test.py",
  4831. "funcName": "__report_expectation_equivalency__",
  4832. "levelname": "DEBUG",
  4833. "levelno": 10,
  4834. "lineno": 26,
  4835. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] (<class 'list'>)",
  4836. "module": "test",
  4837. "msecs": 973.386287689209,
  4838. "msg": "Expectation (%s): result = %s (%s)",
  4839. "name": "__unittest__",
  4840. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4841. "process": 247081,
  4842. "processName": "MainProcess",
  4843. "relativeCreated": 70.45817375183105,
  4844. "stack_info": null,
  4845. "thread": 140429627637760,
  4846. "threadName": "MainThread"
  4847. }
  4848. ],
  4849. "msecs": 973.4458923339844,
  4850. "msg": "Logged information is correct (Content %s and Type is %s).",
  4851. "name": "__tLogger__",
  4852. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4853. "process": 247081,
  4854. "processName": "MainProcess",
  4855. "relativeCreated": 70.51777839660645,
  4856. "stack_info": null,
  4857. "thread": 140429627637760,
  4858. "threadName": "MainThread",
  4859. "time_consumption": 5.9604644775390625e-05
  4860. },
  4861. {
  4862. "args": [
  4863. "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]",
  4864. "<class 'list'>"
  4865. ],
  4866. "asctime": "2022-05-08 21:03:46,973",
  4867. "created": 1652036626.9736392,
  4868. "exc_info": null,
  4869. "exc_text": null,
  4870. "filename": "test.py",
  4871. "funcName": "equivalency_chk",
  4872. "levelname": "INFO",
  4873. "levelno": 20,
  4874. "lineno": 144,
  4875. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 20, 'test_helpers.py', 6] and Type is <class 'list'>).",
  4876. "module": "test",
  4877. "moduleLogger": [
  4878. {
  4879. "args": [
  4880. "Logged information",
  4881. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  4882. "<class 'list'>"
  4883. ],
  4884. "asctime": "2022-05-08 21:03:46,973",
  4885. "created": 1652036626.9735255,
  4886. "exc_info": null,
  4887. "exc_text": null,
  4888. "filename": "test.py",
  4889. "funcName": "__report_result__",
  4890. "levelname": "DEBUG",
  4891. "levelno": 10,
  4892. "lineno": 22,
  4893. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  4894. "module": "test",
  4895. "msecs": 973.5255241394043,
  4896. "msg": "Result (%s): %s (%s)",
  4897. "name": "__unittest__",
  4898. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4899. "process": 247081,
  4900. "processName": "MainProcess",
  4901. "relativeCreated": 70.59741020202637,
  4902. "stack_info": null,
  4903. "thread": 140429627637760,
  4904. "threadName": "MainThread"
  4905. },
  4906. {
  4907. "args": [
  4908. "Logged information",
  4909. "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]",
  4910. "<class 'list'>"
  4911. ],
  4912. "asctime": "2022-05-08 21:03:46,973",
  4913. "created": 1652036626.9735758,
  4914. "exc_info": null,
  4915. "exc_text": null,
  4916. "filename": "test.py",
  4917. "funcName": "__report_expectation_equivalency__",
  4918. "levelname": "DEBUG",
  4919. "levelno": 10,
  4920. "lineno": 26,
  4921. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] (<class 'list'>)",
  4922. "module": "test",
  4923. "msecs": 973.5758304595947,
  4924. "msg": "Expectation (%s): result = %s (%s)",
  4925. "name": "__unittest__",
  4926. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4927. "process": 247081,
  4928. "processName": "MainProcess",
  4929. "relativeCreated": 70.6477165222168,
  4930. "stack_info": null,
  4931. "thread": 140429627637760,
  4932. "threadName": "MainThread"
  4933. }
  4934. ],
  4935. "msecs": 973.6392498016357,
  4936. "msg": "Logged information is correct (Content %s and Type is %s).",
  4937. "name": "__tLogger__",
  4938. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4939. "process": 247081,
  4940. "processName": "MainProcess",
  4941. "relativeCreated": 70.71113586425781,
  4942. "stack_info": null,
  4943. "thread": 140429627637760,
  4944. "threadName": "MainThread",
  4945. "time_consumption": 6.341934204101562e-05
  4946. },
  4947. {
  4948. "args": [
  4949. "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]",
  4950. "<class 'list'>"
  4951. ],
  4952. "asctime": "2022-05-08 21:03:46,973",
  4953. "created": 1652036626.9738328,
  4954. "exc_info": null,
  4955. "exc_text": null,
  4956. "filename": "test.py",
  4957. "funcName": "equivalency_chk",
  4958. "levelname": "INFO",
  4959. "levelno": 20,
  4960. "lineno": 144,
  4961. "message": "Logged information is correct (Content ['Log entry number %d with level %s.', 40, 'test_helpers.py', 7] and Type is <class 'list'>).",
  4962. "module": "test",
  4963. "moduleLogger": [
  4964. {
  4965. "args": [
  4966. "Logged information",
  4967. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  4968. "<class 'list'>"
  4969. ],
  4970. "asctime": "2022-05-08 21:03:46,973",
  4971. "created": 1652036626.973721,
  4972. "exc_info": null,
  4973. "exc_text": null,
  4974. "filename": "test.py",
  4975. "funcName": "__report_result__",
  4976. "levelname": "DEBUG",
  4977. "levelno": 10,
  4978. "lineno": 22,
  4979. "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  4980. "module": "test",
  4981. "msecs": 973.7210273742676,
  4982. "msg": "Result (%s): %s (%s)",
  4983. "name": "__unittest__",
  4984. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  4985. "process": 247081,
  4986. "processName": "MainProcess",
  4987. "relativeCreated": 70.79291343688965,
  4988. "stack_info": null,
  4989. "thread": 140429627637760,
  4990. "threadName": "MainThread"
  4991. },
  4992. {
  4993. "args": [
  4994. "Logged information",
  4995. "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]",
  4996. "<class 'list'>"
  4997. ],
  4998. "asctime": "2022-05-08 21:03:46,973",
  4999. "created": 1652036626.973773,
  5000. "exc_info": null,
  5001. "exc_text": null,
  5002. "filename": "test.py",
  5003. "funcName": "__report_expectation_equivalency__",
  5004. "levelname": "DEBUG",
  5005. "levelno": 10,
  5006. "lineno": 26,
  5007. "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] (<class 'list'>)",
  5008. "module": "test",
  5009. "msecs": 973.7730026245117,
  5010. "msg": "Expectation (%s): result = %s (%s)",
  5011. "name": "__unittest__",
  5012. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5013. "process": 247081,
  5014. "processName": "MainProcess",
  5015. "relativeCreated": 70.84488868713379,
  5016. "stack_info": null,
  5017. "thread": 140429627637760,
  5018. "threadName": "MainThread"
  5019. }
  5020. ],
  5021. "msecs": 973.8328456878662,
  5022. "msg": "Logged information is correct (Content %s and Type is %s).",
  5023. "name": "__tLogger__",
  5024. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5025. "process": 247081,
  5026. "processName": "MainProcess",
  5027. "relativeCreated": 70.90473175048828,
  5028. "stack_info": null,
  5029. "thread": 140429627637760,
  5030. "threadName": "MainThread",
  5031. "time_consumption": 5.984306335449219e-05
  5032. }
  5033. ],
  5034. "thread": 140429627637760,
  5035. "threadName": "MainThread",
  5036. "time_consumption": 0.0026044845581054688,
  5037. "time_finished": "2022-05-08 21:03:46,973",
  5038. "time_start": "2022-05-08 21:03:46,971"
  5039. },
  5040. "_fW5s8CzQEeqYsdFh5Cd6ng": {
  5041. "args": null,
  5042. "asctime": "2022-05-08 21:03:46,981",
  5043. "created": 1652036626.9812222,
  5044. "exc_info": null,
  5045. "exc_text": null,
  5046. "filename": "__init__.py",
  5047. "funcName": "testrun",
  5048. "levelname": "INFO",
  5049. "levelno": 20,
  5050. "lineno": 23,
  5051. "message": "_fW5s8CzQEeqYsdFh5Cd6ng",
  5052. "module": "__init__",
  5053. "moduleLogger": [],
  5054. "msecs": 981.2221527099609,
  5055. "msg": "_fW5s8CzQEeqYsdFh5Cd6ng",
  5056. "name": "__tLogger__",
  5057. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/__init__.py",
  5058. "process": 247081,
  5059. "processName": "MainProcess",
  5060. "relativeCreated": 78.29403877258301,
  5061. "stack_info": null,
  5062. "testcaseLogger": [
  5063. {
  5064. "args": [],
  5065. "asctime": "2022-05-08 21:03:46,982",
  5066. "created": 1652036626.9825902,
  5067. "exc_info": null,
  5068. "exc_text": null,
  5069. "filename": "test_helpers.py",
  5070. "funcName": "__init__",
  5071. "levelname": "DEBUG",
  5072. "levelno": 10,
  5073. "lineno": 38,
  5074. "message": "Running logger test sequence.",
  5075. "module": "test_helpers",
  5076. "moduleLogger": [
  5077. {
  5078. "args": [],
  5079. "asctime": "2022-05-08 21:03:46,981",
  5080. "created": 1652036626.981301,
  5081. "exc_info": null,
  5082. "exc_text": null,
  5083. "filename": "test_helpers.py",
  5084. "funcName": "__init__",
  5085. "levelname": "DEBUG",
  5086. "levelno": 10,
  5087. "lineno": 22,
  5088. "message": "Configuring collecting logger",
  5089. "module": "test_helpers",
  5090. "msecs": 981.3010692596436,
  5091. "msg": "Configuring collecting logger",
  5092. "name": "__unittest__",
  5093. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5094. "process": 247081,
  5095. "processName": "MainProcess",
  5096. "relativeCreated": 78.37295532226562,
  5097. "stack_info": null,
  5098. "thread": 140429627637760,
  5099. "threadName": "MainThread"
  5100. },
  5101. {
  5102. "args": [
  5103. 1,
  5104. "DEBUG",
  5105. "collectingRingHandler"
  5106. ],
  5107. "asctime": "2022-05-08 21:03:46,981",
  5108. "created": 1652036626.9813886,
  5109. "exc_info": null,
  5110. "exc_text": null,
  5111. "filename": "test_helpers.py",
  5112. "funcName": "__init__",
  5113. "levelname": "DEBUG",
  5114. "levelno": 10,
  5115. "lineno": 36,
  5116. "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.",
  5117. "module": "test_helpers",
  5118. "msecs": 981.3885688781738,
  5119. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5120. "name": "__unittest__",
  5121. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5122. "process": 247081,
  5123. "processName": "MainProcess",
  5124. "relativeCreated": 78.4604549407959,
  5125. "stack_info": null,
  5126. "thread": 140429627637760,
  5127. "threadName": "MainThread"
  5128. },
  5129. {
  5130. "args": [
  5131. 1,
  5132. "DEBUG"
  5133. ],
  5134. "asctime": "2022-05-08 21:03:46,981",
  5135. "created": 1652036626.981441,
  5136. "exc_info": null,
  5137. "exc_text": null,
  5138. "filename": "test_helpers.py",
  5139. "funcName": "__init__",
  5140. "levelname": "DEBUG",
  5141. "levelno": 10,
  5142. "lineno": 37,
  5143. "message": "Log entry number 1 with level DEBUG.",
  5144. "module": "test_helpers",
  5145. "msecs": 981.4410209655762,
  5146. "msg": "Log entry number %d with level %s.",
  5147. "name": "test_sequence",
  5148. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5149. "process": 247081,
  5150. "processName": "MainProcess",
  5151. "relativeCreated": 78.51290702819824,
  5152. "stack_info": null,
  5153. "thread": 140429627637760,
  5154. "threadName": "MainThread"
  5155. },
  5156. {
  5157. "args": [
  5158. 2,
  5159. "INFO",
  5160. "collectingRingHandler"
  5161. ],
  5162. "asctime": "2022-05-08 21:03:46,981",
  5163. "created": 1652036626.9815686,
  5164. "exc_info": null,
  5165. "exc_text": null,
  5166. "filename": "test_helpers.py",
  5167. "funcName": "__init__",
  5168. "levelname": "DEBUG",
  5169. "levelno": 10,
  5170. "lineno": 36,
  5171. "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.",
  5172. "module": "test_helpers",
  5173. "msecs": 981.5685749053955,
  5174. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5175. "name": "__unittest__",
  5176. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5177. "process": 247081,
  5178. "processName": "MainProcess",
  5179. "relativeCreated": 78.64046096801758,
  5180. "stack_info": null,
  5181. "thread": 140429627637760,
  5182. "threadName": "MainThread"
  5183. },
  5184. {
  5185. "args": [
  5186. 2,
  5187. "INFO"
  5188. ],
  5189. "asctime": "2022-05-08 21:03:46,981",
  5190. "created": 1652036626.981615,
  5191. "exc_info": null,
  5192. "exc_text": null,
  5193. "filename": "test_helpers.py",
  5194. "funcName": "__init__",
  5195. "levelname": "INFO",
  5196. "levelno": 20,
  5197. "lineno": 37,
  5198. "message": "Log entry number 2 with level INFO.",
  5199. "module": "test_helpers",
  5200. "msecs": 981.6150665283203,
  5201. "msg": "Log entry number %d with level %s.",
  5202. "name": "test_sequence",
  5203. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5204. "process": 247081,
  5205. "processName": "MainProcess",
  5206. "relativeCreated": 78.68695259094238,
  5207. "stack_info": null,
  5208. "thread": 140429627637760,
  5209. "threadName": "MainThread"
  5210. },
  5211. {
  5212. "args": [
  5213. 3,
  5214. "WARNING",
  5215. "collectingRingHandler"
  5216. ],
  5217. "asctime": "2022-05-08 21:03:46,981",
  5218. "created": 1652036626.9817533,
  5219. "exc_info": null,
  5220. "exc_text": null,
  5221. "filename": "test_helpers.py",
  5222. "funcName": "__init__",
  5223. "levelname": "DEBUG",
  5224. "levelno": 10,
  5225. "lineno": 36,
  5226. "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.",
  5227. "module": "test_helpers",
  5228. "msecs": 981.7533493041992,
  5229. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5230. "name": "__unittest__",
  5231. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5232. "process": 247081,
  5233. "processName": "MainProcess",
  5234. "relativeCreated": 78.82523536682129,
  5235. "stack_info": null,
  5236. "thread": 140429627637760,
  5237. "threadName": "MainThread"
  5238. },
  5239. {
  5240. "args": [
  5241. 3,
  5242. "WARNING"
  5243. ],
  5244. "asctime": "2022-05-08 21:03:46,981",
  5245. "created": 1652036626.9818032,
  5246. "exc_info": null,
  5247. "exc_text": null,
  5248. "filename": "test_helpers.py",
  5249. "funcName": "__init__",
  5250. "levelname": "WARNING",
  5251. "levelno": 30,
  5252. "lineno": 37,
  5253. "message": "Log entry number 3 with level WARNING.",
  5254. "module": "test_helpers",
  5255. "msecs": 981.8031787872314,
  5256. "msg": "Log entry number %d with level %s.",
  5257. "name": "test_sequence",
  5258. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5259. "process": 247081,
  5260. "processName": "MainProcess",
  5261. "relativeCreated": 78.87506484985352,
  5262. "stack_info": null,
  5263. "thread": 140429627637760,
  5264. "threadName": "MainThread"
  5265. },
  5266. {
  5267. "args": [
  5268. 4,
  5269. "ERROR",
  5270. "collectingRingHandler"
  5271. ],
  5272. "asctime": "2022-05-08 21:03:46,981",
  5273. "created": 1652036626.981925,
  5274. "exc_info": null,
  5275. "exc_text": null,
  5276. "filename": "test_helpers.py",
  5277. "funcName": "__init__",
  5278. "levelname": "DEBUG",
  5279. "levelno": 10,
  5280. "lineno": 36,
  5281. "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.",
  5282. "module": "test_helpers",
  5283. "msecs": 981.9250106811523,
  5284. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5285. "name": "__unittest__",
  5286. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5287. "process": 247081,
  5288. "processName": "MainProcess",
  5289. "relativeCreated": 78.99689674377441,
  5290. "stack_info": null,
  5291. "thread": 140429627637760,
  5292. "threadName": "MainThread"
  5293. },
  5294. {
  5295. "args": [
  5296. 4,
  5297. "ERROR"
  5298. ],
  5299. "asctime": "2022-05-08 21:03:46,981",
  5300. "created": 1652036626.98197,
  5301. "exc_info": null,
  5302. "exc_text": null,
  5303. "filename": "test_helpers.py",
  5304. "funcName": "__init__",
  5305. "levelname": "ERROR",
  5306. "levelno": 40,
  5307. "lineno": 37,
  5308. "message": "Log entry number 4 with level ERROR.",
  5309. "module": "test_helpers",
  5310. "msecs": 981.9700717926025,
  5311. "msg": "Log entry number %d with level %s.",
  5312. "name": "test_sequence",
  5313. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5314. "process": 247081,
  5315. "processName": "MainProcess",
  5316. "relativeCreated": 79.04195785522461,
  5317. "stack_info": null,
  5318. "thread": 140429627637760,
  5319. "threadName": "MainThread"
  5320. },
  5321. {
  5322. "args": [
  5323. 5,
  5324. "CRITICAL",
  5325. "collectingRingHandler"
  5326. ],
  5327. "asctime": "2022-05-08 21:03:46,982",
  5328. "created": 1652036626.9820924,
  5329. "exc_info": null,
  5330. "exc_text": null,
  5331. "filename": "test_helpers.py",
  5332. "funcName": "__init__",
  5333. "levelname": "DEBUG",
  5334. "levelno": 10,
  5335. "lineno": 36,
  5336. "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.",
  5337. "module": "test_helpers",
  5338. "msecs": 982.0923805236816,
  5339. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5340. "name": "__unittest__",
  5341. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5342. "process": 247081,
  5343. "processName": "MainProcess",
  5344. "relativeCreated": 79.16426658630371,
  5345. "stack_info": null,
  5346. "thread": 140429627637760,
  5347. "threadName": "MainThread"
  5348. },
  5349. {
  5350. "args": [
  5351. 5,
  5352. "CRITICAL"
  5353. ],
  5354. "asctime": "2022-05-08 21:03:46,982",
  5355. "created": 1652036626.9821384,
  5356. "exc_info": null,
  5357. "exc_text": null,
  5358. "filename": "test_helpers.py",
  5359. "funcName": "__init__",
  5360. "levelname": "CRITICAL",
  5361. "levelno": 50,
  5362. "lineno": 37,
  5363. "message": "Log entry number 5 with level CRITICAL.",
  5364. "module": "test_helpers",
  5365. "msecs": 982.1383953094482,
  5366. "msg": "Log entry number %d with level %s.",
  5367. "name": "test_sequence",
  5368. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5369. "process": 247081,
  5370. "processName": "MainProcess",
  5371. "relativeCreated": 79.21028137207031,
  5372. "stack_info": null,
  5373. "thread": 140429627637760,
  5374. "threadName": "MainThread"
  5375. },
  5376. {
  5377. "args": [
  5378. 6,
  5379. "INFO",
  5380. "collectingRingHandler"
  5381. ],
  5382. "asctime": "2022-05-08 21:03:46,982",
  5383. "created": 1652036626.9822626,
  5384. "exc_info": null,
  5385. "exc_text": null,
  5386. "filename": "test_helpers.py",
  5387. "funcName": "__init__",
  5388. "levelname": "DEBUG",
  5389. "levelno": 10,
  5390. "lineno": 36,
  5391. "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.",
  5392. "module": "test_helpers",
  5393. "msecs": 982.2626113891602,
  5394. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5395. "name": "__unittest__",
  5396. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5397. "process": 247081,
  5398. "processName": "MainProcess",
  5399. "relativeCreated": 79.33449745178223,
  5400. "stack_info": null,
  5401. "thread": 140429627637760,
  5402. "threadName": "MainThread"
  5403. },
  5404. {
  5405. "args": [
  5406. 6,
  5407. "INFO"
  5408. ],
  5409. "asctime": "2022-05-08 21:03:46,982",
  5410. "created": 1652036626.9823031,
  5411. "exc_info": null,
  5412. "exc_text": null,
  5413. "filename": "test_helpers.py",
  5414. "funcName": "__init__",
  5415. "levelname": "INFO",
  5416. "levelno": 20,
  5417. "lineno": 37,
  5418. "message": "Log entry number 6 with level INFO.",
  5419. "module": "test_helpers",
  5420. "msecs": 982.3031425476074,
  5421. "msg": "Log entry number %d with level %s.",
  5422. "name": "test_sequence",
  5423. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5424. "process": 247081,
  5425. "processName": "MainProcess",
  5426. "relativeCreated": 79.37502861022949,
  5427. "stack_info": null,
  5428. "thread": 140429627637760,
  5429. "threadName": "MainThread"
  5430. },
  5431. {
  5432. "args": [
  5433. 7,
  5434. "ERROR",
  5435. "collectingRingHandler"
  5436. ],
  5437. "asctime": "2022-05-08 21:03:46,982",
  5438. "created": 1652036626.982427,
  5439. "exc_info": null,
  5440. "exc_text": null,
  5441. "filename": "test_helpers.py",
  5442. "funcName": "__init__",
  5443. "levelname": "DEBUG",
  5444. "levelno": 10,
  5445. "lineno": 36,
  5446. "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.",
  5447. "module": "test_helpers",
  5448. "msecs": 982.4268817901611,
  5449. "msg": "Passing \"Log entry number %d with level %s.\" to %s.",
  5450. "name": "__unittest__",
  5451. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5452. "process": 247081,
  5453. "processName": "MainProcess",
  5454. "relativeCreated": 79.4987678527832,
  5455. "stack_info": null,
  5456. "thread": 140429627637760,
  5457. "threadName": "MainThread"
  5458. },
  5459. {
  5460. "args": [
  5461. 7,
  5462. "ERROR"
  5463. ],
  5464. "asctime": "2022-05-08 21:03:46,982",
  5465. "created": 1652036626.9824677,
  5466. "exc_info": null,
  5467. "exc_text": null,
  5468. "filename": "test_helpers.py",
  5469. "funcName": "__init__",
  5470. "levelname": "ERROR",
  5471. "levelno": 40,
  5472. "lineno": 37,
  5473. "message": "Log entry number 7 with level ERROR.",
  5474. "module": "test_helpers",
  5475. "msecs": 982.4676513671875,
  5476. "msg": "Log entry number %d with level %s.",
  5477. "name": "test_sequence",
  5478. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5479. "process": 247081,
  5480. "processName": "MainProcess",
  5481. "relativeCreated": 79.53953742980957,
  5482. "stack_info": null,
  5483. "thread": 140429627637760,
  5484. "threadName": "MainThread"
  5485. }
  5486. ],
  5487. "msecs": 982.5901985168457,
  5488. "msg": "Running logger test sequence.",
  5489. "name": "__tLogger__",
  5490. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/tests/test_helpers.py",
  5491. "process": 247081,
  5492. "processName": "MainProcess",
  5493. "relativeCreated": 79.66208457946777,
  5494. "stack_info": null,
  5495. "thread": 140429627637760,
  5496. "threadName": "MainThread",
  5497. "time_consumption": 0.00012254714965820312
  5498. },
  5499. {
  5500. "args": [
  5501. "5",
  5502. "<class 'int'>"
  5503. ],
  5504. "asctime": "2022-05-08 21:03:46,982",
  5505. "created": 1652036626.9827778,
  5506. "exc_info": null,
  5507. "exc_text": null,
  5508. "filename": "test.py",
  5509. "funcName": "equivalency_chk",
  5510. "levelname": "INFO",
  5511. "levelno": 20,
  5512. "lineno": 144,
  5513. "message": "Length of collectingRingHandler is correct (Content 5 and Type is <class 'int'>).",
  5514. "module": "test",
  5515. "moduleLogger": [
  5516. {
  5517. "args": [
  5518. "Length of collectingRingHandler",
  5519. "5",
  5520. "<class 'int'>"
  5521. ],
  5522. "asctime": "2022-05-08 21:03:46,982",
  5523. "created": 1652036626.982681,
  5524. "exc_info": null,
  5525. "exc_text": null,
  5526. "filename": "test.py",
  5527. "funcName": "__report_result__",
  5528. "levelname": "DEBUG",
  5529. "levelno": 10,
  5530. "lineno": 22,
  5531. "message": "Result (Length of collectingRingHandler): 5 (<class 'int'>)",
  5532. "module": "test",
  5533. "msecs": 982.6810359954834,
  5534. "msg": "Result (%s): %s (%s)",
  5535. "name": "__unittest__",
  5536. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5537. "process": 247081,
  5538. "processName": "MainProcess",
  5539. "relativeCreated": 79.75292205810547,
  5540. "stack_info": null,
  5541. "thread": 140429627637760,
  5542. "threadName": "MainThread"
  5543. },
  5544. {
  5545. "args": [
  5546. "Length of collectingRingHandler",
  5547. "5",
  5548. "<class 'int'>"
  5549. ],
  5550. "asctime": "2022-05-08 21:03:46,982",
  5551. "created": 1652036626.9827285,
  5552. "exc_info": null,
  5553. "exc_text": null,
  5554. "filename": "test.py",
  5555. "funcName": "__report_expectation_equivalency__",
  5556. "levelname": "DEBUG",
  5557. "levelno": 10,
  5558. "lineno": 26,
  5559. "message": "Expectation (Length of collectingRingHandler): result = 5 (<class 'int'>)",
  5560. "module": "test",
  5561. "msecs": 982.7284812927246,
  5562. "msg": "Expectation (%s): result = %s (%s)",
  5563. "name": "__unittest__",
  5564. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5565. "process": 247081,
  5566. "processName": "MainProcess",
  5567. "relativeCreated": 79.80036735534668,
  5568. "stack_info": null,
  5569. "thread": 140429627637760,
  5570. "threadName": "MainThread"
  5571. }
  5572. ],
  5573. "msecs": 982.7778339385986,
  5574. "msg": "Length of collectingRingHandler is correct (Content %s and Type is %s).",
  5575. "name": "__tLogger__",
  5576. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5577. "process": 247081,
  5578. "processName": "MainProcess",
  5579. "relativeCreated": 79.8497200012207,
  5580. "stack_info": null,
  5581. "thread": 140429627637760,
  5582. "threadName": "MainThread",
  5583. "time_consumption": 4.935264587402344e-05
  5584. },
  5585. {
  5586. "args": [
  5587. "3",
  5588. "<class 'int'>"
  5589. ],
  5590. "asctime": "2022-05-08 21:03:46,982",
  5591. "created": 1652036626.9829645,
  5592. "exc_info": null,
  5593. "exc_text": null,
  5594. "filename": "test.py",
  5595. "funcName": "equivalency_chk",
  5596. "levelname": "INFO",
  5597. "levelno": 20,
  5598. "lineno": 144,
  5599. "message": "Length of collectingRingHandler after reinitialisation is correct (Content 3 and Type is <class 'int'>).",
  5600. "module": "test",
  5601. "moduleLogger": [
  5602. {
  5603. "args": [
  5604. "Length of collectingRingHandler after reinitialisation",
  5605. "3",
  5606. "<class 'int'>"
  5607. ],
  5608. "asctime": "2022-05-08 21:03:46,982",
  5609. "created": 1652036626.9828708,
  5610. "exc_info": null,
  5611. "exc_text": null,
  5612. "filename": "test.py",
  5613. "funcName": "__report_result__",
  5614. "levelname": "DEBUG",
  5615. "levelno": 10,
  5616. "lineno": 22,
  5617. "message": "Result (Length of collectingRingHandler after reinitialisation): 3 (<class 'int'>)",
  5618. "module": "test",
  5619. "msecs": 982.8708171844482,
  5620. "msg": "Result (%s): %s (%s)",
  5621. "name": "__unittest__",
  5622. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5623. "process": 247081,
  5624. "processName": "MainProcess",
  5625. "relativeCreated": 79.94270324707031,
  5626. "stack_info": null,
  5627. "thread": 140429627637760,
  5628. "threadName": "MainThread"
  5629. },
  5630. {
  5631. "args": [
  5632. "Length of collectingRingHandler after reinitialisation",
  5633. "3",
  5634. "<class 'int'>"
  5635. ],
  5636. "asctime": "2022-05-08 21:03:46,982",
  5637. "created": 1652036626.982917,
  5638. "exc_info": null,
  5639. "exc_text": null,
  5640. "filename": "test.py",
  5641. "funcName": "__report_expectation_equivalency__",
  5642. "levelname": "DEBUG",
  5643. "levelno": 10,
  5644. "lineno": 26,
  5645. "message": "Expectation (Length of collectingRingHandler after reinitialisation): result = 3 (<class 'int'>)",
  5646. "module": "test",
  5647. "msecs": 982.917070388794,
  5648. "msg": "Expectation (%s): result = %s (%s)",
  5649. "name": "__unittest__",
  5650. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5651. "process": 247081,
  5652. "processName": "MainProcess",
  5653. "relativeCreated": 79.98895645141602,
  5654. "stack_info": null,
  5655. "thread": 140429627637760,
  5656. "threadName": "MainThread"
  5657. }
  5658. ],
  5659. "msecs": 982.9645156860352,
  5660. "msg": "Length of collectingRingHandler after reinitialisation is correct (Content %s and Type is %s).",
  5661. "name": "__tLogger__",
  5662. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5663. "process": 247081,
  5664. "processName": "MainProcess",
  5665. "relativeCreated": 80.03640174865723,
  5666. "stack_info": null,
  5667. "thread": 140429627637760,
  5668. "threadName": "MainThread",
  5669. "time_consumption": 4.744529724121094e-05
  5670. },
  5671. {
  5672. "args": [
  5673. "'Log entry number 5 with level CRITICAL.'",
  5674. "<class 'str'>"
  5675. ],
  5676. "asctime": "2022-05-08 21:03:46,983",
  5677. "created": 1652036626.9831557,
  5678. "exc_info": null,
  5679. "exc_text": null,
  5680. "filename": "test.py",
  5681. "funcName": "equivalency_chk",
  5682. "levelname": "INFO",
  5683. "levelno": 20,
  5684. "lineno": 144,
  5685. "message": "Log text is correct (Content 'Log entry number 5 with level CRITICAL.' and Type is <class 'str'>).",
  5686. "module": "test",
  5687. "moduleLogger": [
  5688. {
  5689. "args": [
  5690. "Log text",
  5691. "'Log entry number 5 with level CRITICAL.'",
  5692. "<class 'str'>"
  5693. ],
  5694. "asctime": "2022-05-08 21:03:46,983",
  5695. "created": 1652036626.9830635,
  5696. "exc_info": null,
  5697. "exc_text": null,
  5698. "filename": "test.py",
  5699. "funcName": "__report_result__",
  5700. "levelname": "DEBUG",
  5701. "levelno": 10,
  5702. "lineno": 22,
  5703. "message": "Result (Log text): 'Log entry number 5 with level CRITICAL.' (<class 'str'>)",
  5704. "module": "test",
  5705. "msecs": 983.0634593963623,
  5706. "msg": "Result (%s): %s (%s)",
  5707. "name": "__unittest__",
  5708. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5709. "process": 247081,
  5710. "processName": "MainProcess",
  5711. "relativeCreated": 80.13534545898438,
  5712. "stack_info": null,
  5713. "thread": 140429627637760,
  5714. "threadName": "MainThread"
  5715. },
  5716. {
  5717. "args": [
  5718. "Log text",
  5719. "'Log entry number 5 with level CRITICAL.'",
  5720. "<class 'str'>"
  5721. ],
  5722. "asctime": "2022-05-08 21:03:46,983",
  5723. "created": 1652036626.9831104,
  5724. "exc_info": null,
  5725. "exc_text": null,
  5726. "filename": "test.py",
  5727. "funcName": "__report_expectation_equivalency__",
  5728. "levelname": "DEBUG",
  5729. "levelno": 10,
  5730. "lineno": 26,
  5731. "message": "Expectation (Log text): result = 'Log entry number 5 with level CRITICAL.' (<class 'str'>)",
  5732. "module": "test",
  5733. "msecs": 983.1104278564453,
  5734. "msg": "Expectation (%s): result = %s (%s)",
  5735. "name": "__unittest__",
  5736. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5737. "process": 247081,
  5738. "processName": "MainProcess",
  5739. "relativeCreated": 80.18231391906738,
  5740. "stack_info": null,
  5741. "thread": 140429627637760,
  5742. "threadName": "MainThread"
  5743. }
  5744. ],
  5745. "msecs": 983.1557273864746,
  5746. "msg": "Log text is correct (Content %s and Type is %s).",
  5747. "name": "__tLogger__",
  5748. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5749. "process": 247081,
  5750. "processName": "MainProcess",
  5751. "relativeCreated": 80.22761344909668,
  5752. "stack_info": null,
  5753. "thread": 140429627637760,
  5754. "threadName": "MainThread",
  5755. "time_consumption": 4.5299530029296875e-05
  5756. },
  5757. {
  5758. "args": [
  5759. "'Log entry number 6 with level INFO.'",
  5760. "<class 'str'>"
  5761. ],
  5762. "asctime": "2022-05-08 21:03:46,983",
  5763. "created": 1652036626.9833205,
  5764. "exc_info": null,
  5765. "exc_text": null,
  5766. "filename": "test.py",
  5767. "funcName": "equivalency_chk",
  5768. "levelname": "INFO",
  5769. "levelno": 20,
  5770. "lineno": 144,
  5771. "message": "Log text is correct (Content 'Log entry number 6 with level INFO.' and Type is <class 'str'>).",
  5772. "module": "test",
  5773. "moduleLogger": [
  5774. {
  5775. "args": [
  5776. "Log text",
  5777. "'Log entry number 6 with level INFO.'",
  5778. "<class 'str'>"
  5779. ],
  5780. "asctime": "2022-05-08 21:03:46,983",
  5781. "created": 1652036626.9832292,
  5782. "exc_info": null,
  5783. "exc_text": null,
  5784. "filename": "test.py",
  5785. "funcName": "__report_result__",
  5786. "levelname": "DEBUG",
  5787. "levelno": 10,
  5788. "lineno": 22,
  5789. "message": "Result (Log text): 'Log entry number 6 with level INFO.' (<class 'str'>)",
  5790. "module": "test",
  5791. "msecs": 983.2291603088379,
  5792. "msg": "Result (%s): %s (%s)",
  5793. "name": "__unittest__",
  5794. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5795. "process": 247081,
  5796. "processName": "MainProcess",
  5797. "relativeCreated": 80.30104637145996,
  5798. "stack_info": null,
  5799. "thread": 140429627637760,
  5800. "threadName": "MainThread"
  5801. },
  5802. {
  5803. "args": [
  5804. "Log text",
  5805. "'Log entry number 6 with level INFO.'",
  5806. "<class 'str'>"
  5807. ],
  5808. "asctime": "2022-05-08 21:03:46,983",
  5809. "created": 1652036626.9832766,
  5810. "exc_info": null,
  5811. "exc_text": null,
  5812. "filename": "test.py",
  5813. "funcName": "__report_expectation_equivalency__",
  5814. "levelname": "DEBUG",
  5815. "levelno": 10,
  5816. "lineno": 26,
  5817. "message": "Expectation (Log text): result = 'Log entry number 6 with level INFO.' (<class 'str'>)",
  5818. "module": "test",
  5819. "msecs": 983.2766056060791,
  5820. "msg": "Expectation (%s): result = %s (%s)",
  5821. "name": "__unittest__",
  5822. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5823. "process": 247081,
  5824. "processName": "MainProcess",
  5825. "relativeCreated": 80.34849166870117,
  5826. "stack_info": null,
  5827. "thread": 140429627637760,
  5828. "threadName": "MainThread"
  5829. }
  5830. ],
  5831. "msecs": 983.3204746246338,
  5832. "msg": "Log text is correct (Content %s and Type is %s).",
  5833. "name": "__tLogger__",
  5834. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5835. "process": 247081,
  5836. "processName": "MainProcess",
  5837. "relativeCreated": 80.39236068725586,
  5838. "stack_info": null,
  5839. "thread": 140429627637760,
  5840. "threadName": "MainThread",
  5841. "time_consumption": 4.38690185546875e-05
  5842. },
  5843. {
  5844. "args": [
  5845. "'Log entry number 7 with level ERROR.'",
  5846. "<class 'str'>"
  5847. ],
  5848. "asctime": "2022-05-08 21:03:46,983",
  5849. "created": 1652036626.9834774,
  5850. "exc_info": null,
  5851. "exc_text": null,
  5852. "filename": "test.py",
  5853. "funcName": "equivalency_chk",
  5854. "levelname": "INFO",
  5855. "levelno": 20,
  5856. "lineno": 144,
  5857. "message": "Log text is correct (Content 'Log entry number 7 with level ERROR.' and Type is <class 'str'>).",
  5858. "module": "test",
  5859. "moduleLogger": [
  5860. {
  5861. "args": [
  5862. "Log text",
  5863. "'Log entry number 7 with level ERROR.'",
  5864. "<class 'str'>"
  5865. ],
  5866. "asctime": "2022-05-08 21:03:46,983",
  5867. "created": 1652036626.9833899,
  5868. "exc_info": null,
  5869. "exc_text": null,
  5870. "filename": "test.py",
  5871. "funcName": "__report_result__",
  5872. "levelname": "DEBUG",
  5873. "levelno": 10,
  5874. "lineno": 22,
  5875. "message": "Result (Log text): 'Log entry number 7 with level ERROR.' (<class 'str'>)",
  5876. "module": "test",
  5877. "msecs": 983.3898544311523,
  5878. "msg": "Result (%s): %s (%s)",
  5879. "name": "__unittest__",
  5880. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5881. "process": 247081,
  5882. "processName": "MainProcess",
  5883. "relativeCreated": 80.46174049377441,
  5884. "stack_info": null,
  5885. "thread": 140429627637760,
  5886. "threadName": "MainThread"
  5887. },
  5888. {
  5889. "args": [
  5890. "Log text",
  5891. "'Log entry number 7 with level ERROR.'",
  5892. "<class 'str'>"
  5893. ],
  5894. "asctime": "2022-05-08 21:03:46,983",
  5895. "created": 1652036626.983434,
  5896. "exc_info": null,
  5897. "exc_text": null,
  5898. "filename": "test.py",
  5899. "funcName": "__report_expectation_equivalency__",
  5900. "levelname": "DEBUG",
  5901. "levelno": 10,
  5902. "lineno": 26,
  5903. "message": "Expectation (Log text): result = 'Log entry number 7 with level ERROR.' (<class 'str'>)",
  5904. "module": "test",
  5905. "msecs": 983.4339618682861,
  5906. "msg": "Expectation (%s): result = %s (%s)",
  5907. "name": "__unittest__",
  5908. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5909. "process": 247081,
  5910. "processName": "MainProcess",
  5911. "relativeCreated": 80.5058479309082,
  5912. "stack_info": null,
  5913. "thread": 140429627637760,
  5914. "threadName": "MainThread"
  5915. }
  5916. ],
  5917. "msecs": 983.4773540496826,
  5918. "msg": "Log text is correct (Content %s and Type is %s).",
  5919. "name": "__tLogger__",
  5920. "pathname": "/home/dirk/my_repositories/unittest/report/unittest/src/unittest/test.py",
  5921. "process": 247081,
  5922. "processName": "MainProcess",
  5923. "relativeCreated": 80.54924011230469,
  5924. "stack_info": null,
  5925. "thread": 140429627637760,
  5926. "threadName": "MainThread",
  5927. "time_consumption": 4.3392181396484375e-05
  5928. }
  5929. ],
  5930. "thread": 140429627637760,
  5931. "threadName": "MainThread",
  5932. "time_consumption": 0.0022552013397216797,
  5933. "time_finished": "2022-05-08 21:03:46,983",
  5934. "time_start": "2022-05-08 21:03:46,981"
  5935. }
  5936. },
  5937. "testrun_id": "p3",
  5938. "time_consumption": 0.011594533920288086,
  5939. "uid_list_sorted": [
  5940. "_XzMFcHYZEem_kd-7nxt1sg",
  5941. "_ErFPoCvVEeqssZLMJF_fcg",
  5942. "_PVhZECvVEeqssZLMJF_fcg",
  5943. "_QBmb8CvVEeqssZLMJF_fcg",
  5944. "_fW5s8CzQEeqYsdFh5Cd6ng"
  5945. ]
  5946. }
  5947. ],
  5948. "unittest_information": {
  5949. "Version": "2c03d3eba161a9fb0dbf0594fbda3965"
  5950. }
  5951. }