Python Library Media
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 372KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558
  1. {
  2. "coverage_information": [
  3. {
  4. "branch_coverage": 95.65,
  5. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media",
  6. "files": [
  7. {
  8. "branch_coverage": 95.65,
  9. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media/__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": 29,
  39. "start": 27
  40. },
  41. {
  42. "coverage_state": "clean",
  43. "end": 30,
  44. "start": 30
  45. },
  46. {
  47. "coverage_state": "covered",
  48. "end": 32,
  49. "start": 31
  50. },
  51. {
  52. "coverage_state": "clean",
  53. "end": 34,
  54. "start": 33
  55. },
  56. {
  57. "coverage_state": "covered",
  58. "end": 35,
  59. "start": 35
  60. },
  61. {
  62. "coverage_state": "clean",
  63. "end": 37,
  64. "start": 36
  65. },
  66. {
  67. "coverage_state": "covered",
  68. "end": 38,
  69. "start": 38
  70. },
  71. {
  72. "coverage_state": "clean",
  73. "end": 41,
  74. "start": 39
  75. },
  76. {
  77. "coverage_state": "covered",
  78. "end": 64,
  79. "start": 42
  80. },
  81. {
  82. "coverage_state": "clean",
  83. "end": 66,
  84. "start": 65
  85. },
  86. {
  87. "coverage_state": "covered",
  88. "end": 69,
  89. "start": 67
  90. },
  91. {
  92. "coverage_state": "clean",
  93. "end": 70,
  94. "start": 70
  95. },
  96. {
  97. "coverage_state": "covered",
  98. "end": 71,
  99. "start": 71
  100. },
  101. {
  102. "coverage_state": "clean",
  103. "end": 72,
  104. "start": 72
  105. },
  106. {
  107. "coverage_state": "covered",
  108. "end": 78,
  109. "start": 73
  110. },
  111. {
  112. "coverage_state": "clean",
  113. "end": 79,
  114. "start": 79
  115. },
  116. {
  117. "coverage_state": "covered",
  118. "end": 80,
  119. "start": 80
  120. },
  121. {
  122. "coverage_state": "clean",
  123. "end": 82,
  124. "start": 81
  125. },
  126. {
  127. "coverage_state": "covered",
  128. "end": 88,
  129. "start": 83
  130. },
  131. {
  132. "coverage_state": "clean",
  133. "end": 89,
  134. "start": 89
  135. },
  136. {
  137. "coverage_state": "covered",
  138. "end": 94,
  139. "start": 90
  140. },
  141. {
  142. "coverage_state": "clean",
  143. "end": 96,
  144. "start": 95
  145. },
  146. {
  147. "coverage_state": "covered",
  148. "end": 100,
  149. "start": 97
  150. },
  151. {
  152. "coverage_state": "clean",
  153. "end": 101,
  154. "start": 101
  155. },
  156. {
  157. "coverage_state": "covered",
  158. "end": 102,
  159. "start": 102
  160. },
  161. {
  162. "coverage_state": "clean",
  163. "end": 103,
  164. "start": 103
  165. },
  166. {
  167. "coverage_state": "covered",
  168. "end": 105,
  169. "start": 104
  170. },
  171. {
  172. "coverage_state": "clean",
  173. "end": 106,
  174. "start": 106
  175. },
  176. {
  177. "coverage_state": "covered",
  178. "end": 117,
  179. "start": 107
  180. },
  181. {
  182. "coverage_state": "clean",
  183. "end": 118,
  184. "start": 118
  185. },
  186. {
  187. "coverage_state": "covered",
  188. "end": 122,
  189. "start": 119
  190. },
  191. {
  192. "coverage_state": "clean",
  193. "end": 123,
  194. "start": 123
  195. },
  196. {
  197. "coverage_state": "covered",
  198. "end": 128,
  199. "start": 124
  200. },
  201. {
  202. "coverage_state": "clean",
  203. "end": 129,
  204. "start": 129
  205. },
  206. {
  207. "coverage_state": "covered",
  208. "end": 134,
  209. "start": 130
  210. },
  211. {
  212. "coverage_state": "clean",
  213. "end": 135,
  214. "start": 135
  215. },
  216. {
  217. "coverage_state": "covered",
  218. "end": 139,
  219. "start": 136
  220. },
  221. {
  222. "coverage_state": "clean",
  223. "end": 140,
  224. "start": 140
  225. },
  226. {
  227. "coverage_state": "covered",
  228. "end": 145,
  229. "start": 141
  230. },
  231. {
  232. "coverage_state": "clean",
  233. "end": 146,
  234. "start": 146
  235. },
  236. {
  237. "coverage_state": "covered",
  238. "end": 150,
  239. "start": 147
  240. },
  241. {
  242. "coverage_state": "clean",
  243. "end": 151,
  244. "start": 151
  245. },
  246. {
  247. "coverage_state": "covered",
  248. "end": 158,
  249. "start": 152
  250. },
  251. {
  252. "coverage_state": "clean",
  253. "end": 159,
  254. "start": 159
  255. },
  256. {
  257. "coverage_state": "covered",
  258. "end": 165,
  259. "start": 160
  260. },
  261. {
  262. "coverage_state": "clean",
  263. "end": 166,
  264. "start": 166
  265. },
  266. {
  267. "coverage_state": "partially-covered",
  268. "end": 167,
  269. "start": 167
  270. },
  271. {
  272. "coverage_state": "covered",
  273. "end": 172,
  274. "start": 168
  275. },
  276. {
  277. "coverage_state": "clean",
  278. "end": 173,
  279. "start": 173
  280. },
  281. {
  282. "coverage_state": "covered",
  283. "end": 175,
  284. "start": 174
  285. },
  286. {
  287. "coverage_state": "clean",
  288. "end": 176,
  289. "start": 176
  290. },
  291. {
  292. "coverage_state": "covered",
  293. "end": 177,
  294. "start": 177
  295. },
  296. {
  297. "coverage_state": "partially-covered",
  298. "end": 178,
  299. "start": 178
  300. },
  301. {
  302. "coverage_state": "covered",
  303. "end": 179,
  304. "start": 179
  305. },
  306. {
  307. "coverage_state": "clean",
  308. "end": 180,
  309. "start": 180
  310. },
  311. {
  312. "coverage_state": "uncovered",
  313. "end": 181,
  314. "start": 181
  315. },
  316. {
  317. "coverage_state": "clean",
  318. "end": 182,
  319. "start": 182
  320. },
  321. {
  322. "coverage_state": "covered",
  323. "end": 185,
  324. "start": 183
  325. },
  326. {
  327. "coverage_state": "clean",
  328. "end": 187,
  329. "start": 186
  330. },
  331. {
  332. "coverage_state": "covered",
  333. "end": 191,
  334. "start": 188
  335. },
  336. {
  337. "coverage_state": "clean",
  338. "end": 192,
  339. "start": 192
  340. },
  341. {
  342. "coverage_state": "covered",
  343. "end": 193,
  344. "start": 193
  345. },
  346. {
  347. "coverage_state": "clean",
  348. "end": 194,
  349. "start": 194
  350. },
  351. {
  352. "coverage_state": "covered",
  353. "end": 197,
  354. "start": 195
  355. },
  356. {
  357. "coverage_state": "clean",
  358. "end": 198,
  359. "start": 198
  360. },
  361. {
  362. "coverage_state": "covered",
  363. "end": 199,
  364. "start": 199
  365. },
  366. {
  367. "coverage_state": "clean",
  368. "end": 201,
  369. "start": 200
  370. },
  371. {
  372. "coverage_state": "covered",
  373. "end": 202,
  374. "start": 202
  375. },
  376. {
  377. "coverage_state": "clean",
  378. "end": 203,
  379. "start": 203
  380. },
  381. {
  382. "coverage_state": "covered",
  383. "end": 213,
  384. "start": 204
  385. },
  386. {
  387. "coverage_state": "clean",
  388. "end": 214,
  389. "start": 214
  390. },
  391. {
  392. "coverage_state": "covered",
  393. "end": 216,
  394. "start": 215
  395. },
  396. {
  397. "coverage_state": "clean",
  398. "end": 217,
  399. "start": 217
  400. },
  401. {
  402. "coverage_state": "covered",
  403. "end": 219,
  404. "start": 218
  405. },
  406. {
  407. "coverage_state": "clean",
  408. "end": 220,
  409. "start": 220
  410. },
  411. {
  412. "coverage_state": "covered",
  413. "end": 221,
  414. "start": 221
  415. },
  416. {
  417. "coverage_state": "clean",
  418. "end": null,
  419. "start": 222
  420. }
  421. ],
  422. "line_coverage": 99.33999999999999,
  423. "name": "media.__init__.py"
  424. },
  425. {
  426. "branch_coverage": 95.65,
  427. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media/common.py",
  428. "fragments": [
  429. {
  430. "coverage_state": "covered",
  431. "end": 1,
  432. "start": 1
  433. },
  434. {
  435. "coverage_state": "clean",
  436. "end": 2,
  437. "start": 2
  438. },
  439. {
  440. "coverage_state": "covered",
  441. "end": 5,
  442. "start": 3
  443. },
  444. {
  445. "coverage_state": "clean",
  446. "end": 6,
  447. "start": 6
  448. },
  449. {
  450. "coverage_state": "covered",
  451. "end": 9,
  452. "start": 7
  453. },
  454. {
  455. "coverage_state": "clean",
  456. "end": 11,
  457. "start": 10
  458. },
  459. {
  460. "coverage_state": "covered",
  461. "end": 19,
  462. "start": 12
  463. },
  464. {
  465. "coverage_state": "clean",
  466. "end": null,
  467. "start": 20
  468. }
  469. ],
  470. "line_coverage": 100.0,
  471. "name": "media.common.py"
  472. },
  473. {
  474. "branch_coverage": 95.65,
  475. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media/convert.py",
  476. "fragments": [
  477. {
  478. "coverage_state": "covered",
  479. "end": 5,
  480. "start": 1
  481. },
  482. {
  483. "coverage_state": "clean",
  484. "end": 7,
  485. "start": 6
  486. },
  487. {
  488. "coverage_state": "covered",
  489. "end": 12,
  490. "start": 8
  491. },
  492. {
  493. "coverage_state": "clean",
  494. "end": 13,
  495. "start": 13
  496. },
  497. {
  498. "coverage_state": "covered",
  499. "end": 18,
  500. "start": 14
  501. },
  502. {
  503. "coverage_state": "partially-covered",
  504. "end": 19,
  505. "start": 19
  506. },
  507. {
  508. "coverage_state": "covered",
  509. "end": 20,
  510. "start": 20
  511. },
  512. {
  513. "coverage_state": "clean",
  514. "end": 21,
  515. "start": 21
  516. },
  517. {
  518. "coverage_state": "uncovered",
  519. "end": 22,
  520. "start": 22
  521. },
  522. {
  523. "coverage_state": "covered",
  524. "end": 24,
  525. "start": 23
  526. },
  527. {
  528. "coverage_state": "uncovered",
  529. "end": 27,
  530. "start": 25
  531. },
  532. {
  533. "coverage_state": "covered",
  534. "end": 33,
  535. "start": 28
  536. },
  537. {
  538. "coverage_state": "clean",
  539. "end": 34,
  540. "start": 34
  541. },
  542. {
  543. "coverage_state": "covered",
  544. "end": 35,
  545. "start": 35
  546. },
  547. {
  548. "coverage_state": "clean",
  549. "end": null,
  550. "start": 36
  551. }
  552. ],
  553. "line_coverage": 86.67,
  554. "name": "media.convert.py"
  555. },
  556. {
  557. "branch_coverage": 95.65,
  558. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media/metadata.py",
  559. "fragments": [
  560. {
  561. "coverage_state": "covered",
  562. "end": 6,
  563. "start": 1
  564. },
  565. {
  566. "coverage_state": "clean",
  567. "end": 8,
  568. "start": 7
  569. },
  570. {
  571. "coverage_state": "covered",
  572. "end": 9,
  573. "start": 9
  574. },
  575. {
  576. "coverage_state": "clean",
  577. "end": 11,
  578. "start": 10
  579. },
  580. {
  581. "coverage_state": "covered",
  582. "end": 13,
  583. "start": 12
  584. },
  585. {
  586. "coverage_state": "clean",
  587. "end": 15,
  588. "start": 14
  589. },
  590. {
  591. "coverage_state": "covered",
  592. "end": 32,
  593. "start": 16
  594. },
  595. {
  596. "coverage_state": "clean",
  597. "end": 34,
  598. "start": 33
  599. },
  600. {
  601. "coverage_state": "covered",
  602. "end": 44,
  603. "start": 35
  604. },
  605. {
  606. "coverage_state": "clean",
  607. "end": 46,
  608. "start": 45
  609. },
  610. {
  611. "coverage_state": "covered",
  612. "end": 48,
  613. "start": 47
  614. },
  615. {
  616. "coverage_state": "clean",
  617. "end": 50,
  618. "start": 49
  619. },
  620. {
  621. "coverage_state": "covered",
  622. "end": 52,
  623. "start": 51
  624. },
  625. {
  626. "coverage_state": "clean",
  627. "end": 53,
  628. "start": 53
  629. },
  630. {
  631. "coverage_state": "covered",
  632. "end": 57,
  633. "start": 54
  634. },
  635. {
  636. "coverage_state": "clean",
  637. "end": 58,
  638. "start": 58
  639. },
  640. {
  641. "coverage_state": "covered",
  642. "end": 61,
  643. "start": 59
  644. },
  645. {
  646. "coverage_state": "clean",
  647. "end": 62,
  648. "start": 62
  649. },
  650. {
  651. "coverage_state": "covered",
  652. "end": 64,
  653. "start": 63
  654. },
  655. {
  656. "coverage_state": "clean",
  657. "end": 65,
  658. "start": 65
  659. },
  660. {
  661. "coverage_state": "covered",
  662. "end": 67,
  663. "start": 66
  664. },
  665. {
  666. "coverage_state": "clean",
  667. "end": 68,
  668. "start": 68
  669. },
  670. {
  671. "coverage_state": "covered",
  672. "end": 71,
  673. "start": 69
  674. },
  675. {
  676. "coverage_state": "clean",
  677. "end": 73,
  678. "start": 72
  679. },
  680. {
  681. "coverage_state": "covered",
  682. "end": 76,
  683. "start": 74
  684. },
  685. {
  686. "coverage_state": "clean",
  687. "end": 77,
  688. "start": 77
  689. },
  690. {
  691. "coverage_state": "covered",
  692. "end": 79,
  693. "start": 78
  694. },
  695. {
  696. "coverage_state": "clean",
  697. "end": 80,
  698. "start": 80
  699. },
  700. {
  701. "coverage_state": "covered",
  702. "end": 85,
  703. "start": 81
  704. },
  705. {
  706. "coverage_state": "uncovered",
  707. "end": 88,
  708. "start": 86
  709. },
  710. {
  711. "coverage_state": "clean",
  712. "end": 89,
  713. "start": 89
  714. },
  715. {
  716. "coverage_state": "covered",
  717. "end": 95,
  718. "start": 90
  719. },
  720. {
  721. "coverage_state": "clean",
  722. "end": 96,
  723. "start": 96
  724. },
  725. {
  726. "coverage_state": "covered",
  727. "end": 103,
  728. "start": 97
  729. },
  730. {
  731. "coverage_state": "clean",
  732. "end": 105,
  733. "start": 104
  734. },
  735. {
  736. "coverage_state": "covered",
  737. "end": 112,
  738. "start": 106
  739. },
  740. {
  741. "coverage_state": "clean",
  742. "end": 113,
  743. "start": 113
  744. },
  745. {
  746. "coverage_state": "covered",
  747. "end": 114,
  748. "start": 114
  749. },
  750. {
  751. "coverage_state": "clean",
  752. "end": 115,
  753. "start": 115
  754. },
  755. {
  756. "coverage_state": "covered",
  757. "end": 135,
  758. "start": 116
  759. },
  760. {
  761. "coverage_state": "clean",
  762. "end": 138,
  763. "start": 136
  764. },
  765. {
  766. "coverage_state": "covered",
  767. "end": 141,
  768. "start": 139
  769. },
  770. {
  771. "coverage_state": "clean",
  772. "end": 143,
  773. "start": 142
  774. },
  775. {
  776. "coverage_state": "covered",
  777. "end": 153,
  778. "start": 144
  779. },
  780. {
  781. "coverage_state": "clean",
  782. "end": 155,
  783. "start": 154
  784. },
  785. {
  786. "coverage_state": "covered",
  787. "end": 157,
  788. "start": 156
  789. },
  790. {
  791. "coverage_state": "clean",
  792. "end": 169,
  793. "start": 158
  794. },
  795. {
  796. "coverage_state": "covered",
  797. "end": 171,
  798. "start": 170
  799. },
  800. {
  801. "coverage_state": "clean",
  802. "end": 187,
  803. "start": 172
  804. },
  805. {
  806. "coverage_state": "covered",
  807. "end": 199,
  808. "start": 188
  809. },
  810. {
  811. "coverage_state": "clean",
  812. "end": 201,
  813. "start": 200
  814. },
  815. {
  816. "coverage_state": "covered",
  817. "end": 204,
  818. "start": 202
  819. },
  820. {
  821. "coverage_state": "clean",
  822. "end": 206,
  823. "start": 205
  824. },
  825. {
  826. "coverage_state": "covered",
  827. "end": 217,
  828. "start": 207
  829. },
  830. {
  831. "coverage_state": "partially-covered",
  832. "end": 218,
  833. "start": 218
  834. },
  835. {
  836. "coverage_state": "covered",
  837. "end": 221,
  838. "start": 219
  839. },
  840. {
  841. "coverage_state": "clean",
  842. "end": 223,
  843. "start": 222
  844. },
  845. {
  846. "coverage_state": "covered",
  847. "end": 227,
  848. "start": 224
  849. },
  850. {
  851. "coverage_state": "clean",
  852. "end": null,
  853. "start": 228
  854. }
  855. ],
  856. "line_coverage": 98.11,
  857. "name": "media.metadata.py"
  858. }
  859. ],
  860. "line_coverage": 97.75,
  861. "name": "media"
  862. }
  863. ],
  864. "lost_souls": {
  865. "item_list": [],
  866. "testcase_list": []
  867. },
  868. "specification": {
  869. "comment": "Comment",
  870. "item_dict": {
  871. "_AdR7EEYDEequ74M7usLaPw": {
  872. "Description": "The class {\\tt image} shall have a method {\\tt rotate\\_by\\_orientation}, which rotates the image by an exif orientation. If no parameter is given, the orientation will be taken out of the loaded image. The method returns {\\tt True} on success and {\\tt False} on failures.",
  873. "Fitcriterion": "",
  874. "Heading": "Rotate",
  875. "ID": "REQ-6",
  876. "last_change": "2020-02-02T23:47:29.986+01:00",
  877. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  878. "system_uid": "_AdR7EEYDEequ74M7usLaPw",
  879. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  880. },
  881. "_CBaAQEYDEequ74M7usLaPw": {
  882. "Description": "The class {\\tt image} shall have a method {\\tt join}, which joins an image to the loaded image. The method returns {\\tt True} on success and {\\tt False} on failures.",
  883. "Heading": "Join",
  884. "ID": "REQ-7",
  885. "last_change": "2020-02-02T23:47:36.859+01:00",
  886. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  887. "system_uid": "_CBaAQEYDEequ74M7usLaPw",
  888. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  889. },
  890. "_DBCGsEYCEequ74M7usLaPw": {
  891. "Description": "The library {\\tt media} shall have a class {\\tt image}. This class shall be able to read from image or video files, pil image instances or from {\\tt media.image} instances itself. The class shall help by some common tasks like rotating, resizing, \\ldots",
  892. "Heading": "Image",
  893. "last_change": "2020-02-02T23:46:21.153+01:00",
  894. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  895. "system_uid": "_DBCGsEYCEequ74M7usLaPw",
  896. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  897. },
  898. "_Fv7V4EYCEequ74M7usLaPw": {
  899. "Description": "The class {\\tt image} shall have a method {\\tt load\\_from\\_file}, which creates a copy of an image to the instance. Load from file can handle a filename, but also pil images and media images. The method returns {\\tt True} on success and {\\tt False} on failures.",
  900. "Heading": "Load from File",
  901. "ID": "REQ-2",
  902. "last_change": "2020-02-02T23:47:07.229+01:00",
  903. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  904. "system_uid": "_Fv7V4EYCEequ74M7usLaPw",
  905. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  906. },
  907. "_HGpRMEYCEequ74M7usLaPw": {
  908. "Description": "The class {\\tt image} shall have a method {\\tt save}, which stores the modified image to a given filename. The method returns {\\tt True} on success and {\\tt False} on failures.",
  909. "Heading": "Save",
  910. "ID": "REQ-3",
  911. "last_change": "2020-02-02T23:47:14.322+01:00",
  912. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  913. "system_uid": "_HGpRMEYCEequ74M7usLaPw",
  914. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  915. },
  916. "_MR7eOHYYEem_kd-7nxt1sg": {
  917. "Heading": "Metadata",
  918. "last_change": "2020-01-30T20:32:07.705+01:00",
  919. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  920. "system_uid": "_MR7eOHYYEem_kd-7nxt1sg",
  921. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  922. },
  923. "_XzMFcHYZEem_kd-7nxt1sg": {
  924. "Description": "A Method shall return the metadata for a given media filename.",
  925. "Fitcriterion": "",
  926. "Heading": "Method to get Metadata",
  927. "ID": "REQ-1",
  928. "ReasonForImplementation": "",
  929. "last_change": "2020-01-30T20:33:27.982+01:00",
  930. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  931. "system_uid": "_XzMFcHYZEem_kd-7nxt1sg",
  932. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  933. },
  934. "_wvLDcEYCEequ74M7usLaPw": {
  935. "Description": "The class {\\tt image} shall have a method {\\tt image\\_data}, which returns the raw data of the modified image.",
  936. "Heading": "Image data",
  937. "ID": "REQ-4",
  938. "last_change": "2020-02-02T23:44:49.710+01:00",
  939. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  940. "system_uid": "_wvLDcEYCEequ74M7usLaPw",
  941. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  942. },
  943. "_zQ29EEYCEequ74M7usLaPw": {
  944. "Description": "The class {\\tt image} shall have a method {\\tt resize}, which resizes the image. The method returns {\\tt True} on success and {\\tt False} on failures.",
  945. "Heading": "Resize",
  946. "ID": "REQ-5",
  947. "last_change": "2020-02-02T23:47:23.563+01:00",
  948. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  949. "system_uid": "_zQ29EEYCEequ74M7usLaPw",
  950. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  951. }
  952. },
  953. "titel": "Title",
  954. "uid_list_sorted": [
  955. "_MR7eOHYYEem_kd-7nxt1sg",
  956. "_XzMFcHYZEem_kd-7nxt1sg",
  957. "_DBCGsEYCEequ74M7usLaPw",
  958. "_Fv7V4EYCEequ74M7usLaPw",
  959. "_HGpRMEYCEequ74M7usLaPw",
  960. "_wvLDcEYCEequ74M7usLaPw",
  961. "_zQ29EEYCEequ74M7usLaPw",
  962. "_AdR7EEYDEequ74M7usLaPw",
  963. "_CBaAQEYDEequ74M7usLaPw"
  964. ]
  965. },
  966. "system_information": {
  967. "Architecture": "64bit",
  968. "Distribution": "LinuxMint 19.3 tricia",
  969. "Hostname": "ahorn",
  970. "Kernel": "5.3.0-28-generic (#30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020)",
  971. "Machine": "x86_64",
  972. "Path": "/user_data/data/dirk/prj/unittest/media/unittest",
  973. "System": "Linux",
  974. "Username": "dirk"
  975. },
  976. "testobject_information": {
  977. "Dependencies": [],
  978. "Description": "The Module {\\tt media} is designed to help on all issues with media files, like tags (e.g. exif, id3) and transformations.\nFor more Information read the documentation.",
  979. "Name": "media",
  980. "State": "Released",
  981. "Supported Interpreters": "python3",
  982. "Version": "2085183bcfe39114bb35db93ee8e49cd"
  983. },
  984. "testrun_list": [
  985. {
  986. "heading_dict": {
  987. "_AdR7EEYDEequ74M7usLaPw": "Rotate",
  988. "_CBaAQEYDEequ74M7usLaPw": "Join",
  989. "_DBCGsEYCEequ74M7usLaPw": "Image",
  990. "_Fv7V4EYCEequ74M7usLaPw": "Load from File",
  991. "_HGpRMEYCEequ74M7usLaPw": "Save",
  992. "_MR7eOHYYEem_kd-7nxt1sg": "Metadata",
  993. "_XzMFcHYZEem_kd-7nxt1sg": "Method to get Metadata",
  994. "_wvLDcEYCEequ74M7usLaPw": "Image data",
  995. "_zQ29EEYCEequ74M7usLaPw": "Resize"
  996. },
  997. "interpreter": "python 3.6.9 (final)",
  998. "name": "Default Testsession name",
  999. "number_of_failed_tests": 0,
  1000. "number_of_possibly_failed_tests": 0,
  1001. "number_of_successfull_tests": 7,
  1002. "number_of_tests": 7,
  1003. "testcase_execution_level": 90,
  1004. "testcase_names": {
  1005. "0": "Single Test",
  1006. "10": "Smoke Test (Minumum subset)",
  1007. "50": "Short Test (Subset)",
  1008. "90": "Full Test (all defined tests)"
  1009. },
  1010. "testcases": {
  1011. "_AdR7EEYDEequ74M7usLaPw": {
  1012. "args": null,
  1013. "asctime": "2020-02-03 11:51:48,925",
  1014. "created": 1580727108.9257958,
  1015. "exc_info": null,
  1016. "exc_text": null,
  1017. "filename": "__init__.py",
  1018. "funcName": "testrun",
  1019. "levelname": "INFO",
  1020. "levelno": 20,
  1021. "lineno": 35,
  1022. "message": "_AdR7EEYDEequ74M7usLaPw",
  1023. "module": "__init__",
  1024. "moduleLogger": [],
  1025. "msecs": 925.7957935333252,
  1026. "msg": "_AdR7EEYDEequ74M7usLaPw",
  1027. "name": "__tLogger__",
  1028. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  1029. "process": 3545,
  1030. "processName": "MainProcess",
  1031. "relativeCreated": 3013.9434337615967,
  1032. "stack_info": null,
  1033. "testcaseLogger": [
  1034. {
  1035. "args": [
  1036. "False",
  1037. "<class 'bool'>"
  1038. ],
  1039. "asctime": "2020-02-03 11:51:48,926",
  1040. "created": 1580727108.9267018,
  1041. "exc_info": null,
  1042. "exc_text": null,
  1043. "filename": "test.py",
  1044. "funcName": "equivalency_chk",
  1045. "levelname": "INFO",
  1046. "levelno": 20,
  1047. "lineno": 142,
  1048. "message": "Returnvalue of rotate method without loading an image is correct (Content False and Type is <class 'bool'>).",
  1049. "module": "test",
  1050. "moduleLogger": [
  1051. {
  1052. "args": [],
  1053. "asctime": "2020-02-03 11:51:48,926",
  1054. "created": 1580727108.9261687,
  1055. "exc_info": null,
  1056. "exc_text": null,
  1057. "filename": "__init__.py",
  1058. "funcName": "rotate_by_orientation",
  1059. "levelname": "WARNING",
  1060. "levelno": 30,
  1061. "lineno": 149,
  1062. "message": "No image available, rotation not possible",
  1063. "module": "__init__",
  1064. "msecs": 926.16868019104,
  1065. "msg": "No image available, rotation not possible",
  1066. "name": "MEDIA",
  1067. "pathname": "src/media/__init__.py",
  1068. "process": 3545,
  1069. "processName": "MainProcess",
  1070. "relativeCreated": 3014.3163204193115,
  1071. "stack_info": null,
  1072. "thread": 140585574717248,
  1073. "threadName": "MainThread"
  1074. },
  1075. {
  1076. "args": [
  1077. "Returnvalue of rotate method without loading an image",
  1078. "False",
  1079. "<class 'bool'>"
  1080. ],
  1081. "asctime": "2020-02-03 11:51:48,926",
  1082. "created": 1580727108.9263706,
  1083. "exc_info": null,
  1084. "exc_text": null,
  1085. "filename": "test.py",
  1086. "funcName": "__report_result__",
  1087. "levelname": "DEBUG",
  1088. "levelno": 10,
  1089. "lineno": 22,
  1090. "message": "Result (Returnvalue of rotate method without loading an image): False (<class 'bool'>)",
  1091. "module": "test",
  1092. "msecs": 926.3706207275391,
  1093. "msg": "Result (%s): %s (%s)",
  1094. "name": "__unittest__",
  1095. "pathname": "src/unittest/test.py",
  1096. "process": 3545,
  1097. "processName": "MainProcess",
  1098. "relativeCreated": 3014.5182609558105,
  1099. "stack_info": null,
  1100. "thread": 140585574717248,
  1101. "threadName": "MainThread"
  1102. },
  1103. {
  1104. "args": [
  1105. "Returnvalue of rotate method without loading an image",
  1106. "False",
  1107. "<class 'bool'>"
  1108. ],
  1109. "asctime": "2020-02-03 11:51:48,926",
  1110. "created": 1580727108.9265313,
  1111. "exc_info": null,
  1112. "exc_text": null,
  1113. "filename": "test.py",
  1114. "funcName": "__report_expectation_equivalency__",
  1115. "levelname": "DEBUG",
  1116. "levelno": 10,
  1117. "lineno": 26,
  1118. "message": "Expectation (Returnvalue of rotate method without loading an image): result = False (<class 'bool'>)",
  1119. "module": "test",
  1120. "msecs": 926.5313148498535,
  1121. "msg": "Expectation (%s): result = %s (%s)",
  1122. "name": "__unittest__",
  1123. "pathname": "src/unittest/test.py",
  1124. "process": 3545,
  1125. "processName": "MainProcess",
  1126. "relativeCreated": 3014.678955078125,
  1127. "stack_info": null,
  1128. "thread": 140585574717248,
  1129. "threadName": "MainThread"
  1130. }
  1131. ],
  1132. "msecs": 926.7017841339111,
  1133. "msg": "Returnvalue of rotate method without loading an image is correct (Content %s and Type is %s).",
  1134. "name": "__tLogger__",
  1135. "pathname": "src/unittest/test.py",
  1136. "process": 3545,
  1137. "processName": "MainProcess",
  1138. "relativeCreated": 3014.8494243621826,
  1139. "stack_info": null,
  1140. "thread": 140585574717248,
  1141. "threadName": "MainThread",
  1142. "time_consumption": 0.0001704692840576172
  1143. },
  1144. {
  1145. "args": [
  1146. "False",
  1147. "<class 'bool'>"
  1148. ],
  1149. "asctime": "2020-02-03 11:51:49,144",
  1150. "created": 1580727109.144775,
  1151. "exc_info": null,
  1152. "exc_text": null,
  1153. "filename": "test.py",
  1154. "funcName": "equivalency_chk",
  1155. "levelname": "INFO",
  1156. "levelno": 20,
  1157. "lineno": 142,
  1158. "message": "Returnvalue of rotate method with invalid orientation is correct (Content False and Type is <class 'bool'>).",
  1159. "module": "test",
  1160. "moduleLogger": [
  1161. {
  1162. "args": [
  1163. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1164. ],
  1165. "asctime": "2020-02-03 11:51:49,144",
  1166. "created": 1580727109.1445067,
  1167. "exc_info": null,
  1168. "exc_text": null,
  1169. "filename": "__init__.py",
  1170. "funcName": "load_from_file",
  1171. "levelname": "DEBUG",
  1172. "levelno": 10,
  1173. "lineno": 116,
  1174. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1175. "module": "__init__",
  1176. "msecs": 144.50669288635254,
  1177. "msg": "loading image from %s",
  1178. "name": "MEDIA",
  1179. "pathname": "src/media/__init__.py",
  1180. "process": 3545,
  1181. "processName": "MainProcess",
  1182. "relativeCreated": 3232.654333114624,
  1183. "stack_info": null,
  1184. "thread": 140585574717248,
  1185. "threadName": "MainThread"
  1186. },
  1187. {
  1188. "args": [
  1189. "17"
  1190. ],
  1191. "asctime": "2020-02-03 11:51:49,144",
  1192. "created": 1580727109.1446345,
  1193. "exc_info": null,
  1194. "exc_text": null,
  1195. "filename": "__init__.py",
  1196. "funcName": "rotate_by_orientation",
  1197. "levelname": "WARNING",
  1198. "levelno": 30,
  1199. "lineno": 168,
  1200. "message": "Orientation 17 unknown for rotation",
  1201. "module": "__init__",
  1202. "msecs": 144.63448524475098,
  1203. "msg": "Orientation %s unknown for rotation",
  1204. "name": "MEDIA",
  1205. "pathname": "src/media/__init__.py",
  1206. "process": 3545,
  1207. "processName": "MainProcess",
  1208. "relativeCreated": 3232.7821254730225,
  1209. "stack_info": null,
  1210. "thread": 140585574717248,
  1211. "threadName": "MainThread"
  1212. },
  1213. {
  1214. "args": [
  1215. "Returnvalue of rotate method with invalid orientation",
  1216. "False",
  1217. "<class 'bool'>"
  1218. ],
  1219. "asctime": "2020-02-03 11:51:49,144",
  1220. "created": 1580727109.1446946,
  1221. "exc_info": null,
  1222. "exc_text": null,
  1223. "filename": "test.py",
  1224. "funcName": "__report_result__",
  1225. "levelname": "DEBUG",
  1226. "levelno": 10,
  1227. "lineno": 22,
  1228. "message": "Result (Returnvalue of rotate method with invalid orientation): False (<class 'bool'>)",
  1229. "module": "test",
  1230. "msecs": 144.69456672668457,
  1231. "msg": "Result (%s): %s (%s)",
  1232. "name": "__unittest__",
  1233. "pathname": "src/unittest/test.py",
  1234. "process": 3545,
  1235. "processName": "MainProcess",
  1236. "relativeCreated": 3232.842206954956,
  1237. "stack_info": null,
  1238. "thread": 140585574717248,
  1239. "threadName": "MainThread"
  1240. },
  1241. {
  1242. "args": [
  1243. "Returnvalue of rotate method with invalid orientation",
  1244. "False",
  1245. "<class 'bool'>"
  1246. ],
  1247. "asctime": "2020-02-03 11:51:49,144",
  1248. "created": 1580727109.1447349,
  1249. "exc_info": null,
  1250. "exc_text": null,
  1251. "filename": "test.py",
  1252. "funcName": "__report_expectation_equivalency__",
  1253. "levelname": "DEBUG",
  1254. "levelno": 10,
  1255. "lineno": 26,
  1256. "message": "Expectation (Returnvalue of rotate method with invalid orientation): result = False (<class 'bool'>)",
  1257. "module": "test",
  1258. "msecs": 144.73485946655273,
  1259. "msg": "Expectation (%s): result = %s (%s)",
  1260. "name": "__unittest__",
  1261. "pathname": "src/unittest/test.py",
  1262. "process": 3545,
  1263. "processName": "MainProcess",
  1264. "relativeCreated": 3232.882499694824,
  1265. "stack_info": null,
  1266. "thread": 140585574717248,
  1267. "threadName": "MainThread"
  1268. }
  1269. ],
  1270. "msecs": 144.7749137878418,
  1271. "msg": "Returnvalue of rotate method with invalid orientation is correct (Content %s and Type is %s).",
  1272. "name": "__tLogger__",
  1273. "pathname": "src/unittest/test.py",
  1274. "process": 3545,
  1275. "processName": "MainProcess",
  1276. "relativeCreated": 3232.9225540161133,
  1277. "stack_info": null,
  1278. "thread": 140585574717248,
  1279. "threadName": "MainThread",
  1280. "time_consumption": 4.00543212890625e-05
  1281. },
  1282. {
  1283. "args": [
  1284. "False",
  1285. "<class 'bool'>"
  1286. ],
  1287. "asctime": "2020-02-03 11:51:49,306",
  1288. "created": 1580727109.3064148,
  1289. "exc_info": null,
  1290. "exc_text": null,
  1291. "filename": "test.py",
  1292. "funcName": "equivalency_chk",
  1293. "levelname": "INFO",
  1294. "levelno": 20,
  1295. "lineno": 142,
  1296. "message": "Returnvalue of rotate method with no orientation in method call and exif is correct (Content False and Type is <class 'bool'>).",
  1297. "module": "test",
  1298. "moduleLogger": [
  1299. {
  1300. "args": [
  1301. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg'"
  1302. ],
  1303. "asctime": "2020-02-03 11:51:49,303",
  1304. "created": 1580727109.3033936,
  1305. "exc_info": null,
  1306. "exc_text": null,
  1307. "filename": "__init__.py",
  1308. "funcName": "load_from_file",
  1309. "levelname": "DEBUG",
  1310. "levelno": 10,
  1311. "lineno": 116,
  1312. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg'",
  1313. "module": "__init__",
  1314. "msecs": 303.3936023712158,
  1315. "msg": "loading image from %s",
  1316. "name": "MEDIA",
  1317. "pathname": "src/media/__init__.py",
  1318. "process": 3545,
  1319. "processName": "MainProcess",
  1320. "relativeCreated": 3391.5412425994873,
  1321. "stack_info": null,
  1322. "thread": 140585574717248,
  1323. "threadName": "MainThread"
  1324. },
  1325. {
  1326. "args": [
  1327. "Returnvalue of rotate method with no orientation in method call and exif",
  1328. "False",
  1329. "<class 'bool'>"
  1330. ],
  1331. "asctime": "2020-02-03 11:51:49,306",
  1332. "created": 1580727109.3062556,
  1333. "exc_info": null,
  1334. "exc_text": null,
  1335. "filename": "test.py",
  1336. "funcName": "__report_result__",
  1337. "levelname": "DEBUG",
  1338. "levelno": 10,
  1339. "lineno": 22,
  1340. "message": "Result (Returnvalue of rotate method with no orientation in method call and exif): False (<class 'bool'>)",
  1341. "module": "test",
  1342. "msecs": 306.255578994751,
  1343. "msg": "Result (%s): %s (%s)",
  1344. "name": "__unittest__",
  1345. "pathname": "src/unittest/test.py",
  1346. "process": 3545,
  1347. "processName": "MainProcess",
  1348. "relativeCreated": 3394.4032192230225,
  1349. "stack_info": null,
  1350. "thread": 140585574717248,
  1351. "threadName": "MainThread"
  1352. },
  1353. {
  1354. "args": [
  1355. "Returnvalue of rotate method with no orientation in method call and exif",
  1356. "False",
  1357. "<class 'bool'>"
  1358. ],
  1359. "asctime": "2020-02-03 11:51:49,306",
  1360. "created": 1580727109.3063507,
  1361. "exc_info": null,
  1362. "exc_text": null,
  1363. "filename": "test.py",
  1364. "funcName": "__report_expectation_equivalency__",
  1365. "levelname": "DEBUG",
  1366. "levelno": 10,
  1367. "lineno": 26,
  1368. "message": "Expectation (Returnvalue of rotate method with no orientation in method call and exif): result = False (<class 'bool'>)",
  1369. "module": "test",
  1370. "msecs": 306.3507080078125,
  1371. "msg": "Expectation (%s): result = %s (%s)",
  1372. "name": "__unittest__",
  1373. "pathname": "src/unittest/test.py",
  1374. "process": 3545,
  1375. "processName": "MainProcess",
  1376. "relativeCreated": 3394.498348236084,
  1377. "stack_info": null,
  1378. "thread": 140585574717248,
  1379. "threadName": "MainThread"
  1380. }
  1381. ],
  1382. "msecs": 306.4148426055908,
  1383. "msg": "Returnvalue of rotate method with no orientation in method call and exif is correct (Content %s and Type is %s).",
  1384. "name": "__tLogger__",
  1385. "pathname": "src/unittest/test.py",
  1386. "process": 3545,
  1387. "processName": "MainProcess",
  1388. "relativeCreated": 3394.5624828338623,
  1389. "stack_info": null,
  1390. "thread": 140585574717248,
  1391. "threadName": "MainThread",
  1392. "time_consumption": 6.413459777832031e-05
  1393. },
  1394. {
  1395. "args": [
  1396. "True",
  1397. "<class 'bool'>"
  1398. ],
  1399. "asctime": "2020-02-03 11:51:49,739",
  1400. "created": 1580727109.739056,
  1401. "exc_info": null,
  1402. "exc_text": null,
  1403. "filename": "test.py",
  1404. "funcName": "equivalency_chk",
  1405. "levelname": "INFO",
  1406. "levelno": 20,
  1407. "lineno": 142,
  1408. "message": "Filecompare for rotated_image_none.jpg is correct (Content True and Type is <class 'bool'>).",
  1409. "module": "test",
  1410. "moduleLogger": [
  1411. {
  1412. "args": [
  1413. "None"
  1414. ],
  1415. "asctime": "2020-02-03 11:51:49,306",
  1416. "created": 1580727109.3065114,
  1417. "exc_info": null,
  1418. "exc_text": null,
  1419. "filename": "test_image.py",
  1420. "funcName": "rotate_by_orientation",
  1421. "levelname": "DEBUG",
  1422. "levelno": 10,
  1423. "lineno": 78,
  1424. "message": "Rotate with orientation None",
  1425. "module": "test_image",
  1426. "msecs": 306.51140213012695,
  1427. "msg": "Rotate with orientation %s",
  1428. "name": "__unittest__",
  1429. "pathname": "src/tests/test_image.py",
  1430. "process": 3545,
  1431. "processName": "MainProcess",
  1432. "relativeCreated": 3394.6590423583984,
  1433. "stack_info": null,
  1434. "thread": 140585574717248,
  1435. "threadName": "MainThread"
  1436. },
  1437. {
  1438. "args": [
  1439. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1440. ],
  1441. "asctime": "2020-02-03 11:51:49,538",
  1442. "created": 1580727109.5388722,
  1443. "exc_info": null,
  1444. "exc_text": null,
  1445. "filename": "__init__.py",
  1446. "funcName": "load_from_file",
  1447. "levelname": "DEBUG",
  1448. "levelno": 10,
  1449. "lineno": 116,
  1450. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1451. "module": "__init__",
  1452. "msecs": 538.872241973877,
  1453. "msg": "loading image from %s",
  1454. "name": "MEDIA",
  1455. "pathname": "src/media/__init__.py",
  1456. "process": 3545,
  1457. "processName": "MainProcess",
  1458. "relativeCreated": 3627.0198822021484,
  1459. "stack_info": null,
  1460. "thread": 140585574717248,
  1461. "threadName": "MainThread"
  1462. },
  1463. {
  1464. "args": [
  1465. "6"
  1466. ],
  1467. "asctime": "2020-02-03 11:51:49,540",
  1468. "created": 1580727109.540231,
  1469. "exc_info": null,
  1470. "exc_text": null,
  1471. "filename": "__init__.py",
  1472. "funcName": "rotate_by_orientation",
  1473. "levelname": "DEBUG",
  1474. "levelno": 10,
  1475. "lineno": 156,
  1476. "message": "No orientation given, orientation 6 extract from exif data",
  1477. "module": "__init__",
  1478. "msecs": 540.2309894561768,
  1479. "msg": "No orientation given, orientation %s extract from exif data",
  1480. "name": "MEDIA",
  1481. "pathname": "src/media/__init__.py",
  1482. "process": 3545,
  1483. "processName": "MainProcess",
  1484. "relativeCreated": 3628.3786296844482,
  1485. "stack_info": null,
  1486. "thread": 140585574717248,
  1487. "threadName": "MainThread"
  1488. },
  1489. {
  1490. "args": [
  1491. 270
  1492. ],
  1493. "asctime": "2020-02-03 11:51:49,540",
  1494. "created": 1580727109.5408878,
  1495. "exc_info": null,
  1496. "exc_text": null,
  1497. "filename": "__init__.py",
  1498. "funcName": "rotate_by_orientation",
  1499. "levelname": "DEBUG",
  1500. "levelno": 10,
  1501. "lineno": 170,
  1502. "message": "Rotating picture by 270\u00b0",
  1503. "module": "__init__",
  1504. "msecs": 540.8878326416016,
  1505. "msg": "Rotating picture by %d\u00b0",
  1506. "name": "MEDIA",
  1507. "pathname": "src/media/__init__.py",
  1508. "process": 3545,
  1509. "processName": "MainProcess",
  1510. "relativeCreated": 3629.035472869873,
  1511. "stack_info": null,
  1512. "thread": 140585574717248,
  1513. "threadName": "MainThread"
  1514. },
  1515. {
  1516. "args": [
  1517. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_none.jpg'"
  1518. ],
  1519. "asctime": "2020-02-03 11:51:49,592",
  1520. "created": 1580727109.592636,
  1521. "exc_info": null,
  1522. "exc_text": null,
  1523. "filename": "__init__.py",
  1524. "funcName": "save",
  1525. "levelname": "DEBUG",
  1526. "levelno": 10,
  1527. "lineno": 124,
  1528. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_none.jpg'",
  1529. "module": "__init__",
  1530. "msecs": 592.6361083984375,
  1531. "msg": "Saving image to %s",
  1532. "name": "MEDIA",
  1533. "pathname": "src/media/__init__.py",
  1534. "process": 3545,
  1535. "processName": "MainProcess",
  1536. "relativeCreated": 3680.783748626709,
  1537. "stack_info": null,
  1538. "thread": 140585574717248,
  1539. "threadName": "MainThread"
  1540. },
  1541. {
  1542. "args": [
  1543. "Filecompare for rotated_image_none.jpg",
  1544. "True",
  1545. "<class 'bool'>"
  1546. ],
  1547. "asctime": "2020-02-03 11:51:49,738",
  1548. "created": 1580727109.7388542,
  1549. "exc_info": null,
  1550. "exc_text": null,
  1551. "filename": "test.py",
  1552. "funcName": "__report_result__",
  1553. "levelname": "DEBUG",
  1554. "levelno": 10,
  1555. "lineno": 22,
  1556. "message": "Result (Filecompare for rotated_image_none.jpg): True (<class 'bool'>)",
  1557. "module": "test",
  1558. "msecs": 738.854169845581,
  1559. "msg": "Result (%s): %s (%s)",
  1560. "name": "__unittest__",
  1561. "pathname": "src/unittest/test.py",
  1562. "process": 3545,
  1563. "processName": "MainProcess",
  1564. "relativeCreated": 3827.0018100738525,
  1565. "stack_info": null,
  1566. "thread": 140585574717248,
  1567. "threadName": "MainThread"
  1568. },
  1569. {
  1570. "args": [
  1571. "Filecompare for rotated_image_none.jpg",
  1572. "True",
  1573. "<class 'bool'>"
  1574. ],
  1575. "asctime": "2020-02-03 11:51:49,738",
  1576. "created": 1580727109.7389755,
  1577. "exc_info": null,
  1578. "exc_text": null,
  1579. "filename": "test.py",
  1580. "funcName": "__report_expectation_equivalency__",
  1581. "levelname": "DEBUG",
  1582. "levelno": 10,
  1583. "lineno": 26,
  1584. "message": "Expectation (Filecompare for rotated_image_none.jpg): result = True (<class 'bool'>)",
  1585. "module": "test",
  1586. "msecs": 738.9755249023438,
  1587. "msg": "Expectation (%s): result = %s (%s)",
  1588. "name": "__unittest__",
  1589. "pathname": "src/unittest/test.py",
  1590. "process": 3545,
  1591. "processName": "MainProcess",
  1592. "relativeCreated": 3827.1231651306152,
  1593. "stack_info": null,
  1594. "thread": 140585574717248,
  1595. "threadName": "MainThread"
  1596. }
  1597. ],
  1598. "msecs": 739.0561103820801,
  1599. "msg": "Filecompare for rotated_image_none.jpg is correct (Content %s and Type is %s).",
  1600. "name": "__tLogger__",
  1601. "pathname": "src/unittest/test.py",
  1602. "process": 3545,
  1603. "processName": "MainProcess",
  1604. "relativeCreated": 3827.2037506103516,
  1605. "stack_info": null,
  1606. "thread": 140585574717248,
  1607. "threadName": "MainThread",
  1608. "time_consumption": 8.058547973632812e-05
  1609. },
  1610. {
  1611. "args": [
  1612. "True",
  1613. "<class 'bool'>"
  1614. ],
  1615. "asctime": "2020-02-03 11:51:50,221",
  1616. "created": 1580727110.2210581,
  1617. "exc_info": null,
  1618. "exc_text": null,
  1619. "filename": "test.py",
  1620. "funcName": "equivalency_chk",
  1621. "levelname": "INFO",
  1622. "levelno": 20,
  1623. "lineno": 142,
  1624. "message": "Filecompare for rotated_image_6.jpg is correct (Content True and Type is <class 'bool'>).",
  1625. "module": "test",
  1626. "moduleLogger": [
  1627. {
  1628. "args": [
  1629. "6"
  1630. ],
  1631. "asctime": "2020-02-03 11:51:49,739",
  1632. "created": 1580727109.7391727,
  1633. "exc_info": null,
  1634. "exc_text": null,
  1635. "filename": "test_image.py",
  1636. "funcName": "rotate_by_orientation",
  1637. "levelname": "DEBUG",
  1638. "levelno": 10,
  1639. "lineno": 78,
  1640. "message": "Rotate with orientation 6",
  1641. "module": "test_image",
  1642. "msecs": 739.1726970672607,
  1643. "msg": "Rotate with orientation %s",
  1644. "name": "__unittest__",
  1645. "pathname": "src/tests/test_image.py",
  1646. "process": 3545,
  1647. "processName": "MainProcess",
  1648. "relativeCreated": 3827.320337295532,
  1649. "stack_info": null,
  1650. "thread": 140585574717248,
  1651. "threadName": "MainThread"
  1652. },
  1653. {
  1654. "args": [
  1655. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1656. ],
  1657. "asctime": "2020-02-03 11:51:49,952",
  1658. "created": 1580727109.9523568,
  1659. "exc_info": null,
  1660. "exc_text": null,
  1661. "filename": "__init__.py",
  1662. "funcName": "load_from_file",
  1663. "levelname": "DEBUG",
  1664. "levelno": 10,
  1665. "lineno": 116,
  1666. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1667. "module": "__init__",
  1668. "msecs": 952.3568153381348,
  1669. "msg": "loading image from %s",
  1670. "name": "MEDIA",
  1671. "pathname": "src/media/__init__.py",
  1672. "process": 3545,
  1673. "processName": "MainProcess",
  1674. "relativeCreated": 4040.5044555664062,
  1675. "stack_info": null,
  1676. "thread": 140585574717248,
  1677. "threadName": "MainThread"
  1678. },
  1679. {
  1680. "args": [
  1681. 270
  1682. ],
  1683. "asctime": "2020-02-03 11:51:49,953",
  1684. "created": 1580727109.9539175,
  1685. "exc_info": null,
  1686. "exc_text": null,
  1687. "filename": "__init__.py",
  1688. "funcName": "rotate_by_orientation",
  1689. "levelname": "DEBUG",
  1690. "levelno": 10,
  1691. "lineno": 170,
  1692. "message": "Rotating picture by 270\u00b0",
  1693. "module": "__init__",
  1694. "msecs": 953.9175033569336,
  1695. "msg": "Rotating picture by %d\u00b0",
  1696. "name": "MEDIA",
  1697. "pathname": "src/media/__init__.py",
  1698. "process": 3545,
  1699. "processName": "MainProcess",
  1700. "relativeCreated": 4042.065143585205,
  1701. "stack_info": null,
  1702. "thread": 140585574717248,
  1703. "threadName": "MainThread"
  1704. },
  1705. {
  1706. "args": [
  1707. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_6.jpg'"
  1708. ],
  1709. "asctime": "2020-02-03 11:51:50,011",
  1710. "created": 1580727110.0119002,
  1711. "exc_info": null,
  1712. "exc_text": null,
  1713. "filename": "__init__.py",
  1714. "funcName": "save",
  1715. "levelname": "DEBUG",
  1716. "levelno": 10,
  1717. "lineno": 124,
  1718. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_6.jpg'",
  1719. "module": "__init__",
  1720. "msecs": 11.900186538696289,
  1721. "msg": "Saving image to %s",
  1722. "name": "MEDIA",
  1723. "pathname": "src/media/__init__.py",
  1724. "process": 3545,
  1725. "processName": "MainProcess",
  1726. "relativeCreated": 4100.047826766968,
  1727. "stack_info": null,
  1728. "thread": 140585574717248,
  1729. "threadName": "MainThread"
  1730. },
  1731. {
  1732. "args": [
  1733. "Filecompare for rotated_image_6.jpg",
  1734. "True",
  1735. "<class 'bool'>"
  1736. ],
  1737. "asctime": "2020-02-03 11:51:50,220",
  1738. "created": 1580727110.220826,
  1739. "exc_info": null,
  1740. "exc_text": null,
  1741. "filename": "test.py",
  1742. "funcName": "__report_result__",
  1743. "levelname": "DEBUG",
  1744. "levelno": 10,
  1745. "lineno": 22,
  1746. "message": "Result (Filecompare for rotated_image_6.jpg): True (<class 'bool'>)",
  1747. "module": "test",
  1748. "msecs": 220.8259105682373,
  1749. "msg": "Result (%s): %s (%s)",
  1750. "name": "__unittest__",
  1751. "pathname": "src/unittest/test.py",
  1752. "process": 3545,
  1753. "processName": "MainProcess",
  1754. "relativeCreated": 4308.973550796509,
  1755. "stack_info": null,
  1756. "thread": 140585574717248,
  1757. "threadName": "MainThread"
  1758. },
  1759. {
  1760. "args": [
  1761. "Filecompare for rotated_image_6.jpg",
  1762. "True",
  1763. "<class 'bool'>"
  1764. ],
  1765. "asctime": "2020-02-03 11:51:50,220",
  1766. "created": 1580727110.2209406,
  1767. "exc_info": null,
  1768. "exc_text": null,
  1769. "filename": "test.py",
  1770. "funcName": "__report_expectation_equivalency__",
  1771. "levelname": "DEBUG",
  1772. "levelno": 10,
  1773. "lineno": 26,
  1774. "message": "Expectation (Filecompare for rotated_image_6.jpg): result = True (<class 'bool'>)",
  1775. "module": "test",
  1776. "msecs": 220.94058990478516,
  1777. "msg": "Expectation (%s): result = %s (%s)",
  1778. "name": "__unittest__",
  1779. "pathname": "src/unittest/test.py",
  1780. "process": 3545,
  1781. "processName": "MainProcess",
  1782. "relativeCreated": 4309.088230133057,
  1783. "stack_info": null,
  1784. "thread": 140585574717248,
  1785. "threadName": "MainThread"
  1786. }
  1787. ],
  1788. "msecs": 221.05813026428223,
  1789. "msg": "Filecompare for rotated_image_6.jpg is correct (Content %s and Type is %s).",
  1790. "name": "__tLogger__",
  1791. "pathname": "src/unittest/test.py",
  1792. "process": 3545,
  1793. "processName": "MainProcess",
  1794. "relativeCreated": 4309.205770492554,
  1795. "stack_info": null,
  1796. "thread": 140585574717248,
  1797. "threadName": "MainThread",
  1798. "time_consumption": 0.00011754035949707031
  1799. },
  1800. {
  1801. "args": [
  1802. "True",
  1803. "<class 'bool'>"
  1804. ],
  1805. "asctime": "2020-02-03 11:51:50,614",
  1806. "created": 1580727110.6143177,
  1807. "exc_info": null,
  1808. "exc_text": null,
  1809. "filename": "test.py",
  1810. "funcName": "equivalency_chk",
  1811. "levelname": "INFO",
  1812. "levelno": 20,
  1813. "lineno": 142,
  1814. "message": "Filecompare for rotated_image_8.jpg is correct (Content True and Type is <class 'bool'>).",
  1815. "module": "test",
  1816. "moduleLogger": [
  1817. {
  1818. "args": [
  1819. "8"
  1820. ],
  1821. "asctime": "2020-02-03 11:51:50,221",
  1822. "created": 1580727110.221166,
  1823. "exc_info": null,
  1824. "exc_text": null,
  1825. "filename": "test_image.py",
  1826. "funcName": "rotate_by_orientation",
  1827. "levelname": "DEBUG",
  1828. "levelno": 10,
  1829. "lineno": 78,
  1830. "message": "Rotate with orientation 8",
  1831. "module": "test_image",
  1832. "msecs": 221.16589546203613,
  1833. "msg": "Rotate with orientation %s",
  1834. "name": "__unittest__",
  1835. "pathname": "src/tests/test_image.py",
  1836. "process": 3545,
  1837. "processName": "MainProcess",
  1838. "relativeCreated": 4309.313535690308,
  1839. "stack_info": null,
  1840. "thread": 140585574717248,
  1841. "threadName": "MainThread"
  1842. },
  1843. {
  1844. "args": [
  1845. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1846. ],
  1847. "asctime": "2020-02-03 11:51:50,408",
  1848. "created": 1580727110.4082205,
  1849. "exc_info": null,
  1850. "exc_text": null,
  1851. "filename": "__init__.py",
  1852. "funcName": "load_from_file",
  1853. "levelname": "DEBUG",
  1854. "levelno": 10,
  1855. "lineno": 116,
  1856. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1857. "module": "__init__",
  1858. "msecs": 408.2205295562744,
  1859. "msg": "loading image from %s",
  1860. "name": "MEDIA",
  1861. "pathname": "src/media/__init__.py",
  1862. "process": 3545,
  1863. "processName": "MainProcess",
  1864. "relativeCreated": 4496.368169784546,
  1865. "stack_info": null,
  1866. "thread": 140585574717248,
  1867. "threadName": "MainThread"
  1868. },
  1869. {
  1870. "args": [
  1871. 90
  1872. ],
  1873. "asctime": "2020-02-03 11:51:50,408",
  1874. "created": 1580727110.4083848,
  1875. "exc_info": null,
  1876. "exc_text": null,
  1877. "filename": "__init__.py",
  1878. "funcName": "rotate_by_orientation",
  1879. "levelname": "DEBUG",
  1880. "levelno": 10,
  1881. "lineno": 170,
  1882. "message": "Rotating picture by 90\u00b0",
  1883. "module": "__init__",
  1884. "msecs": 408.3847999572754,
  1885. "msg": "Rotating picture by %d\u00b0",
  1886. "name": "MEDIA",
  1887. "pathname": "src/media/__init__.py",
  1888. "process": 3545,
  1889. "processName": "MainProcess",
  1890. "relativeCreated": 4496.532440185547,
  1891. "stack_info": null,
  1892. "thread": 140585574717248,
  1893. "threadName": "MainThread"
  1894. },
  1895. {
  1896. "args": [
  1897. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_8.jpg'"
  1898. ],
  1899. "asctime": "2020-02-03 11:51:50,466",
  1900. "created": 1580727110.4664538,
  1901. "exc_info": null,
  1902. "exc_text": null,
  1903. "filename": "__init__.py",
  1904. "funcName": "save",
  1905. "levelname": "DEBUG",
  1906. "levelno": 10,
  1907. "lineno": 124,
  1908. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_8.jpg'",
  1909. "module": "__init__",
  1910. "msecs": 466.45379066467285,
  1911. "msg": "Saving image to %s",
  1912. "name": "MEDIA",
  1913. "pathname": "src/media/__init__.py",
  1914. "process": 3545,
  1915. "processName": "MainProcess",
  1916. "relativeCreated": 4554.601430892944,
  1917. "stack_info": null,
  1918. "thread": 140585574717248,
  1919. "threadName": "MainThread"
  1920. },
  1921. {
  1922. "args": [
  1923. "Filecompare for rotated_image_8.jpg",
  1924. "True",
  1925. "<class 'bool'>"
  1926. ],
  1927. "asctime": "2020-02-03 11:51:50,612",
  1928. "created": 1580727110.6123397,
  1929. "exc_info": null,
  1930. "exc_text": null,
  1931. "filename": "test.py",
  1932. "funcName": "__report_result__",
  1933. "levelname": "DEBUG",
  1934. "levelno": 10,
  1935. "lineno": 22,
  1936. "message": "Result (Filecompare for rotated_image_8.jpg): True (<class 'bool'>)",
  1937. "module": "test",
  1938. "msecs": 612.3397350311279,
  1939. "msg": "Result (%s): %s (%s)",
  1940. "name": "__unittest__",
  1941. "pathname": "src/unittest/test.py",
  1942. "process": 3545,
  1943. "processName": "MainProcess",
  1944. "relativeCreated": 4700.487375259399,
  1945. "stack_info": null,
  1946. "thread": 140585574717248,
  1947. "threadName": "MainThread"
  1948. },
  1949. {
  1950. "args": [
  1951. "Filecompare for rotated_image_8.jpg",
  1952. "True",
  1953. "<class 'bool'>"
  1954. ],
  1955. "asctime": "2020-02-03 11:51:50,613",
  1956. "created": 1580727110.6134565,
  1957. "exc_info": null,
  1958. "exc_text": null,
  1959. "filename": "test.py",
  1960. "funcName": "__report_expectation_equivalency__",
  1961. "levelname": "DEBUG",
  1962. "levelno": 10,
  1963. "lineno": 26,
  1964. "message": "Expectation (Filecompare for rotated_image_8.jpg): result = True (<class 'bool'>)",
  1965. "module": "test",
  1966. "msecs": 613.4564876556396,
  1967. "msg": "Expectation (%s): result = %s (%s)",
  1968. "name": "__unittest__",
  1969. "pathname": "src/unittest/test.py",
  1970. "process": 3545,
  1971. "processName": "MainProcess",
  1972. "relativeCreated": 4701.604127883911,
  1973. "stack_info": null,
  1974. "thread": 140585574717248,
  1975. "threadName": "MainThread"
  1976. }
  1977. ],
  1978. "msecs": 614.3176555633545,
  1979. "msg": "Filecompare for rotated_image_8.jpg is correct (Content %s and Type is %s).",
  1980. "name": "__tLogger__",
  1981. "pathname": "src/unittest/test.py",
  1982. "process": 3545,
  1983. "processName": "MainProcess",
  1984. "relativeCreated": 4702.465295791626,
  1985. "stack_info": null,
  1986. "thread": 140585574717248,
  1987. "threadName": "MainThread",
  1988. "time_consumption": 0.0008611679077148438
  1989. },
  1990. {
  1991. "args": [
  1992. "True",
  1993. "<class 'bool'>"
  1994. ],
  1995. "asctime": "2020-02-03 11:51:51,048",
  1996. "created": 1580727111.0482926,
  1997. "exc_info": null,
  1998. "exc_text": null,
  1999. "filename": "test.py",
  2000. "funcName": "equivalency_chk",
  2001. "levelname": "INFO",
  2002. "levelno": 20,
  2003. "lineno": 142,
  2004. "message": "Filecompare for rotated_image_3.jpg is correct (Content True and Type is <class 'bool'>).",
  2005. "module": "test",
  2006. "moduleLogger": [
  2007. {
  2008. "args": [
  2009. "3"
  2010. ],
  2011. "asctime": "2020-02-03 11:51:50,615",
  2012. "created": 1580727110.6155386,
  2013. "exc_info": null,
  2014. "exc_text": null,
  2015. "filename": "test_image.py",
  2016. "funcName": "rotate_by_orientation",
  2017. "levelname": "DEBUG",
  2018. "levelno": 10,
  2019. "lineno": 78,
  2020. "message": "Rotate with orientation 3",
  2021. "module": "test_image",
  2022. "msecs": 615.5385971069336,
  2023. "msg": "Rotate with orientation %s",
  2024. "name": "__unittest__",
  2025. "pathname": "src/tests/test_image.py",
  2026. "process": 3545,
  2027. "processName": "MainProcess",
  2028. "relativeCreated": 4703.686237335205,
  2029. "stack_info": null,
  2030. "thread": 140585574717248,
  2031. "threadName": "MainThread"
  2032. },
  2033. {
  2034. "args": [
  2035. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2036. ],
  2037. "asctime": "2020-02-03 11:51:50,857",
  2038. "created": 1580727110.8571296,
  2039. "exc_info": null,
  2040. "exc_text": null,
  2041. "filename": "__init__.py",
  2042. "funcName": "load_from_file",
  2043. "levelname": "DEBUG",
  2044. "levelno": 10,
  2045. "lineno": 116,
  2046. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2047. "module": "__init__",
  2048. "msecs": 857.1295738220215,
  2049. "msg": "loading image from %s",
  2050. "name": "MEDIA",
  2051. "pathname": "src/media/__init__.py",
  2052. "process": 3545,
  2053. "processName": "MainProcess",
  2054. "relativeCreated": 4945.277214050293,
  2055. "stack_info": null,
  2056. "thread": 140585574717248,
  2057. "threadName": "MainThread"
  2058. },
  2059. {
  2060. "args": [
  2061. 180
  2062. ],
  2063. "asctime": "2020-02-03 11:51:50,857",
  2064. "created": 1580727110.857297,
  2065. "exc_info": null,
  2066. "exc_text": null,
  2067. "filename": "__init__.py",
  2068. "funcName": "rotate_by_orientation",
  2069. "levelname": "DEBUG",
  2070. "levelno": 10,
  2071. "lineno": 170,
  2072. "message": "Rotating picture by 180\u00b0",
  2073. "module": "__init__",
  2074. "msecs": 857.2969436645508,
  2075. "msg": "Rotating picture by %d\u00b0",
  2076. "name": "MEDIA",
  2077. "pathname": "src/media/__init__.py",
  2078. "process": 3545,
  2079. "processName": "MainProcess",
  2080. "relativeCreated": 4945.444583892822,
  2081. "stack_info": null,
  2082. "thread": 140585574717248,
  2083. "threadName": "MainThread"
  2084. },
  2085. {
  2086. "args": [
  2087. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_3.jpg'"
  2088. ],
  2089. "asctime": "2020-02-03 11:51:50,892",
  2090. "created": 1580727110.8926523,
  2091. "exc_info": null,
  2092. "exc_text": null,
  2093. "filename": "__init__.py",
  2094. "funcName": "save",
  2095. "levelname": "DEBUG",
  2096. "levelno": 10,
  2097. "lineno": 124,
  2098. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_3.jpg'",
  2099. "module": "__init__",
  2100. "msecs": 892.6522731781006,
  2101. "msg": "Saving image to %s",
  2102. "name": "MEDIA",
  2103. "pathname": "src/media/__init__.py",
  2104. "process": 3545,
  2105. "processName": "MainProcess",
  2106. "relativeCreated": 4980.799913406372,
  2107. "stack_info": null,
  2108. "thread": 140585574717248,
  2109. "threadName": "MainThread"
  2110. },
  2111. {
  2112. "args": [
  2113. "Filecompare for rotated_image_3.jpg",
  2114. "True",
  2115. "<class 'bool'>"
  2116. ],
  2117. "asctime": "2020-02-03 11:51:51,048",
  2118. "created": 1580727111.0480573,
  2119. "exc_info": null,
  2120. "exc_text": null,
  2121. "filename": "test.py",
  2122. "funcName": "__report_result__",
  2123. "levelname": "DEBUG",
  2124. "levelno": 10,
  2125. "lineno": 22,
  2126. "message": "Result (Filecompare for rotated_image_3.jpg): True (<class 'bool'>)",
  2127. "module": "test",
  2128. "msecs": 48.05731773376465,
  2129. "msg": "Result (%s): %s (%s)",
  2130. "name": "__unittest__",
  2131. "pathname": "src/unittest/test.py",
  2132. "process": 3545,
  2133. "processName": "MainProcess",
  2134. "relativeCreated": 5136.204957962036,
  2135. "stack_info": null,
  2136. "thread": 140585574717248,
  2137. "threadName": "MainThread"
  2138. },
  2139. {
  2140. "args": [
  2141. "Filecompare for rotated_image_3.jpg",
  2142. "True",
  2143. "<class 'bool'>"
  2144. ],
  2145. "asctime": "2020-02-03 11:51:51,048",
  2146. "created": 1580727111.048231,
  2147. "exc_info": null,
  2148. "exc_text": null,
  2149. "filename": "test.py",
  2150. "funcName": "__report_expectation_equivalency__",
  2151. "levelname": "DEBUG",
  2152. "levelno": 10,
  2153. "lineno": 26,
  2154. "message": "Expectation (Filecompare for rotated_image_3.jpg): result = True (<class 'bool'>)",
  2155. "module": "test",
  2156. "msecs": 48.230886459350586,
  2157. "msg": "Expectation (%s): result = %s (%s)",
  2158. "name": "__unittest__",
  2159. "pathname": "src/unittest/test.py",
  2160. "process": 3545,
  2161. "processName": "MainProcess",
  2162. "relativeCreated": 5136.378526687622,
  2163. "stack_info": null,
  2164. "thread": 140585574717248,
  2165. "threadName": "MainThread"
  2166. }
  2167. ],
  2168. "msecs": 48.29263687133789,
  2169. "msg": "Filecompare for rotated_image_3.jpg is correct (Content %s and Type is %s).",
  2170. "name": "__tLogger__",
  2171. "pathname": "src/unittest/test.py",
  2172. "process": 3545,
  2173. "processName": "MainProcess",
  2174. "relativeCreated": 5136.440277099609,
  2175. "stack_info": null,
  2176. "thread": 140585574717248,
  2177. "threadName": "MainThread",
  2178. "time_consumption": 6.175041198730469e-05
  2179. }
  2180. ],
  2181. "thread": 140585574717248,
  2182. "threadName": "MainThread",
  2183. "time_consumption": 2.1224968433380127,
  2184. "time_finished": "2020-02-03 11:51:51,048",
  2185. "time_start": "2020-02-03 11:51:48,925"
  2186. },
  2187. "_CBaAQEYDEequ74M7usLaPw": {
  2188. "args": null,
  2189. "asctime": "2020-02-03 11:51:51,050",
  2190. "created": 1580727111.0502262,
  2191. "exc_info": null,
  2192. "exc_text": null,
  2193. "filename": "__init__.py",
  2194. "funcName": "testrun",
  2195. "levelname": "INFO",
  2196. "levelno": 20,
  2197. "lineno": 36,
  2198. "message": "_CBaAQEYDEequ74M7usLaPw",
  2199. "module": "__init__",
  2200. "moduleLogger": [],
  2201. "msecs": 50.22621154785156,
  2202. "msg": "_CBaAQEYDEequ74M7usLaPw",
  2203. "name": "__tLogger__",
  2204. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  2205. "process": 3545,
  2206. "processName": "MainProcess",
  2207. "relativeCreated": 5138.373851776123,
  2208. "stack_info": null,
  2209. "testcaseLogger": [
  2210. {
  2211. "args": [
  2212. "False",
  2213. "<class 'bool'>"
  2214. ],
  2215. "asctime": "2020-02-03 11:51:51,050",
  2216. "created": 1580727111.0504732,
  2217. "exc_info": null,
  2218. "exc_text": null,
  2219. "filename": "test.py",
  2220. "funcName": "equivalency_chk",
  2221. "levelname": "INFO",
  2222. "levelno": 20,
  2223. "lineno": 142,
  2224. "message": "Returnvalue of join method without loading an image is correct (Content False and Type is <class 'bool'>).",
  2225. "module": "test",
  2226. "moduleLogger": [
  2227. {
  2228. "args": [],
  2229. "asctime": "2020-02-03 11:51:51,050",
  2230. "created": 1580727111.0503435,
  2231. "exc_info": null,
  2232. "exc_text": null,
  2233. "filename": "__init__.py",
  2234. "funcName": "join",
  2235. "levelname": "WARNING",
  2236. "levelno": 30,
  2237. "lineno": 184,
  2238. "message": "No image available, joining not possible",
  2239. "module": "__init__",
  2240. "msecs": 50.34351348876953,
  2241. "msg": "No image available, joining not possible",
  2242. "name": "MEDIA",
  2243. "pathname": "src/media/__init__.py",
  2244. "process": 3545,
  2245. "processName": "MainProcess",
  2246. "relativeCreated": 5138.491153717041,
  2247. "stack_info": null,
  2248. "thread": 140585574717248,
  2249. "threadName": "MainThread"
  2250. },
  2251. {
  2252. "args": [
  2253. "Returnvalue of join method without loading an image",
  2254. "False",
  2255. "<class 'bool'>"
  2256. ],
  2257. "asctime": "2020-02-03 11:51:51,050",
  2258. "created": 1580727111.0503967,
  2259. "exc_info": null,
  2260. "exc_text": null,
  2261. "filename": "test.py",
  2262. "funcName": "__report_result__",
  2263. "levelname": "DEBUG",
  2264. "levelno": 10,
  2265. "lineno": 22,
  2266. "message": "Result (Returnvalue of join method without loading an image): False (<class 'bool'>)",
  2267. "module": "test",
  2268. "msecs": 50.39668083190918,
  2269. "msg": "Result (%s): %s (%s)",
  2270. "name": "__unittest__",
  2271. "pathname": "src/unittest/test.py",
  2272. "process": 3545,
  2273. "processName": "MainProcess",
  2274. "relativeCreated": 5138.544321060181,
  2275. "stack_info": null,
  2276. "thread": 140585574717248,
  2277. "threadName": "MainThread"
  2278. },
  2279. {
  2280. "args": [
  2281. "Returnvalue of join method without loading an image",
  2282. "False",
  2283. "<class 'bool'>"
  2284. ],
  2285. "asctime": "2020-02-03 11:51:51,050",
  2286. "created": 1580727111.0504355,
  2287. "exc_info": null,
  2288. "exc_text": null,
  2289. "filename": "test.py",
  2290. "funcName": "__report_expectation_equivalency__",
  2291. "levelname": "DEBUG",
  2292. "levelno": 10,
  2293. "lineno": 26,
  2294. "message": "Expectation (Returnvalue of join method without loading an image): result = False (<class 'bool'>)",
  2295. "module": "test",
  2296. "msecs": 50.435543060302734,
  2297. "msg": "Expectation (%s): result = %s (%s)",
  2298. "name": "__unittest__",
  2299. "pathname": "src/unittest/test.py",
  2300. "process": 3545,
  2301. "processName": "MainProcess",
  2302. "relativeCreated": 5138.583183288574,
  2303. "stack_info": null,
  2304. "thread": 140585574717248,
  2305. "threadName": "MainThread"
  2306. }
  2307. ],
  2308. "msecs": 50.47321319580078,
  2309. "msg": "Returnvalue of join method without loading an image is correct (Content %s and Type is %s).",
  2310. "name": "__tLogger__",
  2311. "pathname": "src/unittest/test.py",
  2312. "process": 3545,
  2313. "processName": "MainProcess",
  2314. "relativeCreated": 5138.620853424072,
  2315. "stack_info": null,
  2316. "thread": 140585574717248,
  2317. "threadName": "MainThread",
  2318. "time_consumption": 3.7670135498046875e-05
  2319. },
  2320. {
  2321. "args": [
  2322. "False",
  2323. "<class 'bool'>"
  2324. ],
  2325. "asctime": "2020-02-03 11:51:51,611",
  2326. "created": 1580727111.611574,
  2327. "exc_info": null,
  2328. "exc_text": null,
  2329. "filename": "test.py",
  2330. "funcName": "equivalency_chk",
  2331. "levelname": "INFO",
  2332. "levelno": 20,
  2333. "lineno": 142,
  2334. "message": "Returnvalue of join method with invalid join position is correct (Content False and Type is <class 'bool'>).",
  2335. "module": "test",
  2336. "moduleLogger": [
  2337. {
  2338. "args": [
  2339. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2340. ],
  2341. "asctime": "2020-02-03 11:51:51,244",
  2342. "created": 1580727111.2448392,
  2343. "exc_info": null,
  2344. "exc_text": null,
  2345. "filename": "__init__.py",
  2346. "funcName": "load_from_file",
  2347. "levelname": "DEBUG",
  2348. "levelno": 10,
  2349. "lineno": 116,
  2350. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2351. "module": "__init__",
  2352. "msecs": 244.83919143676758,
  2353. "msg": "loading image from %s",
  2354. "name": "MEDIA",
  2355. "pathname": "src/media/__init__.py",
  2356. "process": 3545,
  2357. "processName": "MainProcess",
  2358. "relativeCreated": 5332.986831665039,
  2359. "stack_info": null,
  2360. "thread": 140585574717248,
  2361. "threadName": "MainThread"
  2362. },
  2363. {
  2364. "args": [
  2365. 17
  2366. ],
  2367. "asctime": "2020-02-03 11:51:51,610",
  2368. "created": 1580727111.610782,
  2369. "exc_info": null,
  2370. "exc_text": null,
  2371. "filename": "__init__.py",
  2372. "funcName": "join",
  2373. "levelname": "WARNING",
  2374. "levelno": 30,
  2375. "lineno": 215,
  2376. "message": "Join position value 17 is not supported",
  2377. "module": "__init__",
  2378. "msecs": 610.7819080352783,
  2379. "msg": "Join position value %s is not supported",
  2380. "name": "MEDIA",
  2381. "pathname": "src/media/__init__.py",
  2382. "process": 3545,
  2383. "processName": "MainProcess",
  2384. "relativeCreated": 5698.92954826355,
  2385. "stack_info": null,
  2386. "thread": 140585574717248,
  2387. "threadName": "MainThread"
  2388. },
  2389. {
  2390. "args": [
  2391. "Returnvalue of join method with invalid join position",
  2392. "False",
  2393. "<class 'bool'>"
  2394. ],
  2395. "asctime": "2020-02-03 11:51:51,611",
  2396. "created": 1580727111.611077,
  2397. "exc_info": null,
  2398. "exc_text": null,
  2399. "filename": "test.py",
  2400. "funcName": "__report_result__",
  2401. "levelname": "DEBUG",
  2402. "levelno": 10,
  2403. "lineno": 22,
  2404. "message": "Result (Returnvalue of join method with invalid join position): False (<class 'bool'>)",
  2405. "module": "test",
  2406. "msecs": 611.077070236206,
  2407. "msg": "Result (%s): %s (%s)",
  2408. "name": "__unittest__",
  2409. "pathname": "src/unittest/test.py",
  2410. "process": 3545,
  2411. "processName": "MainProcess",
  2412. "relativeCreated": 5699.2247104644775,
  2413. "stack_info": null,
  2414. "thread": 140585574717248,
  2415. "threadName": "MainThread"
  2416. },
  2417. {
  2418. "args": [
  2419. "Returnvalue of join method with invalid join position",
  2420. "False",
  2421. "<class 'bool'>"
  2422. ],
  2423. "asctime": "2020-02-03 11:51:51,611",
  2424. "created": 1580727111.6112633,
  2425. "exc_info": null,
  2426. "exc_text": null,
  2427. "filename": "test.py",
  2428. "funcName": "__report_expectation_equivalency__",
  2429. "levelname": "DEBUG",
  2430. "levelno": 10,
  2431. "lineno": 26,
  2432. "message": "Expectation (Returnvalue of join method with invalid join position): result = False (<class 'bool'>)",
  2433. "module": "test",
  2434. "msecs": 611.2632751464844,
  2435. "msg": "Expectation (%s): result = %s (%s)",
  2436. "name": "__unittest__",
  2437. "pathname": "src/unittest/test.py",
  2438. "process": 3545,
  2439. "processName": "MainProcess",
  2440. "relativeCreated": 5699.410915374756,
  2441. "stack_info": null,
  2442. "thread": 140585574717248,
  2443. "threadName": "MainThread"
  2444. }
  2445. ],
  2446. "msecs": 611.5739345550537,
  2447. "msg": "Returnvalue of join method with invalid join position is correct (Content %s and Type is %s).",
  2448. "name": "__tLogger__",
  2449. "pathname": "src/unittest/test.py",
  2450. "process": 3545,
  2451. "processName": "MainProcess",
  2452. "relativeCreated": 5699.721574783325,
  2453. "stack_info": null,
  2454. "thread": 140585574717248,
  2455. "threadName": "MainThread",
  2456. "time_consumption": 0.00031065940856933594
  2457. },
  2458. {
  2459. "args": [
  2460. "False",
  2461. "<class 'bool'>"
  2462. ],
  2463. "asctime": "2020-02-03 11:51:51,782",
  2464. "created": 1580727111.7822633,
  2465. "exc_info": null,
  2466. "exc_text": null,
  2467. "filename": "test.py",
  2468. "funcName": "equivalency_chk",
  2469. "levelname": "INFO",
  2470. "levelno": 20,
  2471. "lineno": 142,
  2472. "message": "Returnvalue of join method with unknown join file is correct (Content False and Type is <class 'bool'>).",
  2473. "module": "test",
  2474. "moduleLogger": [
  2475. {
  2476. "args": [
  2477. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2478. ],
  2479. "asctime": "2020-02-03 11:51:51,774",
  2480. "created": 1580727111.774942,
  2481. "exc_info": null,
  2482. "exc_text": null,
  2483. "filename": "__init__.py",
  2484. "funcName": "load_from_file",
  2485. "levelname": "DEBUG",
  2486. "levelno": 10,
  2487. "lineno": 116,
  2488. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2489. "module": "__init__",
  2490. "msecs": 774.9419212341309,
  2491. "msg": "loading image from %s",
  2492. "name": "MEDIA",
  2493. "pathname": "src/media/__init__.py",
  2494. "process": 3545,
  2495. "processName": "MainProcess",
  2496. "relativeCreated": 5863.089561462402,
  2497. "stack_info": null,
  2498. "thread": 140585574717248,
  2499. "threadName": "MainThread"
  2500. },
  2501. {
  2502. "args": [],
  2503. "asctime": "2020-02-03 11:51:51,781",
  2504. "created": 1580727111.7818284,
  2505. "exc_info": null,
  2506. "exc_text": null,
  2507. "filename": "convert.py",
  2508. "funcName": "get_pil_image",
  2509. "levelname": "WARNING",
  2510. "levelno": 30,
  2511. "lineno": 35,
  2512. "message": "Instance type is not supported: <class 'int'>",
  2513. "module": "convert",
  2514. "msecs": 781.8284034729004,
  2515. "msg": "Instance type is not supported: <class 'int'>",
  2516. "name": "MEDIA",
  2517. "pathname": "src/media/convert.py",
  2518. "process": 3545,
  2519. "processName": "MainProcess",
  2520. "relativeCreated": 5869.976043701172,
  2521. "stack_info": null,
  2522. "thread": 140585574717248,
  2523. "threadName": "MainThread"
  2524. },
  2525. {
  2526. "args": [
  2527. "None"
  2528. ],
  2529. "asctime": "2020-02-03 11:51:51,782",
  2530. "created": 1580727111.7820978,
  2531. "exc_info": null,
  2532. "exc_text": null,
  2533. "filename": "__init__.py",
  2534. "funcName": "join",
  2535. "levelname": "WARNING",
  2536. "levelno": 30,
  2537. "lineno": 190,
  2538. "message": "Image to be joined is not supported None",
  2539. "module": "__init__",
  2540. "msecs": 782.0978164672852,
  2541. "msg": "Image to be joined is not supported %s",
  2542. "name": "MEDIA",
  2543. "pathname": "src/media/__init__.py",
  2544. "process": 3545,
  2545. "processName": "MainProcess",
  2546. "relativeCreated": 5870.245456695557,
  2547. "stack_info": null,
  2548. "thread": 140585574717248,
  2549. "threadName": "MainThread"
  2550. },
  2551. {
  2552. "args": [
  2553. "Returnvalue of join method with unknown join file",
  2554. "False",
  2555. "<class 'bool'>"
  2556. ],
  2557. "asctime": "2020-02-03 11:51:51,782",
  2558. "created": 1580727111.7821743,
  2559. "exc_info": null,
  2560. "exc_text": null,
  2561. "filename": "test.py",
  2562. "funcName": "__report_result__",
  2563. "levelname": "DEBUG",
  2564. "levelno": 10,
  2565. "lineno": 22,
  2566. "message": "Result (Returnvalue of join method with unknown join file): False (<class 'bool'>)",
  2567. "module": "test",
  2568. "msecs": 782.1743488311768,
  2569. "msg": "Result (%s): %s (%s)",
  2570. "name": "__unittest__",
  2571. "pathname": "src/unittest/test.py",
  2572. "process": 3545,
  2573. "processName": "MainProcess",
  2574. "relativeCreated": 5870.321989059448,
  2575. "stack_info": null,
  2576. "thread": 140585574717248,
  2577. "threadName": "MainThread"
  2578. },
  2579. {
  2580. "args": [
  2581. "Returnvalue of join method with unknown join file",
  2582. "False",
  2583. "<class 'bool'>"
  2584. ],
  2585. "asctime": "2020-02-03 11:51:51,782",
  2586. "created": 1580727111.7822185,
  2587. "exc_info": null,
  2588. "exc_text": null,
  2589. "filename": "test.py",
  2590. "funcName": "__report_expectation_equivalency__",
  2591. "levelname": "DEBUG",
  2592. "levelno": 10,
  2593. "lineno": 26,
  2594. "message": "Expectation (Returnvalue of join method with unknown join file): result = False (<class 'bool'>)",
  2595. "module": "test",
  2596. "msecs": 782.2184562683105,
  2597. "msg": "Expectation (%s): result = %s (%s)",
  2598. "name": "__unittest__",
  2599. "pathname": "src/unittest/test.py",
  2600. "process": 3545,
  2601. "processName": "MainProcess",
  2602. "relativeCreated": 5870.366096496582,
  2603. "stack_info": null,
  2604. "thread": 140585574717248,
  2605. "threadName": "MainThread"
  2606. }
  2607. ],
  2608. "msecs": 782.2632789611816,
  2609. "msg": "Returnvalue of join method with unknown join file is correct (Content %s and Type is %s).",
  2610. "name": "__tLogger__",
  2611. "pathname": "src/unittest/test.py",
  2612. "process": 3545,
  2613. "processName": "MainProcess",
  2614. "relativeCreated": 5870.410919189453,
  2615. "stack_info": null,
  2616. "thread": 140585574717248,
  2617. "threadName": "MainThread",
  2618. "time_consumption": 4.482269287109375e-05
  2619. },
  2620. {
  2621. "args": [
  2622. "True",
  2623. "<class 'bool'>"
  2624. ],
  2625. "asctime": "2020-02-03 11:51:52,492",
  2626. "created": 1580727112.4924073,
  2627. "exc_info": null,
  2628. "exc_text": null,
  2629. "filename": "test.py",
  2630. "funcName": "equivalency_chk",
  2631. "levelname": "INFO",
  2632. "levelno": 20,
  2633. "lineno": 142,
  2634. "message": "Filecompare for joined_image_3.jpg is correct (Content True and Type is <class 'bool'>).",
  2635. "module": "test",
  2636. "moduleLogger": [
  2637. {
  2638. "args": [
  2639. 3
  2640. ],
  2641. "asctime": "2020-02-03 11:51:51,782",
  2642. "created": 1580727111.7825015,
  2643. "exc_info": null,
  2644. "exc_text": null,
  2645. "filename": "test_image.py",
  2646. "funcName": "join",
  2647. "levelname": "DEBUG",
  2648. "levelno": 10,
  2649. "lineno": 108,
  2650. "message": "Join with position 3",
  2651. "module": "test_image",
  2652. "msecs": 782.5014591217041,
  2653. "msg": "Join with position %d",
  2654. "name": "__unittest__",
  2655. "pathname": "src/tests/test_image.py",
  2656. "process": 3545,
  2657. "processName": "MainProcess",
  2658. "relativeCreated": 5870.649099349976,
  2659. "stack_info": null,
  2660. "thread": 140585574717248,
  2661. "threadName": "MainThread"
  2662. },
  2663. {
  2664. "args": [
  2665. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2666. ],
  2667. "asctime": "2020-02-03 11:51:52,008",
  2668. "created": 1580727112.00879,
  2669. "exc_info": null,
  2670. "exc_text": null,
  2671. "filename": "__init__.py",
  2672. "funcName": "load_from_file",
  2673. "levelname": "DEBUG",
  2674. "levelno": 10,
  2675. "lineno": 116,
  2676. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2677. "module": "__init__",
  2678. "msecs": 8.790016174316406,
  2679. "msg": "loading image from %s",
  2680. "name": "MEDIA",
  2681. "pathname": "src/media/__init__.py",
  2682. "process": 3545,
  2683. "processName": "MainProcess",
  2684. "relativeCreated": 6096.937656402588,
  2685. "stack_info": null,
  2686. "thread": 140585574717248,
  2687. "threadName": "MainThread"
  2688. },
  2689. {
  2690. "args": [
  2691. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  2692. ],
  2693. "asctime": "2020-02-03 11:51:52,146",
  2694. "created": 1580727112.1463606,
  2695. "exc_info": null,
  2696. "exc_text": null,
  2697. "filename": "__init__.py",
  2698. "funcName": "load_from_file",
  2699. "levelname": "DEBUG",
  2700. "levelno": 10,
  2701. "lineno": 116,
  2702. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  2703. "module": "__init__",
  2704. "msecs": 146.3606357574463,
  2705. "msg": "loading image from %s",
  2706. "name": "MEDIA",
  2707. "pathname": "src/media/__init__.py",
  2708. "process": 3545,
  2709. "processName": "MainProcess",
  2710. "relativeCreated": 6234.508275985718,
  2711. "stack_info": null,
  2712. "thread": 140585574717248,
  2713. "threadName": "MainThread"
  2714. },
  2715. {
  2716. "args": [
  2717. 300
  2718. ],
  2719. "asctime": "2020-02-03 11:51:52,146",
  2720. "created": 1580727112.1465666,
  2721. "exc_info": null,
  2722. "exc_text": null,
  2723. "filename": "__init__.py",
  2724. "funcName": "resize",
  2725. "levelname": "DEBUG",
  2726. "levelno": 10,
  2727. "lineno": 141,
  2728. "message": "Resizing picture to max 300 pixel in whatever direction",
  2729. "module": "__init__",
  2730. "msecs": 146.56662940979004,
  2731. "msg": "Resizing picture to max %d pixel in whatever direction",
  2732. "name": "MEDIA",
  2733. "pathname": "src/media/__init__.py",
  2734. "process": 3545,
  2735. "processName": "MainProcess",
  2736. "relativeCreated": 6234.7142696380615,
  2737. "stack_info": null,
  2738. "thread": 140585574717248,
  2739. "threadName": "MainThread"
  2740. },
  2741. {
  2742. "args": [],
  2743. "asctime": "2020-02-03 11:51:52,224",
  2744. "created": 1580727112.2249258,
  2745. "exc_info": null,
  2746. "exc_text": null,
  2747. "filename": "__init__.py",
  2748. "funcName": "join",
  2749. "levelname": "DEBUG",
  2750. "levelno": 10,
  2751. "lineno": 218,
  2752. "message": "Joining two images",
  2753. "module": "__init__",
  2754. "msecs": 224.92575645446777,
  2755. "msg": "Joining two images",
  2756. "name": "MEDIA",
  2757. "pathname": "src/media/__init__.py",
  2758. "process": 3545,
  2759. "processName": "MainProcess",
  2760. "relativeCreated": 6313.073396682739,
  2761. "stack_info": null,
  2762. "thread": 140585574717248,
  2763. "threadName": "MainThread"
  2764. },
  2765. {
  2766. "args": [
  2767. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_3.jpg'"
  2768. ],
  2769. "asctime": "2020-02-03 11:51:52,342",
  2770. "created": 1580727112.3422594,
  2771. "exc_info": null,
  2772. "exc_text": null,
  2773. "filename": "__init__.py",
  2774. "funcName": "save",
  2775. "levelname": "DEBUG",
  2776. "levelno": 10,
  2777. "lineno": 124,
  2778. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_3.jpg'",
  2779. "module": "__init__",
  2780. "msecs": 342.25940704345703,
  2781. "msg": "Saving image to %s",
  2782. "name": "MEDIA",
  2783. "pathname": "src/media/__init__.py",
  2784. "process": 3545,
  2785. "processName": "MainProcess",
  2786. "relativeCreated": 6430.4070472717285,
  2787. "stack_info": null,
  2788. "thread": 140585574717248,
  2789. "threadName": "MainThread"
  2790. },
  2791. {
  2792. "args": [
  2793. "Filecompare for joined_image_3.jpg",
  2794. "True",
  2795. "<class 'bool'>"
  2796. ],
  2797. "asctime": "2020-02-03 11:51:52,492",
  2798. "created": 1580727112.4922433,
  2799. "exc_info": null,
  2800. "exc_text": null,
  2801. "filename": "test.py",
  2802. "funcName": "__report_result__",
  2803. "levelname": "DEBUG",
  2804. "levelno": 10,
  2805. "lineno": 22,
  2806. "message": "Result (Filecompare for joined_image_3.jpg): True (<class 'bool'>)",
  2807. "module": "test",
  2808. "msecs": 492.24328994750977,
  2809. "msg": "Result (%s): %s (%s)",
  2810. "name": "__unittest__",
  2811. "pathname": "src/unittest/test.py",
  2812. "process": 3545,
  2813. "processName": "MainProcess",
  2814. "relativeCreated": 6580.390930175781,
  2815. "stack_info": null,
  2816. "thread": 140585574717248,
  2817. "threadName": "MainThread"
  2818. },
  2819. {
  2820. "args": [
  2821. "Filecompare for joined_image_3.jpg",
  2822. "True",
  2823. "<class 'bool'>"
  2824. ],
  2825. "asctime": "2020-02-03 11:51:52,492",
  2826. "created": 1580727112.49235,
  2827. "exc_info": null,
  2828. "exc_text": null,
  2829. "filename": "test.py",
  2830. "funcName": "__report_expectation_equivalency__",
  2831. "levelname": "DEBUG",
  2832. "levelno": 10,
  2833. "lineno": 26,
  2834. "message": "Expectation (Filecompare for joined_image_3.jpg): result = True (<class 'bool'>)",
  2835. "module": "test",
  2836. "msecs": 492.35010147094727,
  2837. "msg": "Expectation (%s): result = %s (%s)",
  2838. "name": "__unittest__",
  2839. "pathname": "src/unittest/test.py",
  2840. "process": 3545,
  2841. "processName": "MainProcess",
  2842. "relativeCreated": 6580.497741699219,
  2843. "stack_info": null,
  2844. "thread": 140585574717248,
  2845. "threadName": "MainThread"
  2846. }
  2847. ],
  2848. "msecs": 492.40732192993164,
  2849. "msg": "Filecompare for joined_image_3.jpg is correct (Content %s and Type is %s).",
  2850. "name": "__tLogger__",
  2851. "pathname": "src/unittest/test.py",
  2852. "process": 3545,
  2853. "processName": "MainProcess",
  2854. "relativeCreated": 6580.554962158203,
  2855. "stack_info": null,
  2856. "thread": 140585574717248,
  2857. "threadName": "MainThread",
  2858. "time_consumption": 5.7220458984375e-05
  2859. },
  2860. {
  2861. "args": [
  2862. "True",
  2863. "<class 'bool'>"
  2864. ],
  2865. "asctime": "2020-02-03 11:51:53,210",
  2866. "created": 1580727113.2100096,
  2867. "exc_info": null,
  2868. "exc_text": null,
  2869. "filename": "test.py",
  2870. "funcName": "equivalency_chk",
  2871. "levelname": "INFO",
  2872. "levelno": 20,
  2873. "lineno": 142,
  2874. "message": "Filecompare for joined_image_4.jpg is correct (Content True and Type is <class 'bool'>).",
  2875. "module": "test",
  2876. "moduleLogger": [
  2877. {
  2878. "args": [
  2879. 4
  2880. ],
  2881. "asctime": "2020-02-03 11:51:52,492",
  2882. "created": 1580727112.492497,
  2883. "exc_info": null,
  2884. "exc_text": null,
  2885. "filename": "test_image.py",
  2886. "funcName": "join",
  2887. "levelname": "DEBUG",
  2888. "levelno": 10,
  2889. "lineno": 108,
  2890. "message": "Join with position 4",
  2891. "module": "test_image",
  2892. "msecs": 492.4969673156738,
  2893. "msg": "Join with position %d",
  2894. "name": "__unittest__",
  2895. "pathname": "src/tests/test_image.py",
  2896. "process": 3545,
  2897. "processName": "MainProcess",
  2898. "relativeCreated": 6580.644607543945,
  2899. "stack_info": null,
  2900. "thread": 140585574717248,
  2901. "threadName": "MainThread"
  2902. },
  2903. {
  2904. "args": [
  2905. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2906. ],
  2907. "asctime": "2020-02-03 11:51:52,684",
  2908. "created": 1580727112.684254,
  2909. "exc_info": null,
  2910. "exc_text": null,
  2911. "filename": "__init__.py",
  2912. "funcName": "load_from_file",
  2913. "levelname": "DEBUG",
  2914. "levelno": 10,
  2915. "lineno": 116,
  2916. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2917. "module": "__init__",
  2918. "msecs": 684.2539310455322,
  2919. "msg": "loading image from %s",
  2920. "name": "MEDIA",
  2921. "pathname": "src/media/__init__.py",
  2922. "process": 3545,
  2923. "processName": "MainProcess",
  2924. "relativeCreated": 6772.401571273804,
  2925. "stack_info": null,
  2926. "thread": 140585574717248,
  2927. "threadName": "MainThread"
  2928. },
  2929. {
  2930. "args": [
  2931. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  2932. ],
  2933. "asctime": "2020-02-03 11:51:52,841",
  2934. "created": 1580727112.8419573,
  2935. "exc_info": null,
  2936. "exc_text": null,
  2937. "filename": "__init__.py",
  2938. "funcName": "load_from_file",
  2939. "levelname": "DEBUG",
  2940. "levelno": 10,
  2941. "lineno": 116,
  2942. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  2943. "module": "__init__",
  2944. "msecs": 841.9573307037354,
  2945. "msg": "loading image from %s",
  2946. "name": "MEDIA",
  2947. "pathname": "src/media/__init__.py",
  2948. "process": 3545,
  2949. "processName": "MainProcess",
  2950. "relativeCreated": 6930.104970932007,
  2951. "stack_info": null,
  2952. "thread": 140585574717248,
  2953. "threadName": "MainThread"
  2954. },
  2955. {
  2956. "args": [
  2957. 300
  2958. ],
  2959. "asctime": "2020-02-03 11:51:52,842",
  2960. "created": 1580727112.8420913,
  2961. "exc_info": null,
  2962. "exc_text": null,
  2963. "filename": "__init__.py",
  2964. "funcName": "resize",
  2965. "levelname": "DEBUG",
  2966. "levelno": 10,
  2967. "lineno": 141,
  2968. "message": "Resizing picture to max 300 pixel in whatever direction",
  2969. "module": "__init__",
  2970. "msecs": 842.0913219451904,
  2971. "msg": "Resizing picture to max %d pixel in whatever direction",
  2972. "name": "MEDIA",
  2973. "pathname": "src/media/__init__.py",
  2974. "process": 3545,
  2975. "processName": "MainProcess",
  2976. "relativeCreated": 6930.238962173462,
  2977. "stack_info": null,
  2978. "thread": 140585574717248,
  2979. "threadName": "MainThread"
  2980. },
  2981. {
  2982. "args": [],
  2983. "asctime": "2020-02-03 11:51:52,907",
  2984. "created": 1580727112.9077432,
  2985. "exc_info": null,
  2986. "exc_text": null,
  2987. "filename": "__init__.py",
  2988. "funcName": "join",
  2989. "levelname": "DEBUG",
  2990. "levelno": 10,
  2991. "lineno": 218,
  2992. "message": "Joining two images",
  2993. "module": "__init__",
  2994. "msecs": 907.7432155609131,
  2995. "msg": "Joining two images",
  2996. "name": "MEDIA",
  2997. "pathname": "src/media/__init__.py",
  2998. "process": 3545,
  2999. "processName": "MainProcess",
  3000. "relativeCreated": 6995.890855789185,
  3001. "stack_info": null,
  3002. "thread": 140585574717248,
  3003. "threadName": "MainThread"
  3004. },
  3005. {
  3006. "args": [
  3007. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_4.jpg'"
  3008. ],
  3009. "asctime": "2020-02-03 11:51:53,022",
  3010. "created": 1580727113.0225954,
  3011. "exc_info": null,
  3012. "exc_text": null,
  3013. "filename": "__init__.py",
  3014. "funcName": "save",
  3015. "levelname": "DEBUG",
  3016. "levelno": 10,
  3017. "lineno": 124,
  3018. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_4.jpg'",
  3019. "module": "__init__",
  3020. "msecs": 22.59540557861328,
  3021. "msg": "Saving image to %s",
  3022. "name": "MEDIA",
  3023. "pathname": "src/media/__init__.py",
  3024. "process": 3545,
  3025. "processName": "MainProcess",
  3026. "relativeCreated": 7110.743045806885,
  3027. "stack_info": null,
  3028. "thread": 140585574717248,
  3029. "threadName": "MainThread"
  3030. },
  3031. {
  3032. "args": [
  3033. "Filecompare for joined_image_4.jpg",
  3034. "True",
  3035. "<class 'bool'>"
  3036. ],
  3037. "asctime": "2020-02-03 11:51:53,209",
  3038. "created": 1580727113.2098458,
  3039. "exc_info": null,
  3040. "exc_text": null,
  3041. "filename": "test.py",
  3042. "funcName": "__report_result__",
  3043. "levelname": "DEBUG",
  3044. "levelno": 10,
  3045. "lineno": 22,
  3046. "message": "Result (Filecompare for joined_image_4.jpg): True (<class 'bool'>)",
  3047. "module": "test",
  3048. "msecs": 209.84578132629395,
  3049. "msg": "Result (%s): %s (%s)",
  3050. "name": "__unittest__",
  3051. "pathname": "src/unittest/test.py",
  3052. "process": 3545,
  3053. "processName": "MainProcess",
  3054. "relativeCreated": 7297.993421554565,
  3055. "stack_info": null,
  3056. "thread": 140585574717248,
  3057. "threadName": "MainThread"
  3058. },
  3059. {
  3060. "args": [
  3061. "Filecompare for joined_image_4.jpg",
  3062. "True",
  3063. "<class 'bool'>"
  3064. ],
  3065. "asctime": "2020-02-03 11:51:53,209",
  3066. "created": 1580727113.209952,
  3067. "exc_info": null,
  3068. "exc_text": null,
  3069. "filename": "test.py",
  3070. "funcName": "__report_expectation_equivalency__",
  3071. "levelname": "DEBUG",
  3072. "levelno": 10,
  3073. "lineno": 26,
  3074. "message": "Expectation (Filecompare for joined_image_4.jpg): result = True (<class 'bool'>)",
  3075. "module": "test",
  3076. "msecs": 209.95211601257324,
  3077. "msg": "Expectation (%s): result = %s (%s)",
  3078. "name": "__unittest__",
  3079. "pathname": "src/unittest/test.py",
  3080. "process": 3545,
  3081. "processName": "MainProcess",
  3082. "relativeCreated": 7298.099756240845,
  3083. "stack_info": null,
  3084. "thread": 140585574717248,
  3085. "threadName": "MainThread"
  3086. }
  3087. ],
  3088. "msecs": 210.00957489013672,
  3089. "msg": "Filecompare for joined_image_4.jpg is correct (Content %s and Type is %s).",
  3090. "name": "__tLogger__",
  3091. "pathname": "src/unittest/test.py",
  3092. "process": 3545,
  3093. "processName": "MainProcess",
  3094. "relativeCreated": 7298.157215118408,
  3095. "stack_info": null,
  3096. "thread": 140585574717248,
  3097. "threadName": "MainThread",
  3098. "time_consumption": 5.745887756347656e-05
  3099. },
  3100. {
  3101. "args": [
  3102. "True",
  3103. "<class 'bool'>"
  3104. ],
  3105. "asctime": "2020-02-03 11:51:53,894",
  3106. "created": 1580727113.8942032,
  3107. "exc_info": null,
  3108. "exc_text": null,
  3109. "filename": "test.py",
  3110. "funcName": "equivalency_chk",
  3111. "levelname": "INFO",
  3112. "levelno": 20,
  3113. "lineno": 142,
  3114. "message": "Filecompare for joined_image_5.jpg is correct (Content True and Type is <class 'bool'>).",
  3115. "module": "test",
  3116. "moduleLogger": [
  3117. {
  3118. "args": [
  3119. 5
  3120. ],
  3121. "asctime": "2020-02-03 11:51:53,210",
  3122. "created": 1580727113.2100995,
  3123. "exc_info": null,
  3124. "exc_text": null,
  3125. "filename": "test_image.py",
  3126. "funcName": "join",
  3127. "levelname": "DEBUG",
  3128. "levelno": 10,
  3129. "lineno": 108,
  3130. "message": "Join with position 5",
  3131. "module": "test_image",
  3132. "msecs": 210.099458694458,
  3133. "msg": "Join with position %d",
  3134. "name": "__unittest__",
  3135. "pathname": "src/tests/test_image.py",
  3136. "process": 3545,
  3137. "processName": "MainProcess",
  3138. "relativeCreated": 7298.2470989227295,
  3139. "stack_info": null,
  3140. "thread": 140585574717248,
  3141. "threadName": "MainThread"
  3142. },
  3143. {
  3144. "args": [
  3145. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3146. ],
  3147. "asctime": "2020-02-03 11:51:53,369",
  3148. "created": 1580727113.3693988,
  3149. "exc_info": null,
  3150. "exc_text": null,
  3151. "filename": "__init__.py",
  3152. "funcName": "load_from_file",
  3153. "levelname": "DEBUG",
  3154. "levelno": 10,
  3155. "lineno": 116,
  3156. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3157. "module": "__init__",
  3158. "msecs": 369.398832321167,
  3159. "msg": "loading image from %s",
  3160. "name": "MEDIA",
  3161. "pathname": "src/media/__init__.py",
  3162. "process": 3545,
  3163. "processName": "MainProcess",
  3164. "relativeCreated": 7457.5464725494385,
  3165. "stack_info": null,
  3166. "thread": 140585574717248,
  3167. "threadName": "MainThread"
  3168. },
  3169. {
  3170. "args": [
  3171. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3172. ],
  3173. "asctime": "2020-02-03 11:51:53,524",
  3174. "created": 1580727113.5249228,
  3175. "exc_info": null,
  3176. "exc_text": null,
  3177. "filename": "__init__.py",
  3178. "funcName": "load_from_file",
  3179. "levelname": "DEBUG",
  3180. "levelno": 10,
  3181. "lineno": 116,
  3182. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3183. "module": "__init__",
  3184. "msecs": 524.9228477478027,
  3185. "msg": "loading image from %s",
  3186. "name": "MEDIA",
  3187. "pathname": "src/media/__init__.py",
  3188. "process": 3545,
  3189. "processName": "MainProcess",
  3190. "relativeCreated": 7613.070487976074,
  3191. "stack_info": null,
  3192. "thread": 140585574717248,
  3193. "threadName": "MainThread"
  3194. },
  3195. {
  3196. "args": [
  3197. 300
  3198. ],
  3199. "asctime": "2020-02-03 11:51:53,525",
  3200. "created": 1580727113.5251005,
  3201. "exc_info": null,
  3202. "exc_text": null,
  3203. "filename": "__init__.py",
  3204. "funcName": "resize",
  3205. "levelname": "DEBUG",
  3206. "levelno": 10,
  3207. "lineno": 141,
  3208. "message": "Resizing picture to max 300 pixel in whatever direction",
  3209. "module": "__init__",
  3210. "msecs": 525.1004695892334,
  3211. "msg": "Resizing picture to max %d pixel in whatever direction",
  3212. "name": "MEDIA",
  3213. "pathname": "src/media/__init__.py",
  3214. "process": 3545,
  3215. "processName": "MainProcess",
  3216. "relativeCreated": 7613.248109817505,
  3217. "stack_info": null,
  3218. "thread": 140585574717248,
  3219. "threadName": "MainThread"
  3220. },
  3221. {
  3222. "args": [],
  3223. "asctime": "2020-02-03 11:51:53,577",
  3224. "created": 1580727113.5770705,
  3225. "exc_info": null,
  3226. "exc_text": null,
  3227. "filename": "__init__.py",
  3228. "funcName": "join",
  3229. "levelname": "DEBUG",
  3230. "levelno": 10,
  3231. "lineno": 218,
  3232. "message": "Joining two images",
  3233. "module": "__init__",
  3234. "msecs": 577.0704746246338,
  3235. "msg": "Joining two images",
  3236. "name": "MEDIA",
  3237. "pathname": "src/media/__init__.py",
  3238. "process": 3545,
  3239. "processName": "MainProcess",
  3240. "relativeCreated": 7665.218114852905,
  3241. "stack_info": null,
  3242. "thread": 140585574717248,
  3243. "threadName": "MainThread"
  3244. },
  3245. {
  3246. "args": [
  3247. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_5.jpg'"
  3248. ],
  3249. "asctime": "2020-02-03 11:51:53,721",
  3250. "created": 1580727113.7214005,
  3251. "exc_info": null,
  3252. "exc_text": null,
  3253. "filename": "__init__.py",
  3254. "funcName": "save",
  3255. "levelname": "DEBUG",
  3256. "levelno": 10,
  3257. "lineno": 124,
  3258. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_5.jpg'",
  3259. "module": "__init__",
  3260. "msecs": 721.4004993438721,
  3261. "msg": "Saving image to %s",
  3262. "name": "MEDIA",
  3263. "pathname": "src/media/__init__.py",
  3264. "process": 3545,
  3265. "processName": "MainProcess",
  3266. "relativeCreated": 7809.548139572144,
  3267. "stack_info": null,
  3268. "thread": 140585574717248,
  3269. "threadName": "MainThread"
  3270. },
  3271. {
  3272. "args": [
  3273. "Filecompare for joined_image_5.jpg",
  3274. "True",
  3275. "<class 'bool'>"
  3276. ],
  3277. "asctime": "2020-02-03 11:51:53,893",
  3278. "created": 1580727113.8939953,
  3279. "exc_info": null,
  3280. "exc_text": null,
  3281. "filename": "test.py",
  3282. "funcName": "__report_result__",
  3283. "levelname": "DEBUG",
  3284. "levelno": 10,
  3285. "lineno": 22,
  3286. "message": "Result (Filecompare for joined_image_5.jpg): True (<class 'bool'>)",
  3287. "module": "test",
  3288. "msecs": 893.9952850341797,
  3289. "msg": "Result (%s): %s (%s)",
  3290. "name": "__unittest__",
  3291. "pathname": "src/unittest/test.py",
  3292. "process": 3545,
  3293. "processName": "MainProcess",
  3294. "relativeCreated": 7982.142925262451,
  3295. "stack_info": null,
  3296. "thread": 140585574717248,
  3297. "threadName": "MainThread"
  3298. },
  3299. {
  3300. "args": [
  3301. "Filecompare for joined_image_5.jpg",
  3302. "True",
  3303. "<class 'bool'>"
  3304. ],
  3305. "asctime": "2020-02-03 11:51:53,894",
  3306. "created": 1580727113.8941295,
  3307. "exc_info": null,
  3308. "exc_text": null,
  3309. "filename": "test.py",
  3310. "funcName": "__report_expectation_equivalency__",
  3311. "levelname": "DEBUG",
  3312. "levelno": 10,
  3313. "lineno": 26,
  3314. "message": "Expectation (Filecompare for joined_image_5.jpg): result = True (<class 'bool'>)",
  3315. "module": "test",
  3316. "msecs": 894.1295146942139,
  3317. "msg": "Expectation (%s): result = %s (%s)",
  3318. "name": "__unittest__",
  3319. "pathname": "src/unittest/test.py",
  3320. "process": 3545,
  3321. "processName": "MainProcess",
  3322. "relativeCreated": 7982.277154922485,
  3323. "stack_info": null,
  3324. "thread": 140585574717248,
  3325. "threadName": "MainThread"
  3326. }
  3327. ],
  3328. "msecs": 894.2031860351562,
  3329. "msg": "Filecompare for joined_image_5.jpg is correct (Content %s and Type is %s).",
  3330. "name": "__tLogger__",
  3331. "pathname": "src/unittest/test.py",
  3332. "process": 3545,
  3333. "processName": "MainProcess",
  3334. "relativeCreated": 7982.350826263428,
  3335. "stack_info": null,
  3336. "thread": 140585574717248,
  3337. "threadName": "MainThread",
  3338. "time_consumption": 7.367134094238281e-05
  3339. },
  3340. {
  3341. "args": [
  3342. "True",
  3343. "<class 'bool'>"
  3344. ],
  3345. "asctime": "2020-02-03 11:51:54,593",
  3346. "created": 1580727114.5934289,
  3347. "exc_info": null,
  3348. "exc_text": null,
  3349. "filename": "test.py",
  3350. "funcName": "equivalency_chk",
  3351. "levelname": "INFO",
  3352. "levelno": 20,
  3353. "lineno": 142,
  3354. "message": "Filecompare for joined_image_1.jpg is correct (Content True and Type is <class 'bool'>).",
  3355. "module": "test",
  3356. "moduleLogger": [
  3357. {
  3358. "args": [
  3359. 1
  3360. ],
  3361. "asctime": "2020-02-03 11:51:53,894",
  3362. "created": 1580727113.8943253,
  3363. "exc_info": null,
  3364. "exc_text": null,
  3365. "filename": "test_image.py",
  3366. "funcName": "join",
  3367. "levelname": "DEBUG",
  3368. "levelno": 10,
  3369. "lineno": 108,
  3370. "message": "Join with position 1",
  3371. "module": "test_image",
  3372. "msecs": 894.3252563476562,
  3373. "msg": "Join with position %d",
  3374. "name": "__unittest__",
  3375. "pathname": "src/tests/test_image.py",
  3376. "process": 3545,
  3377. "processName": "MainProcess",
  3378. "relativeCreated": 7982.472896575928,
  3379. "stack_info": null,
  3380. "thread": 140585574717248,
  3381. "threadName": "MainThread"
  3382. },
  3383. {
  3384. "args": [
  3385. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3386. ],
  3387. "asctime": "2020-02-03 11:51:54,039",
  3388. "created": 1580727114.0390592,
  3389. "exc_info": null,
  3390. "exc_text": null,
  3391. "filename": "__init__.py",
  3392. "funcName": "load_from_file",
  3393. "levelname": "DEBUG",
  3394. "levelno": 10,
  3395. "lineno": 116,
  3396. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3397. "module": "__init__",
  3398. "msecs": 39.05916213989258,
  3399. "msg": "loading image from %s",
  3400. "name": "MEDIA",
  3401. "pathname": "src/media/__init__.py",
  3402. "process": 3545,
  3403. "processName": "MainProcess",
  3404. "relativeCreated": 8127.206802368164,
  3405. "stack_info": null,
  3406. "thread": 140585574717248,
  3407. "threadName": "MainThread"
  3408. },
  3409. {
  3410. "args": [
  3411. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3412. ],
  3413. "asctime": "2020-02-03 11:51:54,202",
  3414. "created": 1580727114.2026494,
  3415. "exc_info": null,
  3416. "exc_text": null,
  3417. "filename": "__init__.py",
  3418. "funcName": "load_from_file",
  3419. "levelname": "DEBUG",
  3420. "levelno": 10,
  3421. "lineno": 116,
  3422. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3423. "module": "__init__",
  3424. "msecs": 202.64935493469238,
  3425. "msg": "loading image from %s",
  3426. "name": "MEDIA",
  3427. "pathname": "src/media/__init__.py",
  3428. "process": 3545,
  3429. "processName": "MainProcess",
  3430. "relativeCreated": 8290.796995162964,
  3431. "stack_info": null,
  3432. "thread": 140585574717248,
  3433. "threadName": "MainThread"
  3434. },
  3435. {
  3436. "args": [
  3437. 300
  3438. ],
  3439. "asctime": "2020-02-03 11:51:54,202",
  3440. "created": 1580727114.2027824,
  3441. "exc_info": null,
  3442. "exc_text": null,
  3443. "filename": "__init__.py",
  3444. "funcName": "resize",
  3445. "levelname": "DEBUG",
  3446. "levelno": 10,
  3447. "lineno": 141,
  3448. "message": "Resizing picture to max 300 pixel in whatever direction",
  3449. "module": "__init__",
  3450. "msecs": 202.78239250183105,
  3451. "msg": "Resizing picture to max %d pixel in whatever direction",
  3452. "name": "MEDIA",
  3453. "pathname": "src/media/__init__.py",
  3454. "process": 3545,
  3455. "processName": "MainProcess",
  3456. "relativeCreated": 8290.930032730103,
  3457. "stack_info": null,
  3458. "thread": 140585574717248,
  3459. "threadName": "MainThread"
  3460. },
  3461. {
  3462. "args": [],
  3463. "asctime": "2020-02-03 11:51:54,324",
  3464. "created": 1580727114.3240337,
  3465. "exc_info": null,
  3466. "exc_text": null,
  3467. "filename": "__init__.py",
  3468. "funcName": "join",
  3469. "levelname": "DEBUG",
  3470. "levelno": 10,
  3471. "lineno": 218,
  3472. "message": "Joining two images",
  3473. "module": "__init__",
  3474. "msecs": 324.0337371826172,
  3475. "msg": "Joining two images",
  3476. "name": "MEDIA",
  3477. "pathname": "src/media/__init__.py",
  3478. "process": 3545,
  3479. "processName": "MainProcess",
  3480. "relativeCreated": 8412.181377410889,
  3481. "stack_info": null,
  3482. "thread": 140585574717248,
  3483. "threadName": "MainThread"
  3484. },
  3485. {
  3486. "args": [
  3487. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_1.jpg'"
  3488. ],
  3489. "asctime": "2020-02-03 11:51:54,449",
  3490. "created": 1580727114.449797,
  3491. "exc_info": null,
  3492. "exc_text": null,
  3493. "filename": "__init__.py",
  3494. "funcName": "save",
  3495. "levelname": "DEBUG",
  3496. "levelno": 10,
  3497. "lineno": 124,
  3498. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_1.jpg'",
  3499. "module": "__init__",
  3500. "msecs": 449.7969150543213,
  3501. "msg": "Saving image to %s",
  3502. "name": "MEDIA",
  3503. "pathname": "src/media/__init__.py",
  3504. "process": 3545,
  3505. "processName": "MainProcess",
  3506. "relativeCreated": 8537.944555282593,
  3507. "stack_info": null,
  3508. "thread": 140585574717248,
  3509. "threadName": "MainThread"
  3510. },
  3511. {
  3512. "args": [
  3513. "Filecompare for joined_image_1.jpg",
  3514. "True",
  3515. "<class 'bool'>"
  3516. ],
  3517. "asctime": "2020-02-03 11:51:54,593",
  3518. "created": 1580727114.5932233,
  3519. "exc_info": null,
  3520. "exc_text": null,
  3521. "filename": "test.py",
  3522. "funcName": "__report_result__",
  3523. "levelname": "DEBUG",
  3524. "levelno": 10,
  3525. "lineno": 22,
  3526. "message": "Result (Filecompare for joined_image_1.jpg): True (<class 'bool'>)",
  3527. "module": "test",
  3528. "msecs": 593.2233333587646,
  3529. "msg": "Result (%s): %s (%s)",
  3530. "name": "__unittest__",
  3531. "pathname": "src/unittest/test.py",
  3532. "process": 3545,
  3533. "processName": "MainProcess",
  3534. "relativeCreated": 8681.370973587036,
  3535. "stack_info": null,
  3536. "thread": 140585574717248,
  3537. "threadName": "MainThread"
  3538. },
  3539. {
  3540. "args": [
  3541. "Filecompare for joined_image_1.jpg",
  3542. "True",
  3543. "<class 'bool'>"
  3544. ],
  3545. "asctime": "2020-02-03 11:51:54,593",
  3546. "created": 1580727114.5933533,
  3547. "exc_info": null,
  3548. "exc_text": null,
  3549. "filename": "test.py",
  3550. "funcName": "__report_expectation_equivalency__",
  3551. "levelname": "DEBUG",
  3552. "levelno": 10,
  3553. "lineno": 26,
  3554. "message": "Expectation (Filecompare for joined_image_1.jpg): result = True (<class 'bool'>)",
  3555. "module": "test",
  3556. "msecs": 593.353271484375,
  3557. "msg": "Expectation (%s): result = %s (%s)",
  3558. "name": "__unittest__",
  3559. "pathname": "src/unittest/test.py",
  3560. "process": 3545,
  3561. "processName": "MainProcess",
  3562. "relativeCreated": 8681.500911712646,
  3563. "stack_info": null,
  3564. "thread": 140585574717248,
  3565. "threadName": "MainThread"
  3566. }
  3567. ],
  3568. "msecs": 593.4288501739502,
  3569. "msg": "Filecompare for joined_image_1.jpg is correct (Content %s and Type is %s).",
  3570. "name": "__tLogger__",
  3571. "pathname": "src/unittest/test.py",
  3572. "process": 3545,
  3573. "processName": "MainProcess",
  3574. "relativeCreated": 8681.576490402222,
  3575. "stack_info": null,
  3576. "thread": 140585574717248,
  3577. "threadName": "MainThread",
  3578. "time_consumption": 7.557868957519531e-05
  3579. },
  3580. {
  3581. "args": [
  3582. "True",
  3583. "<class 'bool'>"
  3584. ],
  3585. "asctime": "2020-02-03 11:51:55,277",
  3586. "created": 1580727115.2770908,
  3587. "exc_info": null,
  3588. "exc_text": null,
  3589. "filename": "test.py",
  3590. "funcName": "equivalency_chk",
  3591. "levelname": "INFO",
  3592. "levelno": 20,
  3593. "lineno": 142,
  3594. "message": "Filecompare for joined_image_2.jpg is correct (Content True and Type is <class 'bool'>).",
  3595. "module": "test",
  3596. "moduleLogger": [
  3597. {
  3598. "args": [
  3599. 2
  3600. ],
  3601. "asctime": "2020-02-03 11:51:54,593",
  3602. "created": 1580727114.5935304,
  3603. "exc_info": null,
  3604. "exc_text": null,
  3605. "filename": "test_image.py",
  3606. "funcName": "join",
  3607. "levelname": "DEBUG",
  3608. "levelno": 10,
  3609. "lineno": 108,
  3610. "message": "Join with position 2",
  3611. "module": "test_image",
  3612. "msecs": 593.5304164886475,
  3613. "msg": "Join with position %d",
  3614. "name": "__unittest__",
  3615. "pathname": "src/tests/test_image.py",
  3616. "process": 3545,
  3617. "processName": "MainProcess",
  3618. "relativeCreated": 8681.678056716919,
  3619. "stack_info": null,
  3620. "thread": 140585574717248,
  3621. "threadName": "MainThread"
  3622. },
  3623. {
  3624. "args": [
  3625. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3626. ],
  3627. "asctime": "2020-02-03 11:51:54,742",
  3628. "created": 1580727114.7421951,
  3629. "exc_info": null,
  3630. "exc_text": null,
  3631. "filename": "__init__.py",
  3632. "funcName": "load_from_file",
  3633. "levelname": "DEBUG",
  3634. "levelno": 10,
  3635. "lineno": 116,
  3636. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3637. "module": "__init__",
  3638. "msecs": 742.1951293945312,
  3639. "msg": "loading image from %s",
  3640. "name": "MEDIA",
  3641. "pathname": "src/media/__init__.py",
  3642. "process": 3545,
  3643. "processName": "MainProcess",
  3644. "relativeCreated": 8830.342769622803,
  3645. "stack_info": null,
  3646. "thread": 140585574717248,
  3647. "threadName": "MainThread"
  3648. },
  3649. {
  3650. "args": [
  3651. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3652. ],
  3653. "asctime": "2020-02-03 11:51:54,942",
  3654. "created": 1580727114.942605,
  3655. "exc_info": null,
  3656. "exc_text": null,
  3657. "filename": "__init__.py",
  3658. "funcName": "load_from_file",
  3659. "levelname": "DEBUG",
  3660. "levelno": 10,
  3661. "lineno": 116,
  3662. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3663. "module": "__init__",
  3664. "msecs": 942.6050186157227,
  3665. "msg": "loading image from %s",
  3666. "name": "MEDIA",
  3667. "pathname": "src/media/__init__.py",
  3668. "process": 3545,
  3669. "processName": "MainProcess",
  3670. "relativeCreated": 9030.752658843994,
  3671. "stack_info": null,
  3672. "thread": 140585574717248,
  3673. "threadName": "MainThread"
  3674. },
  3675. {
  3676. "args": [
  3677. 300
  3678. ],
  3679. "asctime": "2020-02-03 11:51:54,942",
  3680. "created": 1580727114.9427683,
  3681. "exc_info": null,
  3682. "exc_text": null,
  3683. "filename": "__init__.py",
  3684. "funcName": "resize",
  3685. "levelname": "DEBUG",
  3686. "levelno": 10,
  3687. "lineno": 141,
  3688. "message": "Resizing picture to max 300 pixel in whatever direction",
  3689. "module": "__init__",
  3690. "msecs": 942.7683353424072,
  3691. "msg": "Resizing picture to max %d pixel in whatever direction",
  3692. "name": "MEDIA",
  3693. "pathname": "src/media/__init__.py",
  3694. "process": 3545,
  3695. "processName": "MainProcess",
  3696. "relativeCreated": 9030.915975570679,
  3697. "stack_info": null,
  3698. "thread": 140585574717248,
  3699. "threadName": "MainThread"
  3700. },
  3701. {
  3702. "args": [],
  3703. "asctime": "2020-02-03 11:51:55,014",
  3704. "created": 1580727115.0147798,
  3705. "exc_info": null,
  3706. "exc_text": null,
  3707. "filename": "__init__.py",
  3708. "funcName": "join",
  3709. "levelname": "DEBUG",
  3710. "levelno": 10,
  3711. "lineno": 218,
  3712. "message": "Joining two images",
  3713. "module": "__init__",
  3714. "msecs": 14.779806137084961,
  3715. "msg": "Joining two images",
  3716. "name": "MEDIA",
  3717. "pathname": "src/media/__init__.py",
  3718. "process": 3545,
  3719. "processName": "MainProcess",
  3720. "relativeCreated": 9102.927446365356,
  3721. "stack_info": null,
  3722. "thread": 140585574717248,
  3723. "threadName": "MainThread"
  3724. },
  3725. {
  3726. "args": [
  3727. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_2.jpg'"
  3728. ],
  3729. "asctime": "2020-02-03 11:51:55,124",
  3730. "created": 1580727115.1245804,
  3731. "exc_info": null,
  3732. "exc_text": null,
  3733. "filename": "__init__.py",
  3734. "funcName": "save",
  3735. "levelname": "DEBUG",
  3736. "levelno": 10,
  3737. "lineno": 124,
  3738. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_2.jpg'",
  3739. "module": "__init__",
  3740. "msecs": 124.58038330078125,
  3741. "msg": "Saving image to %s",
  3742. "name": "MEDIA",
  3743. "pathname": "src/media/__init__.py",
  3744. "process": 3545,
  3745. "processName": "MainProcess",
  3746. "relativeCreated": 9212.728023529053,
  3747. "stack_info": null,
  3748. "thread": 140585574717248,
  3749. "threadName": "MainThread"
  3750. },
  3751. {
  3752. "args": [
  3753. "Filecompare for joined_image_2.jpg",
  3754. "True",
  3755. "<class 'bool'>"
  3756. ],
  3757. "asctime": "2020-02-03 11:51:55,276",
  3758. "created": 1580727115.2768118,
  3759. "exc_info": null,
  3760. "exc_text": null,
  3761. "filename": "test.py",
  3762. "funcName": "__report_result__",
  3763. "levelname": "DEBUG",
  3764. "levelno": 10,
  3765. "lineno": 22,
  3766. "message": "Result (Filecompare for joined_image_2.jpg): True (<class 'bool'>)",
  3767. "module": "test",
  3768. "msecs": 276.8118381500244,
  3769. "msg": "Result (%s): %s (%s)",
  3770. "name": "__unittest__",
  3771. "pathname": "src/unittest/test.py",
  3772. "process": 3545,
  3773. "processName": "MainProcess",
  3774. "relativeCreated": 9364.959478378296,
  3775. "stack_info": null,
  3776. "thread": 140585574717248,
  3777. "threadName": "MainThread"
  3778. },
  3779. {
  3780. "args": [
  3781. "Filecompare for joined_image_2.jpg",
  3782. "True",
  3783. "<class 'bool'>"
  3784. ],
  3785. "asctime": "2020-02-03 11:51:55,276",
  3786. "created": 1580727115.2769642,
  3787. "exc_info": null,
  3788. "exc_text": null,
  3789. "filename": "test.py",
  3790. "funcName": "__report_expectation_equivalency__",
  3791. "levelname": "DEBUG",
  3792. "levelno": 10,
  3793. "lineno": 26,
  3794. "message": "Expectation (Filecompare for joined_image_2.jpg): result = True (<class 'bool'>)",
  3795. "module": "test",
  3796. "msecs": 276.9641876220703,
  3797. "msg": "Expectation (%s): result = %s (%s)",
  3798. "name": "__unittest__",
  3799. "pathname": "src/unittest/test.py",
  3800. "process": 3545,
  3801. "processName": "MainProcess",
  3802. "relativeCreated": 9365.111827850342,
  3803. "stack_info": null,
  3804. "thread": 140585574717248,
  3805. "threadName": "MainThread"
  3806. }
  3807. ],
  3808. "msecs": 277.09078788757324,
  3809. "msg": "Filecompare for joined_image_2.jpg is correct (Content %s and Type is %s).",
  3810. "name": "__tLogger__",
  3811. "pathname": "src/unittest/test.py",
  3812. "process": 3545,
  3813. "processName": "MainProcess",
  3814. "relativeCreated": 9365.238428115845,
  3815. "stack_info": null,
  3816. "thread": 140585574717248,
  3817. "threadName": "MainThread",
  3818. "time_consumption": 0.0001266002655029297
  3819. }
  3820. ],
  3821. "thread": 140585574717248,
  3822. "threadName": "MainThread",
  3823. "time_consumption": 4.226864576339722,
  3824. "time_finished": "2020-02-03 11:51:55,277",
  3825. "time_start": "2020-02-03 11:51:51,050"
  3826. },
  3827. "_Fv7V4EYCEequ74M7usLaPw": {
  3828. "args": null,
  3829. "asctime": "2020-02-03 11:51:47,139",
  3830. "created": 1580727107.1390893,
  3831. "exc_info": null,
  3832. "exc_text": null,
  3833. "filename": "__init__.py",
  3834. "funcName": "testrun",
  3835. "levelname": "INFO",
  3836. "levelno": 20,
  3837. "lineno": 31,
  3838. "message": "_Fv7V4EYCEequ74M7usLaPw",
  3839. "module": "__init__",
  3840. "moduleLogger": [],
  3841. "msecs": 139.08934593200684,
  3842. "msg": "_Fv7V4EYCEequ74M7usLaPw",
  3843. "name": "__tLogger__",
  3844. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  3845. "process": 3545,
  3846. "processName": "MainProcess",
  3847. "relativeCreated": 1227.2369861602783,
  3848. "stack_info": null,
  3849. "testcaseLogger": [
  3850. {
  3851. "args": [
  3852. "<class 'NoneType'>",
  3853. "<class 'type'>"
  3854. ],
  3855. "asctime": "2020-02-03 11:51:47,139",
  3856. "created": 1580727107.139268,
  3857. "exc_info": null,
  3858. "exc_text": null,
  3859. "filename": "test.py",
  3860. "funcName": "equivalency_chk",
  3861. "levelname": "INFO",
  3862. "levelno": 20,
  3863. "lineno": 142,
  3864. "message": "Type of image stored in instance, if no parameter is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  3865. "module": "test",
  3866. "moduleLogger": [
  3867. {
  3868. "args": [
  3869. "Type of image stored in instance, if no parameter is given",
  3870. "<class 'NoneType'>",
  3871. "<class 'type'>"
  3872. ],
  3873. "asctime": "2020-02-03 11:51:47,139",
  3874. "created": 1580727107.1391797,
  3875. "exc_info": null,
  3876. "exc_text": null,
  3877. "filename": "test.py",
  3878. "funcName": "__report_result__",
  3879. "levelname": "DEBUG",
  3880. "levelno": 10,
  3881. "lineno": 22,
  3882. "message": "Result (Type of image stored in instance, if no parameter is given): <class 'NoneType'> (<class 'type'>)",
  3883. "module": "test",
  3884. "msecs": 139.17970657348633,
  3885. "msg": "Result (%s): %s (%s)",
  3886. "name": "__unittest__",
  3887. "pathname": "src/unittest/test.py",
  3888. "process": 3545,
  3889. "processName": "MainProcess",
  3890. "relativeCreated": 1227.3273468017578,
  3891. "stack_info": null,
  3892. "thread": 140585574717248,
  3893. "threadName": "MainThread"
  3894. },
  3895. {
  3896. "args": [
  3897. "Type of image stored in instance, if no parameter is given",
  3898. "<class 'NoneType'>",
  3899. "<class 'type'>"
  3900. ],
  3901. "asctime": "2020-02-03 11:51:47,139",
  3902. "created": 1580727107.1392264,
  3903. "exc_info": null,
  3904. "exc_text": null,
  3905. "filename": "test.py",
  3906. "funcName": "__report_expectation_equivalency__",
  3907. "levelname": "DEBUG",
  3908. "levelno": 10,
  3909. "lineno": 26,
  3910. "message": "Expectation (Type of image stored in instance, if no parameter is given): result = <class 'NoneType'> (<class 'type'>)",
  3911. "module": "test",
  3912. "msecs": 139.22643661499023,
  3913. "msg": "Expectation (%s): result = %s (%s)",
  3914. "name": "__unittest__",
  3915. "pathname": "src/unittest/test.py",
  3916. "process": 3545,
  3917. "processName": "MainProcess",
  3918. "relativeCreated": 1227.3740768432617,
  3919. "stack_info": null,
  3920. "thread": 140585574717248,
  3921. "threadName": "MainThread"
  3922. }
  3923. ],
  3924. "msecs": 139.2679214477539,
  3925. "msg": "Type of image stored in instance, if no parameter is given is correct (Content %s and Type is %s).",
  3926. "name": "__tLogger__",
  3927. "pathname": "src/unittest/test.py",
  3928. "process": 3545,
  3929. "processName": "MainProcess",
  3930. "relativeCreated": 1227.4155616760254,
  3931. "stack_info": null,
  3932. "thread": 140585574717248,
  3933. "threadName": "MainThread",
  3934. "time_consumption": 4.1484832763671875e-05
  3935. },
  3936. {
  3937. "args": [
  3938. "<class 'NoneType'>",
  3939. "<class 'type'>"
  3940. ],
  3941. "asctime": "2020-02-03 11:51:47,140",
  3942. "created": 1580727107.1402414,
  3943. "exc_info": null,
  3944. "exc_text": null,
  3945. "filename": "test.py",
  3946. "funcName": "equivalency_chk",
  3947. "levelname": "INFO",
  3948. "levelno": 20,
  3949. "lineno": 142,
  3950. "message": "Type of image stored in instance, if a unsupported parameter is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  3951. "module": "test",
  3952. "moduleLogger": [
  3953. {
  3954. "args": [],
  3955. "asctime": "2020-02-03 11:51:47,140",
  3956. "created": 1580727107.1400805,
  3957. "exc_info": null,
  3958. "exc_text": null,
  3959. "filename": "convert.py",
  3960. "funcName": "get_pil_image",
  3961. "levelname": "WARNING",
  3962. "levelno": 30,
  3963. "lineno": 35,
  3964. "message": "Instance type is not supported: <class 'int'>",
  3965. "module": "convert",
  3966. "msecs": 140.08045196533203,
  3967. "msg": "Instance type is not supported: <class 'int'>",
  3968. "name": "MEDIA",
  3969. "pathname": "src/media/convert.py",
  3970. "process": 3545,
  3971. "processName": "MainProcess",
  3972. "relativeCreated": 1228.2280921936035,
  3973. "stack_info": null,
  3974. "thread": 140585574717248,
  3975. "threadName": "MainThread"
  3976. },
  3977. {
  3978. "args": [
  3979. "Type of image stored in instance, if a unsupported parameter is given",
  3980. "<class 'NoneType'>",
  3981. "<class 'type'>"
  3982. ],
  3983. "asctime": "2020-02-03 11:51:47,140",
  3984. "created": 1580727107.1401498,
  3985. "exc_info": null,
  3986. "exc_text": null,
  3987. "filename": "test.py",
  3988. "funcName": "__report_result__",
  3989. "levelname": "DEBUG",
  3990. "levelno": 10,
  3991. "lineno": 22,
  3992. "message": "Result (Type of image stored in instance, if a unsupported parameter is given): <class 'NoneType'> (<class 'type'>)",
  3993. "module": "test",
  3994. "msecs": 140.1498317718506,
  3995. "msg": "Result (%s): %s (%s)",
  3996. "name": "__unittest__",
  3997. "pathname": "src/unittest/test.py",
  3998. "process": 3545,
  3999. "processName": "MainProcess",
  4000. "relativeCreated": 1228.297472000122,
  4001. "stack_info": null,
  4002. "thread": 140585574717248,
  4003. "threadName": "MainThread"
  4004. },
  4005. {
  4006. "args": [
  4007. "Type of image stored in instance, if a unsupported parameter is given",
  4008. "<class 'NoneType'>",
  4009. "<class 'type'>"
  4010. ],
  4011. "asctime": "2020-02-03 11:51:47,140",
  4012. "created": 1580727107.140195,
  4013. "exc_info": null,
  4014. "exc_text": null,
  4015. "filename": "test.py",
  4016. "funcName": "__report_expectation_equivalency__",
  4017. "levelname": "DEBUG",
  4018. "levelno": 10,
  4019. "lineno": 26,
  4020. "message": "Expectation (Type of image stored in instance, if a unsupported parameter is given): result = <class 'NoneType'> (<class 'type'>)",
  4021. "module": "test",
  4022. "msecs": 140.19489288330078,
  4023. "msg": "Expectation (%s): result = %s (%s)",
  4024. "name": "__unittest__",
  4025. "pathname": "src/unittest/test.py",
  4026. "process": 3545,
  4027. "processName": "MainProcess",
  4028. "relativeCreated": 1228.3425331115723,
  4029. "stack_info": null,
  4030. "thread": 140585574717248,
  4031. "threadName": "MainThread"
  4032. }
  4033. ],
  4034. "msecs": 140.2413845062256,
  4035. "msg": "Type of image stored in instance, if a unsupported parameter is given is correct (Content %s and Type is %s).",
  4036. "name": "__tLogger__",
  4037. "pathname": "src/unittest/test.py",
  4038. "process": 3545,
  4039. "processName": "MainProcess",
  4040. "relativeCreated": 1228.389024734497,
  4041. "stack_info": null,
  4042. "thread": 140585574717248,
  4043. "threadName": "MainThread",
  4044. "time_consumption": 4.649162292480469e-05
  4045. },
  4046. {
  4047. "args": [
  4048. "<class 'NoneType'>",
  4049. "<class 'type'>"
  4050. ],
  4051. "asctime": "2020-02-03 11:51:47,140",
  4052. "created": 1580727107.140476,
  4053. "exc_info": null,
  4054. "exc_text": null,
  4055. "filename": "test.py",
  4056. "funcName": "equivalency_chk",
  4057. "levelname": "INFO",
  4058. "levelno": 20,
  4059. "lineno": 142,
  4060. "message": "Type of image stored in instance, if an unknown file is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  4061. "module": "test",
  4062. "moduleLogger": [
  4063. {
  4064. "args": [
  4065. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt"
  4066. ],
  4067. "asctime": "2020-02-03 11:51:47,140",
  4068. "created": 1580727107.1403224,
  4069. "exc_info": null,
  4070. "exc_text": null,
  4071. "filename": "convert.py",
  4072. "funcName": "get_pil_image",
  4073. "levelname": "WARNING",
  4074. "levelno": 30,
  4075. "lineno": 31,
  4076. "message": "Filetype is not supported (/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt)",
  4077. "module": "convert",
  4078. "msecs": 140.32244682312012,
  4079. "msg": "Filetype is not supported (%s)",
  4080. "name": "MEDIA",
  4081. "pathname": "src/media/convert.py",
  4082. "process": 3545,
  4083. "processName": "MainProcess",
  4084. "relativeCreated": 1228.4700870513916,
  4085. "stack_info": null,
  4086. "thread": 140585574717248,
  4087. "threadName": "MainThread"
  4088. },
  4089. {
  4090. "args": [
  4091. "Type of image stored in instance, if an unknown file is given",
  4092. "<class 'NoneType'>",
  4093. "<class 'type'>"
  4094. ],
  4095. "asctime": "2020-02-03 11:51:47,140",
  4096. "created": 1580727107.140401,
  4097. "exc_info": null,
  4098. "exc_text": null,
  4099. "filename": "test.py",
  4100. "funcName": "__report_result__",
  4101. "levelname": "DEBUG",
  4102. "levelno": 10,
  4103. "lineno": 22,
  4104. "message": "Result (Type of image stored in instance, if an unknown file is given): <class 'NoneType'> (<class 'type'>)",
  4105. "module": "test",
  4106. "msecs": 140.40088653564453,
  4107. "msg": "Result (%s): %s (%s)",
  4108. "name": "__unittest__",
  4109. "pathname": "src/unittest/test.py",
  4110. "process": 3545,
  4111. "processName": "MainProcess",
  4112. "relativeCreated": 1228.548526763916,
  4113. "stack_info": null,
  4114. "thread": 140585574717248,
  4115. "threadName": "MainThread"
  4116. },
  4117. {
  4118. "args": [
  4119. "Type of image stored in instance, if an unknown file is given",
  4120. "<class 'NoneType'>",
  4121. "<class 'type'>"
  4122. ],
  4123. "asctime": "2020-02-03 11:51:47,140",
  4124. "created": 1580727107.1404388,
  4125. "exc_info": null,
  4126. "exc_text": null,
  4127. "filename": "test.py",
  4128. "funcName": "__report_expectation_equivalency__",
  4129. "levelname": "DEBUG",
  4130. "levelno": 10,
  4131. "lineno": 26,
  4132. "message": "Expectation (Type of image stored in instance, if an unknown file is given): result = <class 'NoneType'> (<class 'type'>)",
  4133. "module": "test",
  4134. "msecs": 140.43879508972168,
  4135. "msg": "Expectation (%s): result = %s (%s)",
  4136. "name": "__unittest__",
  4137. "pathname": "src/unittest/test.py",
  4138. "process": 3545,
  4139. "processName": "MainProcess",
  4140. "relativeCreated": 1228.5864353179932,
  4141. "stack_info": null,
  4142. "thread": 140585574717248,
  4143. "threadName": "MainThread"
  4144. }
  4145. ],
  4146. "msecs": 140.47598838806152,
  4147. "msg": "Type of image stored in instance, if an unknown file is given is correct (Content %s and Type is %s).",
  4148. "name": "__tLogger__",
  4149. "pathname": "src/unittest/test.py",
  4150. "process": 3545,
  4151. "processName": "MainProcess",
  4152. "relativeCreated": 1228.623628616333,
  4153. "stack_info": null,
  4154. "thread": 140585574717248,
  4155. "threadName": "MainThread",
  4156. "time_consumption": 3.719329833984375e-05
  4157. },
  4158. {
  4159. "args": [
  4160. "<class 'PIL.Image.Image'>",
  4161. "<class 'type'>"
  4162. ],
  4163. "asctime": "2020-02-03 11:51:47,351",
  4164. "created": 1580727107.3517513,
  4165. "exc_info": null,
  4166. "exc_text": null,
  4167. "filename": "test.py",
  4168. "funcName": "equivalency_chk",
  4169. "levelname": "INFO",
  4170. "levelno": 20,
  4171. "lineno": 142,
  4172. "message": "Type of image stored in instance, if a image file is given is correct (Content <class 'PIL.Image.Image'> and Type is <class 'type'>).",
  4173. "module": "test",
  4174. "moduleLogger": [
  4175. {
  4176. "args": [
  4177. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  4178. ],
  4179. "asctime": "2020-02-03 11:51:47,351",
  4180. "created": 1580727107.3515162,
  4181. "exc_info": null,
  4182. "exc_text": null,
  4183. "filename": "__init__.py",
  4184. "funcName": "load_from_file",
  4185. "levelname": "DEBUG",
  4186. "levelno": 10,
  4187. "lineno": 116,
  4188. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  4189. "module": "__init__",
  4190. "msecs": 351.5162467956543,
  4191. "msg": "loading image from %s",
  4192. "name": "MEDIA",
  4193. "pathname": "src/media/__init__.py",
  4194. "process": 3545,
  4195. "processName": "MainProcess",
  4196. "relativeCreated": 1439.6638870239258,
  4197. "stack_info": null,
  4198. "thread": 140585574717248,
  4199. "threadName": "MainThread"
  4200. },
  4201. {
  4202. "args": [
  4203. "Type of image stored in instance, if a image file is given",
  4204. "<class 'PIL.Image.Image'>",
  4205. "<class 'type'>"
  4206. ],
  4207. "asctime": "2020-02-03 11:51:47,351",
  4208. "created": 1580727107.3516605,
  4209. "exc_info": null,
  4210. "exc_text": null,
  4211. "filename": "test.py",
  4212. "funcName": "__report_result__",
  4213. "levelname": "DEBUG",
  4214. "levelno": 10,
  4215. "lineno": 22,
  4216. "message": "Result (Type of image stored in instance, if a image file is given): <class 'PIL.Image.Image'> (<class 'type'>)",
  4217. "module": "test",
  4218. "msecs": 351.66049003601074,
  4219. "msg": "Result (%s): %s (%s)",
  4220. "name": "__unittest__",
  4221. "pathname": "src/unittest/test.py",
  4222. "process": 3545,
  4223. "processName": "MainProcess",
  4224. "relativeCreated": 1439.8081302642822,
  4225. "stack_info": null,
  4226. "thread": 140585574717248,
  4227. "threadName": "MainThread"
  4228. },
  4229. {
  4230. "args": [
  4231. "Type of image stored in instance, if a image file is given",
  4232. "<class 'PIL.Image.Image'>",
  4233. "<class 'type'>"
  4234. ],
  4235. "asctime": "2020-02-03 11:51:47,351",
  4236. "created": 1580727107.3517084,
  4237. "exc_info": null,
  4238. "exc_text": null,
  4239. "filename": "test.py",
  4240. "funcName": "__report_expectation_equivalency__",
  4241. "levelname": "DEBUG",
  4242. "levelno": 10,
  4243. "lineno": 26,
  4244. "message": "Expectation (Type of image stored in instance, if a image file is given): result = <class 'PIL.Image.Image'> (<class 'type'>)",
  4245. "module": "test",
  4246. "msecs": 351.70841217041016,
  4247. "msg": "Expectation (%s): result = %s (%s)",
  4248. "name": "__unittest__",
  4249. "pathname": "src/unittest/test.py",
  4250. "process": 3545,
  4251. "processName": "MainProcess",
  4252. "relativeCreated": 1439.8560523986816,
  4253. "stack_info": null,
  4254. "thread": 140585574717248,
  4255. "threadName": "MainThread"
  4256. }
  4257. ],
  4258. "msecs": 351.75132751464844,
  4259. "msg": "Type of image stored in instance, if a image file is given is correct (Content %s and Type is %s).",
  4260. "name": "__tLogger__",
  4261. "pathname": "src/unittest/test.py",
  4262. "process": 3545,
  4263. "processName": "MainProcess",
  4264. "relativeCreated": 1439.89896774292,
  4265. "stack_info": null,
  4266. "thread": 140585574717248,
  4267. "threadName": "MainThread",
  4268. "time_consumption": 4.291534423828125e-05
  4269. },
  4270. {
  4271. "args": [
  4272. "<class 'PIL.Image.Image'>",
  4273. "<class 'type'>"
  4274. ],
  4275. "asctime": "2020-02-03 11:51:47,847",
  4276. "created": 1580727107.8470995,
  4277. "exc_info": null,
  4278. "exc_text": null,
  4279. "filename": "test.py",
  4280. "funcName": "equivalency_chk",
  4281. "levelname": "INFO",
  4282. "levelno": 20,
  4283. "lineno": 142,
  4284. "message": "Type of image stored in instance, if a video file is given is correct (Content <class 'PIL.Image.Image'> and Type is <class 'type'>).",
  4285. "module": "test",
  4286. "moduleLogger": [
  4287. {
  4288. "args": [
  4289. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'"
  4290. ],
  4291. "asctime": "2020-02-03 11:51:47,844",
  4292. "created": 1580727107.8443635,
  4293. "exc_info": null,
  4294. "exc_text": null,
  4295. "filename": "__init__.py",
  4296. "funcName": "load_from_file",
  4297. "levelname": "DEBUG",
  4298. "levelno": 10,
  4299. "lineno": 116,
  4300. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'",
  4301. "module": "__init__",
  4302. "msecs": 844.3634510040283,
  4303. "msg": "loading image from %s",
  4304. "name": "MEDIA",
  4305. "pathname": "src/media/__init__.py",
  4306. "process": 3545,
  4307. "processName": "MainProcess",
  4308. "relativeCreated": 1932.5110912322998,
  4309. "stack_info": null,
  4310. "thread": 140585574717248,
  4311. "threadName": "MainThread"
  4312. },
  4313. {
  4314. "args": [
  4315. "Type of image stored in instance, if a video file is given",
  4316. "<class 'PIL.Image.Image'>",
  4317. "<class 'type'>"
  4318. ],
  4319. "asctime": "2020-02-03 11:51:47,846",
  4320. "created": 1580727107.8468344,
  4321. "exc_info": null,
  4322. "exc_text": null,
  4323. "filename": "test.py",
  4324. "funcName": "__report_result__",
  4325. "levelname": "DEBUG",
  4326. "levelno": 10,
  4327. "lineno": 22,
  4328. "message": "Result (Type of image stored in instance, if a video file is given): <class 'PIL.Image.Image'> (<class 'type'>)",
  4329. "module": "test",
  4330. "msecs": 846.8344211578369,
  4331. "msg": "Result (%s): %s (%s)",
  4332. "name": "__unittest__",
  4333. "pathname": "src/unittest/test.py",
  4334. "process": 3545,
  4335. "processName": "MainProcess",
  4336. "relativeCreated": 1934.9820613861084,
  4337. "stack_info": null,
  4338. "thread": 140585574717248,
  4339. "threadName": "MainThread"
  4340. },
  4341. {
  4342. "args": [
  4343. "Type of image stored in instance, if a video file is given",
  4344. "<class 'PIL.Image.Image'>",
  4345. "<class 'type'>"
  4346. ],
  4347. "asctime": "2020-02-03 11:51:47,847",
  4348. "created": 1580727107.8470068,
  4349. "exc_info": null,
  4350. "exc_text": null,
  4351. "filename": "test.py",
  4352. "funcName": "__report_expectation_equivalency__",
  4353. "levelname": "DEBUG",
  4354. "levelno": 10,
  4355. "lineno": 26,
  4356. "message": "Expectation (Type of image stored in instance, if a video file is given): result = <class 'PIL.Image.Image'> (<class 'type'>)",
  4357. "module": "test",
  4358. "msecs": 847.0067977905273,
  4359. "msg": "Expectation (%s): result = %s (%s)",
  4360. "name": "__unittest__",
  4361. "pathname": "src/unittest/test.py",
  4362. "process": 3545,
  4363. "processName": "MainProcess",
  4364. "relativeCreated": 1935.1544380187988,
  4365. "stack_info": null,
  4366. "thread": 140585574717248,
  4367. "threadName": "MainThread"
  4368. }
  4369. ],
  4370. "msecs": 847.0995426177979,
  4371. "msg": "Type of image stored in instance, if a video file is given is correct (Content %s and Type is %s).",
  4372. "name": "__tLogger__",
  4373. "pathname": "src/unittest/test.py",
  4374. "process": 3545,
  4375. "processName": "MainProcess",
  4376. "relativeCreated": 1935.2471828460693,
  4377. "stack_info": null,
  4378. "thread": 140585574717248,
  4379. "threadName": "MainThread",
  4380. "time_consumption": 9.274482727050781e-05
  4381. }
  4382. ],
  4383. "thread": 140585574717248,
  4384. "threadName": "MainThread",
  4385. "time_consumption": 0.708010196685791,
  4386. "time_finished": "2020-02-03 11:51:47,847",
  4387. "time_start": "2020-02-03 11:51:47,139"
  4388. },
  4389. "_HGpRMEYCEequ74M7usLaPw": {
  4390. "args": null,
  4391. "asctime": "2020-02-03 11:51:47,847",
  4392. "created": 1580727107.84747,
  4393. "exc_info": null,
  4394. "exc_text": null,
  4395. "filename": "__init__.py",
  4396. "funcName": "testrun",
  4397. "levelname": "INFO",
  4398. "levelno": 20,
  4399. "lineno": 32,
  4400. "message": "_HGpRMEYCEequ74M7usLaPw",
  4401. "module": "__init__",
  4402. "moduleLogger": [],
  4403. "msecs": 847.4700450897217,
  4404. "msg": "_HGpRMEYCEequ74M7usLaPw",
  4405. "name": "__tLogger__",
  4406. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  4407. "process": 3545,
  4408. "processName": "MainProcess",
  4409. "relativeCreated": 1935.6176853179932,
  4410. "stack_info": null,
  4411. "testcaseLogger": [
  4412. {
  4413. "args": [
  4414. "False",
  4415. "<class 'bool'>"
  4416. ],
  4417. "asctime": "2020-02-03 11:51:47,847",
  4418. "created": 1580727107.8478415,
  4419. "exc_info": null,
  4420. "exc_text": null,
  4421. "filename": "test.py",
  4422. "funcName": "equivalency_chk",
  4423. "levelname": "INFO",
  4424. "levelno": 20,
  4425. "lineno": 142,
  4426. "message": "Returnvalue of failed save method is correct (Content False and Type is <class 'bool'>).",
  4427. "module": "test",
  4428. "moduleLogger": [
  4429. {
  4430. "args": [
  4431. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'"
  4432. ],
  4433. "asctime": "2020-02-03 11:51:47,847",
  4434. "created": 1580727107.8476129,
  4435. "exc_info": null,
  4436. "exc_text": null,
  4437. "filename": "__init__.py",
  4438. "funcName": "save",
  4439. "levelname": "WARNING",
  4440. "levelno": 30,
  4441. "lineno": 121,
  4442. "message": "No image available to be saved ('/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg')",
  4443. "module": "__init__",
  4444. "msecs": 847.6128578186035,
  4445. "msg": "No image available to be saved (%s)",
  4446. "name": "MEDIA",
  4447. "pathname": "src/media/__init__.py",
  4448. "process": 3545,
  4449. "processName": "MainProcess",
  4450. "relativeCreated": 1935.760498046875,
  4451. "stack_info": null,
  4452. "thread": 140585574717248,
  4453. "threadName": "MainThread"
  4454. },
  4455. {
  4456. "args": [
  4457. "Returnvalue of failed save method",
  4458. "False",
  4459. "<class 'bool'>"
  4460. ],
  4461. "asctime": "2020-02-03 11:51:47,847",
  4462. "created": 1580727107.8477066,
  4463. "exc_info": null,
  4464. "exc_text": null,
  4465. "filename": "test.py",
  4466. "funcName": "__report_result__",
  4467. "levelname": "DEBUG",
  4468. "levelno": 10,
  4469. "lineno": 22,
  4470. "message": "Result (Returnvalue of failed save method): False (<class 'bool'>)",
  4471. "module": "test",
  4472. "msecs": 847.7065563201904,
  4473. "msg": "Result (%s): %s (%s)",
  4474. "name": "__unittest__",
  4475. "pathname": "src/unittest/test.py",
  4476. "process": 3545,
  4477. "processName": "MainProcess",
  4478. "relativeCreated": 1935.854196548462,
  4479. "stack_info": null,
  4480. "thread": 140585574717248,
  4481. "threadName": "MainThread"
  4482. },
  4483. {
  4484. "args": [
  4485. "Returnvalue of failed save method",
  4486. "False",
  4487. "<class 'bool'>"
  4488. ],
  4489. "asctime": "2020-02-03 11:51:47,847",
  4490. "created": 1580727107.8477752,
  4491. "exc_info": null,
  4492. "exc_text": null,
  4493. "filename": "test.py",
  4494. "funcName": "__report_expectation_equivalency__",
  4495. "levelname": "DEBUG",
  4496. "levelno": 10,
  4497. "lineno": 26,
  4498. "message": "Expectation (Returnvalue of failed save method): result = False (<class 'bool'>)",
  4499. "module": "test",
  4500. "msecs": 847.7752208709717,
  4501. "msg": "Expectation (%s): result = %s (%s)",
  4502. "name": "__unittest__",
  4503. "pathname": "src/unittest/test.py",
  4504. "process": 3545,
  4505. "processName": "MainProcess",
  4506. "relativeCreated": 1935.9228610992432,
  4507. "stack_info": null,
  4508. "thread": 140585574717248,
  4509. "threadName": "MainThread"
  4510. }
  4511. ],
  4512. "msecs": 847.8415012359619,
  4513. "msg": "Returnvalue of failed save method is correct (Content %s and Type is %s).",
  4514. "name": "__tLogger__",
  4515. "pathname": "src/unittest/test.py",
  4516. "process": 3545,
  4517. "processName": "MainProcess",
  4518. "relativeCreated": 1935.9891414642334,
  4519. "stack_info": null,
  4520. "thread": 140585574717248,
  4521. "threadName": "MainThread",
  4522. "time_consumption": 6.628036499023438e-05
  4523. },
  4524. {
  4525. "args": [
  4526. "False",
  4527. "<class 'bool'>"
  4528. ],
  4529. "asctime": "2020-02-03 11:51:47,849",
  4530. "created": 1580727107.8499947,
  4531. "exc_info": null,
  4532. "exc_text": null,
  4533. "filename": "test.py",
  4534. "funcName": "equivalency_chk",
  4535. "levelname": "INFO",
  4536. "levelno": 20,
  4537. "lineno": 142,
  4538. "message": "Existance of saved file is correct (Content False and Type is <class 'bool'>).",
  4539. "module": "test",
  4540. "moduleLogger": [
  4541. {
  4542. "args": [
  4543. "Existance of saved file",
  4544. "False",
  4545. "<class 'bool'>"
  4546. ],
  4547. "asctime": "2020-02-03 11:51:47,848",
  4548. "created": 1580727107.8482869,
  4549. "exc_info": null,
  4550. "exc_text": null,
  4551. "filename": "test.py",
  4552. "funcName": "__report_result__",
  4553. "levelname": "DEBUG",
  4554. "levelno": 10,
  4555. "lineno": 22,
  4556. "message": "Result (Existance of saved file): False (<class 'bool'>)",
  4557. "module": "test",
  4558. "msecs": 848.2868671417236,
  4559. "msg": "Result (%s): %s (%s)",
  4560. "name": "__unittest__",
  4561. "pathname": "src/unittest/test.py",
  4562. "process": 3545,
  4563. "processName": "MainProcess",
  4564. "relativeCreated": 1936.4345073699951,
  4565. "stack_info": null,
  4566. "thread": 140585574717248,
  4567. "threadName": "MainThread"
  4568. },
  4569. {
  4570. "args": [
  4571. "Existance of saved file",
  4572. "False",
  4573. "<class 'bool'>"
  4574. ],
  4575. "asctime": "2020-02-03 11:51:47,849",
  4576. "created": 1580727107.8493922,
  4577. "exc_info": null,
  4578. "exc_text": null,
  4579. "filename": "test.py",
  4580. "funcName": "__report_expectation_equivalency__",
  4581. "levelname": "DEBUG",
  4582. "levelno": 10,
  4583. "lineno": 26,
  4584. "message": "Expectation (Existance of saved file): result = False (<class 'bool'>)",
  4585. "module": "test",
  4586. "msecs": 849.3921756744385,
  4587. "msg": "Expectation (%s): result = %s (%s)",
  4588. "name": "__unittest__",
  4589. "pathname": "src/unittest/test.py",
  4590. "process": 3545,
  4591. "processName": "MainProcess",
  4592. "relativeCreated": 1937.53981590271,
  4593. "stack_info": null,
  4594. "thread": 140585574717248,
  4595. "threadName": "MainThread"
  4596. }
  4597. ],
  4598. "msecs": 849.9946594238281,
  4599. "msg": "Existance of saved file is correct (Content %s and Type is %s).",
  4600. "name": "__tLogger__",
  4601. "pathname": "src/unittest/test.py",
  4602. "process": 3545,
  4603. "processName": "MainProcess",
  4604. "relativeCreated": 1938.1422996520996,
  4605. "stack_info": null,
  4606. "thread": 140585574717248,
  4607. "threadName": "MainThread",
  4608. "time_consumption": 0.0006024837493896484
  4609. },
  4610. {
  4611. "args": [
  4612. "True",
  4613. "<class 'bool'>"
  4614. ],
  4615. "asctime": "2020-02-03 11:51:48,324",
  4616. "created": 1580727108.324942,
  4617. "exc_info": null,
  4618. "exc_text": null,
  4619. "filename": "test.py",
  4620. "funcName": "equivalency_chk",
  4621. "levelname": "INFO",
  4622. "levelno": 20,
  4623. "lineno": 142,
  4624. "message": "Returnvalue of successful save method is correct (Content True and Type is <class 'bool'>).",
  4625. "module": "test",
  4626. "moduleLogger": [
  4627. {
  4628. "args": [
  4629. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'"
  4630. ],
  4631. "asctime": "2020-02-03 11:51:48,282",
  4632. "created": 1580727108.282489,
  4633. "exc_info": null,
  4634. "exc_text": null,
  4635. "filename": "__init__.py",
  4636. "funcName": "load_from_file",
  4637. "levelname": "DEBUG",
  4638. "levelno": 10,
  4639. "lineno": 116,
  4640. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'",
  4641. "module": "__init__",
  4642. "msecs": 282.4890613555908,
  4643. "msg": "loading image from %s",
  4644. "name": "MEDIA",
  4645. "pathname": "src/media/__init__.py",
  4646. "process": 3545,
  4647. "processName": "MainProcess",
  4648. "relativeCreated": 2370.6367015838623,
  4649. "stack_info": null,
  4650. "thread": 140585574717248,
  4651. "threadName": "MainThread"
  4652. },
  4653. {
  4654. "args": [
  4655. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'"
  4656. ],
  4657. "asctime": "2020-02-03 11:51:48,284",
  4658. "created": 1580727108.2842104,
  4659. "exc_info": null,
  4660. "exc_text": null,
  4661. "filename": "__init__.py",
  4662. "funcName": "save",
  4663. "levelname": "DEBUG",
  4664. "levelno": 10,
  4665. "lineno": 124,
  4666. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'",
  4667. "module": "__init__",
  4668. "msecs": 284.2104434967041,
  4669. "msg": "Saving image to %s",
  4670. "name": "MEDIA",
  4671. "pathname": "src/media/__init__.py",
  4672. "process": 3545,
  4673. "processName": "MainProcess",
  4674. "relativeCreated": 2372.3580837249756,
  4675. "stack_info": null,
  4676. "thread": 140585574717248,
  4677. "threadName": "MainThread"
  4678. },
  4679. {
  4680. "args": [
  4681. "Returnvalue of successful save method",
  4682. "True",
  4683. "<class 'bool'>"
  4684. ],
  4685. "asctime": "2020-02-03 11:51:48,324",
  4686. "created": 1580727108.3247736,
  4687. "exc_info": null,
  4688. "exc_text": null,
  4689. "filename": "test.py",
  4690. "funcName": "__report_result__",
  4691. "levelname": "DEBUG",
  4692. "levelno": 10,
  4693. "lineno": 22,
  4694. "message": "Result (Returnvalue of successful save method): True (<class 'bool'>)",
  4695. "module": "test",
  4696. "msecs": 324.77355003356934,
  4697. "msg": "Result (%s): %s (%s)",
  4698. "name": "__unittest__",
  4699. "pathname": "src/unittest/test.py",
  4700. "process": 3545,
  4701. "processName": "MainProcess",
  4702. "relativeCreated": 2412.921190261841,
  4703. "stack_info": null,
  4704. "thread": 140585574717248,
  4705. "threadName": "MainThread"
  4706. },
  4707. {
  4708. "args": [
  4709. "Returnvalue of successful save method",
  4710. "True",
  4711. "<class 'bool'>"
  4712. ],
  4713. "asctime": "2020-02-03 11:51:48,324",
  4714. "created": 1580727108.3248885,
  4715. "exc_info": null,
  4716. "exc_text": null,
  4717. "filename": "test.py",
  4718. "funcName": "__report_expectation_equivalency__",
  4719. "levelname": "DEBUG",
  4720. "levelno": 10,
  4721. "lineno": 26,
  4722. "message": "Expectation (Returnvalue of successful save method): result = True (<class 'bool'>)",
  4723. "module": "test",
  4724. "msecs": 324.8884677886963,
  4725. "msg": "Expectation (%s): result = %s (%s)",
  4726. "name": "__unittest__",
  4727. "pathname": "src/unittest/test.py",
  4728. "process": 3545,
  4729. "processName": "MainProcess",
  4730. "relativeCreated": 2413.036108016968,
  4731. "stack_info": null,
  4732. "thread": 140585574717248,
  4733. "threadName": "MainThread"
  4734. }
  4735. ],
  4736. "msecs": 324.94211196899414,
  4737. "msg": "Returnvalue of successful save method is correct (Content %s and Type is %s).",
  4738. "name": "__tLogger__",
  4739. "pathname": "src/unittest/test.py",
  4740. "process": 3545,
  4741. "processName": "MainProcess",
  4742. "relativeCreated": 2413.0897521972656,
  4743. "stack_info": null,
  4744. "thread": 140585574717248,
  4745. "threadName": "MainThread",
  4746. "time_consumption": 5.364418029785156e-05
  4747. },
  4748. {
  4749. "args": [
  4750. "True",
  4751. "<class 'bool'>"
  4752. ],
  4753. "asctime": "2020-02-03 11:51:48,325",
  4754. "created": 1580727108.3252008,
  4755. "exc_info": null,
  4756. "exc_text": null,
  4757. "filename": "test.py",
  4758. "funcName": "equivalency_chk",
  4759. "levelname": "INFO",
  4760. "levelno": 20,
  4761. "lineno": 142,
  4762. "message": "Existance of saved file is correct (Content True and Type is <class 'bool'>).",
  4763. "module": "test",
  4764. "moduleLogger": [
  4765. {
  4766. "args": [
  4767. "Existance of saved file",
  4768. "True",
  4769. "<class 'bool'>"
  4770. ],
  4771. "asctime": "2020-02-03 11:51:48,325",
  4772. "created": 1580727108.3251183,
  4773. "exc_info": null,
  4774. "exc_text": null,
  4775. "filename": "test.py",
  4776. "funcName": "__report_result__",
  4777. "levelname": "DEBUG",
  4778. "levelno": 10,
  4779. "lineno": 22,
  4780. "message": "Result (Existance of saved file): True (<class 'bool'>)",
  4781. "module": "test",
  4782. "msecs": 325.1183032989502,
  4783. "msg": "Result (%s): %s (%s)",
  4784. "name": "__unittest__",
  4785. "pathname": "src/unittest/test.py",
  4786. "process": 3545,
  4787. "processName": "MainProcess",
  4788. "relativeCreated": 2413.2659435272217,
  4789. "stack_info": null,
  4790. "thread": 140585574717248,
  4791. "threadName": "MainThread"
  4792. },
  4793. {
  4794. "args": [
  4795. "Existance of saved file",
  4796. "True",
  4797. "<class 'bool'>"
  4798. ],
  4799. "asctime": "2020-02-03 11:51:48,325",
  4800. "created": 1580727108.325158,
  4801. "exc_info": null,
  4802. "exc_text": null,
  4803. "filename": "test.py",
  4804. "funcName": "__report_expectation_equivalency__",
  4805. "levelname": "DEBUG",
  4806. "levelno": 10,
  4807. "lineno": 26,
  4808. "message": "Expectation (Existance of saved file): result = True (<class 'bool'>)",
  4809. "module": "test",
  4810. "msecs": 325.15811920166016,
  4811. "msg": "Expectation (%s): result = %s (%s)",
  4812. "name": "__unittest__",
  4813. "pathname": "src/unittest/test.py",
  4814. "process": 3545,
  4815. "processName": "MainProcess",
  4816. "relativeCreated": 2413.3057594299316,
  4817. "stack_info": null,
  4818. "thread": 140585574717248,
  4819. "threadName": "MainThread"
  4820. }
  4821. ],
  4822. "msecs": 325.20079612731934,
  4823. "msg": "Existance of saved file is correct (Content %s and Type is %s).",
  4824. "name": "__tLogger__",
  4825. "pathname": "src/unittest/test.py",
  4826. "process": 3545,
  4827. "processName": "MainProcess",
  4828. "relativeCreated": 2413.348436355591,
  4829. "stack_info": null,
  4830. "thread": 140585574717248,
  4831. "threadName": "MainThread",
  4832. "time_consumption": 4.267692565917969e-05
  4833. }
  4834. ],
  4835. "thread": 140585574717248,
  4836. "threadName": "MainThread",
  4837. "time_consumption": 0.47773075103759766,
  4838. "time_finished": "2020-02-03 11:51:48,325",
  4839. "time_start": "2020-02-03 11:51:47,847"
  4840. },
  4841. "_XzMFcHYZEem_kd-7nxt1sg": {
  4842. "args": null,
  4843. "asctime": "2020-02-03 11:51:46,027",
  4844. "created": 1580727106.0273104,
  4845. "exc_info": null,
  4846. "exc_text": null,
  4847. "filename": "__init__.py",
  4848. "funcName": "testrun",
  4849. "levelname": "INFO",
  4850. "levelno": 20,
  4851. "lineno": 27,
  4852. "message": "_XzMFcHYZEem_kd-7nxt1sg",
  4853. "module": "__init__",
  4854. "moduleLogger": [],
  4855. "msecs": 27.31037139892578,
  4856. "msg": "_XzMFcHYZEem_kd-7nxt1sg",
  4857. "name": "__tLogger__",
  4858. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  4859. "process": 3545,
  4860. "processName": "MainProcess",
  4861. "relativeCreated": 115.45801162719727,
  4862. "stack_info": null,
  4863. "testcaseLogger": [
  4864. {
  4865. "args": [
  4866. "None",
  4867. "<class 'NoneType'>"
  4868. ],
  4869. "asctime": "2020-02-03 11:51:46,028",
  4870. "created": 1580727106.0289743,
  4871. "exc_info": null,
  4872. "exc_text": null,
  4873. "filename": "test.py",
  4874. "funcName": "equivalency_chk",
  4875. "levelname": "INFO",
  4876. "levelno": 20,
  4877. "lineno": 142,
  4878. "message": "Media data for unknown.txt is correct (Content None and Type is <class 'NoneType'>).",
  4879. "module": "test",
  4880. "moduleLogger": [
  4881. {
  4882. "args": [
  4883. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt"
  4884. ],
  4885. "asctime": "2020-02-03 11:51:46,028",
  4886. "created": 1580727106.0285676,
  4887. "exc_info": null,
  4888. "exc_text": null,
  4889. "filename": "__init__.py",
  4890. "funcName": "get_media_data",
  4891. "levelname": "WARNING",
  4892. "levelno": 30,
  4893. "lineno": 80,
  4894. "message": "Filetype not known: /user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt",
  4895. "module": "__init__",
  4896. "msecs": 28.56755256652832,
  4897. "msg": "Filetype not known: %s",
  4898. "name": "MEDIA",
  4899. "pathname": "src/media/__init__.py",
  4900. "process": 3545,
  4901. "processName": "MainProcess",
  4902. "relativeCreated": 116.7151927947998,
  4903. "stack_info": null,
  4904. "thread": 140585574717248,
  4905. "threadName": "MainThread"
  4906. },
  4907. {
  4908. "args": [
  4909. "Media data for unknown.txt",
  4910. "None",
  4911. "<class 'NoneType'>"
  4912. ],
  4913. "asctime": "2020-02-03 11:51:46,028",
  4914. "created": 1580727106.028876,
  4915. "exc_info": null,
  4916. "exc_text": null,
  4917. "filename": "test.py",
  4918. "funcName": "__report_result__",
  4919. "levelname": "DEBUG",
  4920. "levelno": 10,
  4921. "lineno": 22,
  4922. "message": "Result (Media data for unknown.txt): None (<class 'NoneType'>)",
  4923. "module": "test",
  4924. "msecs": 28.876066207885742,
  4925. "msg": "Result (%s): %s (%s)",
  4926. "name": "__unittest__",
  4927. "pathname": "src/unittest/test.py",
  4928. "process": 3545,
  4929. "processName": "MainProcess",
  4930. "relativeCreated": 117.02370643615723,
  4931. "stack_info": null,
  4932. "thread": 140585574717248,
  4933. "threadName": "MainThread"
  4934. },
  4935. {
  4936. "args": [
  4937. "Media data for unknown.txt",
  4938. "None",
  4939. "<class 'NoneType'>"
  4940. ],
  4941. "asctime": "2020-02-03 11:51:46,028",
  4942. "created": 1580727106.028927,
  4943. "exc_info": null,
  4944. "exc_text": null,
  4945. "filename": "test.py",
  4946. "funcName": "__report_expectation_equivalency__",
  4947. "levelname": "DEBUG",
  4948. "levelno": 10,
  4949. "lineno": 26,
  4950. "message": "Expectation (Media data for unknown.txt): result = None (<class 'NoneType'>)",
  4951. "module": "test",
  4952. "msecs": 28.927087783813477,
  4953. "msg": "Expectation (%s): result = %s (%s)",
  4954. "name": "__unittest__",
  4955. "pathname": "src/unittest/test.py",
  4956. "process": 3545,
  4957. "processName": "MainProcess",
  4958. "relativeCreated": 117.07472801208496,
  4959. "stack_info": null,
  4960. "thread": 140585574717248,
  4961. "threadName": "MainThread"
  4962. }
  4963. ],
  4964. "msecs": 28.974294662475586,
  4965. "msg": "Media data for unknown.txt is correct (Content %s and Type is %s).",
  4966. "name": "__tLogger__",
  4967. "pathname": "src/unittest/test.py",
  4968. "process": 3545,
  4969. "processName": "MainProcess",
  4970. "relativeCreated": 117.12193489074707,
  4971. "stack_info": null,
  4972. "thread": 140585574717248,
  4973. "threadName": "MainThread",
  4974. "time_consumption": 4.7206878662109375e-05
  4975. },
  4976. {
  4977. "args": [
  4978. "{'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'size': 8580366, 'time': 1451606398, 'tm_is_subst': True}",
  4979. "<class 'dict'>"
  4980. ],
  4981. "asctime": "2020-02-03 11:51:46,319",
  4982. "created": 1580727106.3195608,
  4983. "exc_info": null,
  4984. "exc_text": null,
  4985. "filename": "test.py",
  4986. "funcName": "equivalency_chk",
  4987. "levelname": "INFO",
  4988. "levelno": 20,
  4989. "lineno": 142,
  4990. "message": "Media data for audio.mp3 is correct (Content {'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'size': 8580366, 'time': 1451606398, 'tm_is_subst': True} and Type is <class 'dict'>).",
  4991. "module": "test",
  4992. "moduleLogger": [
  4993. {
  4994. "args": [
  4995. "Media data for audio.mp3",
  4996. "{ 'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'size': 8580366, 'time': 1451606398, 'tm_is_subst': True }",
  4997. "<class 'dict'>"
  4998. ],
  4999. "asctime": "2020-02-03 11:51:46,319",
  5000. "created": 1580727106.319274,
  5001. "exc_info": null,
  5002. "exc_text": null,
  5003. "filename": "test.py",
  5004. "funcName": "__report_result__",
  5005. "levelname": "DEBUG",
  5006. "levelno": 10,
  5007. "lineno": 22,
  5008. "message": "Result (Media data for audio.mp3): { 'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'size': 8580366, 'time': 1451606398, 'tm_is_subst': True } (<class 'dict'>)",
  5009. "module": "test",
  5010. "msecs": 319.2739486694336,
  5011. "msg": "Result (%s): %s (%s)",
  5012. "name": "__unittest__",
  5013. "pathname": "src/unittest/test.py",
  5014. "process": 3545,
  5015. "processName": "MainProcess",
  5016. "relativeCreated": 407.4215888977051,
  5017. "stack_info": null,
  5018. "thread": 140585574717248,
  5019. "threadName": "MainThread"
  5020. },
  5021. {
  5022. "args": [
  5023. "Media data for audio.mp3",
  5024. "{ 'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'time': 1451606398, 'tm_is_subst': True, 'size': 8580366 }",
  5025. "<class 'dict'>"
  5026. ],
  5027. "asctime": "2020-02-03 11:51:46,319",
  5028. "created": 1580727106.3194654,
  5029. "exc_info": null,
  5030. "exc_text": null,
  5031. "filename": "test.py",
  5032. "funcName": "__report_expectation_equivalency__",
  5033. "levelname": "DEBUG",
  5034. "levelno": 10,
  5035. "lineno": 26,
  5036. "message": "Expectation (Media data for audio.mp3): result = { 'duration': 236.094694, 'bitrate': 290743, 'artist': 'Kaleo', 'title': 'No Good', 'album': 'A/B', 'track': 1, 'genre': 'Rock', 'year': 2016, 'time': 1451606398, 'tm_is_subst': True, 'size': 8580366 } (<class 'dict'>)",
  5037. "module": "test",
  5038. "msecs": 319.46539878845215,
  5039. "msg": "Expectation (%s): result = %s (%s)",
  5040. "name": "__unittest__",
  5041. "pathname": "src/unittest/test.py",
  5042. "process": 3545,
  5043. "processName": "MainProcess",
  5044. "relativeCreated": 407.61303901672363,
  5045. "stack_info": null,
  5046. "thread": 140585574717248,
  5047. "threadName": "MainThread"
  5048. }
  5049. ],
  5050. "msecs": 319.5607662200928,
  5051. "msg": "Media data for audio.mp3 is correct (Content %s and Type is %s).",
  5052. "name": "__tLogger__",
  5053. "pathname": "src/unittest/test.py",
  5054. "process": 3545,
  5055. "processName": "MainProcess",
  5056. "relativeCreated": 407.70840644836426,
  5057. "stack_info": null,
  5058. "thread": 140585574717248,
  5059. "threadName": "MainThread",
  5060. "time_consumption": 9.5367431640625e-05
  5061. },
  5062. {
  5063. "args": [
  5064. "{'duration': 281.991837, 'bitrate': 228298, 'title': 'Video Games (Album Version Remastered)', 'artist': 'Lana Del Rey', 'album': 'Born To Die', 'genre': 'Pop', 'track': 4, 'year': 2012, 'size': 8047290, 'time': 1325375995, 'tm_is_subst': True}",
  5065. "<class 'dict'>"
  5066. ],
  5067. "asctime": "2020-02-03 11:51:46,412",
  5068. "created": 1580727106.4128506,
  5069. "exc_info": null,
  5070. "exc_text": null,
  5071. "filename": "test.py",
  5072. "funcName": "equivalency_chk",
  5073. "levelname": "INFO",
  5074. "levelno": 20,
  5075. "lineno": 142,
  5076. "message": "Media data for audio_fail_conv.mp3 is correct (Content {'duration': 281.991837, 'bitrate': 228298, 'title': 'Video Games (Album Version Remastered)', 'artist': 'Lana Del Rey', 'album': 'Born To Die', 'genre': 'Pop', 'track': 4, 'year': 2012, 'size': 8047290, 'time': 1325375995, 'tm_is_subst': True} and Type is <class 'dict'>).",
  5077. "module": "test",
  5078. "moduleLogger": [
  5079. {
  5080. "args": [
  5081. "Media data for audio_fail_conv.mp3",
  5082. "{ 'duration': 281.991837, 'bitrate': 228298, 'title': 'Video Games (Album Version Remastered)', 'artist': 'Lana Del Rey', 'album': 'Born To Die', 'genre': 'Pop', 'track': 4, 'year': 2012, 'size': 8047290, 'time': 1325375995, 'tm_is_subst': True }",
  5083. "<class 'dict'>"
  5084. ],
  5085. "asctime": "2020-02-03 11:51:46,412",
  5086. "created": 1580727106.4123337,
  5087. "exc_info": null,
  5088. "exc_text": null,
  5089. "filename": "test.py",
  5090. "funcName": "__report_result__",
  5091. "levelname": "DEBUG",
  5092. "levelno": 10,
  5093. "lineno": 22,
  5094. "message": "Result (Media data for audio_fail_conv.mp3): { 'duration': 281.991837, 'bitrate': 228298, 'title': 'Video Games (Album Version Remastered)', 'artist': 'Lana Del Rey', 'album': 'Born To Die', 'genre': 'Pop', 'track': 4, 'year': 2012, 'size': 8047290, 'time': 1325375995, 'tm_is_subst': True } (<class 'dict'>)",
  5095. "module": "test",
  5096. "msecs": 412.33372688293457,
  5097. "msg": "Result (%s): %s (%s)",
  5098. "name": "__unittest__",
  5099. "pathname": "src/unittest/test.py",
  5100. "process": 3545,
  5101. "processName": "MainProcess",
  5102. "relativeCreated": 500.48136711120605,
  5103. "stack_info": null,
  5104. "thread": 140585574717248,
  5105. "threadName": "MainThread"
  5106. },
  5107. {
  5108. "args": [
  5109. "Media data for audio_fail_conv.mp3",
  5110. "{ 'duration': 281.991837, 'bitrate': 228298, 'artist': 'Lana Del Rey', 'title': 'Video Games (Album Version Remastered)', 'album': 'Born To Die', 'track': 4, 'genre': 'Pop', 'year': 2012, 'time': 1325375995, 'tm_is_subst': True, 'size': 8047290 }",
  5111. "<class 'dict'>"
  5112. ],
  5113. "asctime": "2020-02-03 11:51:46,412",
  5114. "created": 1580727106.4125612,
  5115. "exc_info": null,
  5116. "exc_text": null,
  5117. "filename": "test.py",
  5118. "funcName": "__report_expectation_equivalency__",
  5119. "levelname": "DEBUG",
  5120. "levelno": 10,
  5121. "lineno": 26,
  5122. "message": "Expectation (Media data for audio_fail_conv.mp3): result = { 'duration': 281.991837, 'bitrate': 228298, 'artist': 'Lana Del Rey', 'title': 'Video Games (Album Version Remastered)', 'album': 'Born To Die', 'track': 4, 'genre': 'Pop', 'year': 2012, 'time': 1325375995, 'tm_is_subst': True, 'size': 8047290 } (<class 'dict'>)",
  5123. "module": "test",
  5124. "msecs": 412.56117820739746,
  5125. "msg": "Expectation (%s): result = %s (%s)",
  5126. "name": "__unittest__",
  5127. "pathname": "src/unittest/test.py",
  5128. "process": 3545,
  5129. "processName": "MainProcess",
  5130. "relativeCreated": 500.70881843566895,
  5131. "stack_info": null,
  5132. "thread": 140585574717248,
  5133. "threadName": "MainThread"
  5134. }
  5135. ],
  5136. "msecs": 412.85061836242676,
  5137. "msg": "Media data for audio_fail_conv.mp3 is correct (Content %s and Type is %s).",
  5138. "name": "__tLogger__",
  5139. "pathname": "src/unittest/test.py",
  5140. "process": 3545,
  5141. "processName": "MainProcess",
  5142. "relativeCreated": 500.99825859069824,
  5143. "stack_info": null,
  5144. "thread": 140585574717248,
  5145. "threadName": "MainThread",
  5146. "time_consumption": 0.0002894401550292969
  5147. },
  5148. {
  5149. "args": [
  5150. "{'duration': 120.476735, 'bitrate': 240202, 'title': 'Was bringt der Dezember', 'artist': 'Rolf und seine Freunde', 'album': 'Wir warten auf Weihnachten', 'year': 0, 'track': 9, 'genre': 'Other', 'size': 3617354}",
  5151. "<class 'dict'>"
  5152. ],
  5153. "asctime": "2020-02-03 11:51:46,556",
  5154. "created": 1580727106.5565512,
  5155. "exc_info": null,
  5156. "exc_text": null,
  5157. "filename": "test.py",
  5158. "funcName": "equivalency_chk",
  5159. "levelname": "INFO",
  5160. "levelno": 20,
  5161. "lineno": 142,
  5162. "message": "Media data for audio_year_0.mp3 is correct (Content {'duration': 120.476735, 'bitrate': 240202, 'title': 'Was bringt der Dezember', 'artist': 'Rolf und seine Freunde', 'album': 'Wir warten auf Weihnachten', 'year': 0, 'track': 9, 'genre': 'Other', 'size': 3617354} and Type is <class 'dict'>).",
  5163. "module": "test",
  5164. "moduleLogger": [
  5165. {
  5166. "args": [
  5167. "Media data for audio_year_0.mp3",
  5168. "{ 'duration': 120.476735, 'bitrate': 240202, 'title': 'Was bringt der Dezember', 'artist': 'Rolf und seine Freunde', 'album': 'Wir warten auf Weihnachten', 'year': 0, 'track': 9, 'genre': 'Other', 'size': 3617354 }",
  5169. "<class 'dict'>"
  5170. ],
  5171. "asctime": "2020-02-03 11:51:46,556",
  5172. "created": 1580727106.556156,
  5173. "exc_info": null,
  5174. "exc_text": null,
  5175. "filename": "test.py",
  5176. "funcName": "__report_result__",
  5177. "levelname": "DEBUG",
  5178. "levelno": 10,
  5179. "lineno": 22,
  5180. "message": "Result (Media data for audio_year_0.mp3): { 'duration': 120.476735, 'bitrate': 240202, 'title': 'Was bringt der Dezember', 'artist': 'Rolf und seine Freunde', 'album': 'Wir warten auf Weihnachten', 'year': 0, 'track': 9, 'genre': 'Other', 'size': 3617354 } (<class 'dict'>)",
  5181. "module": "test",
  5182. "msecs": 556.1559200286865,
  5183. "msg": "Result (%s): %s (%s)",
  5184. "name": "__unittest__",
  5185. "pathname": "src/unittest/test.py",
  5186. "process": 3545,
  5187. "processName": "MainProcess",
  5188. "relativeCreated": 644.303560256958,
  5189. "stack_info": null,
  5190. "thread": 140585574717248,
  5191. "threadName": "MainThread"
  5192. },
  5193. {
  5194. "args": [
  5195. "Media data for audio_year_0.mp3",
  5196. "{ 'duration': 120.476735, 'bitrate': 240202, 'artist': 'Rolf und seine Freunde', 'title': 'Was bringt der Dezember', 'album': 'Wir warten auf Weihnachten', 'track': 9, 'genre': 'Other', 'year': 0, 'size': 3617354 }",
  5197. "<class 'dict'>"
  5198. ],
  5199. "asctime": "2020-02-03 11:51:46,556",
  5200. "created": 1580727106.5564106,
  5201. "exc_info": null,
  5202. "exc_text": null,
  5203. "filename": "test.py",
  5204. "funcName": "__report_expectation_equivalency__",
  5205. "levelname": "DEBUG",
  5206. "levelno": 10,
  5207. "lineno": 26,
  5208. "message": "Expectation (Media data for audio_year_0.mp3): result = { 'duration': 120.476735, 'bitrate': 240202, 'artist': 'Rolf und seine Freunde', 'title': 'Was bringt der Dezember', 'album': 'Wir warten auf Weihnachten', 'track': 9, 'genre': 'Other', 'year': 0, 'size': 3617354 } (<class 'dict'>)",
  5209. "module": "test",
  5210. "msecs": 556.410551071167,
  5211. "msg": "Expectation (%s): result = %s (%s)",
  5212. "name": "__unittest__",
  5213. "pathname": "src/unittest/test.py",
  5214. "process": 3545,
  5215. "processName": "MainProcess",
  5216. "relativeCreated": 644.5581912994385,
  5217. "stack_info": null,
  5218. "thread": 140585574717248,
  5219. "threadName": "MainThread"
  5220. }
  5221. ],
  5222. "msecs": 556.5512180328369,
  5223. "msg": "Media data for audio_year_0.mp3 is correct (Content %s and Type is %s).",
  5224. "name": "__tLogger__",
  5225. "pathname": "src/unittest/test.py",
  5226. "process": 3545,
  5227. "processName": "MainProcess",
  5228. "relativeCreated": 644.6988582611084,
  5229. "stack_info": null,
  5230. "thread": 140585574717248,
  5231. "threadName": "MainThread",
  5232. "time_consumption": 0.00014066696166992188
  5233. },
  5234. {
  5235. "args": [
  5236. "{'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': {'lon': 11.574697, 'lat': 52.993599}, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'size': 4524705, 'camera': 'motorola: motorola one'}",
  5237. "<class 'dict'>"
  5238. ],
  5239. "asctime": "2020-02-03 11:51:46,600",
  5240. "created": 1580727106.6006143,
  5241. "exc_info": null,
  5242. "exc_text": null,
  5243. "filename": "test.py",
  5244. "funcName": "equivalency_chk",
  5245. "levelname": "INFO",
  5246. "levelno": 20,
  5247. "lineno": 142,
  5248. "message": "Media data for image_exif_gps.jpg is correct (Content {'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': {'lon': 11.574697, 'lat': 52.993599}, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'size': 4524705, 'camera': 'motorola: motorola one'} and Type is <class 'dict'>).",
  5249. "module": "test",
  5250. "moduleLogger": [
  5251. {
  5252. "args": [
  5253. "Media data for image_exif_gps.jpg",
  5254. "{ 'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': { 'lon': 11.574697, 'lat': 52.993599 }, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'size': 4524705, 'camera': 'motorola: motorola one' }",
  5255. "<class 'dict'>"
  5256. ],
  5257. "asctime": "2020-02-03 11:51:46,600",
  5258. "created": 1580727106.6003437,
  5259. "exc_info": null,
  5260. "exc_text": null,
  5261. "filename": "test.py",
  5262. "funcName": "__report_result__",
  5263. "levelname": "DEBUG",
  5264. "levelno": 10,
  5265. "lineno": 22,
  5266. "message": "Result (Media data for image_exif_gps.jpg): { 'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': { 'lon': 11.574697, 'lat': 52.993599 }, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'size': 4524705, 'camera': 'motorola: motorola one' } (<class 'dict'>)",
  5267. "module": "test",
  5268. "msecs": 600.3437042236328,
  5269. "msg": "Result (%s): %s (%s)",
  5270. "name": "__unittest__",
  5271. "pathname": "src/unittest/test.py",
  5272. "process": 3545,
  5273. "processName": "MainProcess",
  5274. "relativeCreated": 688.4913444519043,
  5275. "stack_info": null,
  5276. "thread": 140585574717248,
  5277. "threadName": "MainThread"
  5278. },
  5279. {
  5280. "args": [
  5281. "Media data for image_exif_gps.jpg",
  5282. "{ 'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': { 'lon': 11.574697, 'lat': 52.993599 }, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'camera': 'motorola: motorola one', 'size': 4524705 }",
  5283. "<class 'dict'>"
  5284. ],
  5285. "asctime": "2020-02-03 11:51:46,600",
  5286. "created": 1580727106.6004858,
  5287. "exc_info": null,
  5288. "exc_text": null,
  5289. "filename": "test.py",
  5290. "funcName": "__report_expectation_equivalency__",
  5291. "levelname": "DEBUG",
  5292. "levelno": 10,
  5293. "lineno": 26,
  5294. "message": "Expectation (Media data for image_exif_gps.jpg): result = { 'time': 1560083621, 'exposure_program': 'Program Normal', 'exposure_time': 0.007633587786259542, 'flash': 'Off', 'aperture': 2.2, 'focal_length': 3.463, 'gps': { 'lon': 11.574697, 'lat': 52.993599 }, 'height': 3120, 'iso': 100, 'orientation': 6, 'width': 4160, 'camera': 'motorola: motorola one', 'size': 4524705 } (<class 'dict'>)",
  5295. "module": "test",
  5296. "msecs": 600.4858016967773,
  5297. "msg": "Expectation (%s): result = %s (%s)",
  5298. "name": "__unittest__",
  5299. "pathname": "src/unittest/test.py",
  5300. "process": 3545,
  5301. "processName": "MainProcess",
  5302. "relativeCreated": 688.6334419250488,
  5303. "stack_info": null,
  5304. "thread": 140585574717248,
  5305. "threadName": "MainThread"
  5306. }
  5307. ],
  5308. "msecs": 600.6143093109131,
  5309. "msg": "Media data for image_exif_gps.jpg is correct (Content %s and Type is %s).",
  5310. "name": "__tLogger__",
  5311. "pathname": "src/unittest/test.py",
  5312. "process": 3545,
  5313. "processName": "MainProcess",
  5314. "relativeCreated": 688.7619495391846,
  5315. "stack_info": null,
  5316. "thread": 140585574717248,
  5317. "threadName": "MainThread",
  5318. "time_consumption": 0.0001285076141357422
  5319. },
  5320. {
  5321. "args": [
  5322. "{'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'size': 2837285, 'camera': 'HUAWEI: EVA-L09'}",
  5323. "<class 'dict'>"
  5324. ],
  5325. "asctime": "2020-02-03 11:51:46,605",
  5326. "created": 1580727106.6054118,
  5327. "exc_info": null,
  5328. "exc_text": null,
  5329. "filename": "test.py",
  5330. "funcName": "equivalency_chk",
  5331. "levelname": "INFO",
  5332. "levelno": 20,
  5333. "lineno": 142,
  5334. "message": "Media data for image_exif_no_gps.jpg is correct (Content {'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'size': 2837285, 'camera': 'HUAWEI: EVA-L09'} and Type is <class 'dict'>).",
  5335. "module": "test",
  5336. "moduleLogger": [
  5337. {
  5338. "args": [
  5339. "Media data for image_exif_no_gps.jpg",
  5340. "{ 'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'size': 2837285, 'camera': 'HUAWEI: EVA-L09' }",
  5341. "<class 'dict'>"
  5342. ],
  5343. "asctime": "2020-02-03 11:51:46,605",
  5344. "created": 1580727106.60523,
  5345. "exc_info": null,
  5346. "exc_text": null,
  5347. "filename": "test.py",
  5348. "funcName": "__report_result__",
  5349. "levelname": "DEBUG",
  5350. "levelno": 10,
  5351. "lineno": 22,
  5352. "message": "Result (Media data for image_exif_no_gps.jpg): { 'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'size': 2837285, 'camera': 'HUAWEI: EVA-L09' } (<class 'dict'>)",
  5353. "module": "test",
  5354. "msecs": 605.2300930023193,
  5355. "msg": "Result (%s): %s (%s)",
  5356. "name": "__unittest__",
  5357. "pathname": "src/unittest/test.py",
  5358. "process": 3545,
  5359. "processName": "MainProcess",
  5360. "relativeCreated": 693.3777332305908,
  5361. "stack_info": null,
  5362. "thread": 140585574717248,
  5363. "threadName": "MainThread"
  5364. },
  5365. {
  5366. "args": [
  5367. "Media data for image_exif_no_gps.jpg",
  5368. "{ 'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'camera': 'HUAWEI: EVA-L09', 'size': 2837285 }",
  5369. "<class 'dict'>"
  5370. ],
  5371. "asctime": "2020-02-03 11:51:46,605",
  5372. "created": 1580727106.6053212,
  5373. "exc_info": null,
  5374. "exc_text": null,
  5375. "filename": "test.py",
  5376. "funcName": "__report_expectation_equivalency__",
  5377. "levelname": "DEBUG",
  5378. "levelno": 10,
  5379. "lineno": 26,
  5380. "message": "Expectation (Media data for image_exif_no_gps.jpg): result = { 'time': 1515143529, 'exposure_program': 'Program Normal', 'exposure_time': 0.03, 'flash': 'Fired', 'aperture': 2.2, 'focal_length': 4.5, 'height': 3968, 'iso': 160, 'orientation': 0, 'width': 2976, 'camera': 'HUAWEI: EVA-L09', 'size': 2837285 } (<class 'dict'>)",
  5381. "module": "test",
  5382. "msecs": 605.3211688995361,
  5383. "msg": "Expectation (%s): result = %s (%s)",
  5384. "name": "__unittest__",
  5385. "pathname": "src/unittest/test.py",
  5386. "process": 3545,
  5387. "processName": "MainProcess",
  5388. "relativeCreated": 693.4688091278076,
  5389. "stack_info": null,
  5390. "thread": 140585574717248,
  5391. "threadName": "MainThread"
  5392. }
  5393. ],
  5394. "msecs": 605.4117679595947,
  5395. "msg": "Media data for image_exif_no_gps.jpg is correct (Content %s and Type is %s).",
  5396. "name": "__tLogger__",
  5397. "pathname": "src/unittest/test.py",
  5398. "process": 3545,
  5399. "processName": "MainProcess",
  5400. "relativeCreated": 693.5594081878662,
  5401. "stack_info": null,
  5402. "thread": 140585574717248,
  5403. "threadName": "MainThread",
  5404. "time_consumption": 9.059906005859375e-05
  5405. },
  5406. {
  5407. "args": [
  5408. "{'size': 1139092, 'time': 1449870515, 'tm_is_subst': True}",
  5409. "<class 'dict'>"
  5410. ],
  5411. "asctime": "2020-02-03 11:51:46,606",
  5412. "created": 1580727106.606047,
  5413. "exc_info": null,
  5414. "exc_text": null,
  5415. "filename": "test.py",
  5416. "funcName": "equivalency_chk",
  5417. "levelname": "INFO",
  5418. "levelno": 20,
  5419. "lineno": 142,
  5420. "message": "Media data for image_non_exif.jpg is correct (Content {'size': 1139092, 'time': 1449870515, 'tm_is_subst': True} and Type is <class 'dict'>).",
  5421. "module": "test",
  5422. "moduleLogger": [
  5423. {
  5424. "args": [
  5425. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg"
  5426. ],
  5427. "asctime": "2020-02-03 11:51:46,605",
  5428. "created": 1580727106.6058102,
  5429. "exc_info": null,
  5430. "exc_text": null,
  5431. "filename": "metadata.py",
  5432. "funcName": "__get_exif_data__",
  5433. "levelname": "DEBUG",
  5434. "levelno": 10,
  5435. "lineno": 112,
  5436. "message": "/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg does not have any exif information",
  5437. "module": "metadata",
  5438. "msecs": 605.8101654052734,
  5439. "msg": "%s does not have any exif information",
  5440. "name": "MEDIA",
  5441. "pathname": "src/media/metadata.py",
  5442. "process": 3545,
  5443. "processName": "MainProcess",
  5444. "relativeCreated": 693.9578056335449,
  5445. "stack_info": null,
  5446. "thread": 140585574717248,
  5447. "threadName": "MainThread"
  5448. },
  5449. {
  5450. "args": [
  5451. "Media data for image_non_exif.jpg",
  5452. "{ 'size': 1139092, 'time': 1449870515, 'tm_is_subst': True }",
  5453. "<class 'dict'>"
  5454. ],
  5455. "asctime": "2020-02-03 11:51:46,605",
  5456. "created": 1580727106.6059268,
  5457. "exc_info": null,
  5458. "exc_text": null,
  5459. "filename": "test.py",
  5460. "funcName": "__report_result__",
  5461. "levelname": "DEBUG",
  5462. "levelno": 10,
  5463. "lineno": 22,
  5464. "message": "Result (Media data for image_non_exif.jpg): { 'size': 1139092, 'time': 1449870515, 'tm_is_subst': True } (<class 'dict'>)",
  5465. "module": "test",
  5466. "msecs": 605.9267520904541,
  5467. "msg": "Result (%s): %s (%s)",
  5468. "name": "__unittest__",
  5469. "pathname": "src/unittest/test.py",
  5470. "process": 3545,
  5471. "processName": "MainProcess",
  5472. "relativeCreated": 694.0743923187256,
  5473. "stack_info": null,
  5474. "thread": 140585574717248,
  5475. "threadName": "MainThread"
  5476. },
  5477. {
  5478. "args": [
  5479. "Media data for image_non_exif.jpg",
  5480. "{ 'time': 1449870515, 'tm_is_subst': True, 'size': 1139092 }",
  5481. "<class 'dict'>"
  5482. ],
  5483. "asctime": "2020-02-03 11:51:46,605",
  5484. "created": 1580727106.6059842,
  5485. "exc_info": null,
  5486. "exc_text": null,
  5487. "filename": "test.py",
  5488. "funcName": "__report_expectation_equivalency__",
  5489. "levelname": "DEBUG",
  5490. "levelno": 10,
  5491. "lineno": 26,
  5492. "message": "Expectation (Media data for image_non_exif.jpg): result = { 'time': 1449870515, 'tm_is_subst': True, 'size': 1139092 } (<class 'dict'>)",
  5493. "module": "test",
  5494. "msecs": 605.9842109680176,
  5495. "msg": "Expectation (%s): result = %s (%s)",
  5496. "name": "__unittest__",
  5497. "pathname": "src/unittest/test.py",
  5498. "process": 3545,
  5499. "processName": "MainProcess",
  5500. "relativeCreated": 694.1318511962891,
  5501. "stack_info": null,
  5502. "thread": 140585574717248,
  5503. "threadName": "MainThread"
  5504. }
  5505. ],
  5506. "msecs": 606.0469150543213,
  5507. "msg": "Media data for image_non_exif.jpg is correct (Content %s and Type is %s).",
  5508. "name": "__tLogger__",
  5509. "pathname": "src/unittest/test.py",
  5510. "process": 3545,
  5511. "processName": "MainProcess",
  5512. "relativeCreated": 694.1945552825928,
  5513. "stack_info": null,
  5514. "thread": 140585574717248,
  5515. "threadName": "MainThread",
  5516. "time_consumption": 6.270408630371094e-05
  5517. },
  5518. {
  5519. "args": [
  5520. "{'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'size': 1301272, 'camera': 'Canon: Canon EOS 40D'}",
  5521. "<class 'dict'>"
  5522. ],
  5523. "asctime": "2020-02-03 11:51:46,611",
  5524. "created": 1580727106.6119304,
  5525. "exc_info": null,
  5526. "exc_text": null,
  5527. "filename": "test.py",
  5528. "funcName": "equivalency_chk",
  5529. "levelname": "INFO",
  5530. "levelno": 20,
  5531. "lineno": 142,
  5532. "message": "Media data for image_extraction_failed.jpg is correct (Content {'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'size': 1301272, 'camera': 'Canon: Canon EOS 40D'} and Type is <class 'dict'>).",
  5533. "module": "test",
  5534. "moduleLogger": [
  5535. {
  5536. "args": [
  5537. "{0: b'\\x02\\x02\\x00\\x00'}"
  5538. ],
  5539. "asctime": "2020-02-03 11:51:46,611",
  5540. "created": 1580727106.611619,
  5541. "exc_info": null,
  5542. "exc_text": null,
  5543. "filename": "metadata.py",
  5544. "funcName": "__gps_conv__",
  5545. "levelname": "WARNING",
  5546. "levelno": 30,
  5547. "lineno": 221,
  5548. "message": "GPS data extraction failed for {0: b'\\x02\\x02\\x00\\x00'}",
  5549. "module": "metadata",
  5550. "msecs": 611.6189956665039,
  5551. "msg": "GPS data extraction failed for %s",
  5552. "name": "MEDIA",
  5553. "pathname": "src/media/metadata.py",
  5554. "process": 3545,
  5555. "processName": "MainProcess",
  5556. "relativeCreated": 699.7666358947754,
  5557. "stack_info": null,
  5558. "thread": 140585574717248,
  5559. "threadName": "MainThread"
  5560. },
  5561. {
  5562. "args": [
  5563. "Media data for image_extraction_failed.jpg",
  5564. "{ 'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'size': 1301272, 'camera': 'Canon: Canon EOS 40D' }",
  5565. "<class 'dict'>"
  5566. ],
  5567. "asctime": "2020-02-03 11:51:46,611",
  5568. "created": 1580727106.6117723,
  5569. "exc_info": null,
  5570. "exc_text": null,
  5571. "filename": "test.py",
  5572. "funcName": "__report_result__",
  5573. "levelname": "DEBUG",
  5574. "levelno": 10,
  5575. "lineno": 22,
  5576. "message": "Result (Media data for image_extraction_failed.jpg): { 'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'size': 1301272, 'camera': 'Canon: Canon EOS 40D' } (<class 'dict'>)",
  5577. "module": "test",
  5578. "msecs": 611.7722988128662,
  5579. "msg": "Result (%s): %s (%s)",
  5580. "name": "__unittest__",
  5581. "pathname": "src/unittest/test.py",
  5582. "process": 3545,
  5583. "processName": "MainProcess",
  5584. "relativeCreated": 699.9199390411377,
  5585. "stack_info": null,
  5586. "thread": 140585574717248,
  5587. "threadName": "MainThread"
  5588. },
  5589. {
  5590. "args": [
  5591. "Media data for image_extraction_failed.jpg",
  5592. "{ 'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'camera': 'Canon: Canon EOS 40D', 'size': 1301272 }",
  5593. "<class 'dict'>"
  5594. ],
  5595. "asctime": "2020-02-03 11:51:46,611",
  5596. "created": 1580727106.611846,
  5597. "exc_info": null,
  5598. "exc_text": null,
  5599. "filename": "test.py",
  5600. "funcName": "__report_expectation_equivalency__",
  5601. "levelname": "DEBUG",
  5602. "levelno": 10,
  5603. "lineno": 26,
  5604. "message": "Expectation (Media data for image_extraction_failed.jpg): result = { 'time': 1226149915, 'exposure_program': 'Program Normal', 'exposure_time': 0.008, 'flash': 'Fill Fired', 'aperture': 7.1, 'focal_length': 170.0, 'height': 2592, 'iso': 400, 'orientation': 1, 'width': 3888, 'camera': 'Canon: Canon EOS 40D', 'size': 1301272 } (<class 'dict'>)",
  5605. "module": "test",
  5606. "msecs": 611.8459701538086,
  5607. "msg": "Expectation (%s): result = %s (%s)",
  5608. "name": "__unittest__",
  5609. "pathname": "src/unittest/test.py",
  5610. "process": 3545,
  5611. "processName": "MainProcess",
  5612. "relativeCreated": 699.9936103820801,
  5613. "stack_info": null,
  5614. "thread": 140585574717248,
  5615. "threadName": "MainThread"
  5616. }
  5617. ],
  5618. "msecs": 611.9303703308105,
  5619. "msg": "Media data for image_extraction_failed.jpg is correct (Content %s and Type is %s).",
  5620. "name": "__tLogger__",
  5621. "pathname": "src/unittest/test.py",
  5622. "process": 3545,
  5623. "processName": "MainProcess",
  5624. "relativeCreated": 700.078010559082,
  5625. "stack_info": null,
  5626. "thread": 140585574717248,
  5627. "threadName": "MainThread",
  5628. "time_consumption": 8.440017700195312e-05
  5629. },
  5630. {
  5631. "args": [
  5632. "{'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345}",
  5633. "<class 'dict'>"
  5634. ],
  5635. "asctime": "2020-02-03 11:51:46,695",
  5636. "created": 1580727106.695373,
  5637. "exc_info": null,
  5638. "exc_text": null,
  5639. "filename": "test.py",
  5640. "funcName": "equivalency_chk",
  5641. "levelname": "INFO",
  5642. "levelno": 20,
  5643. "lineno": 142,
  5644. "message": "Media data for video.3gp is correct (Content {'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345} and Type is <class 'dict'>).",
  5645. "module": "test",
  5646. "moduleLogger": [
  5647. {
  5648. "args": [
  5649. "Media data for video.3gp",
  5650. "{ 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 }",
  5651. "<class 'dict'>"
  5652. ],
  5653. "asctime": "2020-02-03 11:51:46,695",
  5654. "created": 1580727106.6951132,
  5655. "exc_info": null,
  5656. "exc_text": null,
  5657. "filename": "test.py",
  5658. "funcName": "__report_result__",
  5659. "levelname": "DEBUG",
  5660. "levelno": 10,
  5661. "lineno": 22,
  5662. "message": "Result (Media data for video.3gp): { 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 } (<class 'dict'>)",
  5663. "module": "test",
  5664. "msecs": 695.1131820678711,
  5665. "msg": "Result (%s): %s (%s)",
  5666. "name": "__unittest__",
  5667. "pathname": "src/unittest/test.py",
  5668. "process": 3545,
  5669. "processName": "MainProcess",
  5670. "relativeCreated": 783.2608222961426,
  5671. "stack_info": null,
  5672. "thread": 140585574717248,
  5673. "threadName": "MainThread"
  5674. },
  5675. {
  5676. "args": [
  5677. "Media data for video.3gp",
  5678. "{ 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 }",
  5679. "<class 'dict'>"
  5680. ],
  5681. "asctime": "2020-02-03 11:51:46,695",
  5682. "created": 1580727106.6952863,
  5683. "exc_info": null,
  5684. "exc_text": null,
  5685. "filename": "test.py",
  5686. "funcName": "__report_expectation_equivalency__",
  5687. "levelname": "DEBUG",
  5688. "levelno": 10,
  5689. "lineno": 26,
  5690. "message": "Expectation (Media data for video.3gp): result = { 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 } (<class 'dict'>)",
  5691. "module": "test",
  5692. "msecs": 695.2862739562988,
  5693. "msg": "Expectation (%s): result = %s (%s)",
  5694. "name": "__unittest__",
  5695. "pathname": "src/unittest/test.py",
  5696. "process": 3545,
  5697. "processName": "MainProcess",
  5698. "relativeCreated": 783.4339141845703,
  5699. "stack_info": null,
  5700. "thread": 140585574717248,
  5701. "threadName": "MainThread"
  5702. }
  5703. ],
  5704. "msecs": 695.3730583190918,
  5705. "msg": "Media data for video.3gp is correct (Content %s and Type is %s).",
  5706. "name": "__tLogger__",
  5707. "pathname": "src/unittest/test.py",
  5708. "process": 3545,
  5709. "processName": "MainProcess",
  5710. "relativeCreated": 783.5206985473633,
  5711. "stack_info": null,
  5712. "thread": 140585574717248,
  5713. "threadName": "MainThread",
  5714. "time_consumption": 8.678436279296875e-05
  5715. },
  5716. {
  5717. "args": [
  5718. "{'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508}",
  5719. "<class 'dict'>"
  5720. ],
  5721. "asctime": "2020-02-03 11:51:46,909",
  5722. "created": 1580727106.9090261,
  5723. "exc_info": null,
  5724. "exc_text": null,
  5725. "filename": "test.py",
  5726. "funcName": "equivalency_chk",
  5727. "levelname": "INFO",
  5728. "levelno": 20,
  5729. "lineno": 142,
  5730. "message": "Media data for video.mp4 is correct (Content {'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508} and Type is <class 'dict'>).",
  5731. "module": "test",
  5732. "moduleLogger": [
  5733. {
  5734. "args": [
  5735. "Media data for video.mp4",
  5736. "{ 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 }",
  5737. "<class 'dict'>"
  5738. ],
  5739. "asctime": "2020-02-03 11:51:46,908",
  5740. "created": 1580727106.9087095,
  5741. "exc_info": null,
  5742. "exc_text": null,
  5743. "filename": "test.py",
  5744. "funcName": "__report_result__",
  5745. "levelname": "DEBUG",
  5746. "levelno": 10,
  5747. "lineno": 22,
  5748. "message": "Result (Media data for video.mp4): { 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 } (<class 'dict'>)",
  5749. "module": "test",
  5750. "msecs": 908.7095260620117,
  5751. "msg": "Result (%s): %s (%s)",
  5752. "name": "__unittest__",
  5753. "pathname": "src/unittest/test.py",
  5754. "process": 3545,
  5755. "processName": "MainProcess",
  5756. "relativeCreated": 996.8571662902832,
  5757. "stack_info": null,
  5758. "thread": 140585574717248,
  5759. "threadName": "MainThread"
  5760. },
  5761. {
  5762. "args": [
  5763. "Media data for video.mp4",
  5764. "{ 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 }",
  5765. "<class 'dict'>"
  5766. ],
  5767. "asctime": "2020-02-03 11:51:46,908",
  5768. "created": 1580727106.9088917,
  5769. "exc_info": null,
  5770. "exc_text": null,
  5771. "filename": "test.py",
  5772. "funcName": "__report_expectation_equivalency__",
  5773. "levelname": "DEBUG",
  5774. "levelno": 10,
  5775. "lineno": 26,
  5776. "message": "Expectation (Media data for video.mp4): result = { 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 } (<class 'dict'>)",
  5777. "module": "test",
  5778. "msecs": 908.8916778564453,
  5779. "msg": "Expectation (%s): result = %s (%s)",
  5780. "name": "__unittest__",
  5781. "pathname": "src/unittest/test.py",
  5782. "process": 3545,
  5783. "processName": "MainProcess",
  5784. "relativeCreated": 997.0393180847168,
  5785. "stack_info": null,
  5786. "thread": 140585574717248,
  5787. "threadName": "MainThread"
  5788. }
  5789. ],
  5790. "msecs": 909.0261459350586,
  5791. "msg": "Media data for video.mp4 is correct (Content %s and Type is %s).",
  5792. "name": "__tLogger__",
  5793. "pathname": "src/unittest/test.py",
  5794. "process": 3545,
  5795. "processName": "MainProcess",
  5796. "relativeCreated": 997.1737861633301,
  5797. "stack_info": null,
  5798. "thread": 140585574717248,
  5799. "threadName": "MainThread",
  5800. "time_consumption": 0.00013446807861328125
  5801. },
  5802. {
  5803. "args": [
  5804. "{'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622}",
  5805. "<class 'dict'>"
  5806. ],
  5807. "asctime": "2020-02-03 11:51:46,993",
  5808. "created": 1580727106.993735,
  5809. "exc_info": null,
  5810. "exc_text": null,
  5811. "filename": "test.py",
  5812. "funcName": "equivalency_chk",
  5813. "levelname": "INFO",
  5814. "levelno": 20,
  5815. "lineno": 142,
  5816. "message": "Media data for video_special_time.avi is correct (Content {'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622} and Type is <class 'dict'>).",
  5817. "module": "test",
  5818. "moduleLogger": [
  5819. {
  5820. "args": [
  5821. "'N/A'",
  5822. "duration",
  5823. "duration"
  5824. ],
  5825. "asctime": "2020-02-03 11:51:46,992",
  5826. "created": 1580727106.9929793,
  5827. "exc_info": null,
  5828. "exc_text": null,
  5829. "filename": "metadata.py",
  5830. "funcName": "__get_xxprobe_data__",
  5831. "levelname": "WARNING",
  5832. "levelno": 30,
  5833. "lineno": 102,
  5834. "message": "Can't convert 'N/A' (duration) for duration",
  5835. "module": "metadata",
  5836. "msecs": 992.9792881011963,
  5837. "msg": "Can't convert %s (%s) for %s",
  5838. "name": "MEDIA",
  5839. "pathname": "src/media/metadata.py",
  5840. "process": 3545,
  5841. "processName": "MainProcess",
  5842. "relativeCreated": 1081.1269283294678,
  5843. "stack_info": null,
  5844. "thread": 140585574717248,
  5845. "threadName": "MainThread"
  5846. },
  5847. {
  5848. "args": [
  5849. "Media data for video_special_time.avi",
  5850. "{ 'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 }",
  5851. "<class 'dict'>"
  5852. ],
  5853. "asctime": "2020-02-03 11:51:46,993",
  5854. "created": 1580727106.9935384,
  5855. "exc_info": null,
  5856. "exc_text": null,
  5857. "filename": "test.py",
  5858. "funcName": "__report_result__",
  5859. "levelname": "DEBUG",
  5860. "levelno": 10,
  5861. "lineno": 22,
  5862. "message": "Result (Media data for video_special_time.avi): { 'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 } (<class 'dict'>)",
  5863. "module": "test",
  5864. "msecs": 993.5383796691895,
  5865. "msg": "Result (%s): %s (%s)",
  5866. "name": "__unittest__",
  5867. "pathname": "src/unittest/test.py",
  5868. "process": 3545,
  5869. "processName": "MainProcess",
  5870. "relativeCreated": 1081.686019897461,
  5871. "stack_info": null,
  5872. "thread": 140585574717248,
  5873. "threadName": "MainThread"
  5874. },
  5875. {
  5876. "args": [
  5877. "Media data for video_special_time.avi",
  5878. "{ 'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 }",
  5879. "<class 'dict'>"
  5880. ],
  5881. "asctime": "2020-02-03 11:51:46,993",
  5882. "created": 1580727106.9936414,
  5883. "exc_info": null,
  5884. "exc_text": null,
  5885. "filename": "test.py",
  5886. "funcName": "__report_expectation_equivalency__",
  5887. "levelname": "DEBUG",
  5888. "levelno": 10,
  5889. "lineno": 26,
  5890. "message": "Expectation (Media data for video_special_time.avi): result = { 'width': 320, 'height': 240, 'ratio': 0.0, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 } (<class 'dict'>)",
  5891. "module": "test",
  5892. "msecs": 993.6413764953613,
  5893. "msg": "Expectation (%s): result = %s (%s)",
  5894. "name": "__unittest__",
  5895. "pathname": "src/unittest/test.py",
  5896. "process": 3545,
  5897. "processName": "MainProcess",
  5898. "relativeCreated": 1081.7890167236328,
  5899. "stack_info": null,
  5900. "thread": 140585574717248,
  5901. "threadName": "MainThread"
  5902. }
  5903. ],
  5904. "msecs": 993.7350749969482,
  5905. "msg": "Media data for video_special_time.avi is correct (Content %s and Type is %s).",
  5906. "name": "__tLogger__",
  5907. "pathname": "src/unittest/test.py",
  5908. "process": 3545,
  5909. "processName": "MainProcess",
  5910. "relativeCreated": 1081.8827152252197,
  5911. "stack_info": null,
  5912. "thread": 140585574717248,
  5913. "threadName": "MainThread",
  5914. "time_consumption": 9.369850158691406e-05
  5915. },
  5916. {
  5917. "args": [
  5918. "{'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True}",
  5919. "<class 'dict'>"
  5920. ],
  5921. "asctime": "2020-02-03 11:51:47,138",
  5922. "created": 1580727107.1388326,
  5923. "exc_info": null,
  5924. "exc_text": null,
  5925. "filename": "test.py",
  5926. "funcName": "equivalency_chk",
  5927. "levelname": "INFO",
  5928. "levelno": 20,
  5929. "lineno": 142,
  5930. "message": "Media data for video_no_date.avi is correct (Content {'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True} and Type is <class 'dict'>).",
  5931. "module": "test",
  5932. "moduleLogger": [
  5933. {
  5934. "args": [
  5935. "Media data for video_no_date.avi",
  5936. "{ 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True }",
  5937. "<class 'dict'>"
  5938. ],
  5939. "asctime": "2020-02-03 11:51:47,138",
  5940. "created": 1580727107.138515,
  5941. "exc_info": null,
  5942. "exc_text": null,
  5943. "filename": "test.py",
  5944. "funcName": "__report_result__",
  5945. "levelname": "DEBUG",
  5946. "levelno": 10,
  5947. "lineno": 22,
  5948. "message": "Result (Media data for video_no_date.avi): { 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True } (<class 'dict'>)",
  5949. "module": "test",
  5950. "msecs": 138.51499557495117,
  5951. "msg": "Result (%s): %s (%s)",
  5952. "name": "__unittest__",
  5953. "pathname": "src/unittest/test.py",
  5954. "process": 3545,
  5955. "processName": "MainProcess",
  5956. "relativeCreated": 1226.6626358032227,
  5957. "stack_info": null,
  5958. "thread": 140585574717248,
  5959. "threadName": "MainThread"
  5960. },
  5961. {
  5962. "args": [
  5963. "Media data for video_no_date.avi",
  5964. "{ 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'time': 1158528375, 'tm_is_subst': True, 'size': 2965248 }",
  5965. "<class 'dict'>"
  5966. ],
  5967. "asctime": "2020-02-03 11:51:47,138",
  5968. "created": 1580727107.1387355,
  5969. "exc_info": null,
  5970. "exc_text": null,
  5971. "filename": "test.py",
  5972. "funcName": "__report_expectation_equivalency__",
  5973. "levelname": "DEBUG",
  5974. "levelno": 10,
  5975. "lineno": 26,
  5976. "message": "Expectation (Media data for video_no_date.avi): result = { 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'time': 1158528375, 'tm_is_subst': True, 'size': 2965248 } (<class 'dict'>)",
  5977. "module": "test",
  5978. "msecs": 138.73553276062012,
  5979. "msg": "Expectation (%s): result = %s (%s)",
  5980. "name": "__unittest__",
  5981. "pathname": "src/unittest/test.py",
  5982. "process": 3545,
  5983. "processName": "MainProcess",
  5984. "relativeCreated": 1226.8831729888916,
  5985. "stack_info": null,
  5986. "thread": 140585574717248,
  5987. "threadName": "MainThread"
  5988. }
  5989. ],
  5990. "msecs": 138.83256912231445,
  5991. "msg": "Media data for video_no_date.avi is correct (Content %s and Type is %s).",
  5992. "name": "__tLogger__",
  5993. "pathname": "src/unittest/test.py",
  5994. "process": 3545,
  5995. "processName": "MainProcess",
  5996. "relativeCreated": 1226.980209350586,
  5997. "stack_info": null,
  5998. "thread": 140585574717248,
  5999. "threadName": "MainThread",
  6000. "time_consumption": 9.703636169433594e-05
  6001. }
  6002. ],
  6003. "thread": 140585574717248,
  6004. "threadName": "MainThread",
  6005. "time_consumption": 1.1115221977233887,
  6006. "time_finished": "2020-02-03 11:51:47,138",
  6007. "time_start": "2020-02-03 11:51:46,027"
  6008. },
  6009. "_wvLDcEYCEequ74M7usLaPw": {
  6010. "args": null,
  6011. "asctime": "2020-02-03 11:51:48,325",
  6012. "created": 1580727108.3253405,
  6013. "exc_info": null,
  6014. "exc_text": null,
  6015. "filename": "__init__.py",
  6016. "funcName": "testrun",
  6017. "levelname": "INFO",
  6018. "levelno": 20,
  6019. "lineno": 33,
  6020. "message": "_wvLDcEYCEequ74M7usLaPw",
  6021. "module": "__init__",
  6022. "moduleLogger": [],
  6023. "msecs": 325.34050941467285,
  6024. "msg": "_wvLDcEYCEequ74M7usLaPw",
  6025. "name": "__tLogger__",
  6026. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  6027. "process": 3545,
  6028. "processName": "MainProcess",
  6029. "relativeCreated": 2413.4881496429443,
  6030. "stack_info": null,
  6031. "testcaseLogger": [
  6032. {
  6033. "args": [
  6034. "True",
  6035. "<class 'bool'>"
  6036. ],
  6037. "asctime": "2020-02-03 11:51:48,666",
  6038. "created": 1580727108.6662192,
  6039. "exc_info": null,
  6040. "exc_text": null,
  6041. "filename": "test.py",
  6042. "funcName": "equivalency_chk",
  6043. "levelname": "INFO",
  6044. "levelno": 20,
  6045. "lineno": 142,
  6046. "message": "Filecompare for image_data.jpg is correct (Content True and Type is <class 'bool'>).",
  6047. "module": "test",
  6048. "moduleLogger": [
  6049. {
  6050. "args": [
  6051. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  6052. ],
  6053. "asctime": "2020-02-03 11:51:48,522",
  6054. "created": 1580727108.5228128,
  6055. "exc_info": null,
  6056. "exc_text": null,
  6057. "filename": "__init__.py",
  6058. "funcName": "load_from_file",
  6059. "levelname": "DEBUG",
  6060. "levelno": 10,
  6061. "lineno": 116,
  6062. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  6063. "module": "__init__",
  6064. "msecs": 522.8128433227539,
  6065. "msg": "loading image from %s",
  6066. "name": "MEDIA",
  6067. "pathname": "src/media/__init__.py",
  6068. "process": 3545,
  6069. "processName": "MainProcess",
  6070. "relativeCreated": 2610.9604835510254,
  6071. "stack_info": null,
  6072. "thread": 140585574717248,
  6073. "threadName": "MainThread"
  6074. },
  6075. {
  6076. "args": [
  6077. "Filecompare for image_data.jpg",
  6078. "True",
  6079. "<class 'bool'>"
  6080. ],
  6081. "asctime": "2020-02-03 11:51:48,664",
  6082. "created": 1580727108.6640825,
  6083. "exc_info": null,
  6084. "exc_text": null,
  6085. "filename": "test.py",
  6086. "funcName": "__report_result__",
  6087. "levelname": "DEBUG",
  6088. "levelno": 10,
  6089. "lineno": 22,
  6090. "message": "Result (Filecompare for image_data.jpg): True (<class 'bool'>)",
  6091. "module": "test",
  6092. "msecs": 664.0825271606445,
  6093. "msg": "Result (%s): %s (%s)",
  6094. "name": "__unittest__",
  6095. "pathname": "src/unittest/test.py",
  6096. "process": 3545,
  6097. "processName": "MainProcess",
  6098. "relativeCreated": 2752.230167388916,
  6099. "stack_info": null,
  6100. "thread": 140585574717248,
  6101. "threadName": "MainThread"
  6102. },
  6103. {
  6104. "args": [
  6105. "Filecompare for image_data.jpg",
  6106. "True",
  6107. "<class 'bool'>"
  6108. ],
  6109. "asctime": "2020-02-03 11:51:48,665",
  6110. "created": 1580727108.6654418,
  6111. "exc_info": null,
  6112. "exc_text": null,
  6113. "filename": "test.py",
  6114. "funcName": "__report_expectation_equivalency__",
  6115. "levelname": "DEBUG",
  6116. "levelno": 10,
  6117. "lineno": 26,
  6118. "message": "Expectation (Filecompare for image_data.jpg): result = True (<class 'bool'>)",
  6119. "module": "test",
  6120. "msecs": 665.4417514801025,
  6121. "msg": "Expectation (%s): result = %s (%s)",
  6122. "name": "__unittest__",
  6123. "pathname": "src/unittest/test.py",
  6124. "process": 3545,
  6125. "processName": "MainProcess",
  6126. "relativeCreated": 2753.589391708374,
  6127. "stack_info": null,
  6128. "thread": 140585574717248,
  6129. "threadName": "MainThread"
  6130. }
  6131. ],
  6132. "msecs": 666.2192344665527,
  6133. "msg": "Filecompare for image_data.jpg is correct (Content %s and Type is %s).",
  6134. "name": "__tLogger__",
  6135. "pathname": "src/unittest/test.py",
  6136. "process": 3545,
  6137. "processName": "MainProcess",
  6138. "relativeCreated": 2754.366874694824,
  6139. "stack_info": null,
  6140. "thread": 140585574717248,
  6141. "threadName": "MainThread",
  6142. "time_consumption": 0.0007774829864501953
  6143. }
  6144. ],
  6145. "thread": 140585574717248,
  6146. "threadName": "MainThread",
  6147. "time_consumption": 0.3408787250518799,
  6148. "time_finished": "2020-02-03 11:51:48,666",
  6149. "time_start": "2020-02-03 11:51:48,325"
  6150. },
  6151. "_zQ29EEYCEequ74M7usLaPw": {
  6152. "args": null,
  6153. "asctime": "2020-02-03 11:51:48,678",
  6154. "created": 1580727108.678108,
  6155. "exc_info": null,
  6156. "exc_text": null,
  6157. "filename": "__init__.py",
  6158. "funcName": "testrun",
  6159. "levelname": "INFO",
  6160. "levelno": 20,
  6161. "lineno": 34,
  6162. "message": "_zQ29EEYCEequ74M7usLaPw",
  6163. "module": "__init__",
  6164. "moduleLogger": [],
  6165. "msecs": 678.1079769134521,
  6166. "msg": "_zQ29EEYCEequ74M7usLaPw",
  6167. "name": "__tLogger__",
  6168. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  6169. "process": 3545,
  6170. "processName": "MainProcess",
  6171. "relativeCreated": 2766.2556171417236,
  6172. "stack_info": null,
  6173. "testcaseLogger": [
  6174. {
  6175. "args": [
  6176. "True",
  6177. "<class 'bool'>"
  6178. ],
  6179. "asctime": "2020-02-03 11:51:48,916",
  6180. "created": 1580727108.9162145,
  6181. "exc_info": null,
  6182. "exc_text": null,
  6183. "filename": "test.py",
  6184. "funcName": "equivalency_chk",
  6185. "levelname": "INFO",
  6186. "levelno": 20,
  6187. "lineno": 142,
  6188. "message": "Returnvalue of successful resize method is correct (Content True and Type is <class 'bool'>).",
  6189. "module": "test",
  6190. "moduleLogger": [
  6191. {
  6192. "args": [
  6193. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  6194. ],
  6195. "asctime": "2020-02-03 11:51:48,907",
  6196. "created": 1580727108.9076145,
  6197. "exc_info": null,
  6198. "exc_text": null,
  6199. "filename": "__init__.py",
  6200. "funcName": "load_from_file",
  6201. "levelname": "DEBUG",
  6202. "levelno": 10,
  6203. "lineno": 116,
  6204. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  6205. "module": "__init__",
  6206. "msecs": 907.6144695281982,
  6207. "msg": "loading image from %s",
  6208. "name": "MEDIA",
  6209. "pathname": "src/media/__init__.py",
  6210. "process": 3545,
  6211. "processName": "MainProcess",
  6212. "relativeCreated": 2995.7621097564697,
  6213. "stack_info": null,
  6214. "thread": 140585574717248,
  6215. "threadName": "MainThread"
  6216. },
  6217. {
  6218. "args": [
  6219. 300
  6220. ],
  6221. "asctime": "2020-02-03 11:51:48,907",
  6222. "created": 1580727108.9077542,
  6223. "exc_info": null,
  6224. "exc_text": null,
  6225. "filename": "__init__.py",
  6226. "funcName": "resize",
  6227. "levelname": "DEBUG",
  6228. "levelno": 10,
  6229. "lineno": 141,
  6230. "message": "Resizing picture to max 300 pixel in whatever direction",
  6231. "module": "__init__",
  6232. "msecs": 907.7541828155518,
  6233. "msg": "Resizing picture to max %d pixel in whatever direction",
  6234. "name": "MEDIA",
  6235. "pathname": "src/media/__init__.py",
  6236. "process": 3545,
  6237. "processName": "MainProcess",
  6238. "relativeCreated": 2995.9018230438232,
  6239. "stack_info": null,
  6240. "thread": 140585574717248,
  6241. "threadName": "MainThread"
  6242. },
  6243. {
  6244. "args": [
  6245. "Returnvalue of successful resize method",
  6246. "True",
  6247. "<class 'bool'>"
  6248. ],
  6249. "asctime": "2020-02-03 11:51:48,914",
  6250. "created": 1580727108.9143193,
  6251. "exc_info": null,
  6252. "exc_text": null,
  6253. "filename": "test.py",
  6254. "funcName": "__report_result__",
  6255. "levelname": "DEBUG",
  6256. "levelno": 10,
  6257. "lineno": 22,
  6258. "message": "Result (Returnvalue of successful resize method): True (<class 'bool'>)",
  6259. "module": "test",
  6260. "msecs": 914.3192768096924,
  6261. "msg": "Result (%s): %s (%s)",
  6262. "name": "__unittest__",
  6263. "pathname": "src/unittest/test.py",
  6264. "process": 3545,
  6265. "processName": "MainProcess",
  6266. "relativeCreated": 3002.466917037964,
  6267. "stack_info": null,
  6268. "thread": 140585574717248,
  6269. "threadName": "MainThread"
  6270. },
  6271. {
  6272. "args": [
  6273. "Returnvalue of successful resize method",
  6274. "True",
  6275. "<class 'bool'>"
  6276. ],
  6277. "asctime": "2020-02-03 11:51:48,915",
  6278. "created": 1580727108.9154572,
  6279. "exc_info": null,
  6280. "exc_text": null,
  6281. "filename": "test.py",
  6282. "funcName": "__report_expectation_equivalency__",
  6283. "levelname": "DEBUG",
  6284. "levelno": 10,
  6285. "lineno": 26,
  6286. "message": "Expectation (Returnvalue of successful resize method): result = True (<class 'bool'>)",
  6287. "module": "test",
  6288. "msecs": 915.4572486877441,
  6289. "msg": "Expectation (%s): result = %s (%s)",
  6290. "name": "__unittest__",
  6291. "pathname": "src/unittest/test.py",
  6292. "process": 3545,
  6293. "processName": "MainProcess",
  6294. "relativeCreated": 3003.6048889160156,
  6295. "stack_info": null,
  6296. "thread": 140585574717248,
  6297. "threadName": "MainThread"
  6298. }
  6299. ],
  6300. "msecs": 916.2144660949707,
  6301. "msg": "Returnvalue of successful resize method is correct (Content %s and Type is %s).",
  6302. "name": "__tLogger__",
  6303. "pathname": "src/unittest/test.py",
  6304. "process": 3545,
  6305. "processName": "MainProcess",
  6306. "relativeCreated": 3004.362106323242,
  6307. "stack_info": null,
  6308. "thread": 140585574717248,
  6309. "threadName": "MainThread",
  6310. "time_consumption": 0.0007572174072265625
  6311. },
  6312. {
  6313. "args": [
  6314. "300",
  6315. "<class 'int'>"
  6316. ],
  6317. "asctime": "2020-02-03 11:51:48,923",
  6318. "created": 1580727108.923456,
  6319. "exc_info": null,
  6320. "exc_text": null,
  6321. "filename": "test.py",
  6322. "funcName": "equivalency_chk",
  6323. "levelname": "INFO",
  6324. "levelno": 20,
  6325. "lineno": 142,
  6326. "message": "Resulution of resized image is correct (Content 300 and Type is <class 'int'>).",
  6327. "module": "test",
  6328. "moduleLogger": [
  6329. {
  6330. "args": [
  6331. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/resized_image.jpg'"
  6332. ],
  6333. "asctime": "2020-02-03 11:51:48,916",
  6334. "created": 1580727108.916464,
  6335. "exc_info": null,
  6336. "exc_text": null,
  6337. "filename": "__init__.py",
  6338. "funcName": "save",
  6339. "levelname": "DEBUG",
  6340. "levelno": 10,
  6341. "lineno": 124,
  6342. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/resized_image.jpg'",
  6343. "module": "__init__",
  6344. "msecs": 916.46409034729,
  6345. "msg": "Saving image to %s",
  6346. "name": "MEDIA",
  6347. "pathname": "src/media/__init__.py",
  6348. "process": 3545,
  6349. "processName": "MainProcess",
  6350. "relativeCreated": 3004.6117305755615,
  6351. "stack_info": null,
  6352. "thread": 140585574717248,
  6353. "threadName": "MainThread"
  6354. },
  6355. {
  6356. "args": [
  6357. "Resulution of resized image",
  6358. "300",
  6359. "<class 'int'>"
  6360. ],
  6361. "asctime": "2020-02-03 11:51:48,922",
  6362. "created": 1580727108.9227335,
  6363. "exc_info": null,
  6364. "exc_text": null,
  6365. "filename": "test.py",
  6366. "funcName": "__report_result__",
  6367. "levelname": "DEBUG",
  6368. "levelno": 10,
  6369. "lineno": 22,
  6370. "message": "Result (Resulution of resized image): 300 (<class 'int'>)",
  6371. "module": "test",
  6372. "msecs": 922.7335453033447,
  6373. "msg": "Result (%s): %s (%s)",
  6374. "name": "__unittest__",
  6375. "pathname": "src/unittest/test.py",
  6376. "process": 3545,
  6377. "processName": "MainProcess",
  6378. "relativeCreated": 3010.881185531616,
  6379. "stack_info": null,
  6380. "thread": 140585574717248,
  6381. "threadName": "MainThread"
  6382. },
  6383. {
  6384. "args": [
  6385. "Resulution of resized image",
  6386. "300",
  6387. "<class 'int'>"
  6388. ],
  6389. "asctime": "2020-02-03 11:51:48,923",
  6390. "created": 1580727108.9232402,
  6391. "exc_info": null,
  6392. "exc_text": null,
  6393. "filename": "test.py",
  6394. "funcName": "__report_expectation_equivalency__",
  6395. "levelname": "DEBUG",
  6396. "levelno": 10,
  6397. "lineno": 26,
  6398. "message": "Expectation (Resulution of resized image): result = 300 (<class 'int'>)",
  6399. "module": "test",
  6400. "msecs": 923.2401847839355,
  6401. "msg": "Expectation (%s): result = %s (%s)",
  6402. "name": "__unittest__",
  6403. "pathname": "src/unittest/test.py",
  6404. "process": 3545,
  6405. "processName": "MainProcess",
  6406. "relativeCreated": 3011.387825012207,
  6407. "stack_info": null,
  6408. "thread": 140585574717248,
  6409. "threadName": "MainThread"
  6410. }
  6411. ],
  6412. "msecs": 923.4559535980225,
  6413. "msg": "Resulution of resized image is correct (Content %s and Type is %s).",
  6414. "name": "__tLogger__",
  6415. "pathname": "src/unittest/test.py",
  6416. "process": 3545,
  6417. "processName": "MainProcess",
  6418. "relativeCreated": 3011.603593826294,
  6419. "stack_info": null,
  6420. "thread": 140585574717248,
  6421. "threadName": "MainThread",
  6422. "time_consumption": 0.00021576881408691406
  6423. },
  6424. {
  6425. "args": [
  6426. "False",
  6427. "<class 'bool'>"
  6428. ],
  6429. "asctime": "2020-02-03 11:51:48,925",
  6430. "created": 1580727108.9251208,
  6431. "exc_info": null,
  6432. "exc_text": null,
  6433. "filename": "test.py",
  6434. "funcName": "equivalency_chk",
  6435. "levelname": "INFO",
  6436. "levelno": 20,
  6437. "lineno": 142,
  6438. "message": "Returnvalue of failed resize method is correct (Content False and Type is <class 'bool'>).",
  6439. "module": "test",
  6440. "moduleLogger": [
  6441. {
  6442. "args": [],
  6443. "asctime": "2020-02-03 11:51:48,923",
  6444. "created": 1580727108.9239433,
  6445. "exc_info": null,
  6446. "exc_text": null,
  6447. "filename": "__init__.py",
  6448. "funcName": "resize",
  6449. "levelname": "WARNING",
  6450. "levelno": 30,
  6451. "lineno": 138,
  6452. "message": "No image available to be resized",
  6453. "module": "__init__",
  6454. "msecs": 923.943281173706,
  6455. "msg": "No image available to be resized",
  6456. "name": "MEDIA",
  6457. "pathname": "src/media/__init__.py",
  6458. "process": 3545,
  6459. "processName": "MainProcess",
  6460. "relativeCreated": 3012.0909214019775,
  6461. "stack_info": null,
  6462. "thread": 140585574717248,
  6463. "threadName": "MainThread"
  6464. },
  6465. {
  6466. "args": [
  6467. "Returnvalue of failed resize method",
  6468. "False",
  6469. "<class 'bool'>"
  6470. ],
  6471. "asctime": "2020-02-03 11:51:48,924",
  6472. "created": 1580727108.924218,
  6473. "exc_info": null,
  6474. "exc_text": null,
  6475. "filename": "test.py",
  6476. "funcName": "__report_result__",
  6477. "levelname": "DEBUG",
  6478. "levelno": 10,
  6479. "lineno": 22,
  6480. "message": "Result (Returnvalue of failed resize method): False (<class 'bool'>)",
  6481. "module": "test",
  6482. "msecs": 924.217939376831,
  6483. "msg": "Result (%s): %s (%s)",
  6484. "name": "__unittest__",
  6485. "pathname": "src/unittest/test.py",
  6486. "process": 3545,
  6487. "processName": "MainProcess",
  6488. "relativeCreated": 3012.3655796051025,
  6489. "stack_info": null,
  6490. "thread": 140585574717248,
  6491. "threadName": "MainThread"
  6492. },
  6493. {
  6494. "args": [
  6495. "Returnvalue of failed resize method",
  6496. "False",
  6497. "<class 'bool'>"
  6498. ],
  6499. "asctime": "2020-02-03 11:51:48,924",
  6500. "created": 1580727108.9246697,
  6501. "exc_info": null,
  6502. "exc_text": null,
  6503. "filename": "test.py",
  6504. "funcName": "__report_expectation_equivalency__",
  6505. "levelname": "DEBUG",
  6506. "levelno": 10,
  6507. "lineno": 26,
  6508. "message": "Expectation (Returnvalue of failed resize method): result = False (<class 'bool'>)",
  6509. "module": "test",
  6510. "msecs": 924.6697425842285,
  6511. "msg": "Expectation (%s): result = %s (%s)",
  6512. "name": "__unittest__",
  6513. "pathname": "src/unittest/test.py",
  6514. "process": 3545,
  6515. "processName": "MainProcess",
  6516. "relativeCreated": 3012.8173828125,
  6517. "stack_info": null,
  6518. "thread": 140585574717248,
  6519. "threadName": "MainThread"
  6520. }
  6521. ],
  6522. "msecs": 925.1208305358887,
  6523. "msg": "Returnvalue of failed resize method is correct (Content %s and Type is %s).",
  6524. "name": "__tLogger__",
  6525. "pathname": "src/unittest/test.py",
  6526. "process": 3545,
  6527. "processName": "MainProcess",
  6528. "relativeCreated": 3013.26847076416,
  6529. "stack_info": null,
  6530. "thread": 140585574717248,
  6531. "threadName": "MainThread",
  6532. "time_consumption": 0.00045108795166015625
  6533. }
  6534. ],
  6535. "thread": 140585574717248,
  6536. "threadName": "MainThread",
  6537. "time_consumption": 0.24701285362243652,
  6538. "time_finished": "2020-02-03 11:51:48,925",
  6539. "time_start": "2020-02-03 11:51:48,678"
  6540. }
  6541. },
  6542. "testrun_id": "p3",
  6543. "time_consumption": 9.234516143798828,
  6544. "uid_list_sorted": [
  6545. "_XzMFcHYZEem_kd-7nxt1sg",
  6546. "_Fv7V4EYCEequ74M7usLaPw",
  6547. "_HGpRMEYCEequ74M7usLaPw",
  6548. "_wvLDcEYCEequ74M7usLaPw",
  6549. "_zQ29EEYCEequ74M7usLaPw",
  6550. "_AdR7EEYDEequ74M7usLaPw",
  6551. "_CBaAQEYDEequ74M7usLaPw"
  6552. ]
  6553. }
  6554. ],
  6555. "unittest_information": {
  6556. "Version": "19140f198948fc7dd014a1ac1cd02dcf"
  6557. }
  6558. }