Python Library Caching
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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