Python Library Caching
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

unittest.json 301KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073
  1. {
  2. "coverage_information": [
  3. {
  4. "branch_coverage": 79.31,
  5. "filepath": "/home/dirk/my_repositories/unittest/caching/pylibs/caching",
  6. "files": [
  7. {
  8. "branch_coverage": 79.31,
  9. "filepath": "/home/dirk/my_repositories/unittest/caching/pylibs/caching/__init__.py",
  10. "fragments": [
  11. {
  12. "coverage_state": "clean",
  13. "end": 24,
  14. "start": 1
  15. },
  16. {
  17. "coverage_state": "covered",
  18. "end": 25,
  19. "start": 25
  20. },
  21. {
  22. "coverage_state": "clean",
  23. "end": 26,
  24. "start": 26
  25. },
  26. {
  27. "coverage_state": "covered",
  28. "end": 31,
  29. "start": 27
  30. },
  31. {
  32. "coverage_state": "clean",
  33. "end": 32,
  34. "start": 32
  35. },
  36. {
  37. "coverage_state": "covered",
  38. "end": 37,
  39. "start": 33
  40. },
  41. {
  42. "coverage_state": "clean",
  43. "end": 38,
  44. "start": 38
  45. },
  46. {
  47. "coverage_state": "covered",
  48. "end": 39,
  49. "start": 39
  50. },
  51. {
  52. "coverage_state": "clean",
  53. "end": 40,
  54. "start": 40
  55. },
  56. {
  57. "coverage_state": "covered",
  58. "end": 43,
  59. "start": 41
  60. },
  61. {
  62. "coverage_state": "clean",
  63. "end": 45,
  64. "start": 44
  65. },
  66. {
  67. "coverage_state": "covered",
  68. "end": 46,
  69. "start": 46
  70. },
  71. {
  72. "coverage_state": "clean",
  73. "end": 91,
  74. "start": 47
  75. },
  76. {
  77. "coverage_state": "covered",
  78. "end": 96,
  79. "start": 92
  80. },
  81. {
  82. "coverage_state": "clean",
  83. "end": 97,
  84. "start": 97
  85. },
  86. {
  87. "coverage_state": "covered",
  88. "end": 98,
  89. "start": 98
  90. },
  91. {
  92. "coverage_state": "clean",
  93. "end": 99,
  94. "start": 99
  95. },
  96. {
  97. "coverage_state": "covered",
  98. "end": 106,
  99. "start": 100
  100. },
  101. {
  102. "coverage_state": "clean",
  103. "end": 107,
  104. "start": 107
  105. },
  106. {
  107. "coverage_state": "covered",
  108. "end": 109,
  109. "start": 108
  110. },
  111. {
  112. "coverage_state": "clean",
  113. "end": 110,
  114. "start": 110
  115. },
  116. {
  117. "coverage_state": "covered",
  118. "end": 111,
  119. "start": 111
  120. },
  121. {
  122. "coverage_state": "clean",
  123. "end": 117,
  124. "start": 112
  125. },
  126. {
  127. "coverage_state": "uncovered",
  128. "end": 119,
  129. "start": 118
  130. },
  131. {
  132. "coverage_state": "clean",
  133. "end": 120,
  134. "start": 120
  135. },
  136. {
  137. "coverage_state": "uncovered",
  138. "end": 121,
  139. "start": 121
  140. },
  141. {
  142. "coverage_state": "clean",
  143. "end": 122,
  144. "start": 122
  145. },
  146. {
  147. "coverage_state": "covered",
  148. "end": 123,
  149. "start": 123
  150. },
  151. {
  152. "coverage_state": "clean",
  153. "end": 132,
  154. "start": 124
  155. },
  156. {
  157. "coverage_state": "uncovered",
  158. "end": 134,
  159. "start": 133
  160. },
  161. {
  162. "coverage_state": "clean",
  163. "end": 135,
  164. "start": 135
  165. },
  166. {
  167. "coverage_state": "covered",
  168. "end": 136,
  169. "start": 136
  170. },
  171. {
  172. "coverage_state": "clean",
  173. "end": 143,
  174. "start": 137
  175. },
  176. {
  177. "coverage_state": "covered",
  178. "end": 146,
  179. "start": 144
  180. },
  181. {
  182. "coverage_state": "partially-covered",
  183. "end": 147,
  184. "start": 147
  185. },
  186. {
  187. "coverage_state": "covered",
  188. "end": 148,
  189. "start": 148
  190. },
  191. {
  192. "coverage_state": "clean",
  193. "end": 149,
  194. "start": 149
  195. },
  196. {
  197. "coverage_state": "uncovered",
  198. "end": 152,
  199. "start": 150
  200. },
  201. {
  202. "coverage_state": "covered",
  203. "end": 155,
  204. "start": 153
  205. },
  206. {
  207. "coverage_state": "partially-covered",
  208. "end": 156,
  209. "start": 156
  210. },
  211. {
  212. "coverage_state": "covered",
  213. "end": 161,
  214. "start": 157
  215. },
  216. {
  217. "coverage_state": "clean",
  218. "end": 162,
  219. "start": 162
  220. },
  221. {
  222. "coverage_state": "uncovered",
  223. "end": 163,
  224. "start": 163
  225. },
  226. {
  227. "coverage_state": "clean",
  228. "end": 164,
  229. "start": 164
  230. },
  231. {
  232. "coverage_state": "covered",
  233. "end": 166,
  234. "start": 165
  235. },
  236. {
  237. "coverage_state": "clean",
  238. "end": 167,
  239. "start": 167
  240. },
  241. {
  242. "coverage_state": "partially-covered",
  243. "end": 168,
  244. "start": 168
  245. },
  246. {
  247. "coverage_state": "covered",
  248. "end": 169,
  249. "start": 169
  250. },
  251. {
  252. "coverage_state": "uncovered",
  253. "end": 171,
  254. "start": 170
  255. },
  256. {
  257. "coverage_state": "covered",
  258. "end": 172,
  259. "start": 172
  260. },
  261. {
  262. "coverage_state": "clean",
  263. "end": 173,
  264. "start": 173
  265. },
  266. {
  267. "coverage_state": "covered",
  268. "end": 176,
  269. "start": 174
  270. },
  271. {
  272. "coverage_state": "clean",
  273. "end": 177,
  274. "start": 177
  275. },
  276. {
  277. "coverage_state": "covered",
  278. "end": 178,
  279. "start": 178
  280. },
  281. {
  282. "coverage_state": "clean",
  283. "end": 179,
  284. "start": 179
  285. },
  286. {
  287. "coverage_state": "covered",
  288. "end": 182,
  289. "start": 180
  290. },
  291. {
  292. "coverage_state": "clean",
  293. "end": 183,
  294. "start": 183
  295. },
  296. {
  297. "coverage_state": "covered",
  298. "end": 184,
  299. "start": 184
  300. },
  301. {
  302. "coverage_state": "clean",
  303. "end": 185,
  304. "start": 185
  305. },
  306. {
  307. "coverage_state": "covered",
  308. "end": 194,
  309. "start": 186
  310. },
  311. {
  312. "coverage_state": "uncovered",
  313. "end": 196,
  314. "start": 195
  315. },
  316. {
  317. "coverage_state": "clean",
  318. "end": 197,
  319. "start": 197
  320. },
  321. {
  322. "coverage_state": "covered",
  323. "end": 203,
  324. "start": 198
  325. },
  326. {
  327. "coverage_state": "partially-covered",
  328. "end": 204,
  329. "start": 204
  330. },
  331. {
  332. "coverage_state": "uncovered",
  333. "end": 205,
  334. "start": 205
  335. },
  336. {
  337. "coverage_state": "covered",
  338. "end": 212,
  339. "start": 206
  340. },
  341. {
  342. "coverage_state": "clean",
  343. "end": 213,
  344. "start": 213
  345. },
  346. {
  347. "coverage_state": "covered",
  348. "end": 219,
  349. "start": 214
  350. },
  351. {
  352. "coverage_state": "clean",
  353. "end": 220,
  354. "start": 220
  355. },
  356. {
  357. "coverage_state": "covered",
  358. "end": 222,
  359. "start": 221
  360. },
  361. {
  362. "coverage_state": "clean",
  363. "end": 223,
  364. "start": 223
  365. },
  366. {
  367. "coverage_state": "covered",
  368. "end": 225,
  369. "start": 224
  370. },
  371. {
  372. "coverage_state": "clean",
  373. "end": 226,
  374. "start": 226
  375. },
  376. {
  377. "coverage_state": "covered",
  378. "end": 227,
  379. "start": 227
  380. },
  381. {
  382. "coverage_state": "partially-covered",
  383. "end": 228,
  384. "start": 228
  385. },
  386. {
  387. "coverage_state": "uncovered",
  388. "end": 229,
  389. "start": 229
  390. },
  391. {
  392. "coverage_state": "covered",
  393. "end": 231,
  394. "start": 230
  395. },
  396. {
  397. "coverage_state": "partially-covered",
  398. "end": 232,
  399. "start": 232
  400. },
  401. {
  402. "coverage_state": "covered",
  403. "end": 235,
  404. "start": 233
  405. },
  406. {
  407. "coverage_state": "clean",
  408. "end": 236,
  409. "start": 236
  410. },
  411. {
  412. "coverage_state": "covered",
  413. "end": 242,
  414. "start": 237
  415. },
  416. {
  417. "coverage_state": "clean",
  418. "end": 243,
  419. "start": 243
  420. },
  421. {
  422. "coverage_state": "covered",
  423. "end": 246,
  424. "start": 244
  425. },
  426. {
  427. "coverage_state": "clean",
  428. "end": 247,
  429. "start": 247
  430. },
  431. {
  432. "coverage_state": "covered",
  433. "end": 248,
  434. "start": 248
  435. },
  436. {
  437. "coverage_state": "clean",
  438. "end": 250,
  439. "start": 249
  440. },
  441. {
  442. "coverage_state": "covered",
  443. "end": 251,
  444. "start": 251
  445. },
  446. {
  447. "coverage_state": "clean",
  448. "end": 272,
  449. "start": 252
  450. },
  451. {
  452. "coverage_state": "covered",
  453. "end": 278,
  454. "start": 273
  455. },
  456. {
  457. "coverage_state": "clean",
  458. "end": 279,
  459. "start": 279
  460. },
  461. {
  462. "coverage_state": "covered",
  463. "end": 281,
  464. "start": 280
  465. },
  466. {
  467. "coverage_state": "clean",
  468. "end": 282,
  469. "start": 282
  470. },
  471. {
  472. "coverage_state": "covered",
  473. "end": 288,
  474. "start": 283
  475. },
  476. {
  477. "coverage_state": "clean",
  478. "end": null,
  479. "start": 289
  480. }
  481. ],
  482. "line_coverage": 89.44,
  483. "name": "caching.__init__.py"
  484. }
  485. ],
  486. "line_coverage": 89.44,
  487. "name": "caching"
  488. }
  489. ],
  490. "lost_souls": {
  491. "item_list": [],
  492. "testcase_list": [
  493. "caching.property_cache_json: Test cached data (full init)",
  494. "caching.property_cache_json: Test cached data (partially init)",
  495. "caching.property_cache_json: Test execution of save callback (full init)",
  496. "caching.property_cache_json: Test full initialised JSON-Cache-Object",
  497. "caching.property_cache_json: Test get from source caused by changed uid (full init)",
  498. "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
  499. "caching.property_cache_json: Test get from source caused by increased data version (full init)",
  500. "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
  501. "caching.property_cache_json: Test internal key usage",
  502. "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
  503. "caching.property_cache_pickle: Test cached data (full init)",
  504. "caching.property_cache_pickle: Test cached data (partially init)",
  505. "caching.property_cache_pickle: Test execution of save callback (full init)",
  506. "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
  507. "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
  508. "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
  509. "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
  510. "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
  511. "caching.property_cache_pickle: Test internal key usage",
  512. "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object"
  513. ]
  514. },
  515. "specification": {},
  516. "system_information": {
  517. "Architecture": "64bit",
  518. "Distribution": "Debian GNU/Linux 12 bookworm",
  519. "Hostname": "ahorn",
  520. "Kernel": "6.1.0-17-amd64 (#1 SMP PREEMPT_DYNAMIC Debian 6.1.69-1 (2023-12-30))",
  521. "Machine": "x86_64",
  522. "Path": "/home/dirk/my_repositories/unittest/caching",
  523. "System": "Linux",
  524. "Username": "dirk"
  525. },
  526. "testobject_information": {
  527. "Dependencies": [],
  528. "Description": "The Module {\\tt caching} is designed to store information in {\\tt json} or {\\tt pickle} files to support them much faster then generating them from the original source file.\nFor more Information read the documentation.",
  529. "Name": "caching",
  530. "State": "Released",
  531. "Supported Interpreters": "python3",
  532. "Version": "df0033510331110d2a749ab2e6ec5f9f"
  533. },
  534. "testrun_list": [
  535. {
  536. "heading_dict": {},
  537. "interpreter": "python 3.11.2 (final)",
  538. "name": "Default Testsession name",
  539. "number_of_failed_tests": 0,
  540. "number_of_possibly_failed_tests": 0,
  541. "number_of_successfull_tests": 20,
  542. "number_of_tests": 20,
  543. "testcase_execution_level": 90,
  544. "testcase_names": {
  545. "0": "Single Test",
  546. "10": "Smoke Test (Minumum subset)",
  547. "50": "Short Test (Subset)",
  548. "90": "Full Test (all defined tests)"
  549. },
  550. "testcases": {
  551. "caching.property_cache_json: Test cached data (full init)": {
  552. "args": null,
  553. "asctime": "2024-09-22 12:01:39,830",
  554. "created": 1726999299.830849,
  555. "exc_info": null,
  556. "exc_text": null,
  557. "filename": "__init__.py",
  558. "funcName": "testCase",
  559. "levelname": "INFO",
  560. "levelno": 20,
  561. "lineno": 323,
  562. "message": "caching.property_cache_json: Test cached data (full init)",
  563. "module": "__init__",
  564. "moduleLogger": [],
  565. "msecs": 830.0,
  566. "msg": "caching.property_cache_json: Test cached data (full init)",
  567. "name": "__tLogger__",
  568. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  569. "process": 291252,
  570. "processName": "MainProcess",
  571. "relativeCreated": 79.49566841125488,
  572. "stack_info": null,
  573. "testcaseLogger": [
  574. {
  575. "args": [
  576. "property_cache_json",
  577. "True"
  578. ],
  579. "asctime": "2024-09-22 12:01:39,832",
  580. "created": 1726999299.8320267,
  581. "exc_info": null,
  582. "exc_text": null,
  583. "filename": "test_helpers.py",
  584. "funcName": "init_cache",
  585. "levelname": "DEBUG",
  586. "levelno": 10,
  587. "lineno": 24,
  588. "message": "Initialising property_cache_json (load_all_on_init=True).",
  589. "module": "test_helpers",
  590. "moduleLogger": [
  591. {
  592. "args": [],
  593. "asctime": "2024-09-22 12:01:39,831",
  594. "created": 1726999299.8310149,
  595. "exc_info": null,
  596. "exc_text": null,
  597. "filename": "test_helpers.py",
  598. "funcName": "init_cache",
  599. "levelname": "INFO",
  600. "levelno": 20,
  601. "lineno": 17,
  602. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  603. "module": "test_helpers",
  604. "msecs": 831.0,
  605. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  606. "name": "__unittest__",
  607. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  608. "process": 291252,
  609. "processName": "MainProcess",
  610. "relativeCreated": 79.66160774230957,
  611. "stack_info": null,
  612. "thread": 139667813142592,
  613. "threadName": "MainThread"
  614. },
  615. {
  616. "args": [
  617. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
  618. ],
  619. "asctime": "2024-09-22 12:01:39,831",
  620. "created": 1726999299.8311253,
  621. "exc_info": null,
  622. "exc_text": null,
  623. "filename": "test_helpers.py",
  624. "funcName": "init_cache",
  625. "levelname": "INFO",
  626. "levelno": 20,
  627. "lineno": 21,
  628. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json as cache file.",
  629. "module": "test_helpers",
  630. "msecs": 831.0,
  631. "msg": "Initialising cached class with %s as cache file.",
  632. "name": "__unittest__",
  633. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  634. "process": 291252,
  635. "processName": "MainProcess",
  636. "relativeCreated": 79.7719955444336,
  637. "stack_info": null,
  638. "thread": 139667813142592,
  639. "threadName": "MainThread"
  640. }
  641. ],
  642. "msecs": 832.0,
  643. "msg": "Initialising %s (load_all_on_init=%s).",
  644. "name": "__tLogger__",
  645. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  646. "process": 291252,
  647. "processName": "MainProcess",
  648. "relativeCreated": 80.6734561920166,
  649. "stack_info": null,
  650. "thread": 139667813142592,
  651. "threadName": "MainThread",
  652. "time_consumption": 0.0009014606475830078
  653. },
  654. {
  655. "args": [],
  656. "asctime": "2024-09-22 12:01:39,832",
  657. "created": 1726999299.8322976,
  658. "exc_info": null,
  659. "exc_text": null,
  660. "filename": "test_cached_data.py",
  661. "funcName": "cached_data",
  662. "levelname": "DEBUG",
  663. "levelno": 10,
  664. "lineno": 19,
  665. "message": "Collecting data from cache instance.",
  666. "module": "test_cached_data",
  667. "moduleLogger": [],
  668. "msecs": 832.0,
  669. "msg": "Collecting data from cache instance.",
  670. "name": "__tLogger__",
  671. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
  672. "process": 291252,
  673. "processName": "MainProcess",
  674. "relativeCreated": 80.94429969787598,
  675. "stack_info": null,
  676. "thread": 139667813142592,
  677. "threadName": "MainThread",
  678. "time_consumption": 0.0
  679. },
  680. {
  681. "args": [
  682. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
  683. "<class 'dict'>"
  684. ],
  685. "asctime": "2024-09-22 12:01:39,832",
  686. "created": 1726999299.8326523,
  687. "exc_info": null,
  688. "exc_text": null,
  689. "filename": "test.py",
  690. "funcName": "equivalency_chk",
  691. "levelname": "INFO",
  692. "levelno": 20,
  693. "lineno": 184,
  694. "message": "Cached data is correct (Content {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'} and Type is <class 'dict'>).",
  695. "module": "test",
  696. "moduleLogger": [
  697. {
  698. "args": [
  699. "Cached data",
  700. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  701. "<class 'dict'>"
  702. ],
  703. "asctime": "2024-09-22 12:01:39,832",
  704. "created": 1726999299.8324304,
  705. "exc_info": null,
  706. "exc_text": null,
  707. "filename": "test.py",
  708. "funcName": "__report_result__",
  709. "levelname": "DEBUG",
  710. "levelno": 10,
  711. "lineno": 22,
  712. "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  713. "module": "test",
  714. "msecs": 832.0,
  715. "msg": "Result (%s): %s (%s)",
  716. "name": "__unittest__",
  717. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  718. "process": 291252,
  719. "processName": "MainProcess",
  720. "relativeCreated": 81.07709884643555,
  721. "stack_info": null,
  722. "thread": 139667813142592,
  723. "threadName": "MainThread"
  724. },
  725. {
  726. "args": [
  727. "Cached data",
  728. "=",
  729. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  730. "<class 'dict'>"
  731. ],
  732. "asctime": "2024-09-22 12:01:39,832",
  733. "created": 1726999299.8325212,
  734. "exc_info": null,
  735. "exc_text": null,
  736. "filename": "test.py",
  737. "funcName": "__report_expectation__",
  738. "levelname": "DEBUG",
  739. "levelno": 10,
  740. "lineno": 26,
  741. "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  742. "module": "test",
  743. "msecs": 832.0,
  744. "msg": "Expectation (%s): result %s %s (%s)",
  745. "name": "__unittest__",
  746. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  747. "process": 291252,
  748. "processName": "MainProcess",
  749. "relativeCreated": 81.16793632507324,
  750. "stack_info": null,
  751. "thread": 139667813142592,
  752. "threadName": "MainThread"
  753. }
  754. ],
  755. "msecs": 832.0,
  756. "msg": "Cached data is correct (Content %s and Type is %s).",
  757. "name": "__tLogger__",
  758. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  759. "process": 291252,
  760. "processName": "MainProcess",
  761. "relativeCreated": 81.2990665435791,
  762. "stack_info": null,
  763. "thread": 139667813142592,
  764. "threadName": "MainThread",
  765. "time_consumption": 0.00013113021850585938
  766. }
  767. ],
  768. "thread": 139667813142592,
  769. "threadName": "MainThread",
  770. "time_consumption": 0.0018033981323242188,
  771. "time_finished": "2024-09-22 12:01:39,832",
  772. "time_start": "2024-09-22 12:01:39,830"
  773. },
  774. "caching.property_cache_json: Test cached data (partially init)": {
  775. "args": null,
  776. "asctime": "2024-09-22 12:01:39,832",
  777. "created": 1726999299.832839,
  778. "exc_info": null,
  779. "exc_text": null,
  780. "filename": "__init__.py",
  781. "funcName": "testCase",
  782. "levelname": "INFO",
  783. "levelno": 20,
  784. "lineno": 323,
  785. "message": "caching.property_cache_json: Test cached data (partially init)",
  786. "module": "__init__",
  787. "moduleLogger": [],
  788. "msecs": 832.0,
  789. "msg": "caching.property_cache_json: Test cached data (partially init)",
  790. "name": "__tLogger__",
  791. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  792. "process": 291252,
  793. "processName": "MainProcess",
  794. "relativeCreated": 81.48574829101562,
  795. "stack_info": null,
  796. "testcaseLogger": [
  797. {
  798. "args": [
  799. "property_cache_json",
  800. "True"
  801. ],
  802. "asctime": "2024-09-22 12:01:39,833",
  803. "created": 1726999299.8338294,
  804. "exc_info": null,
  805. "exc_text": null,
  806. "filename": "test_helpers.py",
  807. "funcName": "init_cache",
  808. "levelname": "DEBUG",
  809. "levelno": 10,
  810. "lineno": 24,
  811. "message": "Initialising property_cache_json (load_all_on_init=True).",
  812. "module": "test_helpers",
  813. "moduleLogger": [
  814. {
  815. "args": [],
  816. "asctime": "2024-09-22 12:01:39,833",
  817. "created": 1726999299.8330023,
  818. "exc_info": null,
  819. "exc_text": null,
  820. "filename": "test_helpers.py",
  821. "funcName": "init_cache",
  822. "levelname": "INFO",
  823. "levelno": 20,
  824. "lineno": 17,
  825. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  826. "module": "test_helpers",
  827. "msecs": 833.0,
  828. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  829. "name": "__unittest__",
  830. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  831. "process": 291252,
  832. "processName": "MainProcess",
  833. "relativeCreated": 81.6490650177002,
  834. "stack_info": null,
  835. "thread": 139667813142592,
  836. "threadName": "MainThread"
  837. },
  838. {
  839. "args": [
  840. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.json"
  841. ],
  842. "asctime": "2024-09-22 12:01:39,833",
  843. "created": 1726999299.833109,
  844. "exc_info": null,
  845. "exc_text": null,
  846. "filename": "test_helpers.py",
  847. "funcName": "init_cache",
  848. "levelname": "INFO",
  849. "levelno": 20,
  850. "lineno": 21,
  851. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.json as cache file.",
  852. "module": "test_helpers",
  853. "msecs": 833.0,
  854. "msg": "Initialising cached class with %s as cache file.",
  855. "name": "__unittest__",
  856. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  857. "process": 291252,
  858. "processName": "MainProcess",
  859. "relativeCreated": 81.7556381225586,
  860. "stack_info": null,
  861. "thread": 139667813142592,
  862. "threadName": "MainThread"
  863. }
  864. ],
  865. "msecs": 833.0,
  866. "msg": "Initialising %s (load_all_on_init=%s).",
  867. "name": "__tLogger__",
  868. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  869. "process": 291252,
  870. "processName": "MainProcess",
  871. "relativeCreated": 82.47613906860352,
  872. "stack_info": null,
  873. "thread": 139667813142592,
  874. "threadName": "MainThread",
  875. "time_consumption": 0.0007205009460449219
  876. },
  877. {
  878. "args": [],
  879. "asctime": "2024-09-22 12:01:39,834",
  880. "created": 1726999299.834106,
  881. "exc_info": null,
  882. "exc_text": null,
  883. "filename": "test_cached_data.py",
  884. "funcName": "cached_data",
  885. "levelname": "DEBUG",
  886. "levelno": 10,
  887. "lineno": 19,
  888. "message": "Collecting data from cache instance.",
  889. "module": "test_cached_data",
  890. "moduleLogger": [],
  891. "msecs": 834.0,
  892. "msg": "Collecting data from cache instance.",
  893. "name": "__tLogger__",
  894. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
  895. "process": 291252,
  896. "processName": "MainProcess",
  897. "relativeCreated": 82.75270462036133,
  898. "stack_info": null,
  899. "thread": 139667813142592,
  900. "threadName": "MainThread",
  901. "time_consumption": 0.0
  902. },
  903. {
  904. "args": [
  905. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
  906. "<class 'dict'>"
  907. ],
  908. "asctime": "2024-09-22 12:01:39,834",
  909. "created": 1726999299.8344505,
  910. "exc_info": null,
  911. "exc_text": null,
  912. "filename": "test.py",
  913. "funcName": "equivalency_chk",
  914. "levelname": "INFO",
  915. "levelno": 20,
  916. "lineno": 184,
  917. "message": "Cached data is correct (Content {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'} and Type is <class 'dict'>).",
  918. "module": "test",
  919. "moduleLogger": [
  920. {
  921. "args": [
  922. "Cached data",
  923. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  924. "<class 'dict'>"
  925. ],
  926. "asctime": "2024-09-22 12:01:39,834",
  927. "created": 1726999299.8342357,
  928. "exc_info": null,
  929. "exc_text": null,
  930. "filename": "test.py",
  931. "funcName": "__report_result__",
  932. "levelname": "DEBUG",
  933. "levelno": 10,
  934. "lineno": 22,
  935. "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  936. "module": "test",
  937. "msecs": 834.0,
  938. "msg": "Result (%s): %s (%s)",
  939. "name": "__unittest__",
  940. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  941. "process": 291252,
  942. "processName": "MainProcess",
  943. "relativeCreated": 82.88240432739258,
  944. "stack_info": null,
  945. "thread": 139667813142592,
  946. "threadName": "MainThread"
  947. },
  948. {
  949. "args": [
  950. "Cached data",
  951. "=",
  952. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  953. "<class 'dict'>"
  954. ],
  955. "asctime": "2024-09-22 12:01:39,834",
  956. "created": 1726999299.8343287,
  957. "exc_info": null,
  958. "exc_text": null,
  959. "filename": "test.py",
  960. "funcName": "__report_expectation__",
  961. "levelname": "DEBUG",
  962. "levelno": 10,
  963. "lineno": 26,
  964. "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  965. "module": "test",
  966. "msecs": 834.0,
  967. "msg": "Expectation (%s): result %s %s (%s)",
  968. "name": "__unittest__",
  969. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  970. "process": 291252,
  971. "processName": "MainProcess",
  972. "relativeCreated": 82.97538757324219,
  973. "stack_info": null,
  974. "thread": 139667813142592,
  975. "threadName": "MainThread"
  976. }
  977. ],
  978. "msecs": 834.0,
  979. "msg": "Cached data is correct (Content %s and Type is %s).",
  980. "name": "__tLogger__",
  981. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  982. "process": 291252,
  983. "processName": "MainProcess",
  984. "relativeCreated": 83.09721946716309,
  985. "stack_info": null,
  986. "thread": 139667813142592,
  987. "threadName": "MainThread",
  988. "time_consumption": 0.00012183189392089844
  989. }
  990. ],
  991. "thread": 139667813142592,
  992. "threadName": "MainThread",
  993. "time_consumption": 0.001611471176147461,
  994. "time_finished": "2024-09-22 12:01:39,834",
  995. "time_start": "2024-09-22 12:01:39,832"
  996. },
  997. "caching.property_cache_json: Test execution of save callback (full init)": {
  998. "args": null,
  999. "asctime": "2024-09-22 12:01:39,849",
  1000. "created": 1726999299.8492773,
  1001. "exc_info": null,
  1002. "exc_text": null,
  1003. "filename": "__init__.py",
  1004. "funcName": "testCase",
  1005. "levelname": "INFO",
  1006. "levelno": 20,
  1007. "lineno": 323,
  1008. "message": "caching.property_cache_json: Test execution of save callback (full init)",
  1009. "module": "__init__",
  1010. "moduleLogger": [],
  1011. "msecs": 849.0,
  1012. "msg": "caching.property_cache_json: Test execution of save callback (full init)",
  1013. "name": "__tLogger__",
  1014. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  1015. "process": 291252,
  1016. "processName": "MainProcess",
  1017. "relativeCreated": 97.92399406433105,
  1018. "stack_info": null,
  1019. "testcaseLogger": [
  1020. {
  1021. "args": [],
  1022. "asctime": "2024-09-22 12:01:39,849",
  1023. "created": 1726999299.849504,
  1024. "exc_info": null,
  1025. "exc_text": null,
  1026. "filename": "test_save_callback.py",
  1027. "funcName": "save_callback",
  1028. "levelname": "DEBUG",
  1029. "levelno": 10,
  1030. "lineno": 26,
  1031. "message": "Installing save_callback, which sets a variable to True on execution.",
  1032. "module": "test_save_callback",
  1033. "moduleLogger": [],
  1034. "msecs": 849.0,
  1035. "msg": "Installing save_callback, which sets a variable to True on execution.",
  1036. "name": "__tLogger__",
  1037. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_save_callback.py",
  1038. "process": 291252,
  1039. "processName": "MainProcess",
  1040. "relativeCreated": 98.15073013305664,
  1041. "stack_info": null,
  1042. "thread": 139667813142592,
  1043. "threadName": "MainThread",
  1044. "time_consumption": 0.0
  1045. },
  1046. {
  1047. "args": [
  1048. "True",
  1049. "<class 'bool'>"
  1050. ],
  1051. "asctime": "2024-09-22 12:01:39,850",
  1052. "created": 1726999299.850037,
  1053. "exc_info": null,
  1054. "exc_text": null,
  1055. "filename": "test.py",
  1056. "funcName": "equivalency_chk",
  1057. "levelname": "INFO",
  1058. "levelno": 20,
  1059. "lineno": 184,
  1060. "message": "Save callback execution variable is correct (Content True and Type is <class 'bool'>).",
  1061. "module": "test",
  1062. "moduleLogger": [
  1063. {
  1064. "args": [
  1065. "Save callback execution variable",
  1066. "True",
  1067. "<class 'bool'>"
  1068. ],
  1069. "asctime": "2024-09-22 12:01:39,849",
  1070. "created": 1726999299.849862,
  1071. "exc_info": null,
  1072. "exc_text": null,
  1073. "filename": "test.py",
  1074. "funcName": "__report_result__",
  1075. "levelname": "DEBUG",
  1076. "levelno": 10,
  1077. "lineno": 22,
  1078. "message": "Result (Save callback execution variable): True (<class 'bool'>)",
  1079. "module": "test",
  1080. "msecs": 849.0,
  1081. "msg": "Result (%s): %s (%s)",
  1082. "name": "__unittest__",
  1083. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1084. "process": 291252,
  1085. "processName": "MainProcess",
  1086. "relativeCreated": 98.50883483886719,
  1087. "stack_info": null,
  1088. "thread": 139667813142592,
  1089. "threadName": "MainThread"
  1090. },
  1091. {
  1092. "args": [
  1093. "Save callback execution variable",
  1094. "=",
  1095. "True",
  1096. "<class 'bool'>"
  1097. ],
  1098. "asctime": "2024-09-22 12:01:39,849",
  1099. "created": 1726999299.849942,
  1100. "exc_info": null,
  1101. "exc_text": null,
  1102. "filename": "test.py",
  1103. "funcName": "__report_expectation__",
  1104. "levelname": "DEBUG",
  1105. "levelno": 10,
  1106. "lineno": 26,
  1107. "message": "Expectation (Save callback execution variable): result = True (<class 'bool'>)",
  1108. "module": "test",
  1109. "msecs": 849.0,
  1110. "msg": "Expectation (%s): result %s %s (%s)",
  1111. "name": "__unittest__",
  1112. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1113. "process": 291252,
  1114. "processName": "MainProcess",
  1115. "relativeCreated": 98.58870506286621,
  1116. "stack_info": null,
  1117. "thread": 139667813142592,
  1118. "threadName": "MainThread"
  1119. }
  1120. ],
  1121. "msecs": 850.0,
  1122. "msg": "Save callback execution variable is correct (Content %s and Type is %s).",
  1123. "name": "__tLogger__",
  1124. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1125. "process": 291252,
  1126. "processName": "MainProcess",
  1127. "relativeCreated": 98.68383407592773,
  1128. "stack_info": null,
  1129. "thread": 139667813142592,
  1130. "threadName": "MainThread",
  1131. "time_consumption": 9.512901306152344e-05
  1132. }
  1133. ],
  1134. "thread": 139667813142592,
  1135. "threadName": "MainThread",
  1136. "time_consumption": 0.0007598400115966797,
  1137. "time_finished": "2024-09-22 12:01:39,850",
  1138. "time_start": "2024-09-22 12:01:39,849"
  1139. },
  1140. "caching.property_cache_json: Test full initialised JSON-Cache-Object": {
  1141. "args": null,
  1142. "asctime": "2024-09-22 12:01:39,825",
  1143. "created": 1726999299.8256323,
  1144. "exc_info": null,
  1145. "exc_text": null,
  1146. "filename": "__init__.py",
  1147. "funcName": "testCase",
  1148. "levelname": "INFO",
  1149. "levelno": 20,
  1150. "lineno": 323,
  1151. "message": "caching.property_cache_json: Test full initialised JSON-Cache-Object",
  1152. "module": "__init__",
  1153. "moduleLogger": [],
  1154. "msecs": 825.0,
  1155. "msg": "caching.property_cache_json: Test full initialised JSON-Cache-Object",
  1156. "name": "__tLogger__",
  1157. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  1158. "process": 291252,
  1159. "processName": "MainProcess",
  1160. "relativeCreated": 74.2790699005127,
  1161. "stack_info": null,
  1162. "testcaseLogger": [
  1163. {
  1164. "args": [
  1165. "property_cache_json",
  1166. "True"
  1167. ],
  1168. "asctime": "2024-09-22 12:01:39,826",
  1169. "created": 1726999299.8269844,
  1170. "exc_info": null,
  1171. "exc_text": null,
  1172. "filename": "test_helpers.py",
  1173. "funcName": "init_cache",
  1174. "levelname": "DEBUG",
  1175. "levelno": 10,
  1176. "lineno": 24,
  1177. "message": "Initialising property_cache_json (load_all_on_init=True).",
  1178. "module": "test_helpers",
  1179. "moduleLogger": [
  1180. {
  1181. "args": [],
  1182. "asctime": "2024-09-22 12:01:39,825",
  1183. "created": 1726999299.8258805,
  1184. "exc_info": null,
  1185. "exc_text": null,
  1186. "filename": "test_helpers.py",
  1187. "funcName": "init_cache",
  1188. "levelname": "INFO",
  1189. "levelno": 20,
  1190. "lineno": 17,
  1191. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1192. "module": "test_helpers",
  1193. "msecs": 825.0,
  1194. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1195. "name": "__unittest__",
  1196. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1197. "process": 291252,
  1198. "processName": "MainProcess",
  1199. "relativeCreated": 74.52726364135742,
  1200. "stack_info": null,
  1201. "thread": 139667813142592,
  1202. "threadName": "MainThread"
  1203. },
  1204. {
  1205. "args": [
  1206. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.json"
  1207. ],
  1208. "asctime": "2024-09-22 12:01:39,826",
  1209. "created": 1726999299.8260407,
  1210. "exc_info": null,
  1211. "exc_text": null,
  1212. "filename": "test_helpers.py",
  1213. "funcName": "init_cache",
  1214. "levelname": "INFO",
  1215. "levelno": 20,
  1216. "lineno": 21,
  1217. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.json as cache file.",
  1218. "module": "test_helpers",
  1219. "msecs": 826.0,
  1220. "msg": "Initialising cached class with %s as cache file.",
  1221. "name": "__unittest__",
  1222. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1223. "process": 291252,
  1224. "processName": "MainProcess",
  1225. "relativeCreated": 74.68748092651367,
  1226. "stack_info": null,
  1227. "thread": 139667813142592,
  1228. "threadName": "MainThread"
  1229. }
  1230. ],
  1231. "msecs": 826.0,
  1232. "msg": "Initialising %s (load_all_on_init=%s).",
  1233. "name": "__tLogger__",
  1234. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1235. "process": 291252,
  1236. "processName": "MainProcess",
  1237. "relativeCreated": 75.63114166259766,
  1238. "stack_info": null,
  1239. "thread": 139667813142592,
  1240. "threadName": "MainThread",
  1241. "time_consumption": 0.0009436607360839844
  1242. },
  1243. {
  1244. "args": [
  1245. "property_cache_json"
  1246. ],
  1247. "asctime": "2024-09-22 12:01:39,827",
  1248. "created": 1726999299.8272943,
  1249. "exc_info": null,
  1250. "exc_text": null,
  1251. "filename": "test_load_on_init.py",
  1252. "funcName": "load_on_init",
  1253. "levelname": "DEBUG",
  1254. "levelno": 10,
  1255. "lineno": 21,
  1256. "message": "Extracting storage object from property_cache_json for comparison.",
  1257. "module": "test_load_on_init",
  1258. "moduleLogger": [
  1259. {
  1260. "args": [
  1261. "{'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}"
  1262. ],
  1263. "asctime": "2024-09-22 12:01:39,827",
  1264. "created": 1726999299.8272245,
  1265. "exc_info": null,
  1266. "exc_text": null,
  1267. "filename": "test_load_on_init.py",
  1268. "funcName": "load_on_init",
  1269. "levelname": "INFO",
  1270. "levelno": 20,
  1271. "lineno": 20,
  1272. "message": "Using storage object of cache class for comparison: {'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}",
  1273. "module": "test_load_on_init",
  1274. "msecs": 827.0,
  1275. "msg": "Using storage object of cache class for comparison: %s",
  1276. "name": "__unittest__",
  1277. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
  1278. "process": 291252,
  1279. "processName": "MainProcess",
  1280. "relativeCreated": 75.87122917175293,
  1281. "stack_info": null,
  1282. "thread": 139667813142592,
  1283. "threadName": "MainThread"
  1284. }
  1285. ],
  1286. "msecs": 827.0,
  1287. "msg": "Extracting storage object from %s for comparison.",
  1288. "name": "__tLogger__",
  1289. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
  1290. "process": 291252,
  1291. "processName": "MainProcess",
  1292. "relativeCreated": 75.94108581542969,
  1293. "stack_info": null,
  1294. "thread": 139667813142592,
  1295. "threadName": "MainThread",
  1296. "time_consumption": 6.985664367675781e-05
  1297. },
  1298. {
  1299. "args": [
  1300. "{'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}",
  1301. "<class 'dict'>"
  1302. ],
  1303. "asctime": "2024-09-22 12:01:39,827",
  1304. "created": 1726999299.8277056,
  1305. "exc_info": null,
  1306. "exc_text": null,
  1307. "filename": "test.py",
  1308. "funcName": "equivalency_chk",
  1309. "levelname": "INFO",
  1310. "levelno": 20,
  1311. "lineno": 184,
  1312. "message": "Cache object is correct (Content {'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'} and Type is <class 'dict'>).",
  1313. "module": "test",
  1314. "moduleLogger": [
  1315. {
  1316. "args": [
  1317. "Cache object",
  1318. "{ 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'float': 3.14159, 'integer': 17, 'list': [ 1, 'two', '3', 4 ], 'str': 'string', 'unicode': 'unicode' }",
  1319. "<class 'dict'>"
  1320. ],
  1321. "asctime": "2024-09-22 12:01:39,827",
  1322. "created": 1726999299.8274398,
  1323. "exc_info": null,
  1324. "exc_text": null,
  1325. "filename": "test.py",
  1326. "funcName": "__report_result__",
  1327. "levelname": "DEBUG",
  1328. "levelno": 10,
  1329. "lineno": 22,
  1330. "message": "Result (Cache object): { 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'float': 3.14159, 'integer': 17, 'list': [ 1, 'two', '3', 4 ], 'str': 'string', 'unicode': 'unicode' } (<class 'dict'>)",
  1331. "module": "test",
  1332. "msecs": 827.0,
  1333. "msg": "Result (%s): %s (%s)",
  1334. "name": "__unittest__",
  1335. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1336. "process": 291252,
  1337. "processName": "MainProcess",
  1338. "relativeCreated": 76.08652114868164,
  1339. "stack_info": null,
  1340. "thread": 139667813142592,
  1341. "threadName": "MainThread"
  1342. },
  1343. {
  1344. "args": [
  1345. "Cache object",
  1346. "=",
  1347. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
  1348. "<class 'dict'>"
  1349. ],
  1350. "asctime": "2024-09-22 12:01:39,827",
  1351. "created": 1726999299.8275366,
  1352. "exc_info": null,
  1353. "exc_text": null,
  1354. "filename": "test.py",
  1355. "funcName": "__report_expectation__",
  1356. "levelname": "DEBUG",
  1357. "levelno": 10,
  1358. "lineno": 26,
  1359. "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } (<class 'dict'>)",
  1360. "module": "test",
  1361. "msecs": 827.0,
  1362. "msg": "Expectation (%s): result %s %s (%s)",
  1363. "name": "__unittest__",
  1364. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1365. "process": 291252,
  1366. "processName": "MainProcess",
  1367. "relativeCreated": 76.18331909179688,
  1368. "stack_info": null,
  1369. "thread": 139667813142592,
  1370. "threadName": "MainThread"
  1371. }
  1372. ],
  1373. "msecs": 827.0,
  1374. "msg": "Cache object is correct (Content %s and Type is %s).",
  1375. "name": "__tLogger__",
  1376. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1377. "process": 291252,
  1378. "processName": "MainProcess",
  1379. "relativeCreated": 76.35235786437988,
  1380. "stack_info": null,
  1381. "thread": 139667813142592,
  1382. "threadName": "MainThread",
  1383. "time_consumption": 0.0001690387725830078
  1384. }
  1385. ],
  1386. "thread": 139667813142592,
  1387. "threadName": "MainThread",
  1388. "time_consumption": 0.0020732879638671875,
  1389. "time_finished": "2024-09-22 12:01:39,827",
  1390. "time_start": "2024-09-22 12:01:39,825"
  1391. },
  1392. "caching.property_cache_json: Test get from source caused by changed uid (full init)": {
  1393. "args": null,
  1394. "asctime": "2024-09-22 12:01:39,841",
  1395. "created": 1726999299.8417025,
  1396. "exc_info": null,
  1397. "exc_text": null,
  1398. "filename": "__init__.py",
  1399. "funcName": "testCase",
  1400. "levelname": "INFO",
  1401. "levelno": 20,
  1402. "lineno": 323,
  1403. "message": "caching.property_cache_json: Test get from source caused by changed uid (full init)",
  1404. "module": "__init__",
  1405. "moduleLogger": [],
  1406. "msecs": 841.0,
  1407. "msg": "caching.property_cache_json: Test get from source caused by changed uid (full init)",
  1408. "name": "__tLogger__",
  1409. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  1410. "process": 291252,
  1411. "processName": "MainProcess",
  1412. "relativeCreated": 90.34919738769531,
  1413. "stack_info": null,
  1414. "testcaseLogger": [
  1415. {
  1416. "args": [
  1417. "property_cache_json",
  1418. "True"
  1419. ],
  1420. "asctime": "2024-09-22 12:01:39,843",
  1421. "created": 1726999299.8431456,
  1422. "exc_info": null,
  1423. "exc_text": null,
  1424. "filename": "test_helpers.py",
  1425. "funcName": "init_cache",
  1426. "levelname": "DEBUG",
  1427. "levelno": 10,
  1428. "lineno": 24,
  1429. "message": "Initialising property_cache_json (load_all_on_init=True).",
  1430. "module": "test_helpers",
  1431. "moduleLogger": [
  1432. {
  1433. "args": [],
  1434. "asctime": "2024-09-22 12:01:39,841",
  1435. "created": 1726999299.8419297,
  1436. "exc_info": null,
  1437. "exc_text": null,
  1438. "filename": "test_helpers.py",
  1439. "funcName": "init_cache",
  1440. "levelname": "INFO",
  1441. "levelno": 20,
  1442. "lineno": 17,
  1443. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1444. "module": "test_helpers",
  1445. "msecs": 841.0,
  1446. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1447. "name": "__unittest__",
  1448. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1449. "process": 291252,
  1450. "processName": "MainProcess",
  1451. "relativeCreated": 90.5764102935791,
  1452. "stack_info": null,
  1453. "thread": 139667813142592,
  1454. "threadName": "MainThread"
  1455. },
  1456. {
  1457. "args": [
  1458. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.json"
  1459. ],
  1460. "asctime": "2024-09-22 12:01:39,842",
  1461. "created": 1726999299.8421047,
  1462. "exc_info": null,
  1463. "exc_text": null,
  1464. "filename": "test_helpers.py",
  1465. "funcName": "init_cache",
  1466. "levelname": "INFO",
  1467. "levelno": 20,
  1468. "lineno": 21,
  1469. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.json as cache file.",
  1470. "module": "test_helpers",
  1471. "msecs": 842.0,
  1472. "msg": "Initialising cached class with %s as cache file.",
  1473. "name": "__unittest__",
  1474. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1475. "process": 291252,
  1476. "processName": "MainProcess",
  1477. "relativeCreated": 90.75140953063965,
  1478. "stack_info": null,
  1479. "thread": 139667813142592,
  1480. "threadName": "MainThread"
  1481. }
  1482. ],
  1483. "msecs": 843.0,
  1484. "msg": "Initialising %s (load_all_on_init=%s).",
  1485. "name": "__tLogger__",
  1486. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1487. "process": 291252,
  1488. "processName": "MainProcess",
  1489. "relativeCreated": 91.79234504699707,
  1490. "stack_info": null,
  1491. "thread": 139667813142592,
  1492. "threadName": "MainThread",
  1493. "time_consumption": 0.0010409355163574219
  1494. },
  1495. {
  1496. "args": [
  1497. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  1498. "<class 'dict'>"
  1499. ],
  1500. "asctime": "2024-09-22 12:01:39,844",
  1501. "created": 1726999299.8449895,
  1502. "exc_info": null,
  1503. "exc_text": null,
  1504. "filename": "test.py",
  1505. "funcName": "equivalency_chk",
  1506. "levelname": "INFO",
  1507. "levelno": 20,
  1508. "lineno": 184,
  1509. "message": "Instance data after changing uid is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  1510. "module": "test",
  1511. "moduleLogger": [
  1512. {
  1513. "args": [
  1514. "Instance data after changing uid",
  1515. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1516. "<class 'dict'>"
  1517. ],
  1518. "asctime": "2024-09-22 12:01:39,844",
  1519. "created": 1726999299.8445797,
  1520. "exc_info": null,
  1521. "exc_text": null,
  1522. "filename": "test.py",
  1523. "funcName": "__report_result__",
  1524. "levelname": "DEBUG",
  1525. "levelno": 10,
  1526. "lineno": 22,
  1527. "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1528. "module": "test",
  1529. "msecs": 844.0,
  1530. "msg": "Result (%s): %s (%s)",
  1531. "name": "__unittest__",
  1532. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1533. "process": 291252,
  1534. "processName": "MainProcess",
  1535. "relativeCreated": 93.22643280029297,
  1536. "stack_info": null,
  1537. "thread": 139667813142592,
  1538. "threadName": "MainThread"
  1539. },
  1540. {
  1541. "args": [
  1542. "Instance data after changing uid",
  1543. "=",
  1544. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1545. "<class 'dict'>"
  1546. ],
  1547. "asctime": "2024-09-22 12:01:39,844",
  1548. "created": 1726999299.8447618,
  1549. "exc_info": null,
  1550. "exc_text": null,
  1551. "filename": "test.py",
  1552. "funcName": "__report_expectation__",
  1553. "levelname": "DEBUG",
  1554. "levelno": 10,
  1555. "lineno": 26,
  1556. "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1557. "module": "test",
  1558. "msecs": 844.0,
  1559. "msg": "Expectation (%s): result %s %s (%s)",
  1560. "name": "__unittest__",
  1561. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1562. "process": 291252,
  1563. "processName": "MainProcess",
  1564. "relativeCreated": 93.40858459472656,
  1565. "stack_info": null,
  1566. "thread": 139667813142592,
  1567. "threadName": "MainThread"
  1568. }
  1569. ],
  1570. "msecs": 844.0,
  1571. "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
  1572. "name": "__tLogger__",
  1573. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1574. "process": 291252,
  1575. "processName": "MainProcess",
  1576. "relativeCreated": 93.63627433776855,
  1577. "stack_info": null,
  1578. "thread": 139667813142592,
  1579. "threadName": "MainThread",
  1580. "time_consumption": 0.0002276897430419922
  1581. }
  1582. ],
  1583. "thread": 139667813142592,
  1584. "threadName": "MainThread",
  1585. "time_consumption": 0.003287076950073242,
  1586. "time_finished": "2024-09-22 12:01:39,844",
  1587. "time_start": "2024-09-22 12:01:39,841"
  1588. },
  1589. "caching.property_cache_json: Test get from source caused by changed uid (partially init)": {
  1590. "args": null,
  1591. "asctime": "2024-09-22 12:01:39,845",
  1592. "created": 1726999299.8452923,
  1593. "exc_info": null,
  1594. "exc_text": null,
  1595. "filename": "__init__.py",
  1596. "funcName": "testCase",
  1597. "levelname": "INFO",
  1598. "levelno": 20,
  1599. "lineno": 323,
  1600. "message": "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
  1601. "module": "__init__",
  1602. "moduleLogger": [],
  1603. "msecs": 845.0,
  1604. "msg": "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
  1605. "name": "__tLogger__",
  1606. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  1607. "process": 291252,
  1608. "processName": "MainProcess",
  1609. "relativeCreated": 93.93906593322754,
  1610. "stack_info": null,
  1611. "testcaseLogger": [
  1612. {
  1613. "args": [
  1614. "property_cache_json",
  1615. "True"
  1616. ],
  1617. "asctime": "2024-09-22 12:01:39,846",
  1618. "created": 1726999299.8465333,
  1619. "exc_info": null,
  1620. "exc_text": null,
  1621. "filename": "test_helpers.py",
  1622. "funcName": "init_cache",
  1623. "levelname": "DEBUG",
  1624. "levelno": 10,
  1625. "lineno": 24,
  1626. "message": "Initialising property_cache_json (load_all_on_init=True).",
  1627. "module": "test_helpers",
  1628. "moduleLogger": [
  1629. {
  1630. "args": [],
  1631. "asctime": "2024-09-22 12:01:39,845",
  1632. "created": 1726999299.8454783,
  1633. "exc_info": null,
  1634. "exc_text": null,
  1635. "filename": "test_helpers.py",
  1636. "funcName": "init_cache",
  1637. "levelname": "INFO",
  1638. "levelno": 20,
  1639. "lineno": 17,
  1640. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1641. "module": "test_helpers",
  1642. "msecs": 845.0,
  1643. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1644. "name": "__unittest__",
  1645. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1646. "process": 291252,
  1647. "processName": "MainProcess",
  1648. "relativeCreated": 94.12503242492676,
  1649. "stack_info": null,
  1650. "thread": 139667813142592,
  1651. "threadName": "MainThread"
  1652. },
  1653. {
  1654. "args": [
  1655. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.json"
  1656. ],
  1657. "asctime": "2024-09-22 12:01:39,845",
  1658. "created": 1726999299.845637,
  1659. "exc_info": null,
  1660. "exc_text": null,
  1661. "filename": "test_helpers.py",
  1662. "funcName": "init_cache",
  1663. "levelname": "INFO",
  1664. "levelno": 20,
  1665. "lineno": 21,
  1666. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.json as cache file.",
  1667. "module": "test_helpers",
  1668. "msecs": 845.0,
  1669. "msg": "Initialising cached class with %s as cache file.",
  1670. "name": "__unittest__",
  1671. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1672. "process": 291252,
  1673. "processName": "MainProcess",
  1674. "relativeCreated": 94.2838191986084,
  1675. "stack_info": null,
  1676. "thread": 139667813142592,
  1677. "threadName": "MainThread"
  1678. }
  1679. ],
  1680. "msecs": 846.0,
  1681. "msg": "Initialising %s (load_all_on_init=%s).",
  1682. "name": "__tLogger__",
  1683. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1684. "process": 291252,
  1685. "processName": "MainProcess",
  1686. "relativeCreated": 95.18003463745117,
  1687. "stack_info": null,
  1688. "thread": 139667813142592,
  1689. "threadName": "MainThread",
  1690. "time_consumption": 0.0008962154388427734
  1691. },
  1692. {
  1693. "args": [
  1694. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  1695. "<class 'dict'>"
  1696. ],
  1697. "asctime": "2024-09-22 12:01:39,848",
  1698. "created": 1726999299.8489242,
  1699. "exc_info": null,
  1700. "exc_text": null,
  1701. "filename": "test.py",
  1702. "funcName": "equivalency_chk",
  1703. "levelname": "INFO",
  1704. "levelno": 20,
  1705. "lineno": 184,
  1706. "message": "Instance data after changing uid is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  1707. "module": "test",
  1708. "moduleLogger": [
  1709. {
  1710. "args": [
  1711. "Instance data after changing uid",
  1712. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1713. "<class 'dict'>"
  1714. ],
  1715. "asctime": "2024-09-22 12:01:39,848",
  1716. "created": 1726999299.8485436,
  1717. "exc_info": null,
  1718. "exc_text": null,
  1719. "filename": "test.py",
  1720. "funcName": "__report_result__",
  1721. "levelname": "DEBUG",
  1722. "levelno": 10,
  1723. "lineno": 22,
  1724. "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1725. "module": "test",
  1726. "msecs": 848.0,
  1727. "msg": "Result (%s): %s (%s)",
  1728. "name": "__unittest__",
  1729. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1730. "process": 291252,
  1731. "processName": "MainProcess",
  1732. "relativeCreated": 97.19038009643555,
  1733. "stack_info": null,
  1734. "thread": 139667813142592,
  1735. "threadName": "MainThread"
  1736. },
  1737. {
  1738. "args": [
  1739. "Instance data after changing uid",
  1740. "=",
  1741. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1742. "<class 'dict'>"
  1743. ],
  1744. "asctime": "2024-09-22 12:01:39,848",
  1745. "created": 1726999299.8487282,
  1746. "exc_info": null,
  1747. "exc_text": null,
  1748. "filename": "test.py",
  1749. "funcName": "__report_expectation__",
  1750. "levelname": "DEBUG",
  1751. "levelno": 10,
  1752. "lineno": 26,
  1753. "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1754. "module": "test",
  1755. "msecs": 848.0,
  1756. "msg": "Expectation (%s): result %s %s (%s)",
  1757. "name": "__unittest__",
  1758. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1759. "process": 291252,
  1760. "processName": "MainProcess",
  1761. "relativeCreated": 97.37491607666016,
  1762. "stack_info": null,
  1763. "thread": 139667813142592,
  1764. "threadName": "MainThread"
  1765. }
  1766. ],
  1767. "msecs": 848.0,
  1768. "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
  1769. "name": "__tLogger__",
  1770. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1771. "process": 291252,
  1772. "processName": "MainProcess",
  1773. "relativeCreated": 97.57089614868164,
  1774. "stack_info": null,
  1775. "thread": 139667813142592,
  1776. "threadName": "MainThread",
  1777. "time_consumption": 0.00019598007202148438
  1778. }
  1779. ],
  1780. "thread": 139667813142592,
  1781. "threadName": "MainThread",
  1782. "time_consumption": 0.0036318302154541016,
  1783. "time_finished": "2024-09-22 12:01:39,848",
  1784. "time_start": "2024-09-22 12:01:39,845"
  1785. },
  1786. "caching.property_cache_json: Test get from source caused by increased data version (full init)": {
  1787. "args": null,
  1788. "asctime": "2024-09-22 12:01:39,834",
  1789. "created": 1726999299.8346317,
  1790. "exc_info": null,
  1791. "exc_text": null,
  1792. "filename": "__init__.py",
  1793. "funcName": "testCase",
  1794. "levelname": "INFO",
  1795. "levelno": 20,
  1796. "lineno": 323,
  1797. "message": "caching.property_cache_json: Test get from source caused by increased data version (full init)",
  1798. "module": "__init__",
  1799. "moduleLogger": [],
  1800. "msecs": 834.0,
  1801. "msg": "caching.property_cache_json: Test get from source caused by increased data version (full init)",
  1802. "name": "__tLogger__",
  1803. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  1804. "process": 291252,
  1805. "processName": "MainProcess",
  1806. "relativeCreated": 83.27841758728027,
  1807. "stack_info": null,
  1808. "testcaseLogger": [
  1809. {
  1810. "args": [
  1811. "property_cache_json",
  1812. "True"
  1813. ],
  1814. "asctime": "2024-09-22 12:01:39,835",
  1815. "created": 1726999299.8356025,
  1816. "exc_info": null,
  1817. "exc_text": null,
  1818. "filename": "test_helpers.py",
  1819. "funcName": "init_cache",
  1820. "levelname": "DEBUG",
  1821. "levelno": 10,
  1822. "lineno": 24,
  1823. "message": "Initialising property_cache_json (load_all_on_init=True).",
  1824. "module": "test_helpers",
  1825. "moduleLogger": [
  1826. {
  1827. "args": [],
  1828. "asctime": "2024-09-22 12:01:39,834",
  1829. "created": 1726999299.8347945,
  1830. "exc_info": null,
  1831. "exc_text": null,
  1832. "filename": "test_helpers.py",
  1833. "funcName": "init_cache",
  1834. "levelname": "INFO",
  1835. "levelno": 20,
  1836. "lineno": 17,
  1837. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1838. "module": "test_helpers",
  1839. "msecs": 834.0,
  1840. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  1841. "name": "__unittest__",
  1842. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1843. "process": 291252,
  1844. "processName": "MainProcess",
  1845. "relativeCreated": 83.44125747680664,
  1846. "stack_info": null,
  1847. "thread": 139667813142592,
  1848. "threadName": "MainThread"
  1849. },
  1850. {
  1851. "args": [
  1852. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.json"
  1853. ],
  1854. "asctime": "2024-09-22 12:01:39,834",
  1855. "created": 1726999299.8348923,
  1856. "exc_info": null,
  1857. "exc_text": null,
  1858. "filename": "test_helpers.py",
  1859. "funcName": "init_cache",
  1860. "levelname": "INFO",
  1861. "levelno": 20,
  1862. "lineno": 21,
  1863. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.json as cache file.",
  1864. "module": "test_helpers",
  1865. "msecs": 834.0,
  1866. "msg": "Initialising cached class with %s as cache file.",
  1867. "name": "__unittest__",
  1868. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1869. "process": 291252,
  1870. "processName": "MainProcess",
  1871. "relativeCreated": 83.53900909423828,
  1872. "stack_info": null,
  1873. "thread": 139667813142592,
  1874. "threadName": "MainThread"
  1875. }
  1876. ],
  1877. "msecs": 835.0,
  1878. "msg": "Initialising %s (load_all_on_init=%s).",
  1879. "name": "__tLogger__",
  1880. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  1881. "process": 291252,
  1882. "processName": "MainProcess",
  1883. "relativeCreated": 84.24925804138184,
  1884. "stack_info": null,
  1885. "thread": 139667813142592,
  1886. "threadName": "MainThread",
  1887. "time_consumption": 0.0007102489471435547
  1888. },
  1889. {
  1890. "args": [
  1891. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  1892. "<class 'dict'>"
  1893. ],
  1894. "asctime": "2024-09-22 12:01:39,836",
  1895. "created": 1726999299.836869,
  1896. "exc_info": null,
  1897. "exc_text": null,
  1898. "filename": "test.py",
  1899. "funcName": "equivalency_chk",
  1900. "levelname": "INFO",
  1901. "levelno": 20,
  1902. "lineno": 184,
  1903. "message": "Instance data after increasing data_version is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  1904. "module": "test",
  1905. "moduleLogger": [
  1906. {
  1907. "args": [
  1908. "Instance data after increasing data_version",
  1909. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1910. "<class 'dict'>"
  1911. ],
  1912. "asctime": "2024-09-22 12:01:39,836",
  1913. "created": 1726999299.8366292,
  1914. "exc_info": null,
  1915. "exc_text": null,
  1916. "filename": "test.py",
  1917. "funcName": "__report_result__",
  1918. "levelname": "DEBUG",
  1919. "levelno": 10,
  1920. "lineno": 22,
  1921. "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1922. "module": "test",
  1923. "msecs": 836.0,
  1924. "msg": "Result (%s): %s (%s)",
  1925. "name": "__unittest__",
  1926. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1927. "process": 291252,
  1928. "processName": "MainProcess",
  1929. "relativeCreated": 85.27588844299316,
  1930. "stack_info": null,
  1931. "thread": 139667813142592,
  1932. "threadName": "MainThread"
  1933. },
  1934. {
  1935. "args": [
  1936. "Instance data after increasing data_version",
  1937. "=",
  1938. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  1939. "<class 'dict'>"
  1940. ],
  1941. "asctime": "2024-09-22 12:01:39,836",
  1942. "created": 1726999299.8367424,
  1943. "exc_info": null,
  1944. "exc_text": null,
  1945. "filename": "test.py",
  1946. "funcName": "__report_expectation__",
  1947. "levelname": "DEBUG",
  1948. "levelno": 10,
  1949. "lineno": 26,
  1950. "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  1951. "module": "test",
  1952. "msecs": 836.0,
  1953. "msg": "Expectation (%s): result %s %s (%s)",
  1954. "name": "__unittest__",
  1955. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1956. "process": 291252,
  1957. "processName": "MainProcess",
  1958. "relativeCreated": 85.3891372680664,
  1959. "stack_info": null,
  1960. "thread": 139667813142592,
  1961. "threadName": "MainThread"
  1962. }
  1963. ],
  1964. "msecs": 836.0,
  1965. "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
  1966. "name": "__tLogger__",
  1967. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  1968. "process": 291252,
  1969. "processName": "MainProcess",
  1970. "relativeCreated": 85.51573753356934,
  1971. "stack_info": null,
  1972. "thread": 139667813142592,
  1973. "threadName": "MainThread",
  1974. "time_consumption": 0.0001266002655029297
  1975. }
  1976. ],
  1977. "thread": 139667813142592,
  1978. "threadName": "MainThread",
  1979. "time_consumption": 0.0022373199462890625,
  1980. "time_finished": "2024-09-22 12:01:39,836",
  1981. "time_start": "2024-09-22 12:01:39,834"
  1982. },
  1983. "caching.property_cache_json: Test get from source caused by increased data version (partially init)": {
  1984. "args": null,
  1985. "asctime": "2024-09-22 12:01:39,837",
  1986. "created": 1726999299.8370626,
  1987. "exc_info": null,
  1988. "exc_text": null,
  1989. "filename": "__init__.py",
  1990. "funcName": "testCase",
  1991. "levelname": "INFO",
  1992. "levelno": 20,
  1993. "lineno": 323,
  1994. "message": "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
  1995. "module": "__init__",
  1996. "moduleLogger": [],
  1997. "msecs": 837.0,
  1998. "msg": "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
  1999. "name": "__tLogger__",
  2000. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  2001. "process": 291252,
  2002. "processName": "MainProcess",
  2003. "relativeCreated": 85.7093334197998,
  2004. "stack_info": null,
  2005. "testcaseLogger": [
  2006. {
  2007. "args": [
  2008. "property_cache_json",
  2009. "True"
  2010. ],
  2011. "asctime": "2024-09-22 12:01:39,838",
  2012. "created": 1726999299.8381765,
  2013. "exc_info": null,
  2014. "exc_text": null,
  2015. "filename": "test_helpers.py",
  2016. "funcName": "init_cache",
  2017. "levelname": "DEBUG",
  2018. "levelno": 10,
  2019. "lineno": 24,
  2020. "message": "Initialising property_cache_json (load_all_on_init=True).",
  2021. "module": "test_helpers",
  2022. "moduleLogger": [
  2023. {
  2024. "args": [],
  2025. "asctime": "2024-09-22 12:01:39,837",
  2026. "created": 1726999299.8372402,
  2027. "exc_info": null,
  2028. "exc_text": null,
  2029. "filename": "test_helpers.py",
  2030. "funcName": "init_cache",
  2031. "levelname": "INFO",
  2032. "levelno": 20,
  2033. "lineno": 17,
  2034. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2035. "module": "test_helpers",
  2036. "msecs": 837.0,
  2037. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2038. "name": "__unittest__",
  2039. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2040. "process": 291252,
  2041. "processName": "MainProcess",
  2042. "relativeCreated": 85.88695526123047,
  2043. "stack_info": null,
  2044. "thread": 139667813142592,
  2045. "threadName": "MainThread"
  2046. },
  2047. {
  2048. "args": [
  2049. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.json"
  2050. ],
  2051. "asctime": "2024-09-22 12:01:39,837",
  2052. "created": 1726999299.8373528,
  2053. "exc_info": null,
  2054. "exc_text": null,
  2055. "filename": "test_helpers.py",
  2056. "funcName": "init_cache",
  2057. "levelname": "INFO",
  2058. "levelno": 20,
  2059. "lineno": 21,
  2060. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.json as cache file.",
  2061. "module": "test_helpers",
  2062. "msecs": 837.0,
  2063. "msg": "Initialising cached class with %s as cache file.",
  2064. "name": "__unittest__",
  2065. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2066. "process": 291252,
  2067. "processName": "MainProcess",
  2068. "relativeCreated": 85.9994888305664,
  2069. "stack_info": null,
  2070. "thread": 139667813142592,
  2071. "threadName": "MainThread"
  2072. }
  2073. ],
  2074. "msecs": 838.0,
  2075. "msg": "Initialising %s (load_all_on_init=%s).",
  2076. "name": "__tLogger__",
  2077. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2078. "process": 291252,
  2079. "processName": "MainProcess",
  2080. "relativeCreated": 86.8232250213623,
  2081. "stack_info": null,
  2082. "thread": 139667813142592,
  2083. "threadName": "MainThread",
  2084. "time_consumption": 0.0008237361907958984
  2085. },
  2086. {
  2087. "args": [
  2088. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  2089. "<class 'dict'>"
  2090. ],
  2091. "asctime": "2024-09-22 12:01:39,841",
  2092. "created": 1726999299.841378,
  2093. "exc_info": null,
  2094. "exc_text": null,
  2095. "filename": "test.py",
  2096. "funcName": "equivalency_chk",
  2097. "levelname": "INFO",
  2098. "levelno": 20,
  2099. "lineno": 184,
  2100. "message": "Instance data after increasing data_version is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  2101. "module": "test",
  2102. "moduleLogger": [
  2103. {
  2104. "args": [
  2105. "Instance data after increasing data_version",
  2106. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  2107. "<class 'dict'>"
  2108. ],
  2109. "asctime": "2024-09-22 12:01:39,840",
  2110. "created": 1726999299.840947,
  2111. "exc_info": null,
  2112. "exc_text": null,
  2113. "filename": "test.py",
  2114. "funcName": "__report_result__",
  2115. "levelname": "DEBUG",
  2116. "levelno": 10,
  2117. "lineno": 22,
  2118. "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  2119. "module": "test",
  2120. "msecs": 840.0,
  2121. "msg": "Result (%s): %s (%s)",
  2122. "name": "__unittest__",
  2123. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2124. "process": 291252,
  2125. "processName": "MainProcess",
  2126. "relativeCreated": 89.59364891052246,
  2127. "stack_info": null,
  2128. "thread": 139667813142592,
  2129. "threadName": "MainThread"
  2130. },
  2131. {
  2132. "args": [
  2133. "Instance data after increasing data_version",
  2134. "=",
  2135. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  2136. "<class 'dict'>"
  2137. ],
  2138. "asctime": "2024-09-22 12:01:39,841",
  2139. "created": 1726999299.8411405,
  2140. "exc_info": null,
  2141. "exc_text": null,
  2142. "filename": "test.py",
  2143. "funcName": "__report_expectation__",
  2144. "levelname": "DEBUG",
  2145. "levelno": 10,
  2146. "lineno": 26,
  2147. "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  2148. "module": "test",
  2149. "msecs": 841.0,
  2150. "msg": "Expectation (%s): result %s %s (%s)",
  2151. "name": "__unittest__",
  2152. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2153. "process": 291252,
  2154. "processName": "MainProcess",
  2155. "relativeCreated": 89.78724479675293,
  2156. "stack_info": null,
  2157. "thread": 139667813142592,
  2158. "threadName": "MainThread"
  2159. }
  2160. ],
  2161. "msecs": 841.0,
  2162. "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
  2163. "name": "__tLogger__",
  2164. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2165. "process": 291252,
  2166. "processName": "MainProcess",
  2167. "relativeCreated": 90.02470970153809,
  2168. "stack_info": null,
  2169. "thread": 139667813142592,
  2170. "threadName": "MainThread",
  2171. "time_consumption": 0.00023746490478515625
  2172. }
  2173. ],
  2174. "thread": 139667813142592,
  2175. "threadName": "MainThread",
  2176. "time_consumption": 0.004315376281738281,
  2177. "time_finished": "2024-09-22 12:01:39,841",
  2178. "time_start": "2024-09-22 12:01:39,837"
  2179. },
  2180. "caching.property_cache_json: Test internal key usage": {
  2181. "args": null,
  2182. "asctime": "2024-09-22 12:01:39,850",
  2183. "created": 1726999299.8503225,
  2184. "exc_info": null,
  2185. "exc_text": null,
  2186. "filename": "__init__.py",
  2187. "funcName": "testCase",
  2188. "levelname": "INFO",
  2189. "levelno": 20,
  2190. "lineno": 323,
  2191. "message": "caching.property_cache_json: Test internal key usage",
  2192. "module": "__init__",
  2193. "moduleLogger": [],
  2194. "msecs": 850.0,
  2195. "msg": "caching.property_cache_json: Test internal key usage",
  2196. "name": "__tLogger__",
  2197. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  2198. "process": 291252,
  2199. "processName": "MainProcess",
  2200. "relativeCreated": 98.9692211151123,
  2201. "stack_info": null,
  2202. "testcaseLogger": [
  2203. {
  2204. "args": [
  2205. "property_cache_json",
  2206. "True"
  2207. ],
  2208. "asctime": "2024-09-22 12:01:39,851",
  2209. "created": 1726999299.851764,
  2210. "exc_info": null,
  2211. "exc_text": null,
  2212. "filename": "test_helpers.py",
  2213. "funcName": "init_cache",
  2214. "levelname": "DEBUG",
  2215. "levelno": 10,
  2216. "lineno": 24,
  2217. "message": "Initialising property_cache_json (load_all_on_init=True).",
  2218. "module": "test_helpers",
  2219. "moduleLogger": [
  2220. {
  2221. "args": [],
  2222. "asctime": "2024-09-22 12:01:39,850",
  2223. "created": 1726999299.850567,
  2224. "exc_info": null,
  2225. "exc_text": null,
  2226. "filename": "test_helpers.py",
  2227. "funcName": "init_cache",
  2228. "levelname": "INFO",
  2229. "levelno": 20,
  2230. "lineno": 17,
  2231. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2232. "module": "test_helpers",
  2233. "msecs": 850.0,
  2234. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2235. "name": "__unittest__",
  2236. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2237. "process": 291252,
  2238. "processName": "MainProcess",
  2239. "relativeCreated": 99.21383857727051,
  2240. "stack_info": null,
  2241. "thread": 139667813142592,
  2242. "threadName": "MainThread"
  2243. },
  2244. {
  2245. "args": [
  2246. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.json"
  2247. ],
  2248. "asctime": "2024-09-22 12:01:39,850",
  2249. "created": 1726999299.8507779,
  2250. "exc_info": null,
  2251. "exc_text": null,
  2252. "filename": "test_helpers.py",
  2253. "funcName": "init_cache",
  2254. "levelname": "INFO",
  2255. "levelno": 20,
  2256. "lineno": 21,
  2257. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.json as cache file.",
  2258. "module": "test_helpers",
  2259. "msecs": 850.0,
  2260. "msg": "Initialising cached class with %s as cache file.",
  2261. "name": "__unittest__",
  2262. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2263. "process": 291252,
  2264. "processName": "MainProcess",
  2265. "relativeCreated": 99.42460060119629,
  2266. "stack_info": null,
  2267. "thread": 139667813142592,
  2268. "threadName": "MainThread"
  2269. }
  2270. ],
  2271. "msecs": 851.0,
  2272. "msg": "Initialising %s (load_all_on_init=%s).",
  2273. "name": "__tLogger__",
  2274. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2275. "process": 291252,
  2276. "processName": "MainProcess",
  2277. "relativeCreated": 100.41069984436035,
  2278. "stack_info": null,
  2279. "thread": 139667813142592,
  2280. "threadName": "MainThread",
  2281. "time_consumption": 0.0009860992431640625
  2282. },
  2283. {
  2284. "args": [
  2285. "property_cache_json"
  2286. ],
  2287. "asctime": "2024-09-22 12:01:39,852",
  2288. "created": 1726999299.8525712,
  2289. "exc_info": null,
  2290. "exc_text": null,
  2291. "filename": "test_internal_keys.py",
  2292. "funcName": "test_internal_keys",
  2293. "levelname": "DEBUG",
  2294. "levelno": 10,
  2295. "lineno": 21,
  2296. "message": "Extracting storage object from property_cache_json for comparison.",
  2297. "module": "test_internal_keys",
  2298. "moduleLogger": [
  2299. {
  2300. "args": [
  2301. "{'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}"
  2302. ],
  2303. "asctime": "2024-09-22 12:01:39,852",
  2304. "created": 1726999299.8524306,
  2305. "exc_info": null,
  2306. "exc_text": null,
  2307. "filename": "test_internal_keys.py",
  2308. "funcName": "test_internal_keys",
  2309. "levelname": "INFO",
  2310. "levelno": 20,
  2311. "lineno": 20,
  2312. "message": "Using storage object of cache class for comparison: {'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}",
  2313. "module": "test_internal_keys",
  2314. "msecs": 852.0,
  2315. "msg": "Using storage object of cache class for comparison: %s",
  2316. "name": "__unittest__",
  2317. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
  2318. "process": 291252,
  2319. "processName": "MainProcess",
  2320. "relativeCreated": 101.07731819152832,
  2321. "stack_info": null,
  2322. "thread": 139667813142592,
  2323. "threadName": "MainThread"
  2324. }
  2325. ],
  2326. "msecs": 852.0,
  2327. "msg": "Extracting storage object from %s for comparison.",
  2328. "name": "__tLogger__",
  2329. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
  2330. "process": 291252,
  2331. "processName": "MainProcess",
  2332. "relativeCreated": 101.21798515319824,
  2333. "stack_info": null,
  2334. "thread": 139667813142592,
  2335. "threadName": "MainThread",
  2336. "time_consumption": 0.00014066696166992188
  2337. },
  2338. {
  2339. "args": [
  2340. "{'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}",
  2341. "<class 'dict'>"
  2342. ],
  2343. "asctime": "2024-09-22 12:01:39,852",
  2344. "created": 1726999299.8529987,
  2345. "exc_info": null,
  2346. "exc_text": null,
  2347. "filename": "test.py",
  2348. "funcName": "equivalency_chk",
  2349. "levelname": "INFO",
  2350. "levelno": 20,
  2351. "lineno": 184,
  2352. "message": "Cache is correct (Content {'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'} and Type is <class 'dict'>).",
  2353. "module": "test",
  2354. "moduleLogger": [
  2355. {
  2356. "args": [
  2357. "Cache",
  2358. "{ '__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid' }",
  2359. "<class 'dict'>"
  2360. ],
  2361. "asctime": "2024-09-22 12:01:39,852",
  2362. "created": 1726999299.8527586,
  2363. "exc_info": null,
  2364. "exc_text": null,
  2365. "filename": "test.py",
  2366. "funcName": "__report_result__",
  2367. "levelname": "DEBUG",
  2368. "levelno": 10,
  2369. "lineno": 22,
  2370. "message": "Result (Cache): { '__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid' } (<class 'dict'>)",
  2371. "module": "test",
  2372. "msecs": 852.0,
  2373. "msg": "Result (%s): %s (%s)",
  2374. "name": "__unittest__",
  2375. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2376. "process": 291252,
  2377. "processName": "MainProcess",
  2378. "relativeCreated": 101.40538215637207,
  2379. "stack_info": null,
  2380. "thread": 139667813142592,
  2381. "threadName": "MainThread"
  2382. },
  2383. {
  2384. "args": [
  2385. "Cache",
  2386. "=",
  2387. "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
  2388. "<class 'dict'>"
  2389. ],
  2390. "asctime": "2024-09-22 12:01:39,852",
  2391. "created": 1726999299.8528724,
  2392. "exc_info": null,
  2393. "exc_text": null,
  2394. "filename": "test.py",
  2395. "funcName": "__report_expectation__",
  2396. "levelname": "DEBUG",
  2397. "levelno": 10,
  2398. "lineno": 26,
  2399. "message": "Expectation (Cache): result = { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } (<class 'dict'>)",
  2400. "module": "test",
  2401. "msecs": 852.0,
  2402. "msg": "Expectation (%s): result %s %s (%s)",
  2403. "name": "__unittest__",
  2404. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2405. "process": 291252,
  2406. "processName": "MainProcess",
  2407. "relativeCreated": 101.51910781860352,
  2408. "stack_info": null,
  2409. "thread": 139667813142592,
  2410. "threadName": "MainThread"
  2411. }
  2412. ],
  2413. "msecs": 852.0,
  2414. "msg": "Cache is correct (Content %s and Type is %s).",
  2415. "name": "__tLogger__",
  2416. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2417. "process": 291252,
  2418. "processName": "MainProcess",
  2419. "relativeCreated": 101.64546966552734,
  2420. "stack_info": null,
  2421. "thread": 139667813142592,
  2422. "threadName": "MainThread",
  2423. "time_consumption": 0.00012636184692382812
  2424. },
  2425. {
  2426. "args": [
  2427. "5",
  2428. "<class 'int'>"
  2429. ],
  2430. "asctime": "2024-09-22 12:01:39,853",
  2431. "created": 1726999299.8532274,
  2432. "exc_info": null,
  2433. "exc_text": null,
  2434. "filename": "test.py",
  2435. "funcName": "equivalency_chk",
  2436. "levelname": "INFO",
  2437. "levelno": 20,
  2438. "lineno": 184,
  2439. "message": "Keyfilter returnvalue for 5 (<class 'int'>) is correct (Content 5 and Type is <class 'int'>).",
  2440. "module": "test",
  2441. "moduleLogger": [
  2442. {
  2443. "args": [
  2444. "Keyfilter returnvalue for 5 (<class 'int'>)",
  2445. "5",
  2446. "<class 'int'>"
  2447. ],
  2448. "asctime": "2024-09-22 12:01:39,853",
  2449. "created": 1726999299.8531125,
  2450. "exc_info": null,
  2451. "exc_text": null,
  2452. "filename": "test.py",
  2453. "funcName": "__report_result__",
  2454. "levelname": "DEBUG",
  2455. "levelno": 10,
  2456. "lineno": 22,
  2457. "message": "Result (Keyfilter returnvalue for 5 (<class 'int'>)): 5 (<class 'int'>)",
  2458. "module": "test",
  2459. "msecs": 853.0,
  2460. "msg": "Result (%s): %s (%s)",
  2461. "name": "__unittest__",
  2462. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2463. "process": 291252,
  2464. "processName": "MainProcess",
  2465. "relativeCreated": 101.75919532775879,
  2466. "stack_info": null,
  2467. "thread": 139667813142592,
  2468. "threadName": "MainThread"
  2469. },
  2470. {
  2471. "args": [
  2472. "Keyfilter returnvalue for 5 (<class 'int'>)",
  2473. "=",
  2474. "5",
  2475. "<class 'int'>"
  2476. ],
  2477. "asctime": "2024-09-22 12:01:39,853",
  2478. "created": 1726999299.8531725,
  2479. "exc_info": null,
  2480. "exc_text": null,
  2481. "filename": "test.py",
  2482. "funcName": "__report_expectation__",
  2483. "levelname": "DEBUG",
  2484. "levelno": 10,
  2485. "lineno": 26,
  2486. "message": "Expectation (Keyfilter returnvalue for 5 (<class 'int'>)): result = 5 (<class 'int'>)",
  2487. "module": "test",
  2488. "msecs": 853.0,
  2489. "msg": "Expectation (%s): result %s %s (%s)",
  2490. "name": "__unittest__",
  2491. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2492. "process": 291252,
  2493. "processName": "MainProcess",
  2494. "relativeCreated": 101.81927680969238,
  2495. "stack_info": null,
  2496. "thread": 139667813142592,
  2497. "threadName": "MainThread"
  2498. }
  2499. ],
  2500. "msecs": 853.0,
  2501. "msg": "Keyfilter returnvalue for 5 (<class 'int'>) is correct (Content %s and Type is %s).",
  2502. "name": "__tLogger__",
  2503. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2504. "process": 291252,
  2505. "processName": "MainProcess",
  2506. "relativeCreated": 101.87411308288574,
  2507. "stack_info": null,
  2508. "thread": 139667813142592,
  2509. "threadName": "MainThread",
  2510. "time_consumption": 5.4836273193359375e-05
  2511. }
  2512. ],
  2513. "thread": 139667813142592,
  2514. "threadName": "MainThread",
  2515. "time_consumption": 0.0029048919677734375,
  2516. "time_finished": "2024-09-22 12:01:39,853",
  2517. "time_start": "2024-09-22 12:01:39,850"
  2518. },
  2519. "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object": {
  2520. "args": null,
  2521. "asctime": "2024-09-22 12:01:39,827",
  2522. "created": 1726999299.8279035,
  2523. "exc_info": null,
  2524. "exc_text": null,
  2525. "filename": "__init__.py",
  2526. "funcName": "testCase",
  2527. "levelname": "INFO",
  2528. "levelno": 20,
  2529. "lineno": 323,
  2530. "message": "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
  2531. "module": "__init__",
  2532. "moduleLogger": [],
  2533. "msecs": 827.0,
  2534. "msg": "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
  2535. "name": "__tLogger__",
  2536. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  2537. "process": 291252,
  2538. "processName": "MainProcess",
  2539. "relativeCreated": 76.55024528503418,
  2540. "stack_info": null,
  2541. "testcaseLogger": [
  2542. {
  2543. "args": [
  2544. "property_cache_json",
  2545. "False"
  2546. ],
  2547. "asctime": "2024-09-22 12:01:39,828",
  2548. "created": 1726999299.8284273,
  2549. "exc_info": null,
  2550. "exc_text": null,
  2551. "filename": "test_helpers.py",
  2552. "funcName": "init_cache",
  2553. "levelname": "DEBUG",
  2554. "levelno": 10,
  2555. "lineno": 24,
  2556. "message": "Initialising property_cache_json (load_all_on_init=False).",
  2557. "module": "test_helpers",
  2558. "moduleLogger": [
  2559. {
  2560. "args": [],
  2561. "asctime": "2024-09-22 12:01:39,828",
  2562. "created": 1726999299.8280785,
  2563. "exc_info": null,
  2564. "exc_text": null,
  2565. "filename": "test_helpers.py",
  2566. "funcName": "init_cache",
  2567. "levelname": "INFO",
  2568. "levelno": 20,
  2569. "lineno": 17,
  2570. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2571. "module": "test_helpers",
  2572. "msecs": 828.0,
  2573. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2574. "name": "__unittest__",
  2575. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2576. "process": 291252,
  2577. "processName": "MainProcess",
  2578. "relativeCreated": 76.72524452209473,
  2579. "stack_info": null,
  2580. "thread": 139667813142592,
  2581. "threadName": "MainThread"
  2582. },
  2583. {
  2584. "args": [
  2585. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.json"
  2586. ],
  2587. "asctime": "2024-09-22 12:01:39,828",
  2588. "created": 1726999299.8281946,
  2589. "exc_info": null,
  2590. "exc_text": null,
  2591. "filename": "test_helpers.py",
  2592. "funcName": "init_cache",
  2593. "levelname": "INFO",
  2594. "levelno": 20,
  2595. "lineno": 21,
  2596. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.json as cache file.",
  2597. "module": "test_helpers",
  2598. "msecs": 828.0,
  2599. "msg": "Initialising cached class with %s as cache file.",
  2600. "name": "__unittest__",
  2601. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2602. "process": 291252,
  2603. "processName": "MainProcess",
  2604. "relativeCreated": 76.84135437011719,
  2605. "stack_info": null,
  2606. "thread": 139667813142592,
  2607. "threadName": "MainThread"
  2608. }
  2609. ],
  2610. "msecs": 828.0,
  2611. "msg": "Initialising %s (load_all_on_init=%s).",
  2612. "name": "__tLogger__",
  2613. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2614. "process": 291252,
  2615. "processName": "MainProcess",
  2616. "relativeCreated": 77.07405090332031,
  2617. "stack_info": null,
  2618. "thread": 139667813142592,
  2619. "threadName": "MainThread",
  2620. "time_consumption": 0.000232696533203125
  2621. },
  2622. {
  2623. "args": [],
  2624. "asctime": "2024-09-22 12:01:39,830",
  2625. "created": 1726999299.8300378,
  2626. "exc_info": null,
  2627. "exc_text": null,
  2628. "filename": "test_no_load_on_init.py",
  2629. "funcName": "no_load_on_init",
  2630. "levelname": "DEBUG",
  2631. "levelno": 10,
  2632. "lineno": 18,
  2633. "message": "Partially initialising cache object by requesting some information.",
  2634. "module": "test_no_load_on_init",
  2635. "moduleLogger": [],
  2636. "msecs": 830.0,
  2637. "msg": "Partially initialising cache object by requesting some information.",
  2638. "name": "__tLogger__",
  2639. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  2640. "process": 291252,
  2641. "processName": "MainProcess",
  2642. "relativeCreated": 78.68456840515137,
  2643. "stack_info": null,
  2644. "thread": 139667813142592,
  2645. "threadName": "MainThread",
  2646. "time_consumption": 0.0
  2647. },
  2648. {
  2649. "args": [
  2650. "property_cache_json"
  2651. ],
  2652. "asctime": "2024-09-22 12:01:39,830",
  2653. "created": 1726999299.8303387,
  2654. "exc_info": null,
  2655. "exc_text": null,
  2656. "filename": "test_no_load_on_init.py",
  2657. "funcName": "no_load_on_init",
  2658. "levelname": "DEBUG",
  2659. "levelno": 10,
  2660. "lineno": 24,
  2661. "message": "Extracting storage object from property_cache_json for comparison.",
  2662. "module": "test_no_load_on_init",
  2663. "moduleLogger": [
  2664. {
  2665. "args": [
  2666. "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}"
  2667. ],
  2668. "asctime": "2024-09-22 12:01:39,830",
  2669. "created": 1726999299.8302698,
  2670. "exc_info": null,
  2671. "exc_text": null,
  2672. "filename": "test_no_load_on_init.py",
  2673. "funcName": "no_load_on_init",
  2674. "levelname": "INFO",
  2675. "levelno": 20,
  2676. "lineno": 23,
  2677. "message": "Using storage object of cache class for comparison: {'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
  2678. "module": "test_no_load_on_init",
  2679. "msecs": 830.0,
  2680. "msg": "Using storage object of cache class for comparison: %s",
  2681. "name": "__unittest__",
  2682. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  2683. "process": 291252,
  2684. "processName": "MainProcess",
  2685. "relativeCreated": 78.91654968261719,
  2686. "stack_info": null,
  2687. "thread": 139667813142592,
  2688. "threadName": "MainThread"
  2689. }
  2690. ],
  2691. "msecs": 830.0,
  2692. "msg": "Extracting storage object from %s for comparison.",
  2693. "name": "__tLogger__",
  2694. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  2695. "process": 291252,
  2696. "processName": "MainProcess",
  2697. "relativeCreated": 78.98545265197754,
  2698. "stack_info": null,
  2699. "thread": 139667813142592,
  2700. "threadName": "MainThread",
  2701. "time_consumption": 6.890296936035156e-05
  2702. },
  2703. {
  2704. "args": [
  2705. "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
  2706. "<class 'dict'>"
  2707. ],
  2708. "asctime": "2024-09-22 12:01:39,830",
  2709. "created": 1726999299.8305895,
  2710. "exc_info": null,
  2711. "exc_text": null,
  2712. "filename": "test.py",
  2713. "funcName": "equivalency_chk",
  2714. "levelname": "INFO",
  2715. "levelno": 20,
  2716. "lineno": 184,
  2717. "message": "Cache object is correct (Content {'integer': 17, 'str': 'string', 'unicode': 'unicode'} and Type is <class 'dict'>).",
  2718. "module": "test",
  2719. "moduleLogger": [
  2720. {
  2721. "args": [
  2722. "Cache object",
  2723. "{ 'integer': 17, 'str': 'string', 'unicode': 'unicode' }",
  2724. "<class 'dict'>"
  2725. ],
  2726. "asctime": "2024-09-22 12:01:39,830",
  2727. "created": 1726999299.8304498,
  2728. "exc_info": null,
  2729. "exc_text": null,
  2730. "filename": "test.py",
  2731. "funcName": "__report_result__",
  2732. "levelname": "DEBUG",
  2733. "levelno": 10,
  2734. "lineno": 22,
  2735. "message": "Result (Cache object): { 'integer': 17, 'str': 'string', 'unicode': 'unicode' } (<class 'dict'>)",
  2736. "module": "test",
  2737. "msecs": 830.0,
  2738. "msg": "Result (%s): %s (%s)",
  2739. "name": "__unittest__",
  2740. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2741. "process": 291252,
  2742. "processName": "MainProcess",
  2743. "relativeCreated": 79.09655570983887,
  2744. "stack_info": null,
  2745. "thread": 139667813142592,
  2746. "threadName": "MainThread"
  2747. },
  2748. {
  2749. "args": [
  2750. "Cache object",
  2751. "=",
  2752. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17 }",
  2753. "<class 'dict'>"
  2754. ],
  2755. "asctime": "2024-09-22 12:01:39,830",
  2756. "created": 1726999299.8305173,
  2757. "exc_info": null,
  2758. "exc_text": null,
  2759. "filename": "test.py",
  2760. "funcName": "__report_expectation__",
  2761. "levelname": "DEBUG",
  2762. "levelno": 10,
  2763. "lineno": 26,
  2764. "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17 } (<class 'dict'>)",
  2765. "module": "test",
  2766. "msecs": 830.0,
  2767. "msg": "Expectation (%s): result %s %s (%s)",
  2768. "name": "__unittest__",
  2769. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2770. "process": 291252,
  2771. "processName": "MainProcess",
  2772. "relativeCreated": 79.16402816772461,
  2773. "stack_info": null,
  2774. "thread": 139667813142592,
  2775. "threadName": "MainThread"
  2776. }
  2777. ],
  2778. "msecs": 830.0,
  2779. "msg": "Cache object is correct (Content %s and Type is %s).",
  2780. "name": "__tLogger__",
  2781. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2782. "process": 291252,
  2783. "processName": "MainProcess",
  2784. "relativeCreated": 79.23626899719238,
  2785. "stack_info": null,
  2786. "thread": 139667813142592,
  2787. "threadName": "MainThread",
  2788. "time_consumption": 7.224082946777344e-05
  2789. }
  2790. ],
  2791. "thread": 139667813142592,
  2792. "threadName": "MainThread",
  2793. "time_consumption": 0.002686023712158203,
  2794. "time_finished": "2024-09-22 12:01:39,830",
  2795. "time_start": "2024-09-22 12:01:39,827"
  2796. },
  2797. "caching.property_cache_pickle: Test cached data (full init)": {
  2798. "args": null,
  2799. "asctime": "2024-09-22 12:01:39,856",
  2800. "created": 1726999299.8566031,
  2801. "exc_info": null,
  2802. "exc_text": null,
  2803. "filename": "__init__.py",
  2804. "funcName": "testCase",
  2805. "levelname": "INFO",
  2806. "levelno": 20,
  2807. "lineno": 323,
  2808. "message": "caching.property_cache_pickle: Test cached data (full init)",
  2809. "module": "__init__",
  2810. "moduleLogger": [],
  2811. "msecs": 856.0,
  2812. "msg": "caching.property_cache_pickle: Test cached data (full init)",
  2813. "name": "__tLogger__",
  2814. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  2815. "process": 291252,
  2816. "processName": "MainProcess",
  2817. "relativeCreated": 105.24988174438477,
  2818. "stack_info": null,
  2819. "testcaseLogger": [
  2820. {
  2821. "args": [
  2822. "property_cache_pickle",
  2823. "True"
  2824. ],
  2825. "asctime": "2024-09-22 12:01:39,857",
  2826. "created": 1726999299.857356,
  2827. "exc_info": null,
  2828. "exc_text": null,
  2829. "filename": "test_helpers.py",
  2830. "funcName": "init_cache",
  2831. "levelname": "DEBUG",
  2832. "levelno": 10,
  2833. "lineno": 24,
  2834. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  2835. "module": "test_helpers",
  2836. "moduleLogger": [
  2837. {
  2838. "args": [],
  2839. "asctime": "2024-09-22 12:01:39,856",
  2840. "created": 1726999299.856716,
  2841. "exc_info": null,
  2842. "exc_text": null,
  2843. "filename": "test_helpers.py",
  2844. "funcName": "init_cache",
  2845. "levelname": "INFO",
  2846. "levelno": 20,
  2847. "lineno": 17,
  2848. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2849. "module": "test_helpers",
  2850. "msecs": 856.0,
  2851. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  2852. "name": "__unittest__",
  2853. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2854. "process": 291252,
  2855. "processName": "MainProcess",
  2856. "relativeCreated": 105.3626537322998,
  2857. "stack_info": null,
  2858. "thread": 139667813142592,
  2859. "threadName": "MainThread"
  2860. },
  2861. {
  2862. "args": [
  2863. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
  2864. ],
  2865. "asctime": "2024-09-22 12:01:39,856",
  2866. "created": 1726999299.8568048,
  2867. "exc_info": null,
  2868. "exc_text": null,
  2869. "filename": "test_helpers.py",
  2870. "funcName": "init_cache",
  2871. "levelname": "INFO",
  2872. "levelno": 20,
  2873. "lineno": 21,
  2874. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl as cache file.",
  2875. "module": "test_helpers",
  2876. "msecs": 856.0,
  2877. "msg": "Initialising cached class with %s as cache file.",
  2878. "name": "__unittest__",
  2879. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2880. "process": 291252,
  2881. "processName": "MainProcess",
  2882. "relativeCreated": 105.45158386230469,
  2883. "stack_info": null,
  2884. "thread": 139667813142592,
  2885. "threadName": "MainThread"
  2886. }
  2887. ],
  2888. "msecs": 857.0,
  2889. "msg": "Initialising %s (load_all_on_init=%s).",
  2890. "name": "__tLogger__",
  2891. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  2892. "process": 291252,
  2893. "processName": "MainProcess",
  2894. "relativeCreated": 106.0028076171875,
  2895. "stack_info": null,
  2896. "thread": 139667813142592,
  2897. "threadName": "MainThread",
  2898. "time_consumption": 0.0005512237548828125
  2899. },
  2900. {
  2901. "args": [],
  2902. "asctime": "2024-09-22 12:01:39,857",
  2903. "created": 1726999299.8575716,
  2904. "exc_info": null,
  2905. "exc_text": null,
  2906. "filename": "test_cached_data.py",
  2907. "funcName": "cached_data",
  2908. "levelname": "DEBUG",
  2909. "levelno": 10,
  2910. "lineno": 19,
  2911. "message": "Collecting data from cache instance.",
  2912. "module": "test_cached_data",
  2913. "moduleLogger": [],
  2914. "msecs": 857.0,
  2915. "msg": "Collecting data from cache instance.",
  2916. "name": "__tLogger__",
  2917. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
  2918. "process": 291252,
  2919. "processName": "MainProcess",
  2920. "relativeCreated": 106.21833801269531,
  2921. "stack_info": null,
  2922. "thread": 139667813142592,
  2923. "threadName": "MainThread",
  2924. "time_consumption": 0.0
  2925. },
  2926. {
  2927. "args": [
  2928. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
  2929. "<class 'dict'>"
  2930. ],
  2931. "asctime": "2024-09-22 12:01:39,857",
  2932. "created": 1726999299.8579214,
  2933. "exc_info": null,
  2934. "exc_text": null,
  2935. "filename": "test.py",
  2936. "funcName": "equivalency_chk",
  2937. "levelname": "INFO",
  2938. "levelno": 20,
  2939. "lineno": 184,
  2940. "message": "Cached data is correct (Content {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'} and Type is <class 'dict'>).",
  2941. "module": "test",
  2942. "moduleLogger": [
  2943. {
  2944. "args": [
  2945. "Cached data",
  2946. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  2947. "<class 'dict'>"
  2948. ],
  2949. "asctime": "2024-09-22 12:01:39,857",
  2950. "created": 1726999299.8577013,
  2951. "exc_info": null,
  2952. "exc_text": null,
  2953. "filename": "test.py",
  2954. "funcName": "__report_result__",
  2955. "levelname": "DEBUG",
  2956. "levelno": 10,
  2957. "lineno": 22,
  2958. "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  2959. "module": "test",
  2960. "msecs": 857.0,
  2961. "msg": "Result (%s): %s (%s)",
  2962. "name": "__unittest__",
  2963. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2964. "process": 291252,
  2965. "processName": "MainProcess",
  2966. "relativeCreated": 106.34803771972656,
  2967. "stack_info": null,
  2968. "thread": 139667813142592,
  2969. "threadName": "MainThread"
  2970. },
  2971. {
  2972. "args": [
  2973. "Cached data",
  2974. "=",
  2975. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  2976. "<class 'dict'>"
  2977. ],
  2978. "asctime": "2024-09-22 12:01:39,857",
  2979. "created": 1726999299.857793,
  2980. "exc_info": null,
  2981. "exc_text": null,
  2982. "filename": "test.py",
  2983. "funcName": "__report_expectation__",
  2984. "levelname": "DEBUG",
  2985. "levelno": 10,
  2986. "lineno": 26,
  2987. "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  2988. "module": "test",
  2989. "msecs": 857.0,
  2990. "msg": "Expectation (%s): result %s %s (%s)",
  2991. "name": "__unittest__",
  2992. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  2993. "process": 291252,
  2994. "processName": "MainProcess",
  2995. "relativeCreated": 106.43982887268066,
  2996. "stack_info": null,
  2997. "thread": 139667813142592,
  2998. "threadName": "MainThread"
  2999. }
  3000. ],
  3001. "msecs": 857.0,
  3002. "msg": "Cached data is correct (Content %s and Type is %s).",
  3003. "name": "__tLogger__",
  3004. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3005. "process": 291252,
  3006. "processName": "MainProcess",
  3007. "relativeCreated": 106.5680980682373,
  3008. "stack_info": null,
  3009. "thread": 139667813142592,
  3010. "threadName": "MainThread",
  3011. "time_consumption": 0.00012826919555664062
  3012. }
  3013. ],
  3014. "thread": 139667813142592,
  3015. "threadName": "MainThread",
  3016. "time_consumption": 0.001318216323852539,
  3017. "time_finished": "2024-09-22 12:01:39,857",
  3018. "time_start": "2024-09-22 12:01:39,856"
  3019. },
  3020. "caching.property_cache_pickle: Test cached data (partially init)": {
  3021. "args": null,
  3022. "asctime": "2024-09-22 12:01:39,858",
  3023. "created": 1726999299.8581398,
  3024. "exc_info": null,
  3025. "exc_text": null,
  3026. "filename": "__init__.py",
  3027. "funcName": "testCase",
  3028. "levelname": "INFO",
  3029. "levelno": 20,
  3030. "lineno": 323,
  3031. "message": "caching.property_cache_pickle: Test cached data (partially init)",
  3032. "module": "__init__",
  3033. "moduleLogger": [],
  3034. "msecs": 858.0,
  3035. "msg": "caching.property_cache_pickle: Test cached data (partially init)",
  3036. "name": "__tLogger__",
  3037. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  3038. "process": 291252,
  3039. "processName": "MainProcess",
  3040. "relativeCreated": 106.78648948669434,
  3041. "stack_info": null,
  3042. "testcaseLogger": [
  3043. {
  3044. "args": [
  3045. "property_cache_pickle",
  3046. "True"
  3047. ],
  3048. "asctime": "2024-09-22 12:01:39,858",
  3049. "created": 1726999299.858887,
  3050. "exc_info": null,
  3051. "exc_text": null,
  3052. "filename": "test_helpers.py",
  3053. "funcName": "init_cache",
  3054. "levelname": "DEBUG",
  3055. "levelno": 10,
  3056. "lineno": 24,
  3057. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  3058. "module": "test_helpers",
  3059. "moduleLogger": [
  3060. {
  3061. "args": [],
  3062. "asctime": "2024-09-22 12:01:39,858",
  3063. "created": 1726999299.858249,
  3064. "exc_info": null,
  3065. "exc_text": null,
  3066. "filename": "test_helpers.py",
  3067. "funcName": "init_cache",
  3068. "levelname": "INFO",
  3069. "levelno": 20,
  3070. "lineno": 17,
  3071. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3072. "module": "test_helpers",
  3073. "msecs": 858.0,
  3074. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3075. "name": "__unittest__",
  3076. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3077. "process": 291252,
  3078. "processName": "MainProcess",
  3079. "relativeCreated": 106.89568519592285,
  3080. "stack_info": null,
  3081. "thread": 139667813142592,
  3082. "threadName": "MainThread"
  3083. },
  3084. {
  3085. "args": [
  3086. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.pkl"
  3087. ],
  3088. "asctime": "2024-09-22 12:01:39,858",
  3089. "created": 1726999299.8583405,
  3090. "exc_info": null,
  3091. "exc_text": null,
  3092. "filename": "test_helpers.py",
  3093. "funcName": "init_cache",
  3094. "levelname": "INFO",
  3095. "levelno": 20,
  3096. "lineno": 21,
  3097. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.pkl as cache file.",
  3098. "module": "test_helpers",
  3099. "msecs": 858.0,
  3100. "msg": "Initialising cached class with %s as cache file.",
  3101. "name": "__unittest__",
  3102. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3103. "process": 291252,
  3104. "processName": "MainProcess",
  3105. "relativeCreated": 106.98723793029785,
  3106. "stack_info": null,
  3107. "thread": 139667813142592,
  3108. "threadName": "MainThread"
  3109. }
  3110. ],
  3111. "msecs": 858.0,
  3112. "msg": "Initialising %s (load_all_on_init=%s).",
  3113. "name": "__tLogger__",
  3114. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3115. "process": 291252,
  3116. "processName": "MainProcess",
  3117. "relativeCreated": 107.53369331359863,
  3118. "stack_info": null,
  3119. "thread": 139667813142592,
  3120. "threadName": "MainThread",
  3121. "time_consumption": 0.0005464553833007812
  3122. },
  3123. {
  3124. "args": [],
  3125. "asctime": "2024-09-22 12:01:39,859",
  3126. "created": 1726999299.8591032,
  3127. "exc_info": null,
  3128. "exc_text": null,
  3129. "filename": "test_cached_data.py",
  3130. "funcName": "cached_data",
  3131. "levelname": "DEBUG",
  3132. "levelno": 10,
  3133. "lineno": 19,
  3134. "message": "Collecting data from cache instance.",
  3135. "module": "test_cached_data",
  3136. "moduleLogger": [],
  3137. "msecs": 859.0,
  3138. "msg": "Collecting data from cache instance.",
  3139. "name": "__tLogger__",
  3140. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
  3141. "process": 291252,
  3142. "processName": "MainProcess",
  3143. "relativeCreated": 107.74993896484375,
  3144. "stack_info": null,
  3145. "thread": 139667813142592,
  3146. "threadName": "MainThread",
  3147. "time_consumption": 0.0
  3148. },
  3149. {
  3150. "args": [
  3151. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
  3152. "<class 'dict'>"
  3153. ],
  3154. "asctime": "2024-09-22 12:01:39,859",
  3155. "created": 1726999299.8594627,
  3156. "exc_info": null,
  3157. "exc_text": null,
  3158. "filename": "test.py",
  3159. "funcName": "equivalency_chk",
  3160. "levelname": "INFO",
  3161. "levelno": 20,
  3162. "lineno": 184,
  3163. "message": "Cached data is correct (Content {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'} and Type is <class 'dict'>).",
  3164. "module": "test",
  3165. "moduleLogger": [
  3166. {
  3167. "args": [
  3168. "Cached data",
  3169. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  3170. "<class 'dict'>"
  3171. ],
  3172. "asctime": "2024-09-22 12:01:39,859",
  3173. "created": 1726999299.8592415,
  3174. "exc_info": null,
  3175. "exc_text": null,
  3176. "filename": "test.py",
  3177. "funcName": "__report_result__",
  3178. "levelname": "DEBUG",
  3179. "levelno": 10,
  3180. "lineno": 22,
  3181. "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  3182. "module": "test",
  3183. "msecs": 859.0,
  3184. "msg": "Result (%s): %s (%s)",
  3185. "name": "__unittest__",
  3186. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3187. "process": 291252,
  3188. "processName": "MainProcess",
  3189. "relativeCreated": 107.88822174072266,
  3190. "stack_info": null,
  3191. "thread": 139667813142592,
  3192. "threadName": "MainThread"
  3193. },
  3194. {
  3195. "args": [
  3196. "Cached data",
  3197. "=",
  3198. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
  3199. "<class 'dict'>"
  3200. ],
  3201. "asctime": "2024-09-22 12:01:39,859",
  3202. "created": 1726999299.8593345,
  3203. "exc_info": null,
  3204. "exc_text": null,
  3205. "filename": "test.py",
  3206. "funcName": "__report_expectation__",
  3207. "levelname": "DEBUG",
  3208. "levelno": 10,
  3209. "lineno": 26,
  3210. "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } (<class 'dict'>)",
  3211. "module": "test",
  3212. "msecs": 859.0,
  3213. "msg": "Expectation (%s): result %s %s (%s)",
  3214. "name": "__unittest__",
  3215. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3216. "process": 291252,
  3217. "processName": "MainProcess",
  3218. "relativeCreated": 107.98120498657227,
  3219. "stack_info": null,
  3220. "thread": 139667813142592,
  3221. "threadName": "MainThread"
  3222. }
  3223. ],
  3224. "msecs": 859.0,
  3225. "msg": "Cached data is correct (Content %s and Type is %s).",
  3226. "name": "__tLogger__",
  3227. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3228. "process": 291252,
  3229. "processName": "MainProcess",
  3230. "relativeCreated": 108.1094741821289,
  3231. "stack_info": null,
  3232. "thread": 139667813142592,
  3233. "threadName": "MainThread",
  3234. "time_consumption": 0.00012826919555664062
  3235. }
  3236. ],
  3237. "thread": 139667813142592,
  3238. "threadName": "MainThread",
  3239. "time_consumption": 0.0013229846954345703,
  3240. "time_finished": "2024-09-22 12:01:39,859",
  3241. "time_start": "2024-09-22 12:01:39,858"
  3242. },
  3243. "caching.property_cache_pickle: Test execution of save callback (full init)": {
  3244. "args": null,
  3245. "asctime": "2024-09-22 12:01:39,868",
  3246. "created": 1726999299.86894,
  3247. "exc_info": null,
  3248. "exc_text": null,
  3249. "filename": "__init__.py",
  3250. "funcName": "testCase",
  3251. "levelname": "INFO",
  3252. "levelno": 20,
  3253. "lineno": 323,
  3254. "message": "caching.property_cache_pickle: Test execution of save callback (full init)",
  3255. "module": "__init__",
  3256. "moduleLogger": [],
  3257. "msecs": 868.0,
  3258. "msg": "caching.property_cache_pickle: Test execution of save callback (full init)",
  3259. "name": "__tLogger__",
  3260. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  3261. "process": 291252,
  3262. "processName": "MainProcess",
  3263. "relativeCreated": 117.58685111999512,
  3264. "stack_info": null,
  3265. "testcaseLogger": [
  3266. {
  3267. "args": [],
  3268. "asctime": "2024-09-22 12:01:39,869",
  3269. "created": 1726999299.8690636,
  3270. "exc_info": null,
  3271. "exc_text": null,
  3272. "filename": "test_save_callback.py",
  3273. "funcName": "save_callback",
  3274. "levelname": "DEBUG",
  3275. "levelno": 10,
  3276. "lineno": 26,
  3277. "message": "Installing save_callback, which sets a variable to True on execution.",
  3278. "module": "test_save_callback",
  3279. "moduleLogger": [],
  3280. "msecs": 869.0,
  3281. "msg": "Installing save_callback, which sets a variable to True on execution.",
  3282. "name": "__tLogger__",
  3283. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_save_callback.py",
  3284. "process": 291252,
  3285. "processName": "MainProcess",
  3286. "relativeCreated": 117.71035194396973,
  3287. "stack_info": null,
  3288. "thread": 139667813142592,
  3289. "threadName": "MainThread",
  3290. "time_consumption": 0.0
  3291. },
  3292. {
  3293. "args": [
  3294. "True",
  3295. "<class 'bool'>"
  3296. ],
  3297. "asctime": "2024-09-22 12:01:39,869",
  3298. "created": 1726999299.869391,
  3299. "exc_info": null,
  3300. "exc_text": null,
  3301. "filename": "test.py",
  3302. "funcName": "equivalency_chk",
  3303. "levelname": "INFO",
  3304. "levelno": 20,
  3305. "lineno": 184,
  3306. "message": "Save callback execution variable is correct (Content True and Type is <class 'bool'>).",
  3307. "module": "test",
  3308. "moduleLogger": [
  3309. {
  3310. "args": [
  3311. "Save callback execution variable",
  3312. "True",
  3313. "<class 'bool'>"
  3314. ],
  3315. "asctime": "2024-09-22 12:01:39,869",
  3316. "created": 1726999299.8692632,
  3317. "exc_info": null,
  3318. "exc_text": null,
  3319. "filename": "test.py",
  3320. "funcName": "__report_result__",
  3321. "levelname": "DEBUG",
  3322. "levelno": 10,
  3323. "lineno": 22,
  3324. "message": "Result (Save callback execution variable): True (<class 'bool'>)",
  3325. "module": "test",
  3326. "msecs": 869.0,
  3327. "msg": "Result (%s): %s (%s)",
  3328. "name": "__unittest__",
  3329. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3330. "process": 291252,
  3331. "processName": "MainProcess",
  3332. "relativeCreated": 117.90990829467773,
  3333. "stack_info": null,
  3334. "thread": 139667813142592,
  3335. "threadName": "MainThread"
  3336. },
  3337. {
  3338. "args": [
  3339. "Save callback execution variable",
  3340. "=",
  3341. "True",
  3342. "<class 'bool'>"
  3343. ],
  3344. "asctime": "2024-09-22 12:01:39,869",
  3345. "created": 1726999299.8693337,
  3346. "exc_info": null,
  3347. "exc_text": null,
  3348. "filename": "test.py",
  3349. "funcName": "__report_expectation__",
  3350. "levelname": "DEBUG",
  3351. "levelno": 10,
  3352. "lineno": 26,
  3353. "message": "Expectation (Save callback execution variable): result = True (<class 'bool'>)",
  3354. "module": "test",
  3355. "msecs": 869.0,
  3356. "msg": "Expectation (%s): result %s %s (%s)",
  3357. "name": "__unittest__",
  3358. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3359. "process": 291252,
  3360. "processName": "MainProcess",
  3361. "relativeCreated": 117.9804801940918,
  3362. "stack_info": null,
  3363. "thread": 139667813142592,
  3364. "threadName": "MainThread"
  3365. }
  3366. ],
  3367. "msecs": 869.0,
  3368. "msg": "Save callback execution variable is correct (Content %s and Type is %s).",
  3369. "name": "__tLogger__",
  3370. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3371. "process": 291252,
  3372. "processName": "MainProcess",
  3373. "relativeCreated": 118.03770065307617,
  3374. "stack_info": null,
  3375. "thread": 139667813142592,
  3376. "threadName": "MainThread",
  3377. "time_consumption": 5.7220458984375e-05
  3378. }
  3379. ],
  3380. "thread": 139667813142592,
  3381. "threadName": "MainThread",
  3382. "time_consumption": 0.0004508495330810547,
  3383. "time_finished": "2024-09-22 12:01:39,869",
  3384. "time_start": "2024-09-22 12:01:39,868"
  3385. },
  3386. "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object": {
  3387. "args": null,
  3388. "asctime": "2024-09-22 12:01:39,853",
  3389. "created": 1726999299.8534203,
  3390. "exc_info": null,
  3391. "exc_text": null,
  3392. "filename": "__init__.py",
  3393. "funcName": "testCase",
  3394. "levelname": "INFO",
  3395. "levelno": 20,
  3396. "lineno": 323,
  3397. "message": "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
  3398. "module": "__init__",
  3399. "moduleLogger": [],
  3400. "msecs": 853.0,
  3401. "msg": "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
  3402. "name": "__tLogger__",
  3403. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  3404. "process": 291252,
  3405. "processName": "MainProcess",
  3406. "relativeCreated": 102.0669937133789,
  3407. "stack_info": null,
  3408. "testcaseLogger": [
  3409. {
  3410. "args": [
  3411. "property_cache_pickle",
  3412. "True"
  3413. ],
  3414. "asctime": "2024-09-22 12:01:39,854",
  3415. "created": 1726999299.8542874,
  3416. "exc_info": null,
  3417. "exc_text": null,
  3418. "filename": "test_helpers.py",
  3419. "funcName": "init_cache",
  3420. "levelname": "DEBUG",
  3421. "levelno": 10,
  3422. "lineno": 24,
  3423. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  3424. "module": "test_helpers",
  3425. "moduleLogger": [
  3426. {
  3427. "args": [],
  3428. "asctime": "2024-09-22 12:01:39,853",
  3429. "created": 1726999299.8535473,
  3430. "exc_info": null,
  3431. "exc_text": null,
  3432. "filename": "test_helpers.py",
  3433. "funcName": "init_cache",
  3434. "levelname": "INFO",
  3435. "levelno": 20,
  3436. "lineno": 17,
  3437. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3438. "module": "test_helpers",
  3439. "msecs": 853.0,
  3440. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3441. "name": "__unittest__",
  3442. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3443. "process": 291252,
  3444. "processName": "MainProcess",
  3445. "relativeCreated": 102.19407081604004,
  3446. "stack_info": null,
  3447. "thread": 139667813142592,
  3448. "threadName": "MainThread"
  3449. },
  3450. {
  3451. "args": [
  3452. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.pkl"
  3453. ],
  3454. "asctime": "2024-09-22 12:01:39,853",
  3455. "created": 1726999299.8536735,
  3456. "exc_info": null,
  3457. "exc_text": null,
  3458. "filename": "test_helpers.py",
  3459. "funcName": "init_cache",
  3460. "levelname": "INFO",
  3461. "levelno": 20,
  3462. "lineno": 21,
  3463. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.pkl as cache file.",
  3464. "module": "test_helpers",
  3465. "msecs": 853.0,
  3466. "msg": "Initialising cached class with %s as cache file.",
  3467. "name": "__unittest__",
  3468. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3469. "process": 291252,
  3470. "processName": "MainProcess",
  3471. "relativeCreated": 102.32019424438477,
  3472. "stack_info": null,
  3473. "thread": 139667813142592,
  3474. "threadName": "MainThread"
  3475. }
  3476. ],
  3477. "msecs": 854.0,
  3478. "msg": "Initialising %s (load_all_on_init=%s).",
  3479. "name": "__tLogger__",
  3480. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3481. "process": 291252,
  3482. "processName": "MainProcess",
  3483. "relativeCreated": 102.93412208557129,
  3484. "stack_info": null,
  3485. "thread": 139667813142592,
  3486. "threadName": "MainThread",
  3487. "time_consumption": 0.0006139278411865234
  3488. },
  3489. {
  3490. "args": [
  3491. "property_cache_pickle"
  3492. ],
  3493. "asctime": "2024-09-22 12:01:39,854",
  3494. "created": 1726999299.8545618,
  3495. "exc_info": null,
  3496. "exc_text": null,
  3497. "filename": "test_load_on_init.py",
  3498. "funcName": "load_on_init",
  3499. "levelname": "DEBUG",
  3500. "levelno": 10,
  3501. "lineno": 21,
  3502. "message": "Extracting storage object from property_cache_pickle for comparison.",
  3503. "module": "test_load_on_init",
  3504. "moduleLogger": [
  3505. {
  3506. "args": [
  3507. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}"
  3508. ],
  3509. "asctime": "2024-09-22 12:01:39,854",
  3510. "created": 1726999299.8544931,
  3511. "exc_info": null,
  3512. "exc_text": null,
  3513. "filename": "test_load_on_init.py",
  3514. "funcName": "load_on_init",
  3515. "levelname": "INFO",
  3516. "levelno": 20,
  3517. "lineno": 20,
  3518. "message": "Using storage object of cache class for comparison: {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}",
  3519. "module": "test_load_on_init",
  3520. "msecs": 854.0,
  3521. "msg": "Using storage object of cache class for comparison: %s",
  3522. "name": "__unittest__",
  3523. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
  3524. "process": 291252,
  3525. "processName": "MainProcess",
  3526. "relativeCreated": 103.13987731933594,
  3527. "stack_info": null,
  3528. "thread": 139667813142592,
  3529. "threadName": "MainThread"
  3530. }
  3531. ],
  3532. "msecs": 854.0,
  3533. "msg": "Extracting storage object from %s for comparison.",
  3534. "name": "__tLogger__",
  3535. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
  3536. "process": 291252,
  3537. "processName": "MainProcess",
  3538. "relativeCreated": 103.20854187011719,
  3539. "stack_info": null,
  3540. "thread": 139667813142592,
  3541. "threadName": "MainThread",
  3542. "time_consumption": 6.866455078125e-05
  3543. },
  3544. {
  3545. "args": [
  3546. "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}",
  3547. "<class 'dict'>"
  3548. ],
  3549. "asctime": "2024-09-22 12:01:39,854",
  3550. "created": 1726999299.8549182,
  3551. "exc_info": null,
  3552. "exc_text": null,
  3553. "filename": "test.py",
  3554. "funcName": "equivalency_chk",
  3555. "levelname": "INFO",
  3556. "levelno": 20,
  3557. "lineno": 184,
  3558. "message": "Cache object is correct (Content {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}} and Type is <class 'dict'>).",
  3559. "module": "test",
  3560. "moduleLogger": [
  3561. {
  3562. "args": [
  3563. "Cache object",
  3564. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
  3565. "<class 'dict'>"
  3566. ],
  3567. "asctime": "2024-09-22 12:01:39,854",
  3568. "created": 1726999299.8546965,
  3569. "exc_info": null,
  3570. "exc_text": null,
  3571. "filename": "test.py",
  3572. "funcName": "__report_result__",
  3573. "levelname": "DEBUG",
  3574. "levelno": 10,
  3575. "lineno": 22,
  3576. "message": "Result (Cache object): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } (<class 'dict'>)",
  3577. "module": "test",
  3578. "msecs": 854.0,
  3579. "msg": "Result (%s): %s (%s)",
  3580. "name": "__unittest__",
  3581. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3582. "process": 291252,
  3583. "processName": "MainProcess",
  3584. "relativeCreated": 103.34324836730957,
  3585. "stack_info": null,
  3586. "thread": 139667813142592,
  3587. "threadName": "MainThread"
  3588. },
  3589. {
  3590. "args": [
  3591. "Cache object",
  3592. "=",
  3593. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
  3594. "<class 'dict'>"
  3595. ],
  3596. "asctime": "2024-09-22 12:01:39,854",
  3597. "created": 1726999299.8547854,
  3598. "exc_info": null,
  3599. "exc_text": null,
  3600. "filename": "test.py",
  3601. "funcName": "__report_expectation__",
  3602. "levelname": "DEBUG",
  3603. "levelno": 10,
  3604. "lineno": 26,
  3605. "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } (<class 'dict'>)",
  3606. "module": "test",
  3607. "msecs": 854.0,
  3608. "msg": "Expectation (%s): result %s %s (%s)",
  3609. "name": "__unittest__",
  3610. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3611. "process": 291252,
  3612. "processName": "MainProcess",
  3613. "relativeCreated": 103.43217849731445,
  3614. "stack_info": null,
  3615. "thread": 139667813142592,
  3616. "threadName": "MainThread"
  3617. }
  3618. ],
  3619. "msecs": 854.0,
  3620. "msg": "Cache object is correct (Content %s and Type is %s).",
  3621. "name": "__tLogger__",
  3622. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3623. "process": 291252,
  3624. "processName": "MainProcess",
  3625. "relativeCreated": 103.56497764587402,
  3626. "stack_info": null,
  3627. "thread": 139667813142592,
  3628. "threadName": "MainThread",
  3629. "time_consumption": 0.0001327991485595703
  3630. }
  3631. ],
  3632. "thread": 139667813142592,
  3633. "threadName": "MainThread",
  3634. "time_consumption": 0.0014979839324951172,
  3635. "time_finished": "2024-09-22 12:01:39,854",
  3636. "time_start": "2024-09-22 12:01:39,853"
  3637. },
  3638. "caching.property_cache_pickle: Test get from source caused by changed uid (full init)": {
  3639. "args": null,
  3640. "asctime": "2024-09-22 12:01:39,863",
  3641. "created": 1726999299.863558,
  3642. "exc_info": null,
  3643. "exc_text": null,
  3644. "filename": "__init__.py",
  3645. "funcName": "testCase",
  3646. "levelname": "INFO",
  3647. "levelno": 20,
  3648. "lineno": 323,
  3649. "message": "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
  3650. "module": "__init__",
  3651. "moduleLogger": [],
  3652. "msecs": 863.0,
  3653. "msg": "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
  3654. "name": "__tLogger__",
  3655. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  3656. "process": 291252,
  3657. "processName": "MainProcess",
  3658. "relativeCreated": 112.20479011535645,
  3659. "stack_info": null,
  3660. "testcaseLogger": [
  3661. {
  3662. "args": [
  3663. "property_cache_pickle",
  3664. "True"
  3665. ],
  3666. "asctime": "2024-09-22 12:01:39,864",
  3667. "created": 1726999299.8643355,
  3668. "exc_info": null,
  3669. "exc_text": null,
  3670. "filename": "test_helpers.py",
  3671. "funcName": "init_cache",
  3672. "levelname": "DEBUG",
  3673. "levelno": 10,
  3674. "lineno": 24,
  3675. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  3676. "module": "test_helpers",
  3677. "moduleLogger": [
  3678. {
  3679. "args": [],
  3680. "asctime": "2024-09-22 12:01:39,863",
  3681. "created": 1726999299.8636723,
  3682. "exc_info": null,
  3683. "exc_text": null,
  3684. "filename": "test_helpers.py",
  3685. "funcName": "init_cache",
  3686. "levelname": "INFO",
  3687. "levelno": 20,
  3688. "lineno": 17,
  3689. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3690. "module": "test_helpers",
  3691. "msecs": 863.0,
  3692. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3693. "name": "__unittest__",
  3694. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3695. "process": 291252,
  3696. "processName": "MainProcess",
  3697. "relativeCreated": 112.3189926147461,
  3698. "stack_info": null,
  3699. "thread": 139667813142592,
  3700. "threadName": "MainThread"
  3701. },
  3702. {
  3703. "args": [
  3704. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.pkl"
  3705. ],
  3706. "asctime": "2024-09-22 12:01:39,863",
  3707. "created": 1726999299.8637638,
  3708. "exc_info": null,
  3709. "exc_text": null,
  3710. "filename": "test_helpers.py",
  3711. "funcName": "init_cache",
  3712. "levelname": "INFO",
  3713. "levelno": 20,
  3714. "lineno": 21,
  3715. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.pkl as cache file.",
  3716. "module": "test_helpers",
  3717. "msecs": 863.0,
  3718. "msg": "Initialising cached class with %s as cache file.",
  3719. "name": "__unittest__",
  3720. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3721. "process": 291252,
  3722. "processName": "MainProcess",
  3723. "relativeCreated": 112.4105453491211,
  3724. "stack_info": null,
  3725. "thread": 139667813142592,
  3726. "threadName": "MainThread"
  3727. }
  3728. ],
  3729. "msecs": 864.0,
  3730. "msg": "Initialising %s (load_all_on_init=%s).",
  3731. "name": "__tLogger__",
  3732. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3733. "process": 291252,
  3734. "processName": "MainProcess",
  3735. "relativeCreated": 112.98227310180664,
  3736. "stack_info": null,
  3737. "thread": 139667813142592,
  3738. "threadName": "MainThread",
  3739. "time_consumption": 0.0005717277526855469
  3740. },
  3741. {
  3742. "args": [
  3743. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  3744. "<class 'dict'>"
  3745. ],
  3746. "asctime": "2024-09-22 12:01:39,865",
  3747. "created": 1726999299.865646,
  3748. "exc_info": null,
  3749. "exc_text": null,
  3750. "filename": "test.py",
  3751. "funcName": "equivalency_chk",
  3752. "levelname": "INFO",
  3753. "levelno": 20,
  3754. "lineno": 184,
  3755. "message": "Instance data after changing uid is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  3756. "module": "test",
  3757. "moduleLogger": [
  3758. {
  3759. "args": [
  3760. "Instance data after changing uid",
  3761. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  3762. "<class 'dict'>"
  3763. ],
  3764. "asctime": "2024-09-22 12:01:39,865",
  3765. "created": 1726999299.8652558,
  3766. "exc_info": null,
  3767. "exc_text": null,
  3768. "filename": "test.py",
  3769. "funcName": "__report_result__",
  3770. "levelname": "DEBUG",
  3771. "levelno": 10,
  3772. "lineno": 22,
  3773. "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  3774. "module": "test",
  3775. "msecs": 865.0,
  3776. "msg": "Result (%s): %s (%s)",
  3777. "name": "__unittest__",
  3778. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3779. "process": 291252,
  3780. "processName": "MainProcess",
  3781. "relativeCreated": 113.90256881713867,
  3782. "stack_info": null,
  3783. "thread": 139667813142592,
  3784. "threadName": "MainThread"
  3785. },
  3786. {
  3787. "args": [
  3788. "Instance data after changing uid",
  3789. "=",
  3790. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  3791. "<class 'dict'>"
  3792. ],
  3793. "asctime": "2024-09-22 12:01:39,865",
  3794. "created": 1726999299.8654537,
  3795. "exc_info": null,
  3796. "exc_text": null,
  3797. "filename": "test.py",
  3798. "funcName": "__report_expectation__",
  3799. "levelname": "DEBUG",
  3800. "levelno": 10,
  3801. "lineno": 26,
  3802. "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  3803. "module": "test",
  3804. "msecs": 865.0,
  3805. "msg": "Expectation (%s): result %s %s (%s)",
  3806. "name": "__unittest__",
  3807. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3808. "process": 291252,
  3809. "processName": "MainProcess",
  3810. "relativeCreated": 114.10045623779297,
  3811. "stack_info": null,
  3812. "thread": 139667813142592,
  3813. "threadName": "MainThread"
  3814. }
  3815. ],
  3816. "msecs": 865.0,
  3817. "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
  3818. "name": "__tLogger__",
  3819. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3820. "process": 291252,
  3821. "processName": "MainProcess",
  3822. "relativeCreated": 114.29262161254883,
  3823. "stack_info": null,
  3824. "thread": 139667813142592,
  3825. "threadName": "MainThread",
  3826. "time_consumption": 0.00019216537475585938
  3827. }
  3828. ],
  3829. "thread": 139667813142592,
  3830. "threadName": "MainThread",
  3831. "time_consumption": 0.002087831497192383,
  3832. "time_finished": "2024-09-22 12:01:39,865",
  3833. "time_start": "2024-09-22 12:01:39,863"
  3834. },
  3835. "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)": {
  3836. "args": null,
  3837. "asctime": "2024-09-22 12:01:39,866",
  3838. "created": 1726999299.8662899,
  3839. "exc_info": null,
  3840. "exc_text": null,
  3841. "filename": "__init__.py",
  3842. "funcName": "testCase",
  3843. "levelname": "INFO",
  3844. "levelno": 20,
  3845. "lineno": 323,
  3846. "message": "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
  3847. "module": "__init__",
  3848. "moduleLogger": [],
  3849. "msecs": 866.0,
  3850. "msg": "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
  3851. "name": "__tLogger__",
  3852. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  3853. "process": 291252,
  3854. "processName": "MainProcess",
  3855. "relativeCreated": 114.93659019470215,
  3856. "stack_info": null,
  3857. "testcaseLogger": [
  3858. {
  3859. "args": [
  3860. "property_cache_pickle",
  3861. "True"
  3862. ],
  3863. "asctime": "2024-09-22 12:01:39,867",
  3864. "created": 1726999299.8674836,
  3865. "exc_info": null,
  3866. "exc_text": null,
  3867. "filename": "test_helpers.py",
  3868. "funcName": "init_cache",
  3869. "levelname": "DEBUG",
  3870. "levelno": 10,
  3871. "lineno": 24,
  3872. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  3873. "module": "test_helpers",
  3874. "moduleLogger": [
  3875. {
  3876. "args": [],
  3877. "asctime": "2024-09-22 12:01:39,866",
  3878. "created": 1726999299.8665743,
  3879. "exc_info": null,
  3880. "exc_text": null,
  3881. "filename": "test_helpers.py",
  3882. "funcName": "init_cache",
  3883. "levelname": "INFO",
  3884. "levelno": 20,
  3885. "lineno": 17,
  3886. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3887. "module": "test_helpers",
  3888. "msecs": 866.0,
  3889. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  3890. "name": "__unittest__",
  3891. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3892. "process": 291252,
  3893. "processName": "MainProcess",
  3894. "relativeCreated": 115.22102355957031,
  3895. "stack_info": null,
  3896. "thread": 139667813142592,
  3897. "threadName": "MainThread"
  3898. },
  3899. {
  3900. "args": [
  3901. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.pkl"
  3902. ],
  3903. "asctime": "2024-09-22 12:01:39,866",
  3904. "created": 1726999299.866778,
  3905. "exc_info": null,
  3906. "exc_text": null,
  3907. "filename": "test_helpers.py",
  3908. "funcName": "init_cache",
  3909. "levelname": "INFO",
  3910. "levelno": 20,
  3911. "lineno": 21,
  3912. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.pkl as cache file.",
  3913. "module": "test_helpers",
  3914. "msecs": 866.0,
  3915. "msg": "Initialising cached class with %s as cache file.",
  3916. "name": "__unittest__",
  3917. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3918. "process": 291252,
  3919. "processName": "MainProcess",
  3920. "relativeCreated": 115.42463302612305,
  3921. "stack_info": null,
  3922. "thread": 139667813142592,
  3923. "threadName": "MainThread"
  3924. }
  3925. ],
  3926. "msecs": 867.0,
  3927. "msg": "Initialising %s (load_all_on_init=%s).",
  3928. "name": "__tLogger__",
  3929. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  3930. "process": 291252,
  3931. "processName": "MainProcess",
  3932. "relativeCreated": 116.13035202026367,
  3933. "stack_info": null,
  3934. "thread": 139667813142592,
  3935. "threadName": "MainThread",
  3936. "time_consumption": 0.000705718994140625
  3937. },
  3938. {
  3939. "args": [
  3940. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  3941. "<class 'dict'>"
  3942. ],
  3943. "asctime": "2024-09-22 12:01:39,868",
  3944. "created": 1726999299.8687303,
  3945. "exc_info": null,
  3946. "exc_text": null,
  3947. "filename": "test.py",
  3948. "funcName": "equivalency_chk",
  3949. "levelname": "INFO",
  3950. "levelno": 20,
  3951. "lineno": 184,
  3952. "message": "Instance data after changing uid is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  3953. "module": "test",
  3954. "moduleLogger": [
  3955. {
  3956. "args": [
  3957. "Instance data after changing uid",
  3958. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  3959. "<class 'dict'>"
  3960. ],
  3961. "asctime": "2024-09-22 12:01:39,868",
  3962. "created": 1726999299.868463,
  3963. "exc_info": null,
  3964. "exc_text": null,
  3965. "filename": "test.py",
  3966. "funcName": "__report_result__",
  3967. "levelname": "DEBUG",
  3968. "levelno": 10,
  3969. "lineno": 22,
  3970. "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  3971. "module": "test",
  3972. "msecs": 868.0,
  3973. "msg": "Result (%s): %s (%s)",
  3974. "name": "__unittest__",
  3975. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  3976. "process": 291252,
  3977. "processName": "MainProcess",
  3978. "relativeCreated": 117.10977554321289,
  3979. "stack_info": null,
  3980. "thread": 139667813142592,
  3981. "threadName": "MainThread"
  3982. },
  3983. {
  3984. "args": [
  3985. "Instance data after changing uid",
  3986. "=",
  3987. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  3988. "<class 'dict'>"
  3989. ],
  3990. "asctime": "2024-09-22 12:01:39,868",
  3991. "created": 1726999299.868587,
  3992. "exc_info": null,
  3993. "exc_text": null,
  3994. "filename": "test.py",
  3995. "funcName": "__report_expectation__",
  3996. "levelname": "DEBUG",
  3997. "levelno": 10,
  3998. "lineno": 26,
  3999. "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  4000. "module": "test",
  4001. "msecs": 868.0,
  4002. "msg": "Expectation (%s): result %s %s (%s)",
  4003. "name": "__unittest__",
  4004. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4005. "process": 291252,
  4006. "processName": "MainProcess",
  4007. "relativeCreated": 117.2337532043457,
  4008. "stack_info": null,
  4009. "thread": 139667813142592,
  4010. "threadName": "MainThread"
  4011. }
  4012. ],
  4013. "msecs": 868.0,
  4014. "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
  4015. "name": "__tLogger__",
  4016. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4017. "process": 291252,
  4018. "processName": "MainProcess",
  4019. "relativeCreated": 117.37704277038574,
  4020. "stack_info": null,
  4021. "thread": 139667813142592,
  4022. "threadName": "MainThread",
  4023. "time_consumption": 0.00014328956604003906
  4024. }
  4025. ],
  4026. "thread": 139667813142592,
  4027. "threadName": "MainThread",
  4028. "time_consumption": 0.0024404525756835938,
  4029. "time_finished": "2024-09-22 12:01:39,868",
  4030. "time_start": "2024-09-22 12:01:39,866"
  4031. },
  4032. "caching.property_cache_pickle: Test get from source caused by increased data version (full init)": {
  4033. "args": null,
  4034. "asctime": "2024-09-22 12:01:39,859",
  4035. "created": 1726999299.8596387,
  4036. "exc_info": null,
  4037. "exc_text": null,
  4038. "filename": "__init__.py",
  4039. "funcName": "testCase",
  4040. "levelname": "INFO",
  4041. "levelno": 20,
  4042. "lineno": 323,
  4043. "message": "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
  4044. "module": "__init__",
  4045. "moduleLogger": [],
  4046. "msecs": 859.0,
  4047. "msg": "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
  4048. "name": "__tLogger__",
  4049. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  4050. "process": 291252,
  4051. "processName": "MainProcess",
  4052. "relativeCreated": 108.28542709350586,
  4053. "stack_info": null,
  4054. "testcaseLogger": [
  4055. {
  4056. "args": [
  4057. "property_cache_pickle",
  4058. "True"
  4059. ],
  4060. "asctime": "2024-09-22 12:01:39,860",
  4061. "created": 1726999299.8603816,
  4062. "exc_info": null,
  4063. "exc_text": null,
  4064. "filename": "test_helpers.py",
  4065. "funcName": "init_cache",
  4066. "levelname": "DEBUG",
  4067. "levelno": 10,
  4068. "lineno": 24,
  4069. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  4070. "module": "test_helpers",
  4071. "moduleLogger": [
  4072. {
  4073. "args": [],
  4074. "asctime": "2024-09-22 12:01:39,859",
  4075. "created": 1726999299.8597474,
  4076. "exc_info": null,
  4077. "exc_text": null,
  4078. "filename": "test_helpers.py",
  4079. "funcName": "init_cache",
  4080. "levelname": "INFO",
  4081. "levelno": 20,
  4082. "lineno": 17,
  4083. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4084. "module": "test_helpers",
  4085. "msecs": 859.0,
  4086. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4087. "name": "__unittest__",
  4088. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4089. "process": 291252,
  4090. "processName": "MainProcess",
  4091. "relativeCreated": 108.39414596557617,
  4092. "stack_info": null,
  4093. "thread": 139667813142592,
  4094. "threadName": "MainThread"
  4095. },
  4096. {
  4097. "args": [
  4098. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.pkl"
  4099. ],
  4100. "asctime": "2024-09-22 12:01:39,859",
  4101. "created": 1726999299.8598385,
  4102. "exc_info": null,
  4103. "exc_text": null,
  4104. "filename": "test_helpers.py",
  4105. "funcName": "init_cache",
  4106. "levelname": "INFO",
  4107. "levelno": 20,
  4108. "lineno": 21,
  4109. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.pkl as cache file.",
  4110. "module": "test_helpers",
  4111. "msecs": 859.0,
  4112. "msg": "Initialising cached class with %s as cache file.",
  4113. "name": "__unittest__",
  4114. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4115. "process": 291252,
  4116. "processName": "MainProcess",
  4117. "relativeCreated": 108.48522186279297,
  4118. "stack_info": null,
  4119. "thread": 139667813142592,
  4120. "threadName": "MainThread"
  4121. }
  4122. ],
  4123. "msecs": 860.0,
  4124. "msg": "Initialising %s (load_all_on_init=%s).",
  4125. "name": "__tLogger__",
  4126. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4127. "process": 291252,
  4128. "processName": "MainProcess",
  4129. "relativeCreated": 109.02833938598633,
  4130. "stack_info": null,
  4131. "thread": 139667813142592,
  4132. "threadName": "MainThread",
  4133. "time_consumption": 0.0005431175231933594
  4134. },
  4135. {
  4136. "args": [
  4137. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  4138. "<class 'dict'>"
  4139. ],
  4140. "asctime": "2024-09-22 12:01:39,861",
  4141. "created": 1726999299.861321,
  4142. "exc_info": null,
  4143. "exc_text": null,
  4144. "filename": "test.py",
  4145. "funcName": "equivalency_chk",
  4146. "levelname": "INFO",
  4147. "levelno": 20,
  4148. "lineno": 184,
  4149. "message": "Instance data after increasing data_version is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  4150. "module": "test",
  4151. "moduleLogger": [
  4152. {
  4153. "args": [
  4154. "Instance data after increasing data_version",
  4155. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  4156. "<class 'dict'>"
  4157. ],
  4158. "asctime": "2024-09-22 12:01:39,861",
  4159. "created": 1726999299.8610969,
  4160. "exc_info": null,
  4161. "exc_text": null,
  4162. "filename": "test.py",
  4163. "funcName": "__report_result__",
  4164. "levelname": "DEBUG",
  4165. "levelno": 10,
  4166. "lineno": 22,
  4167. "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  4168. "module": "test",
  4169. "msecs": 861.0,
  4170. "msg": "Result (%s): %s (%s)",
  4171. "name": "__unittest__",
  4172. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4173. "process": 291252,
  4174. "processName": "MainProcess",
  4175. "relativeCreated": 109.74359512329102,
  4176. "stack_info": null,
  4177. "thread": 139667813142592,
  4178. "threadName": "MainThread"
  4179. },
  4180. {
  4181. "args": [
  4182. "Instance data after increasing data_version",
  4183. "=",
  4184. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  4185. "<class 'dict'>"
  4186. ],
  4187. "asctime": "2024-09-22 12:01:39,861",
  4188. "created": 1726999299.8611977,
  4189. "exc_info": null,
  4190. "exc_text": null,
  4191. "filename": "test.py",
  4192. "funcName": "__report_expectation__",
  4193. "levelname": "DEBUG",
  4194. "levelno": 10,
  4195. "lineno": 26,
  4196. "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  4197. "module": "test",
  4198. "msecs": 861.0,
  4199. "msg": "Expectation (%s): result %s %s (%s)",
  4200. "name": "__unittest__",
  4201. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4202. "process": 291252,
  4203. "processName": "MainProcess",
  4204. "relativeCreated": 109.84444618225098,
  4205. "stack_info": null,
  4206. "thread": 139667813142592,
  4207. "threadName": "MainThread"
  4208. }
  4209. ],
  4210. "msecs": 861.0,
  4211. "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
  4212. "name": "__tLogger__",
  4213. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4214. "process": 291252,
  4215. "processName": "MainProcess",
  4216. "relativeCreated": 109.96770858764648,
  4217. "stack_info": null,
  4218. "thread": 139667813142592,
  4219. "threadName": "MainThread",
  4220. "time_consumption": 0.0001232624053955078
  4221. }
  4222. ],
  4223. "thread": 139667813142592,
  4224. "threadName": "MainThread",
  4225. "time_consumption": 0.001682281494140625,
  4226. "time_finished": "2024-09-22 12:01:39,861",
  4227. "time_start": "2024-09-22 12:01:39,859"
  4228. },
  4229. "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)": {
  4230. "args": null,
  4231. "asctime": "2024-09-22 12:01:39,861",
  4232. "created": 1726999299.8614974,
  4233. "exc_info": null,
  4234. "exc_text": null,
  4235. "filename": "__init__.py",
  4236. "funcName": "testCase",
  4237. "levelname": "INFO",
  4238. "levelno": 20,
  4239. "lineno": 323,
  4240. "message": "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
  4241. "module": "__init__",
  4242. "moduleLogger": [],
  4243. "msecs": 861.0,
  4244. "msg": "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
  4245. "name": "__tLogger__",
  4246. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  4247. "process": 291252,
  4248. "processName": "MainProcess",
  4249. "relativeCreated": 110.14413833618164,
  4250. "stack_info": null,
  4251. "testcaseLogger": [
  4252. {
  4253. "args": [
  4254. "property_cache_pickle",
  4255. "True"
  4256. ],
  4257. "asctime": "2024-09-22 12:01:39,862",
  4258. "created": 1726999299.8622346,
  4259. "exc_info": null,
  4260. "exc_text": null,
  4261. "filename": "test_helpers.py",
  4262. "funcName": "init_cache",
  4263. "levelname": "DEBUG",
  4264. "levelno": 10,
  4265. "lineno": 24,
  4266. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  4267. "module": "test_helpers",
  4268. "moduleLogger": [
  4269. {
  4270. "args": [],
  4271. "asctime": "2024-09-22 12:01:39,861",
  4272. "created": 1726999299.8616073,
  4273. "exc_info": null,
  4274. "exc_text": null,
  4275. "filename": "test_helpers.py",
  4276. "funcName": "init_cache",
  4277. "levelname": "INFO",
  4278. "levelno": 20,
  4279. "lineno": 17,
  4280. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4281. "module": "test_helpers",
  4282. "msecs": 861.0,
  4283. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4284. "name": "__unittest__",
  4285. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4286. "process": 291252,
  4287. "processName": "MainProcess",
  4288. "relativeCreated": 110.25404930114746,
  4289. "stack_info": null,
  4290. "thread": 139667813142592,
  4291. "threadName": "MainThread"
  4292. },
  4293. {
  4294. "args": [
  4295. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.pkl"
  4296. ],
  4297. "asctime": "2024-09-22 12:01:39,861",
  4298. "created": 1726999299.8617005,
  4299. "exc_info": null,
  4300. "exc_text": null,
  4301. "filename": "test_helpers.py",
  4302. "funcName": "init_cache",
  4303. "levelname": "INFO",
  4304. "levelno": 20,
  4305. "lineno": 21,
  4306. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.pkl as cache file.",
  4307. "module": "test_helpers",
  4308. "msecs": 861.0,
  4309. "msg": "Initialising cached class with %s as cache file.",
  4310. "name": "__unittest__",
  4311. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4312. "process": 291252,
  4313. "processName": "MainProcess",
  4314. "relativeCreated": 110.34727096557617,
  4315. "stack_info": null,
  4316. "thread": 139667813142592,
  4317. "threadName": "MainThread"
  4318. }
  4319. ],
  4320. "msecs": 862.0,
  4321. "msg": "Initialising %s (load_all_on_init=%s).",
  4322. "name": "__tLogger__",
  4323. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4324. "process": 291252,
  4325. "processName": "MainProcess",
  4326. "relativeCreated": 110.88132858276367,
  4327. "stack_info": null,
  4328. "thread": 139667813142592,
  4329. "threadName": "MainThread",
  4330. "time_consumption": 0.0005340576171875
  4331. },
  4332. {
  4333. "args": [
  4334. "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
  4335. "<class 'dict'>"
  4336. ],
  4337. "asctime": "2024-09-22 12:01:39,863",
  4338. "created": 1726999299.8633728,
  4339. "exc_info": null,
  4340. "exc_text": null,
  4341. "filename": "test.py",
  4342. "funcName": "equivalency_chk",
  4343. "levelname": "INFO",
  4344. "levelno": 20,
  4345. "lineno": 184,
  4346. "message": "Instance data after increasing data_version is correct (Content {'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}} and Type is <class 'dict'>).",
  4347. "module": "test",
  4348. "moduleLogger": [
  4349. {
  4350. "args": [
  4351. "Instance data after increasing data_version",
  4352. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  4353. "<class 'dict'>"
  4354. ],
  4355. "asctime": "2024-09-22 12:01:39,863",
  4356. "created": 1726999299.863136,
  4357. "exc_info": null,
  4358. "exc_text": null,
  4359. "filename": "test.py",
  4360. "funcName": "__report_result__",
  4361. "levelname": "DEBUG",
  4362. "levelno": 10,
  4363. "lineno": 22,
  4364. "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  4365. "module": "test",
  4366. "msecs": 863.0,
  4367. "msg": "Result (%s): %s (%s)",
  4368. "name": "__unittest__",
  4369. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4370. "process": 291252,
  4371. "processName": "MainProcess",
  4372. "relativeCreated": 111.78278923034668,
  4373. "stack_info": null,
  4374. "thread": 139667813142592,
  4375. "threadName": "MainThread"
  4376. },
  4377. {
  4378. "args": [
  4379. "Instance data after increasing data_version",
  4380. "=",
  4381. "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
  4382. "<class 'dict'>"
  4383. ],
  4384. "asctime": "2024-09-22 12:01:39,863",
  4385. "created": 1726999299.8632417,
  4386. "exc_info": null,
  4387. "exc_text": null,
  4388. "filename": "test.py",
  4389. "funcName": "__report_expectation__",
  4390. "levelname": "DEBUG",
  4391. "levelno": 10,
  4392. "lineno": 26,
  4393. "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } (<class 'dict'>)",
  4394. "module": "test",
  4395. "msecs": 863.0,
  4396. "msg": "Expectation (%s): result %s %s (%s)",
  4397. "name": "__unittest__",
  4398. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4399. "process": 291252,
  4400. "processName": "MainProcess",
  4401. "relativeCreated": 111.88840866088867,
  4402. "stack_info": null,
  4403. "thread": 139667813142592,
  4404. "threadName": "MainThread"
  4405. }
  4406. ],
  4407. "msecs": 863.0,
  4408. "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
  4409. "name": "__tLogger__",
  4410. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4411. "process": 291252,
  4412. "processName": "MainProcess",
  4413. "relativeCreated": 112.01953887939453,
  4414. "stack_info": null,
  4415. "thread": 139667813142592,
  4416. "threadName": "MainThread",
  4417. "time_consumption": 0.00013113021850585938
  4418. }
  4419. ],
  4420. "thread": 139667813142592,
  4421. "threadName": "MainThread",
  4422. "time_consumption": 0.0018754005432128906,
  4423. "time_finished": "2024-09-22 12:01:39,863",
  4424. "time_start": "2024-09-22 12:01:39,861"
  4425. },
  4426. "caching.property_cache_pickle: Test internal key usage": {
  4427. "args": null,
  4428. "asctime": "2024-09-22 12:01:39,869",
  4429. "created": 1726999299.8695648,
  4430. "exc_info": null,
  4431. "exc_text": null,
  4432. "filename": "__init__.py",
  4433. "funcName": "testCase",
  4434. "levelname": "INFO",
  4435. "levelno": 20,
  4436. "lineno": 323,
  4437. "message": "caching.property_cache_pickle: Test internal key usage",
  4438. "module": "__init__",
  4439. "moduleLogger": [],
  4440. "msecs": 869.0,
  4441. "msg": "caching.property_cache_pickle: Test internal key usage",
  4442. "name": "__tLogger__",
  4443. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  4444. "process": 291252,
  4445. "processName": "MainProcess",
  4446. "relativeCreated": 118.21150779724121,
  4447. "stack_info": null,
  4448. "testcaseLogger": [
  4449. {
  4450. "args": [
  4451. "property_cache_pickle",
  4452. "True"
  4453. ],
  4454. "asctime": "2024-09-22 12:01:39,870",
  4455. "created": 1726999299.8705044,
  4456. "exc_info": null,
  4457. "exc_text": null,
  4458. "filename": "test_helpers.py",
  4459. "funcName": "init_cache",
  4460. "levelname": "DEBUG",
  4461. "levelno": 10,
  4462. "lineno": 24,
  4463. "message": "Initialising property_cache_pickle (load_all_on_init=True).",
  4464. "module": "test_helpers",
  4465. "moduleLogger": [
  4466. {
  4467. "args": [],
  4468. "asctime": "2024-09-22 12:01:39,869",
  4469. "created": 1726999299.8696918,
  4470. "exc_info": null,
  4471. "exc_text": null,
  4472. "filename": "test_helpers.py",
  4473. "funcName": "init_cache",
  4474. "levelname": "INFO",
  4475. "levelno": 20,
  4476. "lineno": 17,
  4477. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4478. "module": "test_helpers",
  4479. "msecs": 869.0,
  4480. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4481. "name": "__unittest__",
  4482. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4483. "process": 291252,
  4484. "processName": "MainProcess",
  4485. "relativeCreated": 118.33858489990234,
  4486. "stack_info": null,
  4487. "thread": 139667813142592,
  4488. "threadName": "MainThread"
  4489. },
  4490. {
  4491. "args": [
  4492. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.pkl"
  4493. ],
  4494. "asctime": "2024-09-22 12:01:39,869",
  4495. "created": 1726999299.869826,
  4496. "exc_info": null,
  4497. "exc_text": null,
  4498. "filename": "test_helpers.py",
  4499. "funcName": "init_cache",
  4500. "levelname": "INFO",
  4501. "levelno": 20,
  4502. "lineno": 21,
  4503. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.pkl as cache file.",
  4504. "module": "test_helpers",
  4505. "msecs": 869.0,
  4506. "msg": "Initialising cached class with %s as cache file.",
  4507. "name": "__unittest__",
  4508. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4509. "process": 291252,
  4510. "processName": "MainProcess",
  4511. "relativeCreated": 118.47281455993652,
  4512. "stack_info": null,
  4513. "thread": 139667813142592,
  4514. "threadName": "MainThread"
  4515. }
  4516. ],
  4517. "msecs": 870.0,
  4518. "msg": "Initialising %s (load_all_on_init=%s).",
  4519. "name": "__tLogger__",
  4520. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4521. "process": 291252,
  4522. "processName": "MainProcess",
  4523. "relativeCreated": 119.15111541748047,
  4524. "stack_info": null,
  4525. "thread": 139667813142592,
  4526. "threadName": "MainThread",
  4527. "time_consumption": 0.0006783008575439453
  4528. },
  4529. {
  4530. "args": [
  4531. "property_cache_pickle"
  4532. ],
  4533. "asctime": "2024-09-22 12:01:39,870",
  4534. "created": 1726999299.8709216,
  4535. "exc_info": null,
  4536. "exc_text": null,
  4537. "filename": "test_internal_keys.py",
  4538. "funcName": "test_internal_keys",
  4539. "levelname": "DEBUG",
  4540. "levelno": 10,
  4541. "lineno": 21,
  4542. "message": "Extracting storage object from property_cache_pickle for comparison.",
  4543. "module": "test_internal_keys",
  4544. "moduleLogger": [
  4545. {
  4546. "args": [
  4547. "{'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}"
  4548. ],
  4549. "asctime": "2024-09-22 12:01:39,870",
  4550. "created": 1726999299.870809,
  4551. "exc_info": null,
  4552. "exc_text": null,
  4553. "filename": "test_internal_keys.py",
  4554. "funcName": "test_internal_keys",
  4555. "levelname": "INFO",
  4556. "levelno": 20,
  4557. "lineno": 20,
  4558. "message": "Using storage object of cache class for comparison: {'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}",
  4559. "module": "test_internal_keys",
  4560. "msecs": 870.0,
  4561. "msg": "Using storage object of cache class for comparison: %s",
  4562. "name": "__unittest__",
  4563. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
  4564. "process": 291252,
  4565. "processName": "MainProcess",
  4566. "relativeCreated": 119.45581436157227,
  4567. "stack_info": null,
  4568. "thread": 139667813142592,
  4569. "threadName": "MainThread"
  4570. }
  4571. ],
  4572. "msecs": 870.0,
  4573. "msg": "Extracting storage object from %s for comparison.",
  4574. "name": "__tLogger__",
  4575. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
  4576. "process": 291252,
  4577. "processName": "MainProcess",
  4578. "relativeCreated": 119.5683479309082,
  4579. "stack_info": null,
  4580. "thread": 139667813142592,
  4581. "threadName": "MainThread",
  4582. "time_consumption": 0.0001125335693359375
  4583. },
  4584. {
  4585. "args": [
  4586. "{'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}",
  4587. "<class 'dict'>"
  4588. ],
  4589. "asctime": "2024-09-22 12:01:39,871",
  4590. "created": 1726999299.8713791,
  4591. "exc_info": null,
  4592. "exc_text": null,
  4593. "filename": "test.py",
  4594. "funcName": "equivalency_chk",
  4595. "levelname": "INFO",
  4596. "levelno": 20,
  4597. "lineno": 184,
  4598. "message": "Cache is correct (Content {'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'} and Type is <class 'dict'>).",
  4599. "module": "test",
  4600. "moduleLogger": [
  4601. {
  4602. "args": [
  4603. "Cache",
  4604. "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
  4605. "<class 'dict'>"
  4606. ],
  4607. "asctime": "2024-09-22 12:01:39,871",
  4608. "created": 1726999299.8711085,
  4609. "exc_info": null,
  4610. "exc_text": null,
  4611. "filename": "test.py",
  4612. "funcName": "__report_result__",
  4613. "levelname": "DEBUG",
  4614. "levelno": 10,
  4615. "lineno": 22,
  4616. "message": "Result (Cache): { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } (<class 'dict'>)",
  4617. "module": "test",
  4618. "msecs": 871.0,
  4619. "msg": "Result (%s): %s (%s)",
  4620. "name": "__unittest__",
  4621. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4622. "process": 291252,
  4623. "processName": "MainProcess",
  4624. "relativeCreated": 119.75526809692383,
  4625. "stack_info": null,
  4626. "thread": 139667813142592,
  4627. "threadName": "MainThread"
  4628. },
  4629. {
  4630. "args": [
  4631. "Cache",
  4632. "=",
  4633. "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
  4634. "<class 'dict'>"
  4635. ],
  4636. "asctime": "2024-09-22 12:01:39,871",
  4637. "created": 1726999299.8712373,
  4638. "exc_info": null,
  4639. "exc_text": null,
  4640. "filename": "test.py",
  4641. "funcName": "__report_expectation__",
  4642. "levelname": "DEBUG",
  4643. "levelno": 10,
  4644. "lineno": 26,
  4645. "message": "Expectation (Cache): result = { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } (<class 'dict'>)",
  4646. "module": "test",
  4647. "msecs": 871.0,
  4648. "msg": "Expectation (%s): result %s %s (%s)",
  4649. "name": "__unittest__",
  4650. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4651. "process": 291252,
  4652. "processName": "MainProcess",
  4653. "relativeCreated": 119.88401412963867,
  4654. "stack_info": null,
  4655. "thread": 139667813142592,
  4656. "threadName": "MainThread"
  4657. }
  4658. ],
  4659. "msecs": 871.0,
  4660. "msg": "Cache is correct (Content %s and Type is %s).",
  4661. "name": "__tLogger__",
  4662. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4663. "process": 291252,
  4664. "processName": "MainProcess",
  4665. "relativeCreated": 120.0258731842041,
  4666. "stack_info": null,
  4667. "thread": 139667813142592,
  4668. "threadName": "MainThread",
  4669. "time_consumption": 0.0001418590545654297
  4670. },
  4671. {
  4672. "args": [
  4673. "5",
  4674. "<class 'int'>"
  4675. ],
  4676. "asctime": "2024-09-22 12:01:39,871",
  4677. "created": 1726999299.8717508,
  4678. "exc_info": null,
  4679. "exc_text": null,
  4680. "filename": "test.py",
  4681. "funcName": "equivalency_chk",
  4682. "levelname": "INFO",
  4683. "levelno": 20,
  4684. "lineno": 184,
  4685. "message": "Keyfilter returnvalue for 5 (<class 'int'>) is correct (Content 5 and Type is <class 'int'>).",
  4686. "module": "test",
  4687. "moduleLogger": [
  4688. {
  4689. "args": [
  4690. "Keyfilter returnvalue for 5 (<class 'int'>)",
  4691. "5",
  4692. "<class 'int'>"
  4693. ],
  4694. "asctime": "2024-09-22 12:01:39,871",
  4695. "created": 1726999299.8715463,
  4696. "exc_info": null,
  4697. "exc_text": null,
  4698. "filename": "test.py",
  4699. "funcName": "__report_result__",
  4700. "levelname": "DEBUG",
  4701. "levelno": 10,
  4702. "lineno": 22,
  4703. "message": "Result (Keyfilter returnvalue for 5 (<class 'int'>)): 5 (<class 'int'>)",
  4704. "module": "test",
  4705. "msecs": 871.0,
  4706. "msg": "Result (%s): %s (%s)",
  4707. "name": "__unittest__",
  4708. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4709. "process": 291252,
  4710. "processName": "MainProcess",
  4711. "relativeCreated": 120.1930046081543,
  4712. "stack_info": null,
  4713. "thread": 139667813142592,
  4714. "threadName": "MainThread"
  4715. },
  4716. {
  4717. "args": [
  4718. "Keyfilter returnvalue for 5 (<class 'int'>)",
  4719. "=",
  4720. "5",
  4721. "<class 'int'>"
  4722. ],
  4723. "asctime": "2024-09-22 12:01:39,871",
  4724. "created": 1726999299.8716495,
  4725. "exc_info": null,
  4726. "exc_text": null,
  4727. "filename": "test.py",
  4728. "funcName": "__report_expectation__",
  4729. "levelname": "DEBUG",
  4730. "levelno": 10,
  4731. "lineno": 26,
  4732. "message": "Expectation (Keyfilter returnvalue for 5 (<class 'int'>)): result = 5 (<class 'int'>)",
  4733. "module": "test",
  4734. "msecs": 871.0,
  4735. "msg": "Expectation (%s): result %s %s (%s)",
  4736. "name": "__unittest__",
  4737. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4738. "process": 291252,
  4739. "processName": "MainProcess",
  4740. "relativeCreated": 120.29623985290527,
  4741. "stack_info": null,
  4742. "thread": 139667813142592,
  4743. "threadName": "MainThread"
  4744. }
  4745. ],
  4746. "msecs": 871.0,
  4747. "msg": "Keyfilter returnvalue for 5 (<class 'int'>) is correct (Content %s and Type is %s).",
  4748. "name": "__tLogger__",
  4749. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4750. "process": 291252,
  4751. "processName": "MainProcess",
  4752. "relativeCreated": 120.39756774902344,
  4753. "stack_info": null,
  4754. "thread": 139667813142592,
  4755. "threadName": "MainThread",
  4756. "time_consumption": 0.00010132789611816406
  4757. }
  4758. ],
  4759. "thread": 139667813142592,
  4760. "threadName": "MainThread",
  4761. "time_consumption": 0.0021860599517822266,
  4762. "time_finished": "2024-09-22 12:01:39,871",
  4763. "time_start": "2024-09-22 12:01:39,869"
  4764. },
  4765. "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object": {
  4766. "args": null,
  4767. "asctime": "2024-09-22 12:01:39,855",
  4768. "created": 1726999299.8551068,
  4769. "exc_info": null,
  4770. "exc_text": null,
  4771. "filename": "__init__.py",
  4772. "funcName": "testCase",
  4773. "levelname": "INFO",
  4774. "levelno": 20,
  4775. "lineno": 323,
  4776. "message": "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object",
  4777. "module": "__init__",
  4778. "moduleLogger": [],
  4779. "msecs": 855.0,
  4780. "msg": "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object",
  4781. "name": "__tLogger__",
  4782. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
  4783. "process": 291252,
  4784. "processName": "MainProcess",
  4785. "relativeCreated": 103.75356674194336,
  4786. "stack_info": null,
  4787. "testcaseLogger": [
  4788. {
  4789. "args": [
  4790. "property_cache_pickle",
  4791. "False"
  4792. ],
  4793. "asctime": "2024-09-22 12:01:39,855",
  4794. "created": 1726999299.8555126,
  4795. "exc_info": null,
  4796. "exc_text": null,
  4797. "filename": "test_helpers.py",
  4798. "funcName": "init_cache",
  4799. "levelname": "DEBUG",
  4800. "levelno": 10,
  4801. "lineno": 24,
  4802. "message": "Initialising property_cache_pickle (load_all_on_init=False).",
  4803. "module": "test_helpers",
  4804. "moduleLogger": [
  4805. {
  4806. "args": [],
  4807. "asctime": "2024-09-22 12:01:39,855",
  4808. "created": 1726999299.855225,
  4809. "exc_info": null,
  4810. "exc_text": null,
  4811. "filename": "test_helpers.py",
  4812. "funcName": "init_cache",
  4813. "levelname": "INFO",
  4814. "levelno": 20,
  4815. "lineno": 17,
  4816. "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4817. "module": "test_helpers",
  4818. "msecs": 855.0,
  4819. "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
  4820. "name": "__unittest__",
  4821. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4822. "process": 291252,
  4823. "processName": "MainProcess",
  4824. "relativeCreated": 103.87182235717773,
  4825. "stack_info": null,
  4826. "thread": 139667813142592,
  4827. "threadName": "MainThread"
  4828. },
  4829. {
  4830. "args": [
  4831. "/home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.pkl"
  4832. ],
  4833. "asctime": "2024-09-22 12:01:39,855",
  4834. "created": 1726999299.8553317,
  4835. "exc_info": null,
  4836. "exc_text": null,
  4837. "filename": "test_helpers.py",
  4838. "funcName": "init_cache",
  4839. "levelname": "INFO",
  4840. "levelno": 20,
  4841. "lineno": 21,
  4842. "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.pkl as cache file.",
  4843. "module": "test_helpers",
  4844. "msecs": 855.0,
  4845. "msg": "Initialising cached class with %s as cache file.",
  4846. "name": "__unittest__",
  4847. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4848. "process": 291252,
  4849. "processName": "MainProcess",
  4850. "relativeCreated": 103.97839546203613,
  4851. "stack_info": null,
  4852. "thread": 139667813142592,
  4853. "threadName": "MainThread"
  4854. }
  4855. ],
  4856. "msecs": 855.0,
  4857. "msg": "Initialising %s (load_all_on_init=%s).",
  4858. "name": "__tLogger__",
  4859. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
  4860. "process": 291252,
  4861. "processName": "MainProcess",
  4862. "relativeCreated": 104.15935516357422,
  4863. "stack_info": null,
  4864. "thread": 139667813142592,
  4865. "threadName": "MainThread",
  4866. "time_consumption": 0.00018095970153808594
  4867. },
  4868. {
  4869. "args": [],
  4870. "asctime": "2024-09-22 12:01:39,855",
  4871. "created": 1726999299.8559484,
  4872. "exc_info": null,
  4873. "exc_text": null,
  4874. "filename": "test_no_load_on_init.py",
  4875. "funcName": "no_load_on_init",
  4876. "levelname": "DEBUG",
  4877. "levelno": 10,
  4878. "lineno": 18,
  4879. "message": "Partially initialising cache object by requesting some information.",
  4880. "module": "test_no_load_on_init",
  4881. "moduleLogger": [],
  4882. "msecs": 855.0,
  4883. "msg": "Partially initialising cache object by requesting some information.",
  4884. "name": "__tLogger__",
  4885. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  4886. "process": 291252,
  4887. "processName": "MainProcess",
  4888. "relativeCreated": 104.59518432617188,
  4889. "stack_info": null,
  4890. "thread": 139667813142592,
  4891. "threadName": "MainThread",
  4892. "time_consumption": 0.0
  4893. },
  4894. {
  4895. "args": [
  4896. "property_cache_pickle"
  4897. ],
  4898. "asctime": "2024-09-22 12:01:39,856",
  4899. "created": 1726999299.8561795,
  4900. "exc_info": null,
  4901. "exc_text": null,
  4902. "filename": "test_no_load_on_init.py",
  4903. "funcName": "no_load_on_init",
  4904. "levelname": "DEBUG",
  4905. "levelno": 10,
  4906. "lineno": 24,
  4907. "message": "Extracting storage object from property_cache_pickle for comparison.",
  4908. "module": "test_no_load_on_init",
  4909. "moduleLogger": [
  4910. {
  4911. "args": [
  4912. "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}"
  4913. ],
  4914. "asctime": "2024-09-22 12:01:39,856",
  4915. "created": 1726999299.856116,
  4916. "exc_info": null,
  4917. "exc_text": null,
  4918. "filename": "test_no_load_on_init.py",
  4919. "funcName": "no_load_on_init",
  4920. "levelname": "INFO",
  4921. "levelno": 20,
  4922. "lineno": 23,
  4923. "message": "Using storage object of cache class for comparison: {'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
  4924. "module": "test_no_load_on_init",
  4925. "msecs": 856.0,
  4926. "msg": "Using storage object of cache class for comparison: %s",
  4927. "name": "__unittest__",
  4928. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  4929. "process": 291252,
  4930. "processName": "MainProcess",
  4931. "relativeCreated": 104.76279258728027,
  4932. "stack_info": null,
  4933. "thread": 139667813142592,
  4934. "threadName": "MainThread"
  4935. }
  4936. ],
  4937. "msecs": 856.0,
  4938. "msg": "Extracting storage object from %s for comparison.",
  4939. "name": "__tLogger__",
  4940. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
  4941. "process": 291252,
  4942. "processName": "MainProcess",
  4943. "relativeCreated": 104.82621192932129,
  4944. "stack_info": null,
  4945. "thread": 139667813142592,
  4946. "threadName": "MainThread",
  4947. "time_consumption": 6.341934204101562e-05
  4948. },
  4949. {
  4950. "args": [
  4951. "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
  4952. "<class 'dict'>"
  4953. ],
  4954. "asctime": "2024-09-22 12:01:39,856",
  4955. "created": 1726999299.8564296,
  4956. "exc_info": null,
  4957. "exc_text": null,
  4958. "filename": "test.py",
  4959. "funcName": "equivalency_chk",
  4960. "levelname": "INFO",
  4961. "levelno": 20,
  4962. "lineno": 184,
  4963. "message": "Cache object is correct (Content {'integer': 17, 'str': 'string', 'unicode': 'unicode'} and Type is <class 'dict'>).",
  4964. "module": "test",
  4965. "moduleLogger": [
  4966. {
  4967. "args": [
  4968. "Cache object",
  4969. "{ 'integer': 17, 'str': 'string', 'unicode': 'unicode' }",
  4970. "<class 'dict'>"
  4971. ],
  4972. "asctime": "2024-09-22 12:01:39,856",
  4973. "created": 1726999299.8562906,
  4974. "exc_info": null,
  4975. "exc_text": null,
  4976. "filename": "test.py",
  4977. "funcName": "__report_result__",
  4978. "levelname": "DEBUG",
  4979. "levelno": 10,
  4980. "lineno": 22,
  4981. "message": "Result (Cache object): { 'integer': 17, 'str': 'string', 'unicode': 'unicode' } (<class 'dict'>)",
  4982. "module": "test",
  4983. "msecs": 856.0,
  4984. "msg": "Result (%s): %s (%s)",
  4985. "name": "__unittest__",
  4986. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  4987. "process": 291252,
  4988. "processName": "MainProcess",
  4989. "relativeCreated": 104.93731498718262,
  4990. "stack_info": null,
  4991. "thread": 139667813142592,
  4992. "threadName": "MainThread"
  4993. },
  4994. {
  4995. "args": [
  4996. "Cache object",
  4997. "=",
  4998. "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17 }",
  4999. "<class 'dict'>"
  5000. ],
  5001. "asctime": "2024-09-22 12:01:39,856",
  5002. "created": 1726999299.8563578,
  5003. "exc_info": null,
  5004. "exc_text": null,
  5005. "filename": "test.py",
  5006. "funcName": "__report_expectation__",
  5007. "levelname": "DEBUG",
  5008. "levelno": 10,
  5009. "lineno": 26,
  5010. "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17 } (<class 'dict'>)",
  5011. "module": "test",
  5012. "msecs": 856.0,
  5013. "msg": "Expectation (%s): result %s %s (%s)",
  5014. "name": "__unittest__",
  5015. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  5016. "process": 291252,
  5017. "processName": "MainProcess",
  5018. "relativeCreated": 105.00454902648926,
  5019. "stack_info": null,
  5020. "thread": 139667813142592,
  5021. "threadName": "MainThread"
  5022. }
  5023. ],
  5024. "msecs": 856.0,
  5025. "msg": "Cache object is correct (Content %s and Type is %s).",
  5026. "name": "__tLogger__",
  5027. "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
  5028. "process": 291252,
  5029. "processName": "MainProcess",
  5030. "relativeCreated": 105.07631301879883,
  5031. "stack_info": null,
  5032. "thread": 139667813142592,
  5033. "threadName": "MainThread",
  5034. "time_consumption": 7.176399230957031e-05
  5035. }
  5036. ],
  5037. "thread": 139667813142592,
  5038. "threadName": "MainThread",
  5039. "time_consumption": 0.0013227462768554688,
  5040. "time_finished": "2024-09-22 12:01:39,856",
  5041. "time_start": "2024-09-22 12:01:39,855"
  5042. }
  5043. },
  5044. "testrun_id": "p3",
  5045. "time_consumption": 0.041495323181152344,
  5046. "uid_list_sorted": [
  5047. "caching.property_cache_json: Test full initialised JSON-Cache-Object",
  5048. "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
  5049. "caching.property_cache_json: Test cached data (full init)",
  5050. "caching.property_cache_json: Test cached data (partially init)",
  5051. "caching.property_cache_json: Test get from source caused by increased data version (full init)",
  5052. "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
  5053. "caching.property_cache_json: Test get from source caused by changed uid (full init)",
  5054. "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
  5055. "caching.property_cache_json: Test execution of save callback (full init)",
  5056. "caching.property_cache_json: Test internal key usage",
  5057. "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
  5058. "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object",
  5059. "caching.property_cache_pickle: Test cached data (full init)",
  5060. "caching.property_cache_pickle: Test cached data (partially init)",
  5061. "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
  5062. "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
  5063. "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
  5064. "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
  5065. "caching.property_cache_pickle: Test execution of save callback (full init)",
  5066. "caching.property_cache_pickle: Test internal key usage"
  5067. ]
  5068. }
  5069. ],
  5070. "unittest_information": {
  5071. "Version": "ac6e9667753d32025048abc5366ddb10"
  5072. }
  5073. }