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

unittest.json 307KB

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