Python Library Caching
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

unittest.json 299KB

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