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 461KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069
  1. {
  2. "coverage_information": [
  3. {
  4. "branch_coverage": 94.78999999999999,
  5. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media",
  6. "files": [
  7. {
  8. "branch_coverage": 94.78999999999999,
  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": 94.78999999999999,
  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": 94.78999999999999,
  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": 94.78999999999999,
  558. "filepath": "/user_data/data/dirk/prj/unittest/media/pylibs/media/metadata.py",
  559. "fragments": [
  560. {
  561. "coverage_state": "covered",
  562. "end": 7,
  563. "start": 1
  564. },
  565. {
  566. "coverage_state": "clean",
  567. "end": 9,
  568. "start": 8
  569. },
  570. {
  571. "coverage_state": "covered",
  572. "end": 10,
  573. "start": 10
  574. },
  575. {
  576. "coverage_state": "clean",
  577. "end": 12,
  578. "start": 11
  579. },
  580. {
  581. "coverage_state": "covered",
  582. "end": 14,
  583. "start": 13
  584. },
  585. {
  586. "coverage_state": "clean",
  587. "end": 16,
  588. "start": 15
  589. },
  590. {
  591. "coverage_state": "covered",
  592. "end": 33,
  593. "start": 17
  594. },
  595. {
  596. "coverage_state": "clean",
  597. "end": 35,
  598. "start": 34
  599. },
  600. {
  601. "coverage_state": "covered",
  602. "end": 45,
  603. "start": 36
  604. },
  605. {
  606. "coverage_state": "clean",
  607. "end": 47,
  608. "start": 46
  609. },
  610. {
  611. "coverage_state": "covered",
  612. "end": 49,
  613. "start": 48
  614. },
  615. {
  616. "coverage_state": "clean",
  617. "end": 51,
  618. "start": 50
  619. },
  620. {
  621. "coverage_state": "covered",
  622. "end": 53,
  623. "start": 52
  624. },
  625. {
  626. "coverage_state": "clean",
  627. "end": 54,
  628. "start": 54
  629. },
  630. {
  631. "coverage_state": "covered",
  632. "end": 58,
  633. "start": 55
  634. },
  635. {
  636. "coverage_state": "clean",
  637. "end": 59,
  638. "start": 59
  639. },
  640. {
  641. "coverage_state": "covered",
  642. "end": 62,
  643. "start": 60
  644. },
  645. {
  646. "coverage_state": "clean",
  647. "end": 63,
  648. "start": 63
  649. },
  650. {
  651. "coverage_state": "covered",
  652. "end": 65,
  653. "start": 64
  654. },
  655. {
  656. "coverage_state": "clean",
  657. "end": 66,
  658. "start": 66
  659. },
  660. {
  661. "coverage_state": "covered",
  662. "end": 68,
  663. "start": 67
  664. },
  665. {
  666. "coverage_state": "clean",
  667. "end": 69,
  668. "start": 69
  669. },
  670. {
  671. "coverage_state": "covered",
  672. "end": 72,
  673. "start": 70
  674. },
  675. {
  676. "coverage_state": "clean",
  677. "end": 74,
  678. "start": 73
  679. },
  680. {
  681. "coverage_state": "covered",
  682. "end": 77,
  683. "start": 75
  684. },
  685. {
  686. "coverage_state": "clean",
  687. "end": 78,
  688. "start": 78
  689. },
  690. {
  691. "coverage_state": "covered",
  692. "end": 80,
  693. "start": 79
  694. },
  695. {
  696. "coverage_state": "clean",
  697. "end": 81,
  698. "start": 81
  699. },
  700. {
  701. "coverage_state": "covered",
  702. "end": 86,
  703. "start": 82
  704. },
  705. {
  706. "coverage_state": "uncovered",
  707. "end": 89,
  708. "start": 87
  709. },
  710. {
  711. "coverage_state": "clean",
  712. "end": 90,
  713. "start": 90
  714. },
  715. {
  716. "coverage_state": "covered",
  717. "end": 96,
  718. "start": 91
  719. },
  720. {
  721. "coverage_state": "clean",
  722. "end": 97,
  723. "start": 97
  724. },
  725. {
  726. "coverage_state": "covered",
  727. "end": 104,
  728. "start": 98
  729. },
  730. {
  731. "coverage_state": "clean",
  732. "end": 106,
  733. "start": 105
  734. },
  735. {
  736. "coverage_state": "covered",
  737. "end": 113,
  738. "start": 107
  739. },
  740. {
  741. "coverage_state": "clean",
  742. "end": 114,
  743. "start": 114
  744. },
  745. {
  746. "coverage_state": "covered",
  747. "end": 115,
  748. "start": 115
  749. },
  750. {
  751. "coverage_state": "clean",
  752. "end": 116,
  753. "start": 116
  754. },
  755. {
  756. "coverage_state": "covered",
  757. "end": 138,
  758. "start": 117
  759. },
  760. {
  761. "coverage_state": "clean",
  762. "end": 141,
  763. "start": 139
  764. },
  765. {
  766. "coverage_state": "covered",
  767. "end": 144,
  768. "start": 142
  769. },
  770. {
  771. "coverage_state": "clean",
  772. "end": 146,
  773. "start": 145
  774. },
  775. {
  776. "coverage_state": "covered",
  777. "end": 156,
  778. "start": 147
  779. },
  780. {
  781. "coverage_state": "clean",
  782. "end": 158,
  783. "start": 157
  784. },
  785. {
  786. "coverage_state": "covered",
  787. "end": 160,
  788. "start": 159
  789. },
  790. {
  791. "coverage_state": "clean",
  792. "end": 172,
  793. "start": 161
  794. },
  795. {
  796. "coverage_state": "covered",
  797. "end": 174,
  798. "start": 173
  799. },
  800. {
  801. "coverage_state": "clean",
  802. "end": 190,
  803. "start": 175
  804. },
  805. {
  806. "coverage_state": "covered",
  807. "end": 202,
  808. "start": 191
  809. },
  810. {
  811. "coverage_state": "clean",
  812. "end": 204,
  813. "start": 203
  814. },
  815. {
  816. "coverage_state": "covered",
  817. "end": 210,
  818. "start": 205
  819. },
  820. {
  821. "coverage_state": "clean",
  822. "end": 212,
  823. "start": 211
  824. },
  825. {
  826. "coverage_state": "covered",
  827. "end": 219,
  828. "start": 213
  829. },
  830. {
  831. "coverage_state": "partially-covered",
  832. "end": 220,
  833. "start": 220
  834. },
  835. {
  836. "coverage_state": "uncovered",
  837. "end": 221,
  838. "start": 221
  839. },
  840. {
  841. "coverage_state": "covered",
  842. "end": 224,
  843. "start": 222
  844. },
  845. {
  846. "coverage_state": "partially-covered",
  847. "end": 225,
  848. "start": 225
  849. },
  850. {
  851. "coverage_state": "uncovered",
  852. "end": 226,
  853. "start": 226
  854. },
  855. {
  856. "coverage_state": "covered",
  857. "end": 234,
  858. "start": 227
  859. },
  860. {
  861. "coverage_state": "clean",
  862. "end": 236,
  863. "start": 235
  864. },
  865. {
  866. "coverage_state": "covered",
  867. "end": 240,
  868. "start": 237
  869. },
  870. {
  871. "coverage_state": "clean",
  872. "end": null,
  873. "start": 241
  874. }
  875. ],
  876. "line_coverage": 97.09,
  877. "name": "media.metadata.py"
  878. }
  879. ],
  880. "line_coverage": 97.28999999999999,
  881. "name": "media"
  882. }
  883. ],
  884. "lost_souls": {
  885. "item_list": [],
  886. "testcase_list": []
  887. },
  888. "specification": {
  889. "comment": "Comment",
  890. "item_dict": {
  891. "_AdR7EEYDEequ74M7usLaPw": {
  892. "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.",
  893. "Fitcriterion": "",
  894. "Heading": "Rotate",
  895. "ID": "REQ-6",
  896. "last_change": "2020-02-02T23:47:29.986+01:00",
  897. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  898. "system_uid": "_AdR7EEYDEequ74M7usLaPw",
  899. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  900. },
  901. "_CBaAQEYDEequ74M7usLaPw": {
  902. "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.",
  903. "Heading": "Join",
  904. "ID": "REQ-7",
  905. "last_change": "2020-02-02T23:47:36.859+01:00",
  906. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  907. "system_uid": "_CBaAQEYDEequ74M7usLaPw",
  908. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  909. },
  910. "_DBCGsEYCEequ74M7usLaPw": {
  911. "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",
  912. "Heading": "Image",
  913. "last_change": "2020-02-02T23:46:21.153+01:00",
  914. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  915. "system_uid": "_DBCGsEYCEequ74M7usLaPw",
  916. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  917. },
  918. "_Fv7V4EYCEequ74M7usLaPw": {
  919. "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.",
  920. "Heading": "Load from File",
  921. "ID": "REQ-2",
  922. "last_change": "2020-02-02T23:47:07.229+01:00",
  923. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  924. "system_uid": "_Fv7V4EYCEequ74M7usLaPw",
  925. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  926. },
  927. "_HGpRMEYCEequ74M7usLaPw": {
  928. "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.",
  929. "Heading": "Save",
  930. "ID": "REQ-3",
  931. "last_change": "2020-02-02T23:47:14.322+01:00",
  932. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  933. "system_uid": "_HGpRMEYCEequ74M7usLaPw",
  934. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  935. },
  936. "_MR7eOHYYEem_kd-7nxt1sg": {
  937. "Heading": "Metadata",
  938. "last_change": "2020-01-30T20:32:07.705+01:00",
  939. "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg",
  940. "system_uid": "_MR7eOHYYEem_kd-7nxt1sg",
  941. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  942. },
  943. "_XzMFcHYZEem_kd-7nxt1sg": {
  944. "Description": "A Method shall return the metadata for a given media filename.",
  945. "Fitcriterion": "",
  946. "Heading": "Method to get Metadata",
  947. "ID": "REQ-1",
  948. "ReasonForImplementation": "",
  949. "last_change": "2020-01-30T20:33:27.982+01:00",
  950. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  951. "system_uid": "_XzMFcHYZEem_kd-7nxt1sg",
  952. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  953. },
  954. "_wvLDcEYCEequ74M7usLaPw": {
  955. "Description": "The class {\\tt image} shall have a method {\\tt image\\_data}, which returns the raw data of the modified image.",
  956. "Heading": "Image data",
  957. "ID": "REQ-4",
  958. "last_change": "2020-02-02T23:44:49.710+01:00",
  959. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  960. "system_uid": "_wvLDcEYCEequ74M7usLaPw",
  961. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  962. },
  963. "_zQ29EEYCEequ74M7usLaPw": {
  964. "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.",
  965. "Heading": "Resize",
  966. "ID": "REQ-5",
  967. "last_change": "2020-02-02T23:47:23.563+01:00",
  968. "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg",
  969. "system_uid": "_zQ29EEYCEequ74M7usLaPw",
  970. "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT"
  971. }
  972. },
  973. "titel": "Title",
  974. "uid_list_sorted": [
  975. "_MR7eOHYYEem_kd-7nxt1sg",
  976. "_XzMFcHYZEem_kd-7nxt1sg",
  977. "_DBCGsEYCEequ74M7usLaPw",
  978. "_Fv7V4EYCEequ74M7usLaPw",
  979. "_HGpRMEYCEequ74M7usLaPw",
  980. "_wvLDcEYCEequ74M7usLaPw",
  981. "_zQ29EEYCEequ74M7usLaPw",
  982. "_AdR7EEYDEequ74M7usLaPw",
  983. "_CBaAQEYDEequ74M7usLaPw"
  984. ]
  985. },
  986. "system_information": {
  987. "Architecture": "64bit",
  988. "Distribution": "Linux Mint 20 ulyana",
  989. "Hostname": "ahorn",
  990. "Kernel": "5.4.0-42-generic (#46-Ubuntu SMP Fri Jul 10 00:24:02 UTC 2020)",
  991. "Machine": "x86_64",
  992. "Path": "/user_data/data/dirk/prj/unittest/media/unittest",
  993. "System": "Linux",
  994. "Username": "dirk"
  995. },
  996. "testobject_information": {
  997. "Dependencies": [],
  998. "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.",
  999. "Name": "media",
  1000. "State": "Released",
  1001. "Supported Interpreters": "python3",
  1002. "Version": "2f1c613a705625b8766637c1c130b6ab"
  1003. },
  1004. "testrun_list": [
  1005. {
  1006. "heading_dict": {
  1007. "_AdR7EEYDEequ74M7usLaPw": "Rotate",
  1008. "_CBaAQEYDEequ74M7usLaPw": "Join",
  1009. "_DBCGsEYCEequ74M7usLaPw": "Image",
  1010. "_Fv7V4EYCEequ74M7usLaPw": "Load from File",
  1011. "_HGpRMEYCEequ74M7usLaPw": "Save",
  1012. "_MR7eOHYYEem_kd-7nxt1sg": "Metadata",
  1013. "_XzMFcHYZEem_kd-7nxt1sg": "Method to get Metadata",
  1014. "_wvLDcEYCEequ74M7usLaPw": "Image data",
  1015. "_zQ29EEYCEequ74M7usLaPw": "Resize"
  1016. },
  1017. "interpreter": "python 3.8.2 (final)",
  1018. "name": "Default Testsession name",
  1019. "number_of_failed_tests": 0,
  1020. "number_of_possibly_failed_tests": 0,
  1021. "number_of_successfull_tests": 7,
  1022. "number_of_tests": 7,
  1023. "testcase_execution_level": 90,
  1024. "testcase_names": {
  1025. "0": "Single Test",
  1026. "10": "Smoke Test (Minumum subset)",
  1027. "50": "Short Test (Subset)",
  1028. "90": "Full Test (all defined tests)"
  1029. },
  1030. "testcases": {
  1031. "_AdR7EEYDEequ74M7usLaPw": {
  1032. "args": null,
  1033. "asctime": "2020-08-29 20:16:25,320",
  1034. "created": 1598724985.320815,
  1035. "exc_info": null,
  1036. "exc_text": null,
  1037. "filename": "__init__.py",
  1038. "funcName": "testrun",
  1039. "levelname": "INFO",
  1040. "levelno": 20,
  1041. "lineno": 35,
  1042. "message": "_AdR7EEYDEequ74M7usLaPw",
  1043. "module": "__init__",
  1044. "moduleLogger": [],
  1045. "msecs": 320.8150863647461,
  1046. "msg": "_AdR7EEYDEequ74M7usLaPw",
  1047. "name": "__tLogger__",
  1048. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  1049. "process": 47545,
  1050. "processName": "MainProcess",
  1051. "relativeCreated": 1646.056890487671,
  1052. "stack_info": null,
  1053. "testcaseLogger": [
  1054. {
  1055. "args": [
  1056. "False",
  1057. "<class 'bool'>"
  1058. ],
  1059. "asctime": "2020-08-29 20:16:25,321",
  1060. "created": 1598724985.3210082,
  1061. "exc_info": null,
  1062. "exc_text": null,
  1063. "filename": "test.py",
  1064. "funcName": "equivalency_chk",
  1065. "levelname": "INFO",
  1066. "levelno": 20,
  1067. "lineno": 142,
  1068. "message": "Returnvalue of rotate method without loading an image is correct (Content False and Type is <class 'bool'>).",
  1069. "module": "test",
  1070. "moduleLogger": [
  1071. {
  1072. "args": [],
  1073. "asctime": "2020-08-29 20:16:25,320",
  1074. "created": 1598724985.3208919,
  1075. "exc_info": null,
  1076. "exc_text": null,
  1077. "filename": "__init__.py",
  1078. "funcName": "rotate_by_orientation",
  1079. "levelname": "WARNING",
  1080. "levelno": 30,
  1081. "lineno": 149,
  1082. "message": "No image available, rotation not possible",
  1083. "module": "__init__",
  1084. "msecs": 320.8918571472168,
  1085. "msg": "No image available, rotation not possible",
  1086. "name": "MEDIA",
  1087. "pathname": "src/media/__init__.py",
  1088. "process": 47545,
  1089. "processName": "MainProcess",
  1090. "relativeCreated": 1646.1336612701416,
  1091. "stack_info": null,
  1092. "thread": 140223083710272,
  1093. "threadName": "MainThread"
  1094. },
  1095. {
  1096. "args": [
  1097. "Returnvalue of rotate method without loading an image",
  1098. "False",
  1099. "<class 'bool'>"
  1100. ],
  1101. "asctime": "2020-08-29 20:16:25,320",
  1102. "created": 1598724985.3209338,
  1103. "exc_info": null,
  1104. "exc_text": null,
  1105. "filename": "test.py",
  1106. "funcName": "__report_result__",
  1107. "levelname": "DEBUG",
  1108. "levelno": 10,
  1109. "lineno": 22,
  1110. "message": "Result (Returnvalue of rotate method without loading an image): False (<class 'bool'>)",
  1111. "module": "test",
  1112. "msecs": 320.9338188171387,
  1113. "msg": "Result (%s): %s (%s)",
  1114. "name": "__unittest__",
  1115. "pathname": "src/unittest/test.py",
  1116. "process": 47545,
  1117. "processName": "MainProcess",
  1118. "relativeCreated": 1646.1756229400635,
  1119. "stack_info": null,
  1120. "thread": 140223083710272,
  1121. "threadName": "MainThread"
  1122. },
  1123. {
  1124. "args": [
  1125. "Returnvalue of rotate method without loading an image",
  1126. "False",
  1127. "<class 'bool'>"
  1128. ],
  1129. "asctime": "2020-08-29 20:16:25,320",
  1130. "created": 1598724985.320971,
  1131. "exc_info": null,
  1132. "exc_text": null,
  1133. "filename": "test.py",
  1134. "funcName": "__report_expectation_equivalency__",
  1135. "levelname": "DEBUG",
  1136. "levelno": 10,
  1137. "lineno": 26,
  1138. "message": "Expectation (Returnvalue of rotate method without loading an image): result = False (<class 'bool'>)",
  1139. "module": "test",
  1140. "msecs": 320.9710121154785,
  1141. "msg": "Expectation (%s): result = %s (%s)",
  1142. "name": "__unittest__",
  1143. "pathname": "src/unittest/test.py",
  1144. "process": 47545,
  1145. "processName": "MainProcess",
  1146. "relativeCreated": 1646.2128162384033,
  1147. "stack_info": null,
  1148. "thread": 140223083710272,
  1149. "threadName": "MainThread"
  1150. }
  1151. ],
  1152. "msecs": 321.00820541381836,
  1153. "msg": "Returnvalue of rotate method without loading an image is correct (Content %s and Type is %s).",
  1154. "name": "__tLogger__",
  1155. "pathname": "src/unittest/test.py",
  1156. "process": 47545,
  1157. "processName": "MainProcess",
  1158. "relativeCreated": 1646.2500095367432,
  1159. "stack_info": null,
  1160. "thread": 140223083710272,
  1161. "threadName": "MainThread",
  1162. "time_consumption": 3.719329833984375e-05
  1163. },
  1164. {
  1165. "args": [
  1166. "False",
  1167. "<class 'bool'>"
  1168. ],
  1169. "asctime": "2020-08-29 20:16:25,442",
  1170. "created": 1598724985.442934,
  1171. "exc_info": null,
  1172. "exc_text": null,
  1173. "filename": "test.py",
  1174. "funcName": "equivalency_chk",
  1175. "levelname": "INFO",
  1176. "levelno": 20,
  1177. "lineno": 142,
  1178. "message": "Returnvalue of rotate method with invalid orientation is correct (Content False and Type is <class 'bool'>).",
  1179. "module": "test",
  1180. "moduleLogger": [
  1181. {
  1182. "args": [
  1183. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1184. ],
  1185. "asctime": "2020-08-29 20:16:25,442",
  1186. "created": 1598724985.4426198,
  1187. "exc_info": null,
  1188. "exc_text": null,
  1189. "filename": "__init__.py",
  1190. "funcName": "load_from_file",
  1191. "levelname": "DEBUG",
  1192. "levelno": 10,
  1193. "lineno": 116,
  1194. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1195. "module": "__init__",
  1196. "msecs": 442.61980056762695,
  1197. "msg": "loading image from %s",
  1198. "name": "MEDIA",
  1199. "pathname": "src/media/__init__.py",
  1200. "process": 47545,
  1201. "processName": "MainProcess",
  1202. "relativeCreated": 1767.8616046905518,
  1203. "stack_info": null,
  1204. "thread": 140223083710272,
  1205. "threadName": "MainThread"
  1206. },
  1207. {
  1208. "args": [
  1209. "17"
  1210. ],
  1211. "asctime": "2020-08-29 20:16:25,442",
  1212. "created": 1598724985.4427528,
  1213. "exc_info": null,
  1214. "exc_text": null,
  1215. "filename": "__init__.py",
  1216. "funcName": "rotate_by_orientation",
  1217. "levelname": "WARNING",
  1218. "levelno": 30,
  1219. "lineno": 168,
  1220. "message": "Orientation 17 unknown for rotation",
  1221. "module": "__init__",
  1222. "msecs": 442.7528381347656,
  1223. "msg": "Orientation %s unknown for rotation",
  1224. "name": "MEDIA",
  1225. "pathname": "src/media/__init__.py",
  1226. "process": 47545,
  1227. "processName": "MainProcess",
  1228. "relativeCreated": 1767.9946422576904,
  1229. "stack_info": null,
  1230. "thread": 140223083710272,
  1231. "threadName": "MainThread"
  1232. },
  1233. {
  1234. "args": [
  1235. "Returnvalue of rotate method with invalid orientation",
  1236. "False",
  1237. "<class 'bool'>"
  1238. ],
  1239. "asctime": "2020-08-29 20:16:25,442",
  1240. "created": 1598724985.4428287,
  1241. "exc_info": null,
  1242. "exc_text": null,
  1243. "filename": "test.py",
  1244. "funcName": "__report_result__",
  1245. "levelname": "DEBUG",
  1246. "levelno": 10,
  1247. "lineno": 22,
  1248. "message": "Result (Returnvalue of rotate method with invalid orientation): False (<class 'bool'>)",
  1249. "module": "test",
  1250. "msecs": 442.8286552429199,
  1251. "msg": "Result (%s): %s (%s)",
  1252. "name": "__unittest__",
  1253. "pathname": "src/unittest/test.py",
  1254. "process": 47545,
  1255. "processName": "MainProcess",
  1256. "relativeCreated": 1768.0704593658447,
  1257. "stack_info": null,
  1258. "thread": 140223083710272,
  1259. "threadName": "MainThread"
  1260. },
  1261. {
  1262. "args": [
  1263. "Returnvalue of rotate method with invalid orientation",
  1264. "False",
  1265. "<class 'bool'>"
  1266. ],
  1267. "asctime": "2020-08-29 20:16:25,442",
  1268. "created": 1598724985.4428835,
  1269. "exc_info": null,
  1270. "exc_text": null,
  1271. "filename": "test.py",
  1272. "funcName": "__report_expectation_equivalency__",
  1273. "levelname": "DEBUG",
  1274. "levelno": 10,
  1275. "lineno": 26,
  1276. "message": "Expectation (Returnvalue of rotate method with invalid orientation): result = False (<class 'bool'>)",
  1277. "module": "test",
  1278. "msecs": 442.8834915161133,
  1279. "msg": "Expectation (%s): result = %s (%s)",
  1280. "name": "__unittest__",
  1281. "pathname": "src/unittest/test.py",
  1282. "process": 47545,
  1283. "processName": "MainProcess",
  1284. "relativeCreated": 1768.125295639038,
  1285. "stack_info": null,
  1286. "thread": 140223083710272,
  1287. "threadName": "MainThread"
  1288. }
  1289. ],
  1290. "msecs": 442.9340362548828,
  1291. "msg": "Returnvalue of rotate method with invalid orientation is correct (Content %s and Type is %s).",
  1292. "name": "__tLogger__",
  1293. "pathname": "src/unittest/test.py",
  1294. "process": 47545,
  1295. "processName": "MainProcess",
  1296. "relativeCreated": 1768.1758403778076,
  1297. "stack_info": null,
  1298. "thread": 140223083710272,
  1299. "threadName": "MainThread",
  1300. "time_consumption": 5.054473876953125e-05
  1301. },
  1302. {
  1303. "args": [
  1304. "False",
  1305. "<class 'bool'>"
  1306. ],
  1307. "asctime": "2020-08-29 20:16:25,540",
  1308. "created": 1598724985.5404568,
  1309. "exc_info": null,
  1310. "exc_text": null,
  1311. "filename": "test.py",
  1312. "funcName": "equivalency_chk",
  1313. "levelname": "INFO",
  1314. "levelno": 20,
  1315. "lineno": 142,
  1316. "message": "Returnvalue of rotate method with no orientation in method call and exif is correct (Content False and Type is <class 'bool'>).",
  1317. "module": "test",
  1318. "moduleLogger": [
  1319. {
  1320. "args": [
  1321. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg'"
  1322. ],
  1323. "asctime": "2020-08-29 20:16:25,536",
  1324. "created": 1598724985.5366435,
  1325. "exc_info": null,
  1326. "exc_text": null,
  1327. "filename": "__init__.py",
  1328. "funcName": "load_from_file",
  1329. "levelname": "DEBUG",
  1330. "levelno": 10,
  1331. "lineno": 116,
  1332. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg'",
  1333. "module": "__init__",
  1334. "msecs": 536.6435050964355,
  1335. "msg": "loading image from %s",
  1336. "name": "MEDIA",
  1337. "pathname": "src/media/__init__.py",
  1338. "process": 47545,
  1339. "processName": "MainProcess",
  1340. "relativeCreated": 1861.8853092193604,
  1341. "stack_info": null,
  1342. "thread": 140223083710272,
  1343. "threadName": "MainThread"
  1344. },
  1345. {
  1346. "args": [
  1347. "Returnvalue of rotate method with no orientation in method call and exif",
  1348. "False",
  1349. "<class 'bool'>"
  1350. ],
  1351. "asctime": "2020-08-29 20:16:25,540",
  1352. "created": 1598724985.5403244,
  1353. "exc_info": null,
  1354. "exc_text": null,
  1355. "filename": "test.py",
  1356. "funcName": "__report_result__",
  1357. "levelname": "DEBUG",
  1358. "levelno": 10,
  1359. "lineno": 22,
  1360. "message": "Result (Returnvalue of rotate method with no orientation in method call and exif): False (<class 'bool'>)",
  1361. "module": "test",
  1362. "msecs": 540.3244495391846,
  1363. "msg": "Result (%s): %s (%s)",
  1364. "name": "__unittest__",
  1365. "pathname": "src/unittest/test.py",
  1366. "process": 47545,
  1367. "processName": "MainProcess",
  1368. "relativeCreated": 1865.5662536621094,
  1369. "stack_info": null,
  1370. "thread": 140223083710272,
  1371. "threadName": "MainThread"
  1372. },
  1373. {
  1374. "args": [
  1375. "Returnvalue of rotate method with no orientation in method call and exif",
  1376. "False",
  1377. "<class 'bool'>"
  1378. ],
  1379. "asctime": "2020-08-29 20:16:25,540",
  1380. "created": 1598724985.54041,
  1381. "exc_info": null,
  1382. "exc_text": null,
  1383. "filename": "test.py",
  1384. "funcName": "__report_expectation_equivalency__",
  1385. "levelname": "DEBUG",
  1386. "levelno": 10,
  1387. "lineno": 26,
  1388. "message": "Expectation (Returnvalue of rotate method with no orientation in method call and exif): result = False (<class 'bool'>)",
  1389. "module": "test",
  1390. "msecs": 540.410041809082,
  1391. "msg": "Expectation (%s): result = %s (%s)",
  1392. "name": "__unittest__",
  1393. "pathname": "src/unittest/test.py",
  1394. "process": 47545,
  1395. "processName": "MainProcess",
  1396. "relativeCreated": 1865.6518459320068,
  1397. "stack_info": null,
  1398. "thread": 140223083710272,
  1399. "threadName": "MainThread"
  1400. }
  1401. ],
  1402. "msecs": 540.4567718505859,
  1403. "msg": "Returnvalue of rotate method with no orientation in method call and exif is correct (Content %s and Type is %s).",
  1404. "name": "__tLogger__",
  1405. "pathname": "src/unittest/test.py",
  1406. "process": 47545,
  1407. "processName": "MainProcess",
  1408. "relativeCreated": 1865.6985759735107,
  1409. "stack_info": null,
  1410. "thread": 140223083710272,
  1411. "threadName": "MainThread",
  1412. "time_consumption": 4.673004150390625e-05
  1413. },
  1414. {
  1415. "args": [
  1416. "True",
  1417. "<class 'bool'>"
  1418. ],
  1419. "asctime": "2020-08-29 20:16:25,767",
  1420. "created": 1598724985.7673264,
  1421. "exc_info": null,
  1422. "exc_text": null,
  1423. "filename": "test.py",
  1424. "funcName": "equivalency_chk",
  1425. "levelname": "INFO",
  1426. "levelno": 20,
  1427. "lineno": 142,
  1428. "message": "Filecompare for rotated_image_none.jpg is correct (Content True and Type is <class 'bool'>).",
  1429. "module": "test",
  1430. "moduleLogger": [
  1431. {
  1432. "args": [
  1433. "None"
  1434. ],
  1435. "asctime": "2020-08-29 20:16:25,540",
  1436. "created": 1598724985.5405388,
  1437. "exc_info": null,
  1438. "exc_text": null,
  1439. "filename": "test_image.py",
  1440. "funcName": "rotate_by_orientation",
  1441. "levelname": "DEBUG",
  1442. "levelno": 10,
  1443. "lineno": 78,
  1444. "message": "Rotate with orientation None",
  1445. "module": "test_image",
  1446. "msecs": 540.5387878417969,
  1447. "msg": "Rotate with orientation %s",
  1448. "name": "__unittest__",
  1449. "pathname": "src/tests/test_image.py",
  1450. "process": 47545,
  1451. "processName": "MainProcess",
  1452. "relativeCreated": 1865.7805919647217,
  1453. "stack_info": null,
  1454. "thread": 140223083710272,
  1455. "threadName": "MainThread"
  1456. },
  1457. {
  1458. "args": [
  1459. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1460. ],
  1461. "asctime": "2020-08-29 20:16:25,650",
  1462. "created": 1598724985.6503398,
  1463. "exc_info": null,
  1464. "exc_text": null,
  1465. "filename": "__init__.py",
  1466. "funcName": "load_from_file",
  1467. "levelname": "DEBUG",
  1468. "levelno": 10,
  1469. "lineno": 116,
  1470. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1471. "module": "__init__",
  1472. "msecs": 650.3398418426514,
  1473. "msg": "loading image from %s",
  1474. "name": "MEDIA",
  1475. "pathname": "src/media/__init__.py",
  1476. "process": 47545,
  1477. "processName": "MainProcess",
  1478. "relativeCreated": 1975.5816459655762,
  1479. "stack_info": null,
  1480. "thread": 140223083710272,
  1481. "threadName": "MainThread"
  1482. },
  1483. {
  1484. "args": [
  1485. "6"
  1486. ],
  1487. "asctime": "2020-08-29 20:16:25,650",
  1488. "created": 1598724985.6505988,
  1489. "exc_info": null,
  1490. "exc_text": null,
  1491. "filename": "__init__.py",
  1492. "funcName": "rotate_by_orientation",
  1493. "levelname": "DEBUG",
  1494. "levelno": 10,
  1495. "lineno": 156,
  1496. "message": "No orientation given, orientation 6 extract from exif data",
  1497. "module": "__init__",
  1498. "msecs": 650.5987644195557,
  1499. "msg": "No orientation given, orientation %s extract from exif data",
  1500. "name": "MEDIA",
  1501. "pathname": "src/media/__init__.py",
  1502. "process": 47545,
  1503. "processName": "MainProcess",
  1504. "relativeCreated": 1975.8405685424805,
  1505. "stack_info": null,
  1506. "thread": 140223083710272,
  1507. "threadName": "MainThread"
  1508. },
  1509. {
  1510. "args": [
  1511. 270
  1512. ],
  1513. "asctime": "2020-08-29 20:16:25,650",
  1514. "created": 1598724985.6506739,
  1515. "exc_info": null,
  1516. "exc_text": null,
  1517. "filename": "__init__.py",
  1518. "funcName": "rotate_by_orientation",
  1519. "levelname": "DEBUG",
  1520. "levelno": 10,
  1521. "lineno": 170,
  1522. "message": "Rotating picture by 270 (deg)",
  1523. "module": "__init__",
  1524. "msecs": 650.6738662719727,
  1525. "msg": "Rotating picture by %d (deg)",
  1526. "name": "MEDIA",
  1527. "pathname": "src/media/__init__.py",
  1528. "process": 47545,
  1529. "processName": "MainProcess",
  1530. "relativeCreated": 1975.9156703948975,
  1531. "stack_info": null,
  1532. "thread": 140223083710272,
  1533. "threadName": "MainThread"
  1534. },
  1535. {
  1536. "args": [
  1537. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_none.jpg'"
  1538. ],
  1539. "asctime": "2020-08-29 20:16:25,675",
  1540. "created": 1598724985.6754732,
  1541. "exc_info": null,
  1542. "exc_text": null,
  1543. "filename": "__init__.py",
  1544. "funcName": "save",
  1545. "levelname": "DEBUG",
  1546. "levelno": 10,
  1547. "lineno": 124,
  1548. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_none.jpg'",
  1549. "module": "__init__",
  1550. "msecs": 675.4732131958008,
  1551. "msg": "Saving image to %s",
  1552. "name": "MEDIA",
  1553. "pathname": "src/media/__init__.py",
  1554. "process": 47545,
  1555. "processName": "MainProcess",
  1556. "relativeCreated": 2000.7150173187256,
  1557. "stack_info": null,
  1558. "thread": 140223083710272,
  1559. "threadName": "MainThread"
  1560. },
  1561. {
  1562. "args": [
  1563. "Filecompare for rotated_image_none.jpg",
  1564. "True",
  1565. "<class 'bool'>"
  1566. ],
  1567. "asctime": "2020-08-29 20:16:25,767",
  1568. "created": 1598724985.7671769,
  1569. "exc_info": null,
  1570. "exc_text": null,
  1571. "filename": "test.py",
  1572. "funcName": "__report_result__",
  1573. "levelname": "DEBUG",
  1574. "levelno": 10,
  1575. "lineno": 22,
  1576. "message": "Result (Filecompare for rotated_image_none.jpg): True (<class 'bool'>)",
  1577. "module": "test",
  1578. "msecs": 767.1768665313721,
  1579. "msg": "Result (%s): %s (%s)",
  1580. "name": "__unittest__",
  1581. "pathname": "src/unittest/test.py",
  1582. "process": 47545,
  1583. "processName": "MainProcess",
  1584. "relativeCreated": 2092.418670654297,
  1585. "stack_info": null,
  1586. "thread": 140223083710272,
  1587. "threadName": "MainThread"
  1588. },
  1589. {
  1590. "args": [
  1591. "Filecompare for rotated_image_none.jpg",
  1592. "True",
  1593. "<class 'bool'>"
  1594. ],
  1595. "asctime": "2020-08-29 20:16:25,767",
  1596. "created": 1598724985.767269,
  1597. "exc_info": null,
  1598. "exc_text": null,
  1599. "filename": "test.py",
  1600. "funcName": "__report_expectation_equivalency__",
  1601. "levelname": "DEBUG",
  1602. "levelno": 10,
  1603. "lineno": 26,
  1604. "message": "Expectation (Filecompare for rotated_image_none.jpg): result = True (<class 'bool'>)",
  1605. "module": "test",
  1606. "msecs": 767.2688961029053,
  1607. "msg": "Expectation (%s): result = %s (%s)",
  1608. "name": "__unittest__",
  1609. "pathname": "src/unittest/test.py",
  1610. "process": 47545,
  1611. "processName": "MainProcess",
  1612. "relativeCreated": 2092.51070022583,
  1613. "stack_info": null,
  1614. "thread": 140223083710272,
  1615. "threadName": "MainThread"
  1616. }
  1617. ],
  1618. "msecs": 767.3263549804688,
  1619. "msg": "Filecompare for rotated_image_none.jpg is correct (Content %s and Type is %s).",
  1620. "name": "__tLogger__",
  1621. "pathname": "src/unittest/test.py",
  1622. "process": 47545,
  1623. "processName": "MainProcess",
  1624. "relativeCreated": 2092.5681591033936,
  1625. "stack_info": null,
  1626. "thread": 140223083710272,
  1627. "threadName": "MainThread",
  1628. "time_consumption": 5.745887756347656e-05
  1629. },
  1630. {
  1631. "args": [
  1632. "True",
  1633. "<class 'bool'>"
  1634. ],
  1635. "asctime": "2020-08-29 20:16:26,017",
  1636. "created": 1598724986.0178902,
  1637. "exc_info": null,
  1638. "exc_text": null,
  1639. "filename": "test.py",
  1640. "funcName": "equivalency_chk",
  1641. "levelname": "INFO",
  1642. "levelno": 20,
  1643. "lineno": 142,
  1644. "message": "Filecompare for rotated_image_6.jpg is correct (Content True and Type is <class 'bool'>).",
  1645. "module": "test",
  1646. "moduleLogger": [
  1647. {
  1648. "args": [
  1649. "6"
  1650. ],
  1651. "asctime": "2020-08-29 20:16:25,767",
  1652. "created": 1598724985.7674189,
  1653. "exc_info": null,
  1654. "exc_text": null,
  1655. "filename": "test_image.py",
  1656. "funcName": "rotate_by_orientation",
  1657. "levelname": "DEBUG",
  1658. "levelno": 10,
  1659. "lineno": 78,
  1660. "message": "Rotate with orientation 6",
  1661. "module": "test_image",
  1662. "msecs": 767.4188613891602,
  1663. "msg": "Rotate with orientation %s",
  1664. "name": "__unittest__",
  1665. "pathname": "src/tests/test_image.py",
  1666. "process": 47545,
  1667. "processName": "MainProcess",
  1668. "relativeCreated": 2092.660665512085,
  1669. "stack_info": null,
  1670. "thread": 140223083710272,
  1671. "threadName": "MainThread"
  1672. },
  1673. {
  1674. "args": [
  1675. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1676. ],
  1677. "asctime": "2020-08-29 20:16:25,897",
  1678. "created": 1598724985.897585,
  1679. "exc_info": null,
  1680. "exc_text": null,
  1681. "filename": "__init__.py",
  1682. "funcName": "load_from_file",
  1683. "levelname": "DEBUG",
  1684. "levelno": 10,
  1685. "lineno": 116,
  1686. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1687. "module": "__init__",
  1688. "msecs": 897.5849151611328,
  1689. "msg": "loading image from %s",
  1690. "name": "MEDIA",
  1691. "pathname": "src/media/__init__.py",
  1692. "process": 47545,
  1693. "processName": "MainProcess",
  1694. "relativeCreated": 2222.8267192840576,
  1695. "stack_info": null,
  1696. "thread": 140223083710272,
  1697. "threadName": "MainThread"
  1698. },
  1699. {
  1700. "args": [
  1701. 270
  1702. ],
  1703. "asctime": "2020-08-29 20:16:25,897",
  1704. "created": 1598724985.8977325,
  1705. "exc_info": null,
  1706. "exc_text": null,
  1707. "filename": "__init__.py",
  1708. "funcName": "rotate_by_orientation",
  1709. "levelname": "DEBUG",
  1710. "levelno": 10,
  1711. "lineno": 170,
  1712. "message": "Rotating picture by 270 (deg)",
  1713. "module": "__init__",
  1714. "msecs": 897.7324962615967,
  1715. "msg": "Rotating picture by %d (deg)",
  1716. "name": "MEDIA",
  1717. "pathname": "src/media/__init__.py",
  1718. "process": 47545,
  1719. "processName": "MainProcess",
  1720. "relativeCreated": 2222.9743003845215,
  1721. "stack_info": null,
  1722. "thread": 140223083710272,
  1723. "threadName": "MainThread"
  1724. },
  1725. {
  1726. "args": [
  1727. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_6.jpg'"
  1728. ],
  1729. "asctime": "2020-08-29 20:16:25,924",
  1730. "created": 1598724985.9245589,
  1731. "exc_info": null,
  1732. "exc_text": null,
  1733. "filename": "__init__.py",
  1734. "funcName": "save",
  1735. "levelname": "DEBUG",
  1736. "levelno": 10,
  1737. "lineno": 124,
  1738. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_6.jpg'",
  1739. "module": "__init__",
  1740. "msecs": 924.5588779449463,
  1741. "msg": "Saving image to %s",
  1742. "name": "MEDIA",
  1743. "pathname": "src/media/__init__.py",
  1744. "process": 47545,
  1745. "processName": "MainProcess",
  1746. "relativeCreated": 2249.800682067871,
  1747. "stack_info": null,
  1748. "thread": 140223083710272,
  1749. "threadName": "MainThread"
  1750. },
  1751. {
  1752. "args": [
  1753. "Filecompare for rotated_image_6.jpg",
  1754. "True",
  1755. "<class 'bool'>"
  1756. ],
  1757. "asctime": "2020-08-29 20:16:26,017",
  1758. "created": 1598724986.017713,
  1759. "exc_info": null,
  1760. "exc_text": null,
  1761. "filename": "test.py",
  1762. "funcName": "__report_result__",
  1763. "levelname": "DEBUG",
  1764. "levelno": 10,
  1765. "lineno": 22,
  1766. "message": "Result (Filecompare for rotated_image_6.jpg): True (<class 'bool'>)",
  1767. "module": "test",
  1768. "msecs": 17.713069915771484,
  1769. "msg": "Result (%s): %s (%s)",
  1770. "name": "__unittest__",
  1771. "pathname": "src/unittest/test.py",
  1772. "process": 47545,
  1773. "processName": "MainProcess",
  1774. "relativeCreated": 2342.9548740386963,
  1775. "stack_info": null,
  1776. "thread": 140223083710272,
  1777. "threadName": "MainThread"
  1778. },
  1779. {
  1780. "args": [
  1781. "Filecompare for rotated_image_6.jpg",
  1782. "True",
  1783. "<class 'bool'>"
  1784. ],
  1785. "asctime": "2020-08-29 20:16:26,017",
  1786. "created": 1598724986.017816,
  1787. "exc_info": null,
  1788. "exc_text": null,
  1789. "filename": "test.py",
  1790. "funcName": "__report_expectation_equivalency__",
  1791. "levelname": "DEBUG",
  1792. "levelno": 10,
  1793. "lineno": 26,
  1794. "message": "Expectation (Filecompare for rotated_image_6.jpg): result = True (<class 'bool'>)",
  1795. "module": "test",
  1796. "msecs": 17.81606674194336,
  1797. "msg": "Expectation (%s): result = %s (%s)",
  1798. "name": "__unittest__",
  1799. "pathname": "src/unittest/test.py",
  1800. "process": 47545,
  1801. "processName": "MainProcess",
  1802. "relativeCreated": 2343.057870864868,
  1803. "stack_info": null,
  1804. "thread": 140223083710272,
  1805. "threadName": "MainThread"
  1806. }
  1807. ],
  1808. "msecs": 17.890214920043945,
  1809. "msg": "Filecompare for rotated_image_6.jpg is correct (Content %s and Type is %s).",
  1810. "name": "__tLogger__",
  1811. "pathname": "src/unittest/test.py",
  1812. "process": 47545,
  1813. "processName": "MainProcess",
  1814. "relativeCreated": 2343.1320190429688,
  1815. "stack_info": null,
  1816. "thread": 140223083710272,
  1817. "threadName": "MainThread",
  1818. "time_consumption": 7.414817810058594e-05
  1819. },
  1820. {
  1821. "args": [
  1822. "True",
  1823. "<class 'bool'>"
  1824. ],
  1825. "asctime": "2020-08-29 20:16:26,253",
  1826. "created": 1598724986.2535079,
  1827. "exc_info": null,
  1828. "exc_text": null,
  1829. "filename": "test.py",
  1830. "funcName": "equivalency_chk",
  1831. "levelname": "INFO",
  1832. "levelno": 20,
  1833. "lineno": 142,
  1834. "message": "Filecompare for rotated_image_8.jpg is correct (Content True and Type is <class 'bool'>).",
  1835. "module": "test",
  1836. "moduleLogger": [
  1837. {
  1838. "args": [
  1839. "8"
  1840. ],
  1841. "asctime": "2020-08-29 20:16:26,017",
  1842. "created": 1598724986.01799,
  1843. "exc_info": null,
  1844. "exc_text": null,
  1845. "filename": "test_image.py",
  1846. "funcName": "rotate_by_orientation",
  1847. "levelname": "DEBUG",
  1848. "levelno": 10,
  1849. "lineno": 78,
  1850. "message": "Rotate with orientation 8",
  1851. "module": "test_image",
  1852. "msecs": 17.9901123046875,
  1853. "msg": "Rotate with orientation %s",
  1854. "name": "__unittest__",
  1855. "pathname": "src/tests/test_image.py",
  1856. "process": 47545,
  1857. "processName": "MainProcess",
  1858. "relativeCreated": 2343.2319164276123,
  1859. "stack_info": null,
  1860. "thread": 140223083710272,
  1861. "threadName": "MainThread"
  1862. },
  1863. {
  1864. "args": [
  1865. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  1866. ],
  1867. "asctime": "2020-08-29 20:16:26,136",
  1868. "created": 1598724986.1362352,
  1869. "exc_info": null,
  1870. "exc_text": null,
  1871. "filename": "__init__.py",
  1872. "funcName": "load_from_file",
  1873. "levelname": "DEBUG",
  1874. "levelno": 10,
  1875. "lineno": 116,
  1876. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  1877. "module": "__init__",
  1878. "msecs": 136.23523712158203,
  1879. "msg": "loading image from %s",
  1880. "name": "MEDIA",
  1881. "pathname": "src/media/__init__.py",
  1882. "process": 47545,
  1883. "processName": "MainProcess",
  1884. "relativeCreated": 2461.477041244507,
  1885. "stack_info": null,
  1886. "thread": 140223083710272,
  1887. "threadName": "MainThread"
  1888. },
  1889. {
  1890. "args": [
  1891. 90
  1892. ],
  1893. "asctime": "2020-08-29 20:16:26,136",
  1894. "created": 1598724986.136369,
  1895. "exc_info": null,
  1896. "exc_text": null,
  1897. "filename": "__init__.py",
  1898. "funcName": "rotate_by_orientation",
  1899. "levelname": "DEBUG",
  1900. "levelno": 10,
  1901. "lineno": 170,
  1902. "message": "Rotating picture by 90 (deg)",
  1903. "module": "__init__",
  1904. "msecs": 136.368989944458,
  1905. "msg": "Rotating picture by %d (deg)",
  1906. "name": "MEDIA",
  1907. "pathname": "src/media/__init__.py",
  1908. "process": 47545,
  1909. "processName": "MainProcess",
  1910. "relativeCreated": 2461.610794067383,
  1911. "stack_info": null,
  1912. "thread": 140223083710272,
  1913. "threadName": "MainThread"
  1914. },
  1915. {
  1916. "args": [
  1917. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_8.jpg'"
  1918. ],
  1919. "asctime": "2020-08-29 20:16:26,161",
  1920. "created": 1598724986.1614232,
  1921. "exc_info": null,
  1922. "exc_text": null,
  1923. "filename": "__init__.py",
  1924. "funcName": "save",
  1925. "levelname": "DEBUG",
  1926. "levelno": 10,
  1927. "lineno": 124,
  1928. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_8.jpg'",
  1929. "module": "__init__",
  1930. "msecs": 161.4232063293457,
  1931. "msg": "Saving image to %s",
  1932. "name": "MEDIA",
  1933. "pathname": "src/media/__init__.py",
  1934. "process": 47545,
  1935. "processName": "MainProcess",
  1936. "relativeCreated": 2486.6650104522705,
  1937. "stack_info": null,
  1938. "thread": 140223083710272,
  1939. "threadName": "MainThread"
  1940. },
  1941. {
  1942. "args": [
  1943. "Filecompare for rotated_image_8.jpg",
  1944. "True",
  1945. "<class 'bool'>"
  1946. ],
  1947. "asctime": "2020-08-29 20:16:26,253",
  1948. "created": 1598724986.253373,
  1949. "exc_info": null,
  1950. "exc_text": null,
  1951. "filename": "test.py",
  1952. "funcName": "__report_result__",
  1953. "levelname": "DEBUG",
  1954. "levelno": 10,
  1955. "lineno": 22,
  1956. "message": "Result (Filecompare for rotated_image_8.jpg): True (<class 'bool'>)",
  1957. "module": "test",
  1958. "msecs": 253.3729076385498,
  1959. "msg": "Result (%s): %s (%s)",
  1960. "name": "__unittest__",
  1961. "pathname": "src/unittest/test.py",
  1962. "process": 47545,
  1963. "processName": "MainProcess",
  1964. "relativeCreated": 2578.6147117614746,
  1965. "stack_info": null,
  1966. "thread": 140223083710272,
  1967. "threadName": "MainThread"
  1968. },
  1969. {
  1970. "args": [
  1971. "Filecompare for rotated_image_8.jpg",
  1972. "True",
  1973. "<class 'bool'>"
  1974. ],
  1975. "asctime": "2020-08-29 20:16:26,253",
  1976. "created": 1598724986.253462,
  1977. "exc_info": null,
  1978. "exc_text": null,
  1979. "filename": "test.py",
  1980. "funcName": "__report_expectation_equivalency__",
  1981. "levelname": "DEBUG",
  1982. "levelno": 10,
  1983. "lineno": 26,
  1984. "message": "Expectation (Filecompare for rotated_image_8.jpg): result = True (<class 'bool'>)",
  1985. "module": "test",
  1986. "msecs": 253.4620761871338,
  1987. "msg": "Expectation (%s): result = %s (%s)",
  1988. "name": "__unittest__",
  1989. "pathname": "src/unittest/test.py",
  1990. "process": 47545,
  1991. "processName": "MainProcess",
  1992. "relativeCreated": 2578.7038803100586,
  1993. "stack_info": null,
  1994. "thread": 140223083710272,
  1995. "threadName": "MainThread"
  1996. }
  1997. ],
  1998. "msecs": 253.5078525543213,
  1999. "msg": "Filecompare for rotated_image_8.jpg is correct (Content %s and Type is %s).",
  2000. "name": "__tLogger__",
  2001. "pathname": "src/unittest/test.py",
  2002. "process": 47545,
  2003. "processName": "MainProcess",
  2004. "relativeCreated": 2578.749656677246,
  2005. "stack_info": null,
  2006. "thread": 140223083710272,
  2007. "threadName": "MainThread",
  2008. "time_consumption": 4.57763671875e-05
  2009. },
  2010. {
  2011. "args": [
  2012. "True",
  2013. "<class 'bool'>"
  2014. ],
  2015. "asctime": "2020-08-29 20:16:26,494",
  2016. "created": 1598724986.4940457,
  2017. "exc_info": null,
  2018. "exc_text": null,
  2019. "filename": "test.py",
  2020. "funcName": "equivalency_chk",
  2021. "levelname": "INFO",
  2022. "levelno": 20,
  2023. "lineno": 142,
  2024. "message": "Filecompare for rotated_image_3.jpg is correct (Content True and Type is <class 'bool'>).",
  2025. "module": "test",
  2026. "moduleLogger": [
  2027. {
  2028. "args": [
  2029. "3"
  2030. ],
  2031. "asctime": "2020-08-29 20:16:26,253",
  2032. "created": 1598724986.2535877,
  2033. "exc_info": null,
  2034. "exc_text": null,
  2035. "filename": "test_image.py",
  2036. "funcName": "rotate_by_orientation",
  2037. "levelname": "DEBUG",
  2038. "levelno": 10,
  2039. "lineno": 78,
  2040. "message": "Rotate with orientation 3",
  2041. "module": "test_image",
  2042. "msecs": 253.5877227783203,
  2043. "msg": "Rotate with orientation %s",
  2044. "name": "__unittest__",
  2045. "pathname": "src/tests/test_image.py",
  2046. "process": 47545,
  2047. "processName": "MainProcess",
  2048. "relativeCreated": 2578.829526901245,
  2049. "stack_info": null,
  2050. "thread": 140223083710272,
  2051. "threadName": "MainThread"
  2052. },
  2053. {
  2054. "args": [
  2055. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2056. ],
  2057. "asctime": "2020-08-29 20:16:26,375",
  2058. "created": 1598724986.3753185,
  2059. "exc_info": null,
  2060. "exc_text": null,
  2061. "filename": "__init__.py",
  2062. "funcName": "load_from_file",
  2063. "levelname": "DEBUG",
  2064. "levelno": 10,
  2065. "lineno": 116,
  2066. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2067. "module": "__init__",
  2068. "msecs": 375.3185272216797,
  2069. "msg": "loading image from %s",
  2070. "name": "MEDIA",
  2071. "pathname": "src/media/__init__.py",
  2072. "process": 47545,
  2073. "processName": "MainProcess",
  2074. "relativeCreated": 2700.5603313446045,
  2075. "stack_info": null,
  2076. "thread": 140223083710272,
  2077. "threadName": "MainThread"
  2078. },
  2079. {
  2080. "args": [
  2081. 180
  2082. ],
  2083. "asctime": "2020-08-29 20:16:26,375",
  2084. "created": 1598724986.3754554,
  2085. "exc_info": null,
  2086. "exc_text": null,
  2087. "filename": "__init__.py",
  2088. "funcName": "rotate_by_orientation",
  2089. "levelname": "DEBUG",
  2090. "levelno": 10,
  2091. "lineno": 170,
  2092. "message": "Rotating picture by 180 (deg)",
  2093. "module": "__init__",
  2094. "msecs": 375.455379486084,
  2095. "msg": "Rotating picture by %d (deg)",
  2096. "name": "MEDIA",
  2097. "pathname": "src/media/__init__.py",
  2098. "process": 47545,
  2099. "processName": "MainProcess",
  2100. "relativeCreated": 2700.697183609009,
  2101. "stack_info": null,
  2102. "thread": 140223083710272,
  2103. "threadName": "MainThread"
  2104. },
  2105. {
  2106. "args": [
  2107. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_3.jpg'"
  2108. ],
  2109. "asctime": "2020-08-29 20:16:26,395",
  2110. "created": 1598724986.3958564,
  2111. "exc_info": null,
  2112. "exc_text": null,
  2113. "filename": "__init__.py",
  2114. "funcName": "save",
  2115. "levelname": "DEBUG",
  2116. "levelno": 10,
  2117. "lineno": 124,
  2118. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/rotated_image_3.jpg'",
  2119. "module": "__init__",
  2120. "msecs": 395.8563804626465,
  2121. "msg": "Saving image to %s",
  2122. "name": "MEDIA",
  2123. "pathname": "src/media/__init__.py",
  2124. "process": 47545,
  2125. "processName": "MainProcess",
  2126. "relativeCreated": 2721.0981845855713,
  2127. "stack_info": null,
  2128. "thread": 140223083710272,
  2129. "threadName": "MainThread"
  2130. },
  2131. {
  2132. "args": [
  2133. "Filecompare for rotated_image_3.jpg",
  2134. "True",
  2135. "<class 'bool'>"
  2136. ],
  2137. "asctime": "2020-08-29 20:16:26,493",
  2138. "created": 1598724986.493905,
  2139. "exc_info": null,
  2140. "exc_text": null,
  2141. "filename": "test.py",
  2142. "funcName": "__report_result__",
  2143. "levelname": "DEBUG",
  2144. "levelno": 10,
  2145. "lineno": 22,
  2146. "message": "Result (Filecompare for rotated_image_3.jpg): True (<class 'bool'>)",
  2147. "module": "test",
  2148. "msecs": 493.90506744384766,
  2149. "msg": "Result (%s): %s (%s)",
  2150. "name": "__unittest__",
  2151. "pathname": "src/unittest/test.py",
  2152. "process": 47545,
  2153. "processName": "MainProcess",
  2154. "relativeCreated": 2819.1468715667725,
  2155. "stack_info": null,
  2156. "thread": 140223083710272,
  2157. "threadName": "MainThread"
  2158. },
  2159. {
  2160. "args": [
  2161. "Filecompare for rotated_image_3.jpg",
  2162. "True",
  2163. "<class 'bool'>"
  2164. ],
  2165. "asctime": "2020-08-29 20:16:26,493",
  2166. "created": 1598724986.4939976,
  2167. "exc_info": null,
  2168. "exc_text": null,
  2169. "filename": "test.py",
  2170. "funcName": "__report_expectation_equivalency__",
  2171. "levelname": "DEBUG",
  2172. "levelno": 10,
  2173. "lineno": 26,
  2174. "message": "Expectation (Filecompare for rotated_image_3.jpg): result = True (<class 'bool'>)",
  2175. "module": "test",
  2176. "msecs": 493.99757385253906,
  2177. "msg": "Expectation (%s): result = %s (%s)",
  2178. "name": "__unittest__",
  2179. "pathname": "src/unittest/test.py",
  2180. "process": 47545,
  2181. "processName": "MainProcess",
  2182. "relativeCreated": 2819.239377975464,
  2183. "stack_info": null,
  2184. "thread": 140223083710272,
  2185. "threadName": "MainThread"
  2186. }
  2187. ],
  2188. "msecs": 494.0457344055176,
  2189. "msg": "Filecompare for rotated_image_3.jpg is correct (Content %s and Type is %s).",
  2190. "name": "__tLogger__",
  2191. "pathname": "src/unittest/test.py",
  2192. "process": 47545,
  2193. "processName": "MainProcess",
  2194. "relativeCreated": 2819.2875385284424,
  2195. "stack_info": null,
  2196. "thread": 140223083710272,
  2197. "threadName": "MainThread",
  2198. "time_consumption": 4.8160552978515625e-05
  2199. }
  2200. ],
  2201. "thread": 140223083710272,
  2202. "threadName": "MainThread",
  2203. "time_consumption": 1.1732306480407715,
  2204. "time_finished": "2020-08-29 20:16:26,494",
  2205. "time_start": "2020-08-29 20:16:25,320"
  2206. },
  2207. "_CBaAQEYDEequ74M7usLaPw": {
  2208. "args": null,
  2209. "asctime": "2020-08-29 20:16:26,496",
  2210. "created": 1598724986.4964466,
  2211. "exc_info": null,
  2212. "exc_text": null,
  2213. "filename": "__init__.py",
  2214. "funcName": "testrun",
  2215. "levelname": "INFO",
  2216. "levelno": 20,
  2217. "lineno": 36,
  2218. "message": "_CBaAQEYDEequ74M7usLaPw",
  2219. "module": "__init__",
  2220. "moduleLogger": [],
  2221. "msecs": 496.4466094970703,
  2222. "msg": "_CBaAQEYDEequ74M7usLaPw",
  2223. "name": "__tLogger__",
  2224. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  2225. "process": 47545,
  2226. "processName": "MainProcess",
  2227. "relativeCreated": 2821.688413619995,
  2228. "stack_info": null,
  2229. "testcaseLogger": [
  2230. {
  2231. "args": [
  2232. "False",
  2233. "<class 'bool'>"
  2234. ],
  2235. "asctime": "2020-08-29 20:16:26,496",
  2236. "created": 1598724986.4967034,
  2237. "exc_info": null,
  2238. "exc_text": null,
  2239. "filename": "test.py",
  2240. "funcName": "equivalency_chk",
  2241. "levelname": "INFO",
  2242. "levelno": 20,
  2243. "lineno": 142,
  2244. "message": "Returnvalue of join method without loading an image is correct (Content False and Type is <class 'bool'>).",
  2245. "module": "test",
  2246. "moduleLogger": [
  2247. {
  2248. "args": [],
  2249. "asctime": "2020-08-29 20:16:26,496",
  2250. "created": 1598724986.4965696,
  2251. "exc_info": null,
  2252. "exc_text": null,
  2253. "filename": "__init__.py",
  2254. "funcName": "join",
  2255. "levelname": "WARNING",
  2256. "levelno": 30,
  2257. "lineno": 184,
  2258. "message": "No image available, joining not possible",
  2259. "module": "__init__",
  2260. "msecs": 496.5696334838867,
  2261. "msg": "No image available, joining not possible",
  2262. "name": "MEDIA",
  2263. "pathname": "src/media/__init__.py",
  2264. "process": 47545,
  2265. "processName": "MainProcess",
  2266. "relativeCreated": 2821.8114376068115,
  2267. "stack_info": null,
  2268. "thread": 140223083710272,
  2269. "threadName": "MainThread"
  2270. },
  2271. {
  2272. "args": [
  2273. "Returnvalue of join method without loading an image",
  2274. "False",
  2275. "<class 'bool'>"
  2276. ],
  2277. "asctime": "2020-08-29 20:16:26,496",
  2278. "created": 1598724986.4966226,
  2279. "exc_info": null,
  2280. "exc_text": null,
  2281. "filename": "test.py",
  2282. "funcName": "__report_result__",
  2283. "levelname": "DEBUG",
  2284. "levelno": 10,
  2285. "lineno": 22,
  2286. "message": "Result (Returnvalue of join method without loading an image): False (<class 'bool'>)",
  2287. "module": "test",
  2288. "msecs": 496.62256240844727,
  2289. "msg": "Result (%s): %s (%s)",
  2290. "name": "__unittest__",
  2291. "pathname": "src/unittest/test.py",
  2292. "process": 47545,
  2293. "processName": "MainProcess",
  2294. "relativeCreated": 2821.864366531372,
  2295. "stack_info": null,
  2296. "thread": 140223083710272,
  2297. "threadName": "MainThread"
  2298. },
  2299. {
  2300. "args": [
  2301. "Returnvalue of join method without loading an image",
  2302. "False",
  2303. "<class 'bool'>"
  2304. ],
  2305. "asctime": "2020-08-29 20:16:26,496",
  2306. "created": 1598724986.4966648,
  2307. "exc_info": null,
  2308. "exc_text": null,
  2309. "filename": "test.py",
  2310. "funcName": "__report_expectation_equivalency__",
  2311. "levelname": "DEBUG",
  2312. "levelno": 10,
  2313. "lineno": 26,
  2314. "message": "Expectation (Returnvalue of join method without loading an image): result = False (<class 'bool'>)",
  2315. "module": "test",
  2316. "msecs": 496.66476249694824,
  2317. "msg": "Expectation (%s): result = %s (%s)",
  2318. "name": "__unittest__",
  2319. "pathname": "src/unittest/test.py",
  2320. "process": 47545,
  2321. "processName": "MainProcess",
  2322. "relativeCreated": 2821.906566619873,
  2323. "stack_info": null,
  2324. "thread": 140223083710272,
  2325. "threadName": "MainThread"
  2326. }
  2327. ],
  2328. "msecs": 496.7033863067627,
  2329. "msg": "Returnvalue of join method without loading an image is correct (Content %s and Type is %s).",
  2330. "name": "__tLogger__",
  2331. "pathname": "src/unittest/test.py",
  2332. "process": 47545,
  2333. "processName": "MainProcess",
  2334. "relativeCreated": 2821.9451904296875,
  2335. "stack_info": null,
  2336. "thread": 140223083710272,
  2337. "threadName": "MainThread",
  2338. "time_consumption": 3.8623809814453125e-05
  2339. },
  2340. {
  2341. "args": [
  2342. "False",
  2343. "<class 'bool'>"
  2344. ],
  2345. "asctime": "2020-08-29 20:16:26,807",
  2346. "created": 1598724986.807811,
  2347. "exc_info": null,
  2348. "exc_text": null,
  2349. "filename": "test.py",
  2350. "funcName": "equivalency_chk",
  2351. "levelname": "INFO",
  2352. "levelno": 20,
  2353. "lineno": 142,
  2354. "message": "Returnvalue of join method with invalid join position is correct (Content False and Type is <class 'bool'>).",
  2355. "module": "test",
  2356. "moduleLogger": [
  2357. {
  2358. "args": [
  2359. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2360. ],
  2361. "asctime": "2020-08-29 20:16:26,615",
  2362. "created": 1598724986.6151996,
  2363. "exc_info": null,
  2364. "exc_text": null,
  2365. "filename": "__init__.py",
  2366. "funcName": "load_from_file",
  2367. "levelname": "DEBUG",
  2368. "levelno": 10,
  2369. "lineno": 116,
  2370. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2371. "module": "__init__",
  2372. "msecs": 615.1995658874512,
  2373. "msg": "loading image from %s",
  2374. "name": "MEDIA",
  2375. "pathname": "src/media/__init__.py",
  2376. "process": 47545,
  2377. "processName": "MainProcess",
  2378. "relativeCreated": 2940.441370010376,
  2379. "stack_info": null,
  2380. "thread": 140223083710272,
  2381. "threadName": "MainThread"
  2382. },
  2383. {
  2384. "args": [
  2385. 17
  2386. ],
  2387. "asctime": "2020-08-29 20:16:26,807",
  2388. "created": 1598724986.8075213,
  2389. "exc_info": null,
  2390. "exc_text": null,
  2391. "filename": "__init__.py",
  2392. "funcName": "join",
  2393. "levelname": "WARNING",
  2394. "levelno": 30,
  2395. "lineno": 215,
  2396. "message": "Join position value 17 is not supported",
  2397. "module": "__init__",
  2398. "msecs": 807.5213432312012,
  2399. "msg": "Join position value %s is not supported",
  2400. "name": "MEDIA",
  2401. "pathname": "src/media/__init__.py",
  2402. "process": 47545,
  2403. "processName": "MainProcess",
  2404. "relativeCreated": 3132.763147354126,
  2405. "stack_info": null,
  2406. "thread": 140223083710272,
  2407. "threadName": "MainThread"
  2408. },
  2409. {
  2410. "args": [
  2411. "Returnvalue of join method with invalid join position",
  2412. "False",
  2413. "<class 'bool'>"
  2414. ],
  2415. "asctime": "2020-08-29 20:16:26,807",
  2416. "created": 1598724986.8076832,
  2417. "exc_info": null,
  2418. "exc_text": null,
  2419. "filename": "test.py",
  2420. "funcName": "__report_result__",
  2421. "levelname": "DEBUG",
  2422. "levelno": 10,
  2423. "lineno": 22,
  2424. "message": "Result (Returnvalue of join method with invalid join position): False (<class 'bool'>)",
  2425. "module": "test",
  2426. "msecs": 807.6832294464111,
  2427. "msg": "Result (%s): %s (%s)",
  2428. "name": "__unittest__",
  2429. "pathname": "src/unittest/test.py",
  2430. "process": 47545,
  2431. "processName": "MainProcess",
  2432. "relativeCreated": 3132.925033569336,
  2433. "stack_info": null,
  2434. "thread": 140223083710272,
  2435. "threadName": "MainThread"
  2436. },
  2437. {
  2438. "args": [
  2439. "Returnvalue of join method with invalid join position",
  2440. "False",
  2441. "<class 'bool'>"
  2442. ],
  2443. "asctime": "2020-08-29 20:16:26,807",
  2444. "created": 1598724986.8077536,
  2445. "exc_info": null,
  2446. "exc_text": null,
  2447. "filename": "test.py",
  2448. "funcName": "__report_expectation_equivalency__",
  2449. "levelname": "DEBUG",
  2450. "levelno": 10,
  2451. "lineno": 26,
  2452. "message": "Expectation (Returnvalue of join method with invalid join position): result = False (<class 'bool'>)",
  2453. "module": "test",
  2454. "msecs": 807.7535629272461,
  2455. "msg": "Expectation (%s): result = %s (%s)",
  2456. "name": "__unittest__",
  2457. "pathname": "src/unittest/test.py",
  2458. "process": 47545,
  2459. "processName": "MainProcess",
  2460. "relativeCreated": 3132.995367050171,
  2461. "stack_info": null,
  2462. "thread": 140223083710272,
  2463. "threadName": "MainThread"
  2464. }
  2465. ],
  2466. "msecs": 807.8110218048096,
  2467. "msg": "Returnvalue of join method with invalid join position is correct (Content %s and Type is %s).",
  2468. "name": "__tLogger__",
  2469. "pathname": "src/unittest/test.py",
  2470. "process": 47545,
  2471. "processName": "MainProcess",
  2472. "relativeCreated": 3133.0528259277344,
  2473. "stack_info": null,
  2474. "thread": 140223083710272,
  2475. "threadName": "MainThread",
  2476. "time_consumption": 5.745887756347656e-05
  2477. },
  2478. {
  2479. "args": [
  2480. "False",
  2481. "<class 'bool'>"
  2482. ],
  2483. "asctime": "2020-08-29 20:16:26,903",
  2484. "created": 1598724986.9033542,
  2485. "exc_info": null,
  2486. "exc_text": null,
  2487. "filename": "test.py",
  2488. "funcName": "equivalency_chk",
  2489. "levelname": "INFO",
  2490. "levelno": 20,
  2491. "lineno": 142,
  2492. "message": "Returnvalue of join method with unknown join file is correct (Content False and Type is <class 'bool'>).",
  2493. "module": "test",
  2494. "moduleLogger": [
  2495. {
  2496. "args": [
  2497. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2498. ],
  2499. "asctime": "2020-08-29 20:16:26,897",
  2500. "created": 1598724986.8977997,
  2501. "exc_info": null,
  2502. "exc_text": null,
  2503. "filename": "__init__.py",
  2504. "funcName": "load_from_file",
  2505. "levelname": "DEBUG",
  2506. "levelno": 10,
  2507. "lineno": 116,
  2508. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2509. "module": "__init__",
  2510. "msecs": 897.7997303009033,
  2511. "msg": "loading image from %s",
  2512. "name": "MEDIA",
  2513. "pathname": "src/media/__init__.py",
  2514. "process": 47545,
  2515. "processName": "MainProcess",
  2516. "relativeCreated": 3223.041534423828,
  2517. "stack_info": null,
  2518. "thread": 140223083710272,
  2519. "threadName": "MainThread"
  2520. },
  2521. {
  2522. "args": [],
  2523. "asctime": "2020-08-29 20:16:26,903",
  2524. "created": 1598724986.9030898,
  2525. "exc_info": null,
  2526. "exc_text": null,
  2527. "filename": "convert.py",
  2528. "funcName": "get_pil_image",
  2529. "levelname": "WARNING",
  2530. "levelno": 30,
  2531. "lineno": 35,
  2532. "message": "Instance type is not supported: <class 'int'>",
  2533. "module": "convert",
  2534. "msecs": 903.0897617340088,
  2535. "msg": "Instance type is not supported: <class 'int'>",
  2536. "name": "MEDIA",
  2537. "pathname": "src/media/convert.py",
  2538. "process": 47545,
  2539. "processName": "MainProcess",
  2540. "relativeCreated": 3228.3315658569336,
  2541. "stack_info": null,
  2542. "thread": 140223083710272,
  2543. "threadName": "MainThread"
  2544. },
  2545. {
  2546. "args": [
  2547. "None"
  2548. ],
  2549. "asctime": "2020-08-29 20:16:26,903",
  2550. "created": 1598724986.9031827,
  2551. "exc_info": null,
  2552. "exc_text": null,
  2553. "filename": "__init__.py",
  2554. "funcName": "join",
  2555. "levelname": "WARNING",
  2556. "levelno": 30,
  2557. "lineno": 190,
  2558. "message": "Image to be joined is not supported None",
  2559. "module": "__init__",
  2560. "msecs": 903.1827449798584,
  2561. "msg": "Image to be joined is not supported %s",
  2562. "name": "MEDIA",
  2563. "pathname": "src/media/__init__.py",
  2564. "process": 47545,
  2565. "processName": "MainProcess",
  2566. "relativeCreated": 3228.424549102783,
  2567. "stack_info": null,
  2568. "thread": 140223083710272,
  2569. "threadName": "MainThread"
  2570. },
  2571. {
  2572. "args": [
  2573. "Returnvalue of join method with unknown join file",
  2574. "False",
  2575. "<class 'bool'>"
  2576. ],
  2577. "asctime": "2020-08-29 20:16:26,903",
  2578. "created": 1598724986.9032598,
  2579. "exc_info": null,
  2580. "exc_text": null,
  2581. "filename": "test.py",
  2582. "funcName": "__report_result__",
  2583. "levelname": "DEBUG",
  2584. "levelno": 10,
  2585. "lineno": 22,
  2586. "message": "Result (Returnvalue of join method with unknown join file): False (<class 'bool'>)",
  2587. "module": "test",
  2588. "msecs": 903.2597541809082,
  2589. "msg": "Result (%s): %s (%s)",
  2590. "name": "__unittest__",
  2591. "pathname": "src/unittest/test.py",
  2592. "process": 47545,
  2593. "processName": "MainProcess",
  2594. "relativeCreated": 3228.501558303833,
  2595. "stack_info": null,
  2596. "thread": 140223083710272,
  2597. "threadName": "MainThread"
  2598. },
  2599. {
  2600. "args": [
  2601. "Returnvalue of join method with unknown join file",
  2602. "False",
  2603. "<class 'bool'>"
  2604. ],
  2605. "asctime": "2020-08-29 20:16:26,903",
  2606. "created": 1598724986.9033132,
  2607. "exc_info": null,
  2608. "exc_text": null,
  2609. "filename": "test.py",
  2610. "funcName": "__report_expectation_equivalency__",
  2611. "levelname": "DEBUG",
  2612. "levelno": 10,
  2613. "lineno": 26,
  2614. "message": "Expectation (Returnvalue of join method with unknown join file): result = False (<class 'bool'>)",
  2615. "module": "test",
  2616. "msecs": 903.313159942627,
  2617. "msg": "Expectation (%s): result = %s (%s)",
  2618. "name": "__unittest__",
  2619. "pathname": "src/unittest/test.py",
  2620. "process": 47545,
  2621. "processName": "MainProcess",
  2622. "relativeCreated": 3228.5549640655518,
  2623. "stack_info": null,
  2624. "thread": 140223083710272,
  2625. "threadName": "MainThread"
  2626. }
  2627. ],
  2628. "msecs": 903.3541679382324,
  2629. "msg": "Returnvalue of join method with unknown join file is correct (Content %s and Type is %s).",
  2630. "name": "__tLogger__",
  2631. "pathname": "src/unittest/test.py",
  2632. "process": 47545,
  2633. "processName": "MainProcess",
  2634. "relativeCreated": 3228.595972061157,
  2635. "stack_info": null,
  2636. "thread": 140223083710272,
  2637. "threadName": "MainThread",
  2638. "time_consumption": 4.100799560546875e-05
  2639. },
  2640. {
  2641. "args": [
  2642. "True",
  2643. "<class 'bool'>"
  2644. ],
  2645. "asctime": "2020-08-29 20:16:27,299",
  2646. "created": 1598724987.2997453,
  2647. "exc_info": null,
  2648. "exc_text": null,
  2649. "filename": "test.py",
  2650. "funcName": "equivalency_chk",
  2651. "levelname": "INFO",
  2652. "levelno": 20,
  2653. "lineno": 142,
  2654. "message": "Filecompare for joined_image_3.jpg is correct (Content True and Type is <class 'bool'>).",
  2655. "module": "test",
  2656. "moduleLogger": [
  2657. {
  2658. "args": [
  2659. 3
  2660. ],
  2661. "asctime": "2020-08-29 20:16:26,903",
  2662. "created": 1598724986.9034326,
  2663. "exc_info": null,
  2664. "exc_text": null,
  2665. "filename": "test_image.py",
  2666. "funcName": "join",
  2667. "levelname": "DEBUG",
  2668. "levelno": 10,
  2669. "lineno": 108,
  2670. "message": "Join with position 3",
  2671. "module": "test_image",
  2672. "msecs": 903.4326076507568,
  2673. "msg": "Join with position %d",
  2674. "name": "__unittest__",
  2675. "pathname": "src/tests/test_image.py",
  2676. "process": 47545,
  2677. "processName": "MainProcess",
  2678. "relativeCreated": 3228.6744117736816,
  2679. "stack_info": null,
  2680. "thread": 140223083710272,
  2681. "threadName": "MainThread"
  2682. },
  2683. {
  2684. "args": [
  2685. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2686. ],
  2687. "asctime": "2020-08-29 20:16:27,006",
  2688. "created": 1598724987.0061128,
  2689. "exc_info": null,
  2690. "exc_text": null,
  2691. "filename": "__init__.py",
  2692. "funcName": "load_from_file",
  2693. "levelname": "DEBUG",
  2694. "levelno": 10,
  2695. "lineno": 116,
  2696. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2697. "module": "__init__",
  2698. "msecs": 6.112813949584961,
  2699. "msg": "loading image from %s",
  2700. "name": "MEDIA",
  2701. "pathname": "src/media/__init__.py",
  2702. "process": 47545,
  2703. "processName": "MainProcess",
  2704. "relativeCreated": 3331.3546180725098,
  2705. "stack_info": null,
  2706. "thread": 140223083710272,
  2707. "threadName": "MainThread"
  2708. },
  2709. {
  2710. "args": [
  2711. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  2712. ],
  2713. "asctime": "2020-08-29 20:16:27,082",
  2714. "created": 1598724987.0829034,
  2715. "exc_info": null,
  2716. "exc_text": null,
  2717. "filename": "__init__.py",
  2718. "funcName": "load_from_file",
  2719. "levelname": "DEBUG",
  2720. "levelno": 10,
  2721. "lineno": 116,
  2722. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  2723. "module": "__init__",
  2724. "msecs": 82.90338516235352,
  2725. "msg": "loading image from %s",
  2726. "name": "MEDIA",
  2727. "pathname": "src/media/__init__.py",
  2728. "process": 47545,
  2729. "processName": "MainProcess",
  2730. "relativeCreated": 3408.1451892852783,
  2731. "stack_info": null,
  2732. "thread": 140223083710272,
  2733. "threadName": "MainThread"
  2734. },
  2735. {
  2736. "args": [
  2737. 300
  2738. ],
  2739. "asctime": "2020-08-29 20:16:27,083",
  2740. "created": 1598724987.083052,
  2741. "exc_info": null,
  2742. "exc_text": null,
  2743. "filename": "__init__.py",
  2744. "funcName": "resize",
  2745. "levelname": "DEBUG",
  2746. "levelno": 10,
  2747. "lineno": 141,
  2748. "message": "Resizing picture to max 300 pixel in whatever direction",
  2749. "module": "__init__",
  2750. "msecs": 83.05191993713379,
  2751. "msg": "Resizing picture to max %d pixel in whatever direction",
  2752. "name": "MEDIA",
  2753. "pathname": "src/media/__init__.py",
  2754. "process": 47545,
  2755. "processName": "MainProcess",
  2756. "relativeCreated": 3408.2937240600586,
  2757. "stack_info": null,
  2758. "thread": 140223083710272,
  2759. "threadName": "MainThread"
  2760. },
  2761. {
  2762. "args": [],
  2763. "asctime": "2020-08-29 20:16:27,140",
  2764. "created": 1598724987.1407158,
  2765. "exc_info": null,
  2766. "exc_text": null,
  2767. "filename": "__init__.py",
  2768. "funcName": "join",
  2769. "levelname": "DEBUG",
  2770. "levelno": 10,
  2771. "lineno": 218,
  2772. "message": "Joining two images",
  2773. "module": "__init__",
  2774. "msecs": 140.7158374786377,
  2775. "msg": "Joining two images",
  2776. "name": "MEDIA",
  2777. "pathname": "src/media/__init__.py",
  2778. "process": 47545,
  2779. "processName": "MainProcess",
  2780. "relativeCreated": 3465.9576416015625,
  2781. "stack_info": null,
  2782. "thread": 140223083710272,
  2783. "threadName": "MainThread"
  2784. },
  2785. {
  2786. "args": [
  2787. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_3.jpg'"
  2788. ],
  2789. "asctime": "2020-08-29 20:16:27,216",
  2790. "created": 1598724987.216452,
  2791. "exc_info": null,
  2792. "exc_text": null,
  2793. "filename": "__init__.py",
  2794. "funcName": "save",
  2795. "levelname": "DEBUG",
  2796. "levelno": 10,
  2797. "lineno": 124,
  2798. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_3.jpg'",
  2799. "module": "__init__",
  2800. "msecs": 216.45188331604004,
  2801. "msg": "Saving image to %s",
  2802. "name": "MEDIA",
  2803. "pathname": "src/media/__init__.py",
  2804. "process": 47545,
  2805. "processName": "MainProcess",
  2806. "relativeCreated": 3541.693687438965,
  2807. "stack_info": null,
  2808. "thread": 140223083710272,
  2809. "threadName": "MainThread"
  2810. },
  2811. {
  2812. "args": [
  2813. "Filecompare for joined_image_3.jpg",
  2814. "True",
  2815. "<class 'bool'>"
  2816. ],
  2817. "asctime": "2020-08-29 20:16:27,299",
  2818. "created": 1598724987.2995386,
  2819. "exc_info": null,
  2820. "exc_text": null,
  2821. "filename": "test.py",
  2822. "funcName": "__report_result__",
  2823. "levelname": "DEBUG",
  2824. "levelno": 10,
  2825. "lineno": 22,
  2826. "message": "Result (Filecompare for joined_image_3.jpg): True (<class 'bool'>)",
  2827. "module": "test",
  2828. "msecs": 299.53861236572266,
  2829. "msg": "Result (%s): %s (%s)",
  2830. "name": "__unittest__",
  2831. "pathname": "src/unittest/test.py",
  2832. "process": 47545,
  2833. "processName": "MainProcess",
  2834. "relativeCreated": 3624.7804164886475,
  2835. "stack_info": null,
  2836. "thread": 140223083710272,
  2837. "threadName": "MainThread"
  2838. },
  2839. {
  2840. "args": [
  2841. "Filecompare for joined_image_3.jpg",
  2842. "True",
  2843. "<class 'bool'>"
  2844. ],
  2845. "asctime": "2020-08-29 20:16:27,299",
  2846. "created": 1598724987.299669,
  2847. "exc_info": null,
  2848. "exc_text": null,
  2849. "filename": "test.py",
  2850. "funcName": "__report_expectation_equivalency__",
  2851. "levelname": "DEBUG",
  2852. "levelno": 10,
  2853. "lineno": 26,
  2854. "message": "Expectation (Filecompare for joined_image_3.jpg): result = True (<class 'bool'>)",
  2855. "module": "test",
  2856. "msecs": 299.6690273284912,
  2857. "msg": "Expectation (%s): result = %s (%s)",
  2858. "name": "__unittest__",
  2859. "pathname": "src/unittest/test.py",
  2860. "process": 47545,
  2861. "processName": "MainProcess",
  2862. "relativeCreated": 3624.910831451416,
  2863. "stack_info": null,
  2864. "thread": 140223083710272,
  2865. "threadName": "MainThread"
  2866. }
  2867. ],
  2868. "msecs": 299.7453212738037,
  2869. "msg": "Filecompare for joined_image_3.jpg is correct (Content %s and Type is %s).",
  2870. "name": "__tLogger__",
  2871. "pathname": "src/unittest/test.py",
  2872. "process": 47545,
  2873. "processName": "MainProcess",
  2874. "relativeCreated": 3624.9871253967285,
  2875. "stack_info": null,
  2876. "thread": 140223083710272,
  2877. "threadName": "MainThread",
  2878. "time_consumption": 7.62939453125e-05
  2879. },
  2880. {
  2881. "args": [
  2882. "True",
  2883. "<class 'bool'>"
  2884. ],
  2885. "asctime": "2020-08-29 20:16:27,674",
  2886. "created": 1598724987.6744325,
  2887. "exc_info": null,
  2888. "exc_text": null,
  2889. "filename": "test.py",
  2890. "funcName": "equivalency_chk",
  2891. "levelname": "INFO",
  2892. "levelno": 20,
  2893. "lineno": 142,
  2894. "message": "Filecompare for joined_image_4.jpg is correct (Content True and Type is <class 'bool'>).",
  2895. "module": "test",
  2896. "moduleLogger": [
  2897. {
  2898. "args": [
  2899. 4
  2900. ],
  2901. "asctime": "2020-08-29 20:16:27,299",
  2902. "created": 1598724987.299868,
  2903. "exc_info": null,
  2904. "exc_text": null,
  2905. "filename": "test_image.py",
  2906. "funcName": "join",
  2907. "levelname": "DEBUG",
  2908. "levelno": 10,
  2909. "lineno": 108,
  2910. "message": "Join with position 4",
  2911. "module": "test_image",
  2912. "msecs": 299.868106842041,
  2913. "msg": "Join with position %d",
  2914. "name": "__unittest__",
  2915. "pathname": "src/tests/test_image.py",
  2916. "process": 47545,
  2917. "processName": "MainProcess",
  2918. "relativeCreated": 3625.109910964966,
  2919. "stack_info": null,
  2920. "thread": 140223083710272,
  2921. "threadName": "MainThread"
  2922. },
  2923. {
  2924. "args": [
  2925. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  2926. ],
  2927. "asctime": "2020-08-29 20:16:27,390",
  2928. "created": 1598724987.3901384,
  2929. "exc_info": null,
  2930. "exc_text": null,
  2931. "filename": "__init__.py",
  2932. "funcName": "load_from_file",
  2933. "levelname": "DEBUG",
  2934. "levelno": 10,
  2935. "lineno": 116,
  2936. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  2937. "module": "__init__",
  2938. "msecs": 390.1383876800537,
  2939. "msg": "loading image from %s",
  2940. "name": "MEDIA",
  2941. "pathname": "src/media/__init__.py",
  2942. "process": 47545,
  2943. "processName": "MainProcess",
  2944. "relativeCreated": 3715.3801918029785,
  2945. "stack_info": null,
  2946. "thread": 140223083710272,
  2947. "threadName": "MainThread"
  2948. },
  2949. {
  2950. "args": [
  2951. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  2952. ],
  2953. "asctime": "2020-08-29 20:16:27,482",
  2954. "created": 1598724987.4822626,
  2955. "exc_info": null,
  2956. "exc_text": null,
  2957. "filename": "__init__.py",
  2958. "funcName": "load_from_file",
  2959. "levelname": "DEBUG",
  2960. "levelno": 10,
  2961. "lineno": 116,
  2962. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  2963. "module": "__init__",
  2964. "msecs": 482.26261138916016,
  2965. "msg": "loading image from %s",
  2966. "name": "MEDIA",
  2967. "pathname": "src/media/__init__.py",
  2968. "process": 47545,
  2969. "processName": "MainProcess",
  2970. "relativeCreated": 3807.504415512085,
  2971. "stack_info": null,
  2972. "thread": 140223083710272,
  2973. "threadName": "MainThread"
  2974. },
  2975. {
  2976. "args": [
  2977. 300
  2978. ],
  2979. "asctime": "2020-08-29 20:16:27,482",
  2980. "created": 1598724987.4823756,
  2981. "exc_info": null,
  2982. "exc_text": null,
  2983. "filename": "__init__.py",
  2984. "funcName": "resize",
  2985. "levelname": "DEBUG",
  2986. "levelno": 10,
  2987. "lineno": 141,
  2988. "message": "Resizing picture to max 300 pixel in whatever direction",
  2989. "module": "__init__",
  2990. "msecs": 482.3756217956543,
  2991. "msg": "Resizing picture to max %d pixel in whatever direction",
  2992. "name": "MEDIA",
  2993. "pathname": "src/media/__init__.py",
  2994. "process": 47545,
  2995. "processName": "MainProcess",
  2996. "relativeCreated": 3807.617425918579,
  2997. "stack_info": null,
  2998. "thread": 140223083710272,
  2999. "threadName": "MainThread"
  3000. },
  3001. {
  3002. "args": [],
  3003. "asctime": "2020-08-29 20:16:27,516",
  3004. "created": 1598724987.5160103,
  3005. "exc_info": null,
  3006. "exc_text": null,
  3007. "filename": "__init__.py",
  3008. "funcName": "join",
  3009. "levelname": "DEBUG",
  3010. "levelno": 10,
  3011. "lineno": 218,
  3012. "message": "Joining two images",
  3013. "module": "__init__",
  3014. "msecs": 516.0102844238281,
  3015. "msg": "Joining two images",
  3016. "name": "MEDIA",
  3017. "pathname": "src/media/__init__.py",
  3018. "process": 47545,
  3019. "processName": "MainProcess",
  3020. "relativeCreated": 3841.252088546753,
  3021. "stack_info": null,
  3022. "thread": 140223083710272,
  3023. "threadName": "MainThread"
  3024. },
  3025. {
  3026. "args": [
  3027. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_4.jpg'"
  3028. ],
  3029. "asctime": "2020-08-29 20:16:27,591",
  3030. "created": 1598724987.5913615,
  3031. "exc_info": null,
  3032. "exc_text": null,
  3033. "filename": "__init__.py",
  3034. "funcName": "save",
  3035. "levelname": "DEBUG",
  3036. "levelno": 10,
  3037. "lineno": 124,
  3038. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_4.jpg'",
  3039. "module": "__init__",
  3040. "msecs": 591.3615226745605,
  3041. "msg": "Saving image to %s",
  3042. "name": "MEDIA",
  3043. "pathname": "src/media/__init__.py",
  3044. "process": 47545,
  3045. "processName": "MainProcess",
  3046. "relativeCreated": 3916.6033267974854,
  3047. "stack_info": null,
  3048. "thread": 140223083710272,
  3049. "threadName": "MainThread"
  3050. },
  3051. {
  3052. "args": [
  3053. "Filecompare for joined_image_4.jpg",
  3054. "True",
  3055. "<class 'bool'>"
  3056. ],
  3057. "asctime": "2020-08-29 20:16:27,674",
  3058. "created": 1598724987.6742654,
  3059. "exc_info": null,
  3060. "exc_text": null,
  3061. "filename": "test.py",
  3062. "funcName": "__report_result__",
  3063. "levelname": "DEBUG",
  3064. "levelno": 10,
  3065. "lineno": 22,
  3066. "message": "Result (Filecompare for joined_image_4.jpg): True (<class 'bool'>)",
  3067. "module": "test",
  3068. "msecs": 674.2653846740723,
  3069. "msg": "Result (%s): %s (%s)",
  3070. "name": "__unittest__",
  3071. "pathname": "src/unittest/test.py",
  3072. "process": 47545,
  3073. "processName": "MainProcess",
  3074. "relativeCreated": 3999.507188796997,
  3075. "stack_info": null,
  3076. "thread": 140223083710272,
  3077. "threadName": "MainThread"
  3078. },
  3079. {
  3080. "args": [
  3081. "Filecompare for joined_image_4.jpg",
  3082. "True",
  3083. "<class 'bool'>"
  3084. ],
  3085. "asctime": "2020-08-29 20:16:27,674",
  3086. "created": 1598724987.6743677,
  3087. "exc_info": null,
  3088. "exc_text": null,
  3089. "filename": "test.py",
  3090. "funcName": "__report_expectation_equivalency__",
  3091. "levelname": "DEBUG",
  3092. "levelno": 10,
  3093. "lineno": 26,
  3094. "message": "Expectation (Filecompare for joined_image_4.jpg): result = True (<class 'bool'>)",
  3095. "module": "test",
  3096. "msecs": 674.3676662445068,
  3097. "msg": "Expectation (%s): result = %s (%s)",
  3098. "name": "__unittest__",
  3099. "pathname": "src/unittest/test.py",
  3100. "process": 47545,
  3101. "processName": "MainProcess",
  3102. "relativeCreated": 3999.6094703674316,
  3103. "stack_info": null,
  3104. "thread": 140223083710272,
  3105. "threadName": "MainThread"
  3106. }
  3107. ],
  3108. "msecs": 674.4325160980225,
  3109. "msg": "Filecompare for joined_image_4.jpg is correct (Content %s and Type is %s).",
  3110. "name": "__tLogger__",
  3111. "pathname": "src/unittest/test.py",
  3112. "process": 47545,
  3113. "processName": "MainProcess",
  3114. "relativeCreated": 3999.6743202209473,
  3115. "stack_info": null,
  3116. "thread": 140223083710272,
  3117. "threadName": "MainThread",
  3118. "time_consumption": 6.4849853515625e-05
  3119. },
  3120. {
  3121. "args": [
  3122. "True",
  3123. "<class 'bool'>"
  3124. ],
  3125. "asctime": "2020-08-29 20:16:28,057",
  3126. "created": 1598724988.0578537,
  3127. "exc_info": null,
  3128. "exc_text": null,
  3129. "filename": "test.py",
  3130. "funcName": "equivalency_chk",
  3131. "levelname": "INFO",
  3132. "levelno": 20,
  3133. "lineno": 142,
  3134. "message": "Filecompare for joined_image_5.jpg is correct (Content True and Type is <class 'bool'>).",
  3135. "module": "test",
  3136. "moduleLogger": [
  3137. {
  3138. "args": [
  3139. 5
  3140. ],
  3141. "asctime": "2020-08-29 20:16:27,674",
  3142. "created": 1598724987.6745703,
  3143. "exc_info": null,
  3144. "exc_text": null,
  3145. "filename": "test_image.py",
  3146. "funcName": "join",
  3147. "levelname": "DEBUG",
  3148. "levelno": 10,
  3149. "lineno": 108,
  3150. "message": "Join with position 5",
  3151. "module": "test_image",
  3152. "msecs": 674.5703220367432,
  3153. "msg": "Join with position %d",
  3154. "name": "__unittest__",
  3155. "pathname": "src/tests/test_image.py",
  3156. "process": 47545,
  3157. "processName": "MainProcess",
  3158. "relativeCreated": 3999.812126159668,
  3159. "stack_info": null,
  3160. "thread": 140223083710272,
  3161. "threadName": "MainThread"
  3162. },
  3163. {
  3164. "args": [
  3165. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3166. ],
  3167. "asctime": "2020-08-29 20:16:27,766",
  3168. "created": 1598724987.7668204,
  3169. "exc_info": null,
  3170. "exc_text": null,
  3171. "filename": "__init__.py",
  3172. "funcName": "load_from_file",
  3173. "levelname": "DEBUG",
  3174. "levelno": 10,
  3175. "lineno": 116,
  3176. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3177. "module": "__init__",
  3178. "msecs": 766.8204307556152,
  3179. "msg": "loading image from %s",
  3180. "name": "MEDIA",
  3181. "pathname": "src/media/__init__.py",
  3182. "process": 47545,
  3183. "processName": "MainProcess",
  3184. "relativeCreated": 4092.06223487854,
  3185. "stack_info": null,
  3186. "thread": 140223083710272,
  3187. "threadName": "MainThread"
  3188. },
  3189. {
  3190. "args": [
  3191. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3192. ],
  3193. "asctime": "2020-08-29 20:16:27,853",
  3194. "created": 1598724987.8539672,
  3195. "exc_info": null,
  3196. "exc_text": null,
  3197. "filename": "__init__.py",
  3198. "funcName": "load_from_file",
  3199. "levelname": "DEBUG",
  3200. "levelno": 10,
  3201. "lineno": 116,
  3202. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3203. "module": "__init__",
  3204. "msecs": 853.9671897888184,
  3205. "msg": "loading image from %s",
  3206. "name": "MEDIA",
  3207. "pathname": "src/media/__init__.py",
  3208. "process": 47545,
  3209. "processName": "MainProcess",
  3210. "relativeCreated": 4179.208993911743,
  3211. "stack_info": null,
  3212. "thread": 140223083710272,
  3213. "threadName": "MainThread"
  3214. },
  3215. {
  3216. "args": [
  3217. 300
  3218. ],
  3219. "asctime": "2020-08-29 20:16:27,854",
  3220. "created": 1598724987.8540967,
  3221. "exc_info": null,
  3222. "exc_text": null,
  3223. "filename": "__init__.py",
  3224. "funcName": "resize",
  3225. "levelname": "DEBUG",
  3226. "levelno": 10,
  3227. "lineno": 141,
  3228. "message": "Resizing picture to max 300 pixel in whatever direction",
  3229. "module": "__init__",
  3230. "msecs": 854.0966510772705,
  3231. "msg": "Resizing picture to max %d pixel in whatever direction",
  3232. "name": "MEDIA",
  3233. "pathname": "src/media/__init__.py",
  3234. "process": 47545,
  3235. "processName": "MainProcess",
  3236. "relativeCreated": 4179.338455200195,
  3237. "stack_info": null,
  3238. "thread": 140223083710272,
  3239. "threadName": "MainThread"
  3240. },
  3241. {
  3242. "args": [],
  3243. "asctime": "2020-08-29 20:16:27,899",
  3244. "created": 1598724987.8994653,
  3245. "exc_info": null,
  3246. "exc_text": null,
  3247. "filename": "__init__.py",
  3248. "funcName": "join",
  3249. "levelname": "DEBUG",
  3250. "levelno": 10,
  3251. "lineno": 218,
  3252. "message": "Joining two images",
  3253. "module": "__init__",
  3254. "msecs": 899.4653224945068,
  3255. "msg": "Joining two images",
  3256. "name": "MEDIA",
  3257. "pathname": "src/media/__init__.py",
  3258. "process": 47545,
  3259. "processName": "MainProcess",
  3260. "relativeCreated": 4224.707126617432,
  3261. "stack_info": null,
  3262. "thread": 140223083710272,
  3263. "threadName": "MainThread"
  3264. },
  3265. {
  3266. "args": [
  3267. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_5.jpg'"
  3268. ],
  3269. "asctime": "2020-08-29 20:16:27,975",
  3270. "created": 1598724987.9752705,
  3271. "exc_info": null,
  3272. "exc_text": null,
  3273. "filename": "__init__.py",
  3274. "funcName": "save",
  3275. "levelname": "DEBUG",
  3276. "levelno": 10,
  3277. "lineno": 124,
  3278. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_5.jpg'",
  3279. "module": "__init__",
  3280. "msecs": 975.2705097198486,
  3281. "msg": "Saving image to %s",
  3282. "name": "MEDIA",
  3283. "pathname": "src/media/__init__.py",
  3284. "process": 47545,
  3285. "processName": "MainProcess",
  3286. "relativeCreated": 4300.512313842773,
  3287. "stack_info": null,
  3288. "thread": 140223083710272,
  3289. "threadName": "MainThread"
  3290. },
  3291. {
  3292. "args": [
  3293. "Filecompare for joined_image_5.jpg",
  3294. "True",
  3295. "<class 'bool'>"
  3296. ],
  3297. "asctime": "2020-08-29 20:16:28,057",
  3298. "created": 1598724988.057687,
  3299. "exc_info": null,
  3300. "exc_text": null,
  3301. "filename": "test.py",
  3302. "funcName": "__report_result__",
  3303. "levelname": "DEBUG",
  3304. "levelno": 10,
  3305. "lineno": 22,
  3306. "message": "Result (Filecompare for joined_image_5.jpg): True (<class 'bool'>)",
  3307. "module": "test",
  3308. "msecs": 57.68704414367676,
  3309. "msg": "Result (%s): %s (%s)",
  3310. "name": "__unittest__",
  3311. "pathname": "src/unittest/test.py",
  3312. "process": 47545,
  3313. "processName": "MainProcess",
  3314. "relativeCreated": 4382.928848266602,
  3315. "stack_info": null,
  3316. "thread": 140223083710272,
  3317. "threadName": "MainThread"
  3318. },
  3319. {
  3320. "args": [
  3321. "Filecompare for joined_image_5.jpg",
  3322. "True",
  3323. "<class 'bool'>"
  3324. ],
  3325. "asctime": "2020-08-29 20:16:28,057",
  3326. "created": 1598724988.0577872,
  3327. "exc_info": null,
  3328. "exc_text": null,
  3329. "filename": "test.py",
  3330. "funcName": "__report_expectation_equivalency__",
  3331. "levelname": "DEBUG",
  3332. "levelno": 10,
  3333. "lineno": 26,
  3334. "message": "Expectation (Filecompare for joined_image_5.jpg): result = True (<class 'bool'>)",
  3335. "module": "test",
  3336. "msecs": 57.787179946899414,
  3337. "msg": "Expectation (%s): result = %s (%s)",
  3338. "name": "__unittest__",
  3339. "pathname": "src/unittest/test.py",
  3340. "process": 47545,
  3341. "processName": "MainProcess",
  3342. "relativeCreated": 4383.028984069824,
  3343. "stack_info": null,
  3344. "thread": 140223083710272,
  3345. "threadName": "MainThread"
  3346. }
  3347. ],
  3348. "msecs": 57.85369873046875,
  3349. "msg": "Filecompare for joined_image_5.jpg is correct (Content %s and Type is %s).",
  3350. "name": "__tLogger__",
  3351. "pathname": "src/unittest/test.py",
  3352. "process": 47545,
  3353. "processName": "MainProcess",
  3354. "relativeCreated": 4383.095502853394,
  3355. "stack_info": null,
  3356. "thread": 140223083710272,
  3357. "threadName": "MainThread",
  3358. "time_consumption": 6.651878356933594e-05
  3359. },
  3360. {
  3361. "args": [
  3362. "True",
  3363. "<class 'bool'>"
  3364. ],
  3365. "asctime": "2020-08-29 20:16:28,443",
  3366. "created": 1598724988.4436793,
  3367. "exc_info": null,
  3368. "exc_text": null,
  3369. "filename": "test.py",
  3370. "funcName": "equivalency_chk",
  3371. "levelname": "INFO",
  3372. "levelno": 20,
  3373. "lineno": 142,
  3374. "message": "Filecompare for joined_image_1.jpg is correct (Content True and Type is <class 'bool'>).",
  3375. "module": "test",
  3376. "moduleLogger": [
  3377. {
  3378. "args": [
  3379. 1
  3380. ],
  3381. "asctime": "2020-08-29 20:16:28,057",
  3382. "created": 1598724988.0579515,
  3383. "exc_info": null,
  3384. "exc_text": null,
  3385. "filename": "test_image.py",
  3386. "funcName": "join",
  3387. "levelname": "DEBUG",
  3388. "levelno": 10,
  3389. "lineno": 108,
  3390. "message": "Join with position 1",
  3391. "module": "test_image",
  3392. "msecs": 57.95145034790039,
  3393. "msg": "Join with position %d",
  3394. "name": "__unittest__",
  3395. "pathname": "src/tests/test_image.py",
  3396. "process": 47545,
  3397. "processName": "MainProcess",
  3398. "relativeCreated": 4383.193254470825,
  3399. "stack_info": null,
  3400. "thread": 140223083710272,
  3401. "threadName": "MainThread"
  3402. },
  3403. {
  3404. "args": [
  3405. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3406. ],
  3407. "asctime": "2020-08-29 20:16:28,147",
  3408. "created": 1598724988.1474526,
  3409. "exc_info": null,
  3410. "exc_text": null,
  3411. "filename": "__init__.py",
  3412. "funcName": "load_from_file",
  3413. "levelname": "DEBUG",
  3414. "levelno": 10,
  3415. "lineno": 116,
  3416. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3417. "module": "__init__",
  3418. "msecs": 147.45259284973145,
  3419. "msg": "loading image from %s",
  3420. "name": "MEDIA",
  3421. "pathname": "src/media/__init__.py",
  3422. "process": 47545,
  3423. "processName": "MainProcess",
  3424. "relativeCreated": 4472.694396972656,
  3425. "stack_info": null,
  3426. "thread": 140223083710272,
  3427. "threadName": "MainThread"
  3428. },
  3429. {
  3430. "args": [
  3431. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3432. ],
  3433. "asctime": "2020-08-29 20:16:28,239",
  3434. "created": 1598724988.2398481,
  3435. "exc_info": null,
  3436. "exc_text": null,
  3437. "filename": "__init__.py",
  3438. "funcName": "load_from_file",
  3439. "levelname": "DEBUG",
  3440. "levelno": 10,
  3441. "lineno": 116,
  3442. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3443. "module": "__init__",
  3444. "msecs": 239.84813690185547,
  3445. "msg": "loading image from %s",
  3446. "name": "MEDIA",
  3447. "pathname": "src/media/__init__.py",
  3448. "process": 47545,
  3449. "processName": "MainProcess",
  3450. "relativeCreated": 4565.08994102478,
  3451. "stack_info": null,
  3452. "thread": 140223083710272,
  3453. "threadName": "MainThread"
  3454. },
  3455. {
  3456. "args": [
  3457. 300
  3458. ],
  3459. "asctime": "2020-08-29 20:16:28,239",
  3460. "created": 1598724988.2399755,
  3461. "exc_info": null,
  3462. "exc_text": null,
  3463. "filename": "__init__.py",
  3464. "funcName": "resize",
  3465. "levelname": "DEBUG",
  3466. "levelno": 10,
  3467. "lineno": 141,
  3468. "message": "Resizing picture to max 300 pixel in whatever direction",
  3469. "module": "__init__",
  3470. "msecs": 239.9754524230957,
  3471. "msg": "Resizing picture to max %d pixel in whatever direction",
  3472. "name": "MEDIA",
  3473. "pathname": "src/media/__init__.py",
  3474. "process": 47545,
  3475. "processName": "MainProcess",
  3476. "relativeCreated": 4565.2172565460205,
  3477. "stack_info": null,
  3478. "thread": 140223083710272,
  3479. "threadName": "MainThread"
  3480. },
  3481. {
  3482. "args": [],
  3483. "asctime": "2020-08-29 20:16:28,273",
  3484. "created": 1598724988.2737303,
  3485. "exc_info": null,
  3486. "exc_text": null,
  3487. "filename": "__init__.py",
  3488. "funcName": "join",
  3489. "levelname": "DEBUG",
  3490. "levelno": 10,
  3491. "lineno": 218,
  3492. "message": "Joining two images",
  3493. "module": "__init__",
  3494. "msecs": 273.7302780151367,
  3495. "msg": "Joining two images",
  3496. "name": "MEDIA",
  3497. "pathname": "src/media/__init__.py",
  3498. "process": 47545,
  3499. "processName": "MainProcess",
  3500. "relativeCreated": 4598.9720821380615,
  3501. "stack_info": null,
  3502. "thread": 140223083710272,
  3503. "threadName": "MainThread"
  3504. },
  3505. {
  3506. "args": [
  3507. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_1.jpg'"
  3508. ],
  3509. "asctime": "2020-08-29 20:16:28,358",
  3510. "created": 1598724988.3588758,
  3511. "exc_info": null,
  3512. "exc_text": null,
  3513. "filename": "__init__.py",
  3514. "funcName": "save",
  3515. "levelname": "DEBUG",
  3516. "levelno": 10,
  3517. "lineno": 124,
  3518. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_1.jpg'",
  3519. "module": "__init__",
  3520. "msecs": 358.8757514953613,
  3521. "msg": "Saving image to %s",
  3522. "name": "MEDIA",
  3523. "pathname": "src/media/__init__.py",
  3524. "process": 47545,
  3525. "processName": "MainProcess",
  3526. "relativeCreated": 4684.117555618286,
  3527. "stack_info": null,
  3528. "thread": 140223083710272,
  3529. "threadName": "MainThread"
  3530. },
  3531. {
  3532. "args": [
  3533. "Filecompare for joined_image_1.jpg",
  3534. "True",
  3535. "<class 'bool'>"
  3536. ],
  3537. "asctime": "2020-08-29 20:16:28,443",
  3538. "created": 1598724988.4435134,
  3539. "exc_info": null,
  3540. "exc_text": null,
  3541. "filename": "test.py",
  3542. "funcName": "__report_result__",
  3543. "levelname": "DEBUG",
  3544. "levelno": 10,
  3545. "lineno": 22,
  3546. "message": "Result (Filecompare for joined_image_1.jpg): True (<class 'bool'>)",
  3547. "module": "test",
  3548. "msecs": 443.5133934020996,
  3549. "msg": "Result (%s): %s (%s)",
  3550. "name": "__unittest__",
  3551. "pathname": "src/unittest/test.py",
  3552. "process": 47545,
  3553. "processName": "MainProcess",
  3554. "relativeCreated": 4768.755197525024,
  3555. "stack_info": null,
  3556. "thread": 140223083710272,
  3557. "threadName": "MainThread"
  3558. },
  3559. {
  3560. "args": [
  3561. "Filecompare for joined_image_1.jpg",
  3562. "True",
  3563. "<class 'bool'>"
  3564. ],
  3565. "asctime": "2020-08-29 20:16:28,443",
  3566. "created": 1598724988.4436097,
  3567. "exc_info": null,
  3568. "exc_text": null,
  3569. "filename": "test.py",
  3570. "funcName": "__report_expectation_equivalency__",
  3571. "levelname": "DEBUG",
  3572. "levelno": 10,
  3573. "lineno": 26,
  3574. "message": "Expectation (Filecompare for joined_image_1.jpg): result = True (<class 'bool'>)",
  3575. "module": "test",
  3576. "msecs": 443.60971450805664,
  3577. "msg": "Expectation (%s): result = %s (%s)",
  3578. "name": "__unittest__",
  3579. "pathname": "src/unittest/test.py",
  3580. "process": 47545,
  3581. "processName": "MainProcess",
  3582. "relativeCreated": 4768.851518630981,
  3583. "stack_info": null,
  3584. "thread": 140223083710272,
  3585. "threadName": "MainThread"
  3586. }
  3587. ],
  3588. "msecs": 443.6793327331543,
  3589. "msg": "Filecompare for joined_image_1.jpg is correct (Content %s and Type is %s).",
  3590. "name": "__tLogger__",
  3591. "pathname": "src/unittest/test.py",
  3592. "process": 47545,
  3593. "processName": "MainProcess",
  3594. "relativeCreated": 4768.921136856079,
  3595. "stack_info": null,
  3596. "thread": 140223083710272,
  3597. "threadName": "MainThread",
  3598. "time_consumption": 6.961822509765625e-05
  3599. },
  3600. {
  3601. "args": [
  3602. "True",
  3603. "<class 'bool'>"
  3604. ],
  3605. "asctime": "2020-08-29 20:16:28,834",
  3606. "created": 1598724988.834673,
  3607. "exc_info": null,
  3608. "exc_text": null,
  3609. "filename": "test.py",
  3610. "funcName": "equivalency_chk",
  3611. "levelname": "INFO",
  3612. "levelno": 20,
  3613. "lineno": 142,
  3614. "message": "Filecompare for joined_image_2.jpg is correct (Content True and Type is <class 'bool'>).",
  3615. "module": "test",
  3616. "moduleLogger": [
  3617. {
  3618. "args": [
  3619. 2
  3620. ],
  3621. "asctime": "2020-08-29 20:16:28,443",
  3622. "created": 1598724988.4437666,
  3623. "exc_info": null,
  3624. "exc_text": null,
  3625. "filename": "test_image.py",
  3626. "funcName": "join",
  3627. "levelname": "DEBUG",
  3628. "levelno": 10,
  3629. "lineno": 108,
  3630. "message": "Join with position 2",
  3631. "module": "test_image",
  3632. "msecs": 443.76659393310547,
  3633. "msg": "Join with position %d",
  3634. "name": "__unittest__",
  3635. "pathname": "src/tests/test_image.py",
  3636. "process": 47545,
  3637. "processName": "MainProcess",
  3638. "relativeCreated": 4769.00839805603,
  3639. "stack_info": null,
  3640. "thread": 140223083710272,
  3641. "threadName": "MainThread"
  3642. },
  3643. {
  3644. "args": [
  3645. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  3646. ],
  3647. "asctime": "2020-08-29 20:16:28,537",
  3648. "created": 1598724988.5376134,
  3649. "exc_info": null,
  3650. "exc_text": null,
  3651. "filename": "__init__.py",
  3652. "funcName": "load_from_file",
  3653. "levelname": "DEBUG",
  3654. "levelno": 10,
  3655. "lineno": 116,
  3656. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  3657. "module": "__init__",
  3658. "msecs": 537.6133918762207,
  3659. "msg": "loading image from %s",
  3660. "name": "MEDIA",
  3661. "pathname": "src/media/__init__.py",
  3662. "process": 47545,
  3663. "processName": "MainProcess",
  3664. "relativeCreated": 4862.8551959991455,
  3665. "stack_info": null,
  3666. "thread": 140223083710272,
  3667. "threadName": "MainThread"
  3668. },
  3669. {
  3670. "args": [
  3671. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  3672. ],
  3673. "asctime": "2020-08-29 20:16:28,631",
  3674. "created": 1598724988.631242,
  3675. "exc_info": null,
  3676. "exc_text": null,
  3677. "filename": "__init__.py",
  3678. "funcName": "load_from_file",
  3679. "levelname": "DEBUG",
  3680. "levelno": 10,
  3681. "lineno": 116,
  3682. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  3683. "module": "__init__",
  3684. "msecs": 631.242036819458,
  3685. "msg": "loading image from %s",
  3686. "name": "MEDIA",
  3687. "pathname": "src/media/__init__.py",
  3688. "process": 47545,
  3689. "processName": "MainProcess",
  3690. "relativeCreated": 4956.483840942383,
  3691. "stack_info": null,
  3692. "thread": 140223083710272,
  3693. "threadName": "MainThread"
  3694. },
  3695. {
  3696. "args": [
  3697. 300
  3698. ],
  3699. "asctime": "2020-08-29 20:16:28,631",
  3700. "created": 1598724988.6313746,
  3701. "exc_info": null,
  3702. "exc_text": null,
  3703. "filename": "__init__.py",
  3704. "funcName": "resize",
  3705. "levelname": "DEBUG",
  3706. "levelno": 10,
  3707. "lineno": 141,
  3708. "message": "Resizing picture to max 300 pixel in whatever direction",
  3709. "module": "__init__",
  3710. "msecs": 631.3745975494385,
  3711. "msg": "Resizing picture to max %d pixel in whatever direction",
  3712. "name": "MEDIA",
  3713. "pathname": "src/media/__init__.py",
  3714. "process": 47545,
  3715. "processName": "MainProcess",
  3716. "relativeCreated": 4956.616401672363,
  3717. "stack_info": null,
  3718. "thread": 140223083710272,
  3719. "threadName": "MainThread"
  3720. },
  3721. {
  3722. "args": [],
  3723. "asctime": "2020-08-29 20:16:28,676",
  3724. "created": 1598724988.6767,
  3725. "exc_info": null,
  3726. "exc_text": null,
  3727. "filename": "__init__.py",
  3728. "funcName": "join",
  3729. "levelname": "DEBUG",
  3730. "levelno": 10,
  3731. "lineno": 218,
  3732. "message": "Joining two images",
  3733. "module": "__init__",
  3734. "msecs": 676.7001152038574,
  3735. "msg": "Joining two images",
  3736. "name": "MEDIA",
  3737. "pathname": "src/media/__init__.py",
  3738. "process": 47545,
  3739. "processName": "MainProcess",
  3740. "relativeCreated": 5001.941919326782,
  3741. "stack_info": null,
  3742. "thread": 140223083710272,
  3743. "threadName": "MainThread"
  3744. },
  3745. {
  3746. "args": [
  3747. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_2.jpg'"
  3748. ],
  3749. "asctime": "2020-08-29 20:16:28,752",
  3750. "created": 1598724988.752499,
  3751. "exc_info": null,
  3752. "exc_text": null,
  3753. "filename": "__init__.py",
  3754. "funcName": "save",
  3755. "levelname": "DEBUG",
  3756. "levelno": 10,
  3757. "lineno": 124,
  3758. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/joined_image_2.jpg'",
  3759. "module": "__init__",
  3760. "msecs": 752.4991035461426,
  3761. "msg": "Saving image to %s",
  3762. "name": "MEDIA",
  3763. "pathname": "src/media/__init__.py",
  3764. "process": 47545,
  3765. "processName": "MainProcess",
  3766. "relativeCreated": 5077.740907669067,
  3767. "stack_info": null,
  3768. "thread": 140223083710272,
  3769. "threadName": "MainThread"
  3770. },
  3771. {
  3772. "args": [
  3773. "Filecompare for joined_image_2.jpg",
  3774. "True",
  3775. "<class 'bool'>"
  3776. ],
  3777. "asctime": "2020-08-29 20:16:28,834",
  3778. "created": 1598724988.834509,
  3779. "exc_info": null,
  3780. "exc_text": null,
  3781. "filename": "test.py",
  3782. "funcName": "__report_result__",
  3783. "levelname": "DEBUG",
  3784. "levelno": 10,
  3785. "lineno": 22,
  3786. "message": "Result (Filecompare for joined_image_2.jpg): True (<class 'bool'>)",
  3787. "module": "test",
  3788. "msecs": 834.5088958740234,
  3789. "msg": "Result (%s): %s (%s)",
  3790. "name": "__unittest__",
  3791. "pathname": "src/unittest/test.py",
  3792. "process": 47545,
  3793. "processName": "MainProcess",
  3794. "relativeCreated": 5159.750699996948,
  3795. "stack_info": null,
  3796. "thread": 140223083710272,
  3797. "threadName": "MainThread"
  3798. },
  3799. {
  3800. "args": [
  3801. "Filecompare for joined_image_2.jpg",
  3802. "True",
  3803. "<class 'bool'>"
  3804. ],
  3805. "asctime": "2020-08-29 20:16:28,834",
  3806. "created": 1598724988.8346083,
  3807. "exc_info": null,
  3808. "exc_text": null,
  3809. "filename": "test.py",
  3810. "funcName": "__report_expectation_equivalency__",
  3811. "levelname": "DEBUG",
  3812. "levelno": 10,
  3813. "lineno": 26,
  3814. "message": "Expectation (Filecompare for joined_image_2.jpg): result = True (<class 'bool'>)",
  3815. "module": "test",
  3816. "msecs": 834.6083164215088,
  3817. "msg": "Expectation (%s): result = %s (%s)",
  3818. "name": "__unittest__",
  3819. "pathname": "src/unittest/test.py",
  3820. "process": 47545,
  3821. "processName": "MainProcess",
  3822. "relativeCreated": 5159.850120544434,
  3823. "stack_info": null,
  3824. "thread": 140223083710272,
  3825. "threadName": "MainThread"
  3826. }
  3827. ],
  3828. "msecs": 834.6729278564453,
  3829. "msg": "Filecompare for joined_image_2.jpg is correct (Content %s and Type is %s).",
  3830. "name": "__tLogger__",
  3831. "pathname": "src/unittest/test.py",
  3832. "process": 47545,
  3833. "processName": "MainProcess",
  3834. "relativeCreated": 5159.91473197937,
  3835. "stack_info": null,
  3836. "thread": 140223083710272,
  3837. "threadName": "MainThread",
  3838. "time_consumption": 6.461143493652344e-05
  3839. }
  3840. ],
  3841. "thread": 140223083710272,
  3842. "threadName": "MainThread",
  3843. "time_consumption": 2.338226318359375,
  3844. "time_finished": "2020-08-29 20:16:28,834",
  3845. "time_start": "2020-08-29 20:16:26,496"
  3846. },
  3847. "_Fv7V4EYCEequ74M7usLaPw": {
  3848. "args": null,
  3849. "asctime": "2020-08-29 20:16:24,270",
  3850. "created": 1598724984.270135,
  3851. "exc_info": null,
  3852. "exc_text": null,
  3853. "filename": "__init__.py",
  3854. "funcName": "testrun",
  3855. "levelname": "INFO",
  3856. "levelno": 20,
  3857. "lineno": 31,
  3858. "message": "_Fv7V4EYCEequ74M7usLaPw",
  3859. "module": "__init__",
  3860. "moduleLogger": [],
  3861. "msecs": 270.13492584228516,
  3862. "msg": "_Fv7V4EYCEequ74M7usLaPw",
  3863. "name": "__tLogger__",
  3864. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  3865. "process": 47545,
  3866. "processName": "MainProcess",
  3867. "relativeCreated": 595.37672996521,
  3868. "stack_info": null,
  3869. "testcaseLogger": [
  3870. {
  3871. "args": [
  3872. "<class 'NoneType'>",
  3873. "<class 'type'>"
  3874. ],
  3875. "asctime": "2020-08-29 20:16:24,270",
  3876. "created": 1598724984.2703419,
  3877. "exc_info": null,
  3878. "exc_text": null,
  3879. "filename": "test.py",
  3880. "funcName": "equivalency_chk",
  3881. "levelname": "INFO",
  3882. "levelno": 20,
  3883. "lineno": 142,
  3884. "message": "Type of image stored in instance, if no parameter is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  3885. "module": "test",
  3886. "moduleLogger": [
  3887. {
  3888. "args": [
  3889. "Type of image stored in instance, if no parameter is given",
  3890. "<class 'NoneType'>",
  3891. "<class 'type'>"
  3892. ],
  3893. "asctime": "2020-08-29 20:16:24,270",
  3894. "created": 1598724984.2702353,
  3895. "exc_info": null,
  3896. "exc_text": null,
  3897. "filename": "test.py",
  3898. "funcName": "__report_result__",
  3899. "levelname": "DEBUG",
  3900. "levelno": 10,
  3901. "lineno": 22,
  3902. "message": "Result (Type of image stored in instance, if no parameter is given): <class 'NoneType'> (<class 'type'>)",
  3903. "module": "test",
  3904. "msecs": 270.2353000640869,
  3905. "msg": "Result (%s): %s (%s)",
  3906. "name": "__unittest__",
  3907. "pathname": "src/unittest/test.py",
  3908. "process": 47545,
  3909. "processName": "MainProcess",
  3910. "relativeCreated": 595.4771041870117,
  3911. "stack_info": null,
  3912. "thread": 140223083710272,
  3913. "threadName": "MainThread"
  3914. },
  3915. {
  3916. "args": [
  3917. "Type of image stored in instance, if no parameter is given",
  3918. "<class 'NoneType'>",
  3919. "<class 'type'>"
  3920. ],
  3921. "asctime": "2020-08-29 20:16:24,270",
  3922. "created": 1598724984.2702863,
  3923. "exc_info": null,
  3924. "exc_text": null,
  3925. "filename": "test.py",
  3926. "funcName": "__report_expectation_equivalency__",
  3927. "levelname": "DEBUG",
  3928. "levelno": 10,
  3929. "lineno": 26,
  3930. "message": "Expectation (Type of image stored in instance, if no parameter is given): result = <class 'NoneType'> (<class 'type'>)",
  3931. "module": "test",
  3932. "msecs": 270.28632164001465,
  3933. "msg": "Expectation (%s): result = %s (%s)",
  3934. "name": "__unittest__",
  3935. "pathname": "src/unittest/test.py",
  3936. "process": 47545,
  3937. "processName": "MainProcess",
  3938. "relativeCreated": 595.5281257629395,
  3939. "stack_info": null,
  3940. "thread": 140223083710272,
  3941. "threadName": "MainThread"
  3942. }
  3943. ],
  3944. "msecs": 270.3418731689453,
  3945. "msg": "Type of image stored in instance, if no parameter is given is correct (Content %s and Type is %s).",
  3946. "name": "__tLogger__",
  3947. "pathname": "src/unittest/test.py",
  3948. "process": 47545,
  3949. "processName": "MainProcess",
  3950. "relativeCreated": 595.5836772918701,
  3951. "stack_info": null,
  3952. "thread": 140223083710272,
  3953. "threadName": "MainThread",
  3954. "time_consumption": 5.555152893066406e-05
  3955. },
  3956. {
  3957. "args": [
  3958. "<class 'NoneType'>",
  3959. "<class 'type'>"
  3960. ],
  3961. "asctime": "2020-08-29 20:16:24,271",
  3962. "created": 1598724984.271136,
  3963. "exc_info": null,
  3964. "exc_text": null,
  3965. "filename": "test.py",
  3966. "funcName": "equivalency_chk",
  3967. "levelname": "INFO",
  3968. "levelno": 20,
  3969. "lineno": 142,
  3970. "message": "Type of image stored in instance, if a unsupported parameter is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  3971. "module": "test",
  3972. "moduleLogger": [
  3973. {
  3974. "args": [],
  3975. "asctime": "2020-08-29 20:16:24,270",
  3976. "created": 1598724984.2709916,
  3977. "exc_info": null,
  3978. "exc_text": null,
  3979. "filename": "convert.py",
  3980. "funcName": "get_pil_image",
  3981. "levelname": "WARNING",
  3982. "levelno": 30,
  3983. "lineno": 35,
  3984. "message": "Instance type is not supported: <class 'int'>",
  3985. "module": "convert",
  3986. "msecs": 270.99156379699707,
  3987. "msg": "Instance type is not supported: <class 'int'>",
  3988. "name": "MEDIA",
  3989. "pathname": "src/media/convert.py",
  3990. "process": 47545,
  3991. "processName": "MainProcess",
  3992. "relativeCreated": 596.2333679199219,
  3993. "stack_info": null,
  3994. "thread": 140223083710272,
  3995. "threadName": "MainThread"
  3996. },
  3997. {
  3998. "args": [
  3999. "Type of image stored in instance, if a unsupported parameter is given",
  4000. "<class 'NoneType'>",
  4001. "<class 'type'>"
  4002. ],
  4003. "asctime": "2020-08-29 20:16:24,271",
  4004. "created": 1598724984.2710512,
  4005. "exc_info": null,
  4006. "exc_text": null,
  4007. "filename": "test.py",
  4008. "funcName": "__report_result__",
  4009. "levelname": "DEBUG",
  4010. "levelno": 10,
  4011. "lineno": 22,
  4012. "message": "Result (Type of image stored in instance, if a unsupported parameter is given): <class 'NoneType'> (<class 'type'>)",
  4013. "module": "test",
  4014. "msecs": 271.05116844177246,
  4015. "msg": "Result (%s): %s (%s)",
  4016. "name": "__unittest__",
  4017. "pathname": "src/unittest/test.py",
  4018. "process": 47545,
  4019. "processName": "MainProcess",
  4020. "relativeCreated": 596.2929725646973,
  4021. "stack_info": null,
  4022. "thread": 140223083710272,
  4023. "threadName": "MainThread"
  4024. },
  4025. {
  4026. "args": [
  4027. "Type of image stored in instance, if a unsupported parameter is given",
  4028. "<class 'NoneType'>",
  4029. "<class 'type'>"
  4030. ],
  4031. "asctime": "2020-08-29 20:16:24,271",
  4032. "created": 1598724984.2710943,
  4033. "exc_info": null,
  4034. "exc_text": null,
  4035. "filename": "test.py",
  4036. "funcName": "__report_expectation_equivalency__",
  4037. "levelname": "DEBUG",
  4038. "levelno": 10,
  4039. "lineno": 26,
  4040. "message": "Expectation (Type of image stored in instance, if a unsupported parameter is given): result = <class 'NoneType'> (<class 'type'>)",
  4041. "module": "test",
  4042. "msecs": 271.09432220458984,
  4043. "msg": "Expectation (%s): result = %s (%s)",
  4044. "name": "__unittest__",
  4045. "pathname": "src/unittest/test.py",
  4046. "process": 47545,
  4047. "processName": "MainProcess",
  4048. "relativeCreated": 596.3361263275146,
  4049. "stack_info": null,
  4050. "thread": 140223083710272,
  4051. "threadName": "MainThread"
  4052. }
  4053. ],
  4054. "msecs": 271.1360454559326,
  4055. "msg": "Type of image stored in instance, if a unsupported parameter is given is correct (Content %s and Type is %s).",
  4056. "name": "__tLogger__",
  4057. "pathname": "src/unittest/test.py",
  4058. "process": 47545,
  4059. "processName": "MainProcess",
  4060. "relativeCreated": 596.3778495788574,
  4061. "stack_info": null,
  4062. "thread": 140223083710272,
  4063. "threadName": "MainThread",
  4064. "time_consumption": 4.172325134277344e-05
  4065. },
  4066. {
  4067. "args": [
  4068. "<class 'NoneType'>",
  4069. "<class 'type'>"
  4070. ],
  4071. "asctime": "2020-08-29 20:16:24,271",
  4072. "created": 1598724984.271351,
  4073. "exc_info": null,
  4074. "exc_text": null,
  4075. "filename": "test.py",
  4076. "funcName": "equivalency_chk",
  4077. "levelname": "INFO",
  4078. "levelno": 20,
  4079. "lineno": 142,
  4080. "message": "Type of image stored in instance, if an unknown file is given is correct (Content <class 'NoneType'> and Type is <class 'type'>).",
  4081. "module": "test",
  4082. "moduleLogger": [
  4083. {
  4084. "args": [
  4085. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt"
  4086. ],
  4087. "asctime": "2020-08-29 20:16:24,271",
  4088. "created": 1598724984.27122,
  4089. "exc_info": null,
  4090. "exc_text": null,
  4091. "filename": "convert.py",
  4092. "funcName": "get_pil_image",
  4093. "levelname": "WARNING",
  4094. "levelno": 30,
  4095. "lineno": 31,
  4096. "message": "Filetype is not supported (/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt)",
  4097. "module": "convert",
  4098. "msecs": 271.21996879577637,
  4099. "msg": "Filetype is not supported (%s)",
  4100. "name": "MEDIA",
  4101. "pathname": "src/media/convert.py",
  4102. "process": 47545,
  4103. "processName": "MainProcess",
  4104. "relativeCreated": 596.4617729187012,
  4105. "stack_info": null,
  4106. "thread": 140223083710272,
  4107. "threadName": "MainThread"
  4108. },
  4109. {
  4110. "args": [
  4111. "Type of image stored in instance, if an unknown file is given",
  4112. "<class 'NoneType'>",
  4113. "<class 'type'>"
  4114. ],
  4115. "asctime": "2020-08-29 20:16:24,271",
  4116. "created": 1598724984.271277,
  4117. "exc_info": null,
  4118. "exc_text": null,
  4119. "filename": "test.py",
  4120. "funcName": "__report_result__",
  4121. "levelname": "DEBUG",
  4122. "levelno": 10,
  4123. "lineno": 22,
  4124. "message": "Result (Type of image stored in instance, if an unknown file is given): <class 'NoneType'> (<class 'type'>)",
  4125. "module": "test",
  4126. "msecs": 271.27695083618164,
  4127. "msg": "Result (%s): %s (%s)",
  4128. "name": "__unittest__",
  4129. "pathname": "src/unittest/test.py",
  4130. "process": 47545,
  4131. "processName": "MainProcess",
  4132. "relativeCreated": 596.5187549591064,
  4133. "stack_info": null,
  4134. "thread": 140223083710272,
  4135. "threadName": "MainThread"
  4136. },
  4137. {
  4138. "args": [
  4139. "Type of image stored in instance, if an unknown file is given",
  4140. "<class 'NoneType'>",
  4141. "<class 'type'>"
  4142. ],
  4143. "asctime": "2020-08-29 20:16:24,271",
  4144. "created": 1598724984.2713141,
  4145. "exc_info": null,
  4146. "exc_text": null,
  4147. "filename": "test.py",
  4148. "funcName": "__report_expectation_equivalency__",
  4149. "levelname": "DEBUG",
  4150. "levelno": 10,
  4151. "lineno": 26,
  4152. "message": "Expectation (Type of image stored in instance, if an unknown file is given): result = <class 'NoneType'> (<class 'type'>)",
  4153. "module": "test",
  4154. "msecs": 271.3141441345215,
  4155. "msg": "Expectation (%s): result = %s (%s)",
  4156. "name": "__unittest__",
  4157. "pathname": "src/unittest/test.py",
  4158. "process": 47545,
  4159. "processName": "MainProcess",
  4160. "relativeCreated": 596.5559482574463,
  4161. "stack_info": null,
  4162. "thread": 140223083710272,
  4163. "threadName": "MainThread"
  4164. }
  4165. ],
  4166. "msecs": 271.3510990142822,
  4167. "msg": "Type of image stored in instance, if an unknown file is given is correct (Content %s and Type is %s).",
  4168. "name": "__tLogger__",
  4169. "pathname": "src/unittest/test.py",
  4170. "process": 47545,
  4171. "processName": "MainProcess",
  4172. "relativeCreated": 596.592903137207,
  4173. "stack_info": null,
  4174. "thread": 140223083710272,
  4175. "threadName": "MainThread",
  4176. "time_consumption": 3.695487976074219e-05
  4177. },
  4178. {
  4179. "args": [
  4180. "<class 'PIL.Image.Image'>",
  4181. "<class 'type'>"
  4182. ],
  4183. "asctime": "2020-08-29 20:16:24,398",
  4184. "created": 1598724984.3989742,
  4185. "exc_info": null,
  4186. "exc_text": null,
  4187. "filename": "test.py",
  4188. "funcName": "equivalency_chk",
  4189. "levelname": "INFO",
  4190. "levelno": 20,
  4191. "lineno": 142,
  4192. "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'>).",
  4193. "module": "test",
  4194. "moduleLogger": [
  4195. {
  4196. "args": [
  4197. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  4198. ],
  4199. "asctime": "2020-08-29 20:16:24,398",
  4200. "created": 1598724984.3987725,
  4201. "exc_info": null,
  4202. "exc_text": null,
  4203. "filename": "__init__.py",
  4204. "funcName": "load_from_file",
  4205. "levelname": "DEBUG",
  4206. "levelno": 10,
  4207. "lineno": 116,
  4208. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  4209. "module": "__init__",
  4210. "msecs": 398.7724781036377,
  4211. "msg": "loading image from %s",
  4212. "name": "MEDIA",
  4213. "pathname": "src/media/__init__.py",
  4214. "process": 47545,
  4215. "processName": "MainProcess",
  4216. "relativeCreated": 724.0142822265625,
  4217. "stack_info": null,
  4218. "thread": 140223083710272,
  4219. "threadName": "MainThread"
  4220. },
  4221. {
  4222. "args": [
  4223. "Type of image stored in instance, if a image file is given",
  4224. "<class 'PIL.Image.Image'>",
  4225. "<class 'type'>"
  4226. ],
  4227. "asctime": "2020-08-29 20:16:24,398",
  4228. "created": 1598724984.3988864,
  4229. "exc_info": null,
  4230. "exc_text": null,
  4231. "filename": "test.py",
  4232. "funcName": "__report_result__",
  4233. "levelname": "DEBUG",
  4234. "levelno": 10,
  4235. "lineno": 22,
  4236. "message": "Result (Type of image stored in instance, if a image file is given): <class 'PIL.Image.Image'> (<class 'type'>)",
  4237. "module": "test",
  4238. "msecs": 398.88644218444824,
  4239. "msg": "Result (%s): %s (%s)",
  4240. "name": "__unittest__",
  4241. "pathname": "src/unittest/test.py",
  4242. "process": 47545,
  4243. "processName": "MainProcess",
  4244. "relativeCreated": 724.128246307373,
  4245. "stack_info": null,
  4246. "thread": 140223083710272,
  4247. "threadName": "MainThread"
  4248. },
  4249. {
  4250. "args": [
  4251. "Type of image stored in instance, if a image file is given",
  4252. "<class 'PIL.Image.Image'>",
  4253. "<class 'type'>"
  4254. ],
  4255. "asctime": "2020-08-29 20:16:24,398",
  4256. "created": 1598724984.398932,
  4257. "exc_info": null,
  4258. "exc_text": null,
  4259. "filename": "test.py",
  4260. "funcName": "__report_expectation_equivalency__",
  4261. "levelname": "DEBUG",
  4262. "levelno": 10,
  4263. "lineno": 26,
  4264. "message": "Expectation (Type of image stored in instance, if a image file is given): result = <class 'PIL.Image.Image'> (<class 'type'>)",
  4265. "module": "test",
  4266. "msecs": 398.93198013305664,
  4267. "msg": "Expectation (%s): result = %s (%s)",
  4268. "name": "__unittest__",
  4269. "pathname": "src/unittest/test.py",
  4270. "process": 47545,
  4271. "processName": "MainProcess",
  4272. "relativeCreated": 724.1737842559814,
  4273. "stack_info": null,
  4274. "thread": 140223083710272,
  4275. "threadName": "MainThread"
  4276. }
  4277. ],
  4278. "msecs": 398.9741802215576,
  4279. "msg": "Type of image stored in instance, if a image file is given is correct (Content %s and Type is %s).",
  4280. "name": "__tLogger__",
  4281. "pathname": "src/unittest/test.py",
  4282. "process": 47545,
  4283. "processName": "MainProcess",
  4284. "relativeCreated": 724.2159843444824,
  4285. "stack_info": null,
  4286. "thread": 140223083710272,
  4287. "threadName": "MainThread",
  4288. "time_consumption": 4.220008850097656e-05
  4289. },
  4290. {
  4291. "args": [
  4292. "<class 'PIL.Image.Image'>",
  4293. "<class 'type'>"
  4294. ],
  4295. "asctime": "2020-08-29 20:16:24,688",
  4296. "created": 1598724984.6886597,
  4297. "exc_info": null,
  4298. "exc_text": null,
  4299. "filename": "test.py",
  4300. "funcName": "equivalency_chk",
  4301. "levelname": "INFO",
  4302. "levelno": 20,
  4303. "lineno": 142,
  4304. "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'>).",
  4305. "module": "test",
  4306. "moduleLogger": [
  4307. {
  4308. "args": [
  4309. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'"
  4310. ],
  4311. "asctime": "2020-08-29 20:16:24,685",
  4312. "created": 1598724984.6859632,
  4313. "exc_info": null,
  4314. "exc_text": null,
  4315. "filename": "__init__.py",
  4316. "funcName": "load_from_file",
  4317. "levelname": "DEBUG",
  4318. "levelno": 10,
  4319. "lineno": 116,
  4320. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'",
  4321. "module": "__init__",
  4322. "msecs": 685.9631538391113,
  4323. "msg": "loading image from %s",
  4324. "name": "MEDIA",
  4325. "pathname": "src/media/__init__.py",
  4326. "process": 47545,
  4327. "processName": "MainProcess",
  4328. "relativeCreated": 1011.2049579620361,
  4329. "stack_info": null,
  4330. "thread": 140223083710272,
  4331. "threadName": "MainThread"
  4332. },
  4333. {
  4334. "args": [
  4335. "Type of image stored in instance, if a video file is given",
  4336. "<class 'PIL.Image.Image'>",
  4337. "<class 'type'>"
  4338. ],
  4339. "asctime": "2020-08-29 20:16:24,688",
  4340. "created": 1598724984.6885176,
  4341. "exc_info": null,
  4342. "exc_text": null,
  4343. "filename": "test.py",
  4344. "funcName": "__report_result__",
  4345. "levelname": "DEBUG",
  4346. "levelno": 10,
  4347. "lineno": 22,
  4348. "message": "Result (Type of image stored in instance, if a video file is given): <class 'PIL.Image.Image'> (<class 'type'>)",
  4349. "module": "test",
  4350. "msecs": 688.5175704956055,
  4351. "msg": "Result (%s): %s (%s)",
  4352. "name": "__unittest__",
  4353. "pathname": "src/unittest/test.py",
  4354. "process": 47545,
  4355. "processName": "MainProcess",
  4356. "relativeCreated": 1013.7593746185303,
  4357. "stack_info": null,
  4358. "thread": 140223083710272,
  4359. "threadName": "MainThread"
  4360. },
  4361. {
  4362. "args": [
  4363. "Type of image stored in instance, if a video file is given",
  4364. "<class 'PIL.Image.Image'>",
  4365. "<class 'type'>"
  4366. ],
  4367. "asctime": "2020-08-29 20:16:24,688",
  4368. "created": 1598724984.6886084,
  4369. "exc_info": null,
  4370. "exc_text": null,
  4371. "filename": "test.py",
  4372. "funcName": "__report_expectation_equivalency__",
  4373. "levelname": "DEBUG",
  4374. "levelno": 10,
  4375. "lineno": 26,
  4376. "message": "Expectation (Type of image stored in instance, if a video file is given): result = <class 'PIL.Image.Image'> (<class 'type'>)",
  4377. "module": "test",
  4378. "msecs": 688.6084079742432,
  4379. "msg": "Expectation (%s): result = %s (%s)",
  4380. "name": "__unittest__",
  4381. "pathname": "src/unittest/test.py",
  4382. "process": 47545,
  4383. "processName": "MainProcess",
  4384. "relativeCreated": 1013.850212097168,
  4385. "stack_info": null,
  4386. "thread": 140223083710272,
  4387. "threadName": "MainThread"
  4388. }
  4389. ],
  4390. "msecs": 688.65966796875,
  4391. "msg": "Type of image stored in instance, if a video file is given is correct (Content %s and Type is %s).",
  4392. "name": "__tLogger__",
  4393. "pathname": "src/unittest/test.py",
  4394. "process": 47545,
  4395. "processName": "MainProcess",
  4396. "relativeCreated": 1013.9014720916748,
  4397. "stack_info": null,
  4398. "thread": 140223083710272,
  4399. "threadName": "MainThread",
  4400. "time_consumption": 5.125999450683594e-05
  4401. }
  4402. ],
  4403. "thread": 140223083710272,
  4404. "threadName": "MainThread",
  4405. "time_consumption": 0.41852474212646484,
  4406. "time_finished": "2020-08-29 20:16:24,688",
  4407. "time_start": "2020-08-29 20:16:24,270"
  4408. },
  4409. "_HGpRMEYCEequ74M7usLaPw": {
  4410. "args": null,
  4411. "asctime": "2020-08-29 20:16:24,688",
  4412. "created": 1598724984.688876,
  4413. "exc_info": null,
  4414. "exc_text": null,
  4415. "filename": "__init__.py",
  4416. "funcName": "testrun",
  4417. "levelname": "INFO",
  4418. "levelno": 20,
  4419. "lineno": 32,
  4420. "message": "_HGpRMEYCEequ74M7usLaPw",
  4421. "module": "__init__",
  4422. "moduleLogger": [],
  4423. "msecs": 688.8759136199951,
  4424. "msg": "_HGpRMEYCEequ74M7usLaPw",
  4425. "name": "__tLogger__",
  4426. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  4427. "process": 47545,
  4428. "processName": "MainProcess",
  4429. "relativeCreated": 1014.1177177429199,
  4430. "stack_info": null,
  4431. "testcaseLogger": [
  4432. {
  4433. "args": [
  4434. "False",
  4435. "<class 'bool'>"
  4436. ],
  4437. "asctime": "2020-08-29 20:16:24,689",
  4438. "created": 1598724984.6890917,
  4439. "exc_info": null,
  4440. "exc_text": null,
  4441. "filename": "test.py",
  4442. "funcName": "equivalency_chk",
  4443. "levelname": "INFO",
  4444. "levelno": 20,
  4445. "lineno": 142,
  4446. "message": "Returnvalue of failed save method is correct (Content False and Type is <class 'bool'>).",
  4447. "module": "test",
  4448. "moduleLogger": [
  4449. {
  4450. "args": [
  4451. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'"
  4452. ],
  4453. "asctime": "2020-08-29 20:16:24,688",
  4454. "created": 1598724984.688961,
  4455. "exc_info": null,
  4456. "exc_text": null,
  4457. "filename": "__init__.py",
  4458. "funcName": "save",
  4459. "levelname": "WARNING",
  4460. "levelno": 30,
  4461. "lineno": 121,
  4462. "message": "No image available to be saved ('/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg')",
  4463. "module": "__init__",
  4464. "msecs": 688.9610290527344,
  4465. "msg": "No image available to be saved (%s)",
  4466. "name": "MEDIA",
  4467. "pathname": "src/media/__init__.py",
  4468. "process": 47545,
  4469. "processName": "MainProcess",
  4470. "relativeCreated": 1014.2028331756592,
  4471. "stack_info": null,
  4472. "thread": 140223083710272,
  4473. "threadName": "MainThread"
  4474. },
  4475. {
  4476. "args": [
  4477. "Returnvalue of failed save method",
  4478. "False",
  4479. "<class 'bool'>"
  4480. ],
  4481. "asctime": "2020-08-29 20:16:24,689",
  4482. "created": 1598724984.6890109,
  4483. "exc_info": null,
  4484. "exc_text": null,
  4485. "filename": "test.py",
  4486. "funcName": "__report_result__",
  4487. "levelname": "DEBUG",
  4488. "levelno": 10,
  4489. "lineno": 22,
  4490. "message": "Result (Returnvalue of failed save method): False (<class 'bool'>)",
  4491. "module": "test",
  4492. "msecs": 689.0108585357666,
  4493. "msg": "Result (%s): %s (%s)",
  4494. "name": "__unittest__",
  4495. "pathname": "src/unittest/test.py",
  4496. "process": 47545,
  4497. "processName": "MainProcess",
  4498. "relativeCreated": 1014.2526626586914,
  4499. "stack_info": null,
  4500. "thread": 140223083710272,
  4501. "threadName": "MainThread"
  4502. },
  4503. {
  4504. "args": [
  4505. "Returnvalue of failed save method",
  4506. "False",
  4507. "<class 'bool'>"
  4508. ],
  4509. "asctime": "2020-08-29 20:16:24,689",
  4510. "created": 1598724984.6890538,
  4511. "exc_info": null,
  4512. "exc_text": null,
  4513. "filename": "test.py",
  4514. "funcName": "__report_expectation_equivalency__",
  4515. "levelname": "DEBUG",
  4516. "levelno": 10,
  4517. "lineno": 26,
  4518. "message": "Expectation (Returnvalue of failed save method): result = False (<class 'bool'>)",
  4519. "module": "test",
  4520. "msecs": 689.0537738800049,
  4521. "msg": "Expectation (%s): result = %s (%s)",
  4522. "name": "__unittest__",
  4523. "pathname": "src/unittest/test.py",
  4524. "process": 47545,
  4525. "processName": "MainProcess",
  4526. "relativeCreated": 1014.2955780029297,
  4527. "stack_info": null,
  4528. "thread": 140223083710272,
  4529. "threadName": "MainThread"
  4530. }
  4531. ],
  4532. "msecs": 689.091682434082,
  4533. "msg": "Returnvalue of failed save method is correct (Content %s and Type is %s).",
  4534. "name": "__tLogger__",
  4535. "pathname": "src/unittest/test.py",
  4536. "process": 47545,
  4537. "processName": "MainProcess",
  4538. "relativeCreated": 1014.3334865570068,
  4539. "stack_info": null,
  4540. "thread": 140223083710272,
  4541. "threadName": "MainThread",
  4542. "time_consumption": 3.790855407714844e-05
  4543. },
  4544. {
  4545. "args": [
  4546. "False",
  4547. "<class 'bool'>"
  4548. ],
  4549. "asctime": "2020-08-29 20:16:24,689",
  4550. "created": 1598724984.689255,
  4551. "exc_info": null,
  4552. "exc_text": null,
  4553. "filename": "test.py",
  4554. "funcName": "equivalency_chk",
  4555. "levelname": "INFO",
  4556. "levelno": 20,
  4557. "lineno": 142,
  4558. "message": "Existance of saved file is correct (Content False and Type is <class 'bool'>).",
  4559. "module": "test",
  4560. "moduleLogger": [
  4561. {
  4562. "args": [
  4563. "Existance of saved file",
  4564. "False",
  4565. "<class 'bool'>"
  4566. ],
  4567. "asctime": "2020-08-29 20:16:24,689",
  4568. "created": 1598724984.6891768,
  4569. "exc_info": null,
  4570. "exc_text": null,
  4571. "filename": "test.py",
  4572. "funcName": "__report_result__",
  4573. "levelname": "DEBUG",
  4574. "levelno": 10,
  4575. "lineno": 22,
  4576. "message": "Result (Existance of saved file): False (<class 'bool'>)",
  4577. "module": "test",
  4578. "msecs": 689.1767978668213,
  4579. "msg": "Result (%s): %s (%s)",
  4580. "name": "__unittest__",
  4581. "pathname": "src/unittest/test.py",
  4582. "process": 47545,
  4583. "processName": "MainProcess",
  4584. "relativeCreated": 1014.4186019897461,
  4585. "stack_info": null,
  4586. "thread": 140223083710272,
  4587. "threadName": "MainThread"
  4588. },
  4589. {
  4590. "args": [
  4591. "Existance of saved file",
  4592. "False",
  4593. "<class 'bool'>"
  4594. ],
  4595. "asctime": "2020-08-29 20:16:24,689",
  4596. "created": 1598724984.6892145,
  4597. "exc_info": null,
  4598. "exc_text": null,
  4599. "filename": "test.py",
  4600. "funcName": "__report_expectation_equivalency__",
  4601. "levelname": "DEBUG",
  4602. "levelno": 10,
  4603. "lineno": 26,
  4604. "message": "Expectation (Existance of saved file): result = False (<class 'bool'>)",
  4605. "module": "test",
  4606. "msecs": 689.2144680023193,
  4607. "msg": "Expectation (%s): result = %s (%s)",
  4608. "name": "__unittest__",
  4609. "pathname": "src/unittest/test.py",
  4610. "process": 47545,
  4611. "processName": "MainProcess",
  4612. "relativeCreated": 1014.4562721252441,
  4613. "stack_info": null,
  4614. "thread": 140223083710272,
  4615. "threadName": "MainThread"
  4616. }
  4617. ],
  4618. "msecs": 689.2549991607666,
  4619. "msg": "Existance of saved file is correct (Content %s and Type is %s).",
  4620. "name": "__tLogger__",
  4621. "pathname": "src/unittest/test.py",
  4622. "process": 47545,
  4623. "processName": "MainProcess",
  4624. "relativeCreated": 1014.4968032836914,
  4625. "stack_info": null,
  4626. "thread": 140223083710272,
  4627. "threadName": "MainThread",
  4628. "time_consumption": 4.0531158447265625e-05
  4629. },
  4630. {
  4631. "args": [
  4632. "True",
  4633. "<class 'bool'>"
  4634. ],
  4635. "asctime": "2020-08-29 20:16:24,990",
  4636. "created": 1598724984.9905941,
  4637. "exc_info": null,
  4638. "exc_text": null,
  4639. "filename": "test.py",
  4640. "funcName": "equivalency_chk",
  4641. "levelname": "INFO",
  4642. "levelno": 20,
  4643. "lineno": 142,
  4644. "message": "Returnvalue of successful save method is correct (Content True and Type is <class 'bool'>).",
  4645. "module": "test",
  4646. "moduleLogger": [
  4647. {
  4648. "args": [
  4649. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'"
  4650. ],
  4651. "asctime": "2020-08-29 20:16:24,978",
  4652. "created": 1598724984.9781566,
  4653. "exc_info": null,
  4654. "exc_text": null,
  4655. "filename": "__init__.py",
  4656. "funcName": "load_from_file",
  4657. "levelname": "DEBUG",
  4658. "levelno": 10,
  4659. "lineno": 116,
  4660. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/video.mp4'",
  4661. "module": "__init__",
  4662. "msecs": 978.156566619873,
  4663. "msg": "loading image from %s",
  4664. "name": "MEDIA",
  4665. "pathname": "src/media/__init__.py",
  4666. "process": 47545,
  4667. "processName": "MainProcess",
  4668. "relativeCreated": 1303.3983707427979,
  4669. "stack_info": null,
  4670. "thread": 140223083710272,
  4671. "threadName": "MainThread"
  4672. },
  4673. {
  4674. "args": [
  4675. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'"
  4676. ],
  4677. "asctime": "2020-08-29 20:16:24,978",
  4678. "created": 1598724984.978379,
  4679. "exc_info": null,
  4680. "exc_text": null,
  4681. "filename": "__init__.py",
  4682. "funcName": "save",
  4683. "levelname": "DEBUG",
  4684. "levelno": 10,
  4685. "lineno": 124,
  4686. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/saved_image.jpg'",
  4687. "module": "__init__",
  4688. "msecs": 978.3790111541748,
  4689. "msg": "Saving image to %s",
  4690. "name": "MEDIA",
  4691. "pathname": "src/media/__init__.py",
  4692. "process": 47545,
  4693. "processName": "MainProcess",
  4694. "relativeCreated": 1303.6208152770996,
  4695. "stack_info": null,
  4696. "thread": 140223083710272,
  4697. "threadName": "MainThread"
  4698. },
  4699. {
  4700. "args": [
  4701. "Returnvalue of successful save method",
  4702. "True",
  4703. "<class 'bool'>"
  4704. ],
  4705. "asctime": "2020-08-29 20:16:24,990",
  4706. "created": 1598724984.9903424,
  4707. "exc_info": null,
  4708. "exc_text": null,
  4709. "filename": "test.py",
  4710. "funcName": "__report_result__",
  4711. "levelname": "DEBUG",
  4712. "levelno": 10,
  4713. "lineno": 22,
  4714. "message": "Result (Returnvalue of successful save method): True (<class 'bool'>)",
  4715. "module": "test",
  4716. "msecs": 990.342378616333,
  4717. "msg": "Result (%s): %s (%s)",
  4718. "name": "__unittest__",
  4719. "pathname": "src/unittest/test.py",
  4720. "process": 47545,
  4721. "processName": "MainProcess",
  4722. "relativeCreated": 1315.5841827392578,
  4723. "stack_info": null,
  4724. "thread": 140223083710272,
  4725. "threadName": "MainThread"
  4726. },
  4727. {
  4728. "args": [
  4729. "Returnvalue of successful save method",
  4730. "True",
  4731. "<class 'bool'>"
  4732. ],
  4733. "asctime": "2020-08-29 20:16:24,990",
  4734. "created": 1598724984.9904814,
  4735. "exc_info": null,
  4736. "exc_text": null,
  4737. "filename": "test.py",
  4738. "funcName": "__report_expectation_equivalency__",
  4739. "levelname": "DEBUG",
  4740. "levelno": 10,
  4741. "lineno": 26,
  4742. "message": "Expectation (Returnvalue of successful save method): result = True (<class 'bool'>)",
  4743. "module": "test",
  4744. "msecs": 990.4813766479492,
  4745. "msg": "Expectation (%s): result = %s (%s)",
  4746. "name": "__unittest__",
  4747. "pathname": "src/unittest/test.py",
  4748. "process": 47545,
  4749. "processName": "MainProcess",
  4750. "relativeCreated": 1315.723180770874,
  4751. "stack_info": null,
  4752. "thread": 140223083710272,
  4753. "threadName": "MainThread"
  4754. }
  4755. ],
  4756. "msecs": 990.5941486358643,
  4757. "msg": "Returnvalue of successful save method is correct (Content %s and Type is %s).",
  4758. "name": "__tLogger__",
  4759. "pathname": "src/unittest/test.py",
  4760. "process": 47545,
  4761. "processName": "MainProcess",
  4762. "relativeCreated": 1315.835952758789,
  4763. "stack_info": null,
  4764. "thread": 140223083710272,
  4765. "threadName": "MainThread",
  4766. "time_consumption": 0.00011277198791503906
  4767. },
  4768. {
  4769. "args": [
  4770. "True",
  4771. "<class 'bool'>"
  4772. ],
  4773. "asctime": "2020-08-29 20:16:24,990",
  4774. "created": 1598724984.9908967,
  4775. "exc_info": null,
  4776. "exc_text": null,
  4777. "filename": "test.py",
  4778. "funcName": "equivalency_chk",
  4779. "levelname": "INFO",
  4780. "levelno": 20,
  4781. "lineno": 142,
  4782. "message": "Existance of saved file is correct (Content True and Type is <class 'bool'>).",
  4783. "module": "test",
  4784. "moduleLogger": [
  4785. {
  4786. "args": [
  4787. "Existance of saved file",
  4788. "True",
  4789. "<class 'bool'>"
  4790. ],
  4791. "asctime": "2020-08-29 20:16:24,990",
  4792. "created": 1598724984.990794,
  4793. "exc_info": null,
  4794. "exc_text": null,
  4795. "filename": "test.py",
  4796. "funcName": "__report_result__",
  4797. "levelname": "DEBUG",
  4798. "levelno": 10,
  4799. "lineno": 22,
  4800. "message": "Result (Existance of saved file): True (<class 'bool'>)",
  4801. "module": "test",
  4802. "msecs": 990.7939434051514,
  4803. "msg": "Result (%s): %s (%s)",
  4804. "name": "__unittest__",
  4805. "pathname": "src/unittest/test.py",
  4806. "process": 47545,
  4807. "processName": "MainProcess",
  4808. "relativeCreated": 1316.0357475280762,
  4809. "stack_info": null,
  4810. "thread": 140223083710272,
  4811. "threadName": "MainThread"
  4812. },
  4813. {
  4814. "args": [
  4815. "Existance of saved file",
  4816. "True",
  4817. "<class 'bool'>"
  4818. ],
  4819. "asctime": "2020-08-29 20:16:24,990",
  4820. "created": 1598724984.990849,
  4821. "exc_info": null,
  4822. "exc_text": null,
  4823. "filename": "test.py",
  4824. "funcName": "__report_expectation_equivalency__",
  4825. "levelname": "DEBUG",
  4826. "levelno": 10,
  4827. "lineno": 26,
  4828. "message": "Expectation (Existance of saved file): result = True (<class 'bool'>)",
  4829. "module": "test",
  4830. "msecs": 990.8490180969238,
  4831. "msg": "Expectation (%s): result = %s (%s)",
  4832. "name": "__unittest__",
  4833. "pathname": "src/unittest/test.py",
  4834. "process": 47545,
  4835. "processName": "MainProcess",
  4836. "relativeCreated": 1316.0908222198486,
  4837. "stack_info": null,
  4838. "thread": 140223083710272,
  4839. "threadName": "MainThread"
  4840. }
  4841. ],
  4842. "msecs": 990.8967018127441,
  4843. "msg": "Existance of saved file is correct (Content %s and Type is %s).",
  4844. "name": "__tLogger__",
  4845. "pathname": "src/unittest/test.py",
  4846. "process": 47545,
  4847. "processName": "MainProcess",
  4848. "relativeCreated": 1316.138505935669,
  4849. "stack_info": null,
  4850. "thread": 140223083710272,
  4851. "threadName": "MainThread",
  4852. "time_consumption": 4.76837158203125e-05
  4853. }
  4854. ],
  4855. "thread": 140223083710272,
  4856. "threadName": "MainThread",
  4857. "time_consumption": 0.302020788192749,
  4858. "time_finished": "2020-08-29 20:16:24,990",
  4859. "time_start": "2020-08-29 20:16:24,688"
  4860. },
  4861. "_XzMFcHYZEem_kd-7nxt1sg": {
  4862. "args": null,
  4863. "asctime": "2020-08-29 20:16:23,740",
  4864. "created": 1598724983.7407093,
  4865. "exc_info": null,
  4866. "exc_text": null,
  4867. "filename": "__init__.py",
  4868. "funcName": "testrun",
  4869. "levelname": "INFO",
  4870. "levelno": 20,
  4871. "lineno": 27,
  4872. "message": "_XzMFcHYZEem_kd-7nxt1sg",
  4873. "module": "__init__",
  4874. "moduleLogger": [],
  4875. "msecs": 740.7093048095703,
  4876. "msg": "_XzMFcHYZEem_kd-7nxt1sg",
  4877. "name": "__tLogger__",
  4878. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  4879. "process": 47545,
  4880. "processName": "MainProcess",
  4881. "relativeCreated": 65.95110893249512,
  4882. "stack_info": null,
  4883. "testcaseLogger": [
  4884. {
  4885. "args": [
  4886. "None",
  4887. "<class 'NoneType'>"
  4888. ],
  4889. "asctime": "2020-08-29 20:16:23,741",
  4890. "created": 1598724983.7417858,
  4891. "exc_info": null,
  4892. "exc_text": null,
  4893. "filename": "test.py",
  4894. "funcName": "equivalency_chk",
  4895. "levelname": "INFO",
  4896. "levelno": 20,
  4897. "lineno": 142,
  4898. "message": "Media data for unknown.txt is correct (Content None and Type is <class 'NoneType'>).",
  4899. "module": "test",
  4900. "moduleLogger": [
  4901. {
  4902. "args": [
  4903. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt"
  4904. ],
  4905. "asctime": "2020-08-29 20:16:23,741",
  4906. "created": 1598724983.7415698,
  4907. "exc_info": null,
  4908. "exc_text": null,
  4909. "filename": "__init__.py",
  4910. "funcName": "get_media_data",
  4911. "levelname": "WARNING",
  4912. "levelno": 30,
  4913. "lineno": 80,
  4914. "message": "Filetype not known: /user_data/data/dirk/prj/unittest/media/unittest/input_data/unknown.txt",
  4915. "module": "__init__",
  4916. "msecs": 741.5697574615479,
  4917. "msg": "Filetype not known: %s",
  4918. "name": "MEDIA",
  4919. "pathname": "src/media/__init__.py",
  4920. "process": 47545,
  4921. "processName": "MainProcess",
  4922. "relativeCreated": 66.81156158447266,
  4923. "stack_info": null,
  4924. "thread": 140223083710272,
  4925. "threadName": "MainThread"
  4926. },
  4927. {
  4928. "args": [
  4929. "Media data for unknown.txt",
  4930. "None",
  4931. "<class 'NoneType'>"
  4932. ],
  4933. "asctime": "2020-08-29 20:16:23,741",
  4934. "created": 1598724983.7416942,
  4935. "exc_info": null,
  4936. "exc_text": null,
  4937. "filename": "test.py",
  4938. "funcName": "__report_result__",
  4939. "levelname": "DEBUG",
  4940. "levelno": 10,
  4941. "lineno": 22,
  4942. "message": "Result (Media data for unknown.txt): None (<class 'NoneType'>)",
  4943. "module": "test",
  4944. "msecs": 741.6942119598389,
  4945. "msg": "Result (%s): %s (%s)",
  4946. "name": "__unittest__",
  4947. "pathname": "src/unittest/test.py",
  4948. "process": 47545,
  4949. "processName": "MainProcess",
  4950. "relativeCreated": 66.93601608276367,
  4951. "stack_info": null,
  4952. "thread": 140223083710272,
  4953. "threadName": "MainThread"
  4954. },
  4955. {
  4956. "args": [
  4957. "Media data for unknown.txt",
  4958. "None",
  4959. "<class 'NoneType'>"
  4960. ],
  4961. "asctime": "2020-08-29 20:16:23,741",
  4962. "created": 1598724983.7417388,
  4963. "exc_info": null,
  4964. "exc_text": null,
  4965. "filename": "test.py",
  4966. "funcName": "__report_expectation_equivalency__",
  4967. "levelname": "DEBUG",
  4968. "levelno": 10,
  4969. "lineno": 26,
  4970. "message": "Expectation (Media data for unknown.txt): result = None (<class 'NoneType'>)",
  4971. "module": "test",
  4972. "msecs": 741.7387962341309,
  4973. "msg": "Expectation (%s): result = %s (%s)",
  4974. "name": "__unittest__",
  4975. "pathname": "src/unittest/test.py",
  4976. "process": 47545,
  4977. "processName": "MainProcess",
  4978. "relativeCreated": 66.98060035705566,
  4979. "stack_info": null,
  4980. "thread": 140223083710272,
  4981. "threadName": "MainThread"
  4982. }
  4983. ],
  4984. "msecs": 741.7857646942139,
  4985. "msg": "Media data for unknown.txt is correct (Content %s and Type is %s).",
  4986. "name": "__tLogger__",
  4987. "pathname": "src/unittest/test.py",
  4988. "process": 47545,
  4989. "processName": "MainProcess",
  4990. "relativeCreated": 67.02756881713867,
  4991. "stack_info": null,
  4992. "thread": 140223083710272,
  4993. "threadName": "MainThread",
  4994. "time_consumption": 4.696846008300781e-05
  4995. },
  4996. {
  4997. "args": [
  4998. "{'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}",
  4999. "<class 'dict'>"
  5000. ],
  5001. "asctime": "2020-08-29 20:16:23,828",
  5002. "created": 1598724983.828124,
  5003. "exc_info": null,
  5004. "exc_text": null,
  5005. "filename": "test.py",
  5006. "funcName": "equivalency_chk",
  5007. "levelname": "INFO",
  5008. "levelno": 20,
  5009. "lineno": 142,
  5010. "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'>).",
  5011. "module": "test",
  5012. "moduleLogger": [
  5013. {
  5014. "args": [
  5015. "Media data for audio.mp3",
  5016. "{ '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 }",
  5017. "<class 'dict'>"
  5018. ],
  5019. "asctime": "2020-08-29 20:16:23,827",
  5020. "created": 1598724983.8278549,
  5021. "exc_info": null,
  5022. "exc_text": null,
  5023. "filename": "test.py",
  5024. "funcName": "__report_result__",
  5025. "levelname": "DEBUG",
  5026. "levelno": 10,
  5027. "lineno": 22,
  5028. "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'>)",
  5029. "module": "test",
  5030. "msecs": 827.8548717498779,
  5031. "msg": "Result (%s): %s (%s)",
  5032. "name": "__unittest__",
  5033. "pathname": "src/unittest/test.py",
  5034. "process": 47545,
  5035. "processName": "MainProcess",
  5036. "relativeCreated": 153.09667587280273,
  5037. "stack_info": null,
  5038. "thread": 140223083710272,
  5039. "threadName": "MainThread"
  5040. },
  5041. {
  5042. "args": [
  5043. "Media data for audio.mp3",
  5044. "{ '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 }",
  5045. "<class 'dict'>"
  5046. ],
  5047. "asctime": "2020-08-29 20:16:23,828",
  5048. "created": 1598724983.828032,
  5049. "exc_info": null,
  5050. "exc_text": null,
  5051. "filename": "test.py",
  5052. "funcName": "__report_expectation_equivalency__",
  5053. "levelname": "DEBUG",
  5054. "levelno": 10,
  5055. "lineno": 26,
  5056. "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'>)",
  5057. "module": "test",
  5058. "msecs": 828.0320167541504,
  5059. "msg": "Expectation (%s): result = %s (%s)",
  5060. "name": "__unittest__",
  5061. "pathname": "src/unittest/test.py",
  5062. "process": 47545,
  5063. "processName": "MainProcess",
  5064. "relativeCreated": 153.2738208770752,
  5065. "stack_info": null,
  5066. "thread": 140223083710272,
  5067. "threadName": "MainThread"
  5068. }
  5069. ],
  5070. "msecs": 828.1240463256836,
  5071. "msg": "Media data for audio.mp3 is correct (Content %s and Type is %s).",
  5072. "name": "__tLogger__",
  5073. "pathname": "src/unittest/test.py",
  5074. "process": 47545,
  5075. "processName": "MainProcess",
  5076. "relativeCreated": 153.3658504486084,
  5077. "stack_info": null,
  5078. "thread": 140223083710272,
  5079. "threadName": "MainThread",
  5080. "time_consumption": 9.202957153320312e-05
  5081. },
  5082. {
  5083. "args": [
  5084. "{'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}",
  5085. "<class 'dict'>"
  5086. ],
  5087. "asctime": "2020-08-29 20:16:23,892",
  5088. "created": 1598724983.8925233,
  5089. "exc_info": null,
  5090. "exc_text": null,
  5091. "filename": "test.py",
  5092. "funcName": "equivalency_chk",
  5093. "levelname": "INFO",
  5094. "levelno": 20,
  5095. "lineno": 142,
  5096. "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'>).",
  5097. "module": "test",
  5098. "moduleLogger": [
  5099. {
  5100. "args": [
  5101. "Media data for audio_fail_conv.mp3",
  5102. "{ '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 }",
  5103. "<class 'dict'>"
  5104. ],
  5105. "asctime": "2020-08-29 20:16:23,892",
  5106. "created": 1598724983.8922608,
  5107. "exc_info": null,
  5108. "exc_text": null,
  5109. "filename": "test.py",
  5110. "funcName": "__report_result__",
  5111. "levelname": "DEBUG",
  5112. "levelno": 10,
  5113. "lineno": 22,
  5114. "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'>)",
  5115. "module": "test",
  5116. "msecs": 892.2607898712158,
  5117. "msg": "Result (%s): %s (%s)",
  5118. "name": "__unittest__",
  5119. "pathname": "src/unittest/test.py",
  5120. "process": 47545,
  5121. "processName": "MainProcess",
  5122. "relativeCreated": 217.50259399414062,
  5123. "stack_info": null,
  5124. "thread": 140223083710272,
  5125. "threadName": "MainThread"
  5126. },
  5127. {
  5128. "args": [
  5129. "Media data for audio_fail_conv.mp3",
  5130. "{ '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 }",
  5131. "<class 'dict'>"
  5132. ],
  5133. "asctime": "2020-08-29 20:16:23,892",
  5134. "created": 1598724983.8924286,
  5135. "exc_info": null,
  5136. "exc_text": null,
  5137. "filename": "test.py",
  5138. "funcName": "__report_expectation_equivalency__",
  5139. "levelname": "DEBUG",
  5140. "levelno": 10,
  5141. "lineno": 26,
  5142. "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'>)",
  5143. "module": "test",
  5144. "msecs": 892.4286365509033,
  5145. "msg": "Expectation (%s): result = %s (%s)",
  5146. "name": "__unittest__",
  5147. "pathname": "src/unittest/test.py",
  5148. "process": 47545,
  5149. "processName": "MainProcess",
  5150. "relativeCreated": 217.67044067382812,
  5151. "stack_info": null,
  5152. "thread": 140223083710272,
  5153. "threadName": "MainThread"
  5154. }
  5155. ],
  5156. "msecs": 892.5232887268066,
  5157. "msg": "Media data for audio_fail_conv.mp3 is correct (Content %s and Type is %s).",
  5158. "name": "__tLogger__",
  5159. "pathname": "src/unittest/test.py",
  5160. "process": 47545,
  5161. "processName": "MainProcess",
  5162. "relativeCreated": 217.76509284973145,
  5163. "stack_info": null,
  5164. "thread": 140223083710272,
  5165. "threadName": "MainThread",
  5166. "time_consumption": 9.465217590332031e-05
  5167. },
  5168. {
  5169. "args": [
  5170. "{'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}",
  5171. "<class 'dict'>"
  5172. ],
  5173. "asctime": "2020-08-29 20:16:23,942",
  5174. "created": 1598724983.9428732,
  5175. "exc_info": null,
  5176. "exc_text": null,
  5177. "filename": "test.py",
  5178. "funcName": "equivalency_chk",
  5179. "levelname": "INFO",
  5180. "levelno": 20,
  5181. "lineno": 142,
  5182. "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'>).",
  5183. "module": "test",
  5184. "moduleLogger": [
  5185. {
  5186. "args": [
  5187. "Media data for audio_year_0.mp3",
  5188. "{ '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 }",
  5189. "<class 'dict'>"
  5190. ],
  5191. "asctime": "2020-08-29 20:16:23,942",
  5192. "created": 1598724983.9426157,
  5193. "exc_info": null,
  5194. "exc_text": null,
  5195. "filename": "test.py",
  5196. "funcName": "__report_result__",
  5197. "levelname": "DEBUG",
  5198. "levelno": 10,
  5199. "lineno": 22,
  5200. "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'>)",
  5201. "module": "test",
  5202. "msecs": 942.6157474517822,
  5203. "msg": "Result (%s): %s (%s)",
  5204. "name": "__unittest__",
  5205. "pathname": "src/unittest/test.py",
  5206. "process": 47545,
  5207. "processName": "MainProcess",
  5208. "relativeCreated": 267.85755157470703,
  5209. "stack_info": null,
  5210. "thread": 140223083710272,
  5211. "threadName": "MainThread"
  5212. },
  5213. {
  5214. "args": [
  5215. "Media data for audio_year_0.mp3",
  5216. "{ '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 }",
  5217. "<class 'dict'>"
  5218. ],
  5219. "asctime": "2020-08-29 20:16:23,942",
  5220. "created": 1598724983.9427845,
  5221. "exc_info": null,
  5222. "exc_text": null,
  5223. "filename": "test.py",
  5224. "funcName": "__report_expectation_equivalency__",
  5225. "levelname": "DEBUG",
  5226. "levelno": 10,
  5227. "lineno": 26,
  5228. "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'>)",
  5229. "module": "test",
  5230. "msecs": 942.7845478057861,
  5231. "msg": "Expectation (%s): result = %s (%s)",
  5232. "name": "__unittest__",
  5233. "pathname": "src/unittest/test.py",
  5234. "process": 47545,
  5235. "processName": "MainProcess",
  5236. "relativeCreated": 268.02635192871094,
  5237. "stack_info": null,
  5238. "thread": 140223083710272,
  5239. "threadName": "MainThread"
  5240. }
  5241. ],
  5242. "msecs": 942.8732395172119,
  5243. "msg": "Media data for audio_year_0.mp3 is correct (Content %s and Type is %s).",
  5244. "name": "__tLogger__",
  5245. "pathname": "src/unittest/test.py",
  5246. "process": 47545,
  5247. "processName": "MainProcess",
  5248. "relativeCreated": 268.1150436401367,
  5249. "stack_info": null,
  5250. "thread": 140223083710272,
  5251. "threadName": "MainThread",
  5252. "time_consumption": 8.869171142578125e-05
  5253. },
  5254. {
  5255. "args": [
  5256. "{'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'}",
  5257. "<class 'dict'>"
  5258. ],
  5259. "asctime": "2020-08-29 20:16:23,958",
  5260. "created": 1598724983.9588952,
  5261. "exc_info": null,
  5262. "exc_text": null,
  5263. "filename": "test.py",
  5264. "funcName": "equivalency_chk",
  5265. "levelname": "INFO",
  5266. "levelno": 20,
  5267. "lineno": 142,
  5268. "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'>).",
  5269. "module": "test",
  5270. "moduleLogger": [
  5271. {
  5272. "args": [
  5273. "time",
  5274. "'2019:06:09 14:33:41'"
  5275. ],
  5276. "asctime": "2020-08-29 20:16:23,955",
  5277. "created": 1598724983.9557693,
  5278. "exc_info": null,
  5279. "exc_text": null,
  5280. "filename": "metadata.py",
  5281. "funcName": "__get_exif_data__",
  5282. "levelname": "DEBUG",
  5283. "levelno": 10,
  5284. "lineno": 134,
  5285. "message": "Converting time out of '2019:06:09 14:33:41'",
  5286. "module": "metadata",
  5287. "msecs": 955.7693004608154,
  5288. "msg": "Converting %s out of %s",
  5289. "name": "MEDIA",
  5290. "pathname": "src/media/metadata.py",
  5291. "process": 47545,
  5292. "processName": "MainProcess",
  5293. "relativeCreated": 281.01110458374023,
  5294. "stack_info": null,
  5295. "thread": 140223083710272,
  5296. "threadName": "MainThread"
  5297. },
  5298. {
  5299. "args": [
  5300. "exposure_program",
  5301. "2"
  5302. ],
  5303. "asctime": "2020-08-29 20:16:23,958",
  5304. "created": 1598724983.958106,
  5305. "exc_info": null,
  5306. "exc_text": null,
  5307. "filename": "metadata.py",
  5308. "funcName": "__get_exif_data__",
  5309. "levelname": "DEBUG",
  5310. "levelno": 10,
  5311. "lineno": 134,
  5312. "message": "Converting exposure_program out of 2",
  5313. "module": "metadata",
  5314. "msecs": 958.1060409545898,
  5315. "msg": "Converting %s out of %s",
  5316. "name": "MEDIA",
  5317. "pathname": "src/media/metadata.py",
  5318. "process": 47545,
  5319. "processName": "MainProcess",
  5320. "relativeCreated": 283.34784507751465,
  5321. "stack_info": null,
  5322. "thread": 140223083710272,
  5323. "threadName": "MainThread"
  5324. },
  5325. {
  5326. "args": [
  5327. "exposure_time",
  5328. "(1, 131)"
  5329. ],
  5330. "asctime": "2020-08-29 20:16:23,958",
  5331. "created": 1598724983.9581742,
  5332. "exc_info": null,
  5333. "exc_text": null,
  5334. "filename": "metadata.py",
  5335. "funcName": "__get_exif_data__",
  5336. "levelname": "DEBUG",
  5337. "levelno": 10,
  5338. "lineno": 134,
  5339. "message": "Converting exposure_time out of (1, 131)",
  5340. "module": "metadata",
  5341. "msecs": 958.1742286682129,
  5342. "msg": "Converting %s out of %s",
  5343. "name": "MEDIA",
  5344. "pathname": "src/media/metadata.py",
  5345. "process": 47545,
  5346. "processName": "MainProcess",
  5347. "relativeCreated": 283.4160327911377,
  5348. "stack_info": null,
  5349. "thread": 140223083710272,
  5350. "threadName": "MainThread"
  5351. },
  5352. {
  5353. "args": [
  5354. "flash",
  5355. "16"
  5356. ],
  5357. "asctime": "2020-08-29 20:16:23,958",
  5358. "created": 1598724983.958222,
  5359. "exc_info": null,
  5360. "exc_text": null,
  5361. "filename": "metadata.py",
  5362. "funcName": "__get_exif_data__",
  5363. "levelname": "DEBUG",
  5364. "levelno": 10,
  5365. "lineno": 134,
  5366. "message": "Converting flash out of 16",
  5367. "module": "metadata",
  5368. "msecs": 958.2219123840332,
  5369. "msg": "Converting %s out of %s",
  5370. "name": "MEDIA",
  5371. "pathname": "src/media/metadata.py",
  5372. "process": 47545,
  5373. "processName": "MainProcess",
  5374. "relativeCreated": 283.463716506958,
  5375. "stack_info": null,
  5376. "thread": 140223083710272,
  5377. "threadName": "MainThread"
  5378. },
  5379. {
  5380. "args": [
  5381. "aperture",
  5382. "(22, 10)"
  5383. ],
  5384. "asctime": "2020-08-29 20:16:23,958",
  5385. "created": 1598724983.9582655,
  5386. "exc_info": null,
  5387. "exc_text": null,
  5388. "filename": "metadata.py",
  5389. "funcName": "__get_exif_data__",
  5390. "levelname": "DEBUG",
  5391. "levelno": 10,
  5392. "lineno": 134,
  5393. "message": "Converting aperture out of (22, 10)",
  5394. "module": "metadata",
  5395. "msecs": 958.2655429840088,
  5396. "msg": "Converting %s out of %s",
  5397. "name": "MEDIA",
  5398. "pathname": "src/media/metadata.py",
  5399. "process": 47545,
  5400. "processName": "MainProcess",
  5401. "relativeCreated": 283.5073471069336,
  5402. "stack_info": null,
  5403. "thread": 140223083710272,
  5404. "threadName": "MainThread"
  5405. },
  5406. {
  5407. "args": [
  5408. "focal_length",
  5409. "(3463, 1000)"
  5410. ],
  5411. "asctime": "2020-08-29 20:16:23,958",
  5412. "created": 1598724983.9583097,
  5413. "exc_info": null,
  5414. "exc_text": null,
  5415. "filename": "metadata.py",
  5416. "funcName": "__get_exif_data__",
  5417. "levelname": "DEBUG",
  5418. "levelno": 10,
  5419. "lineno": 134,
  5420. "message": "Converting focal_length out of (3463, 1000)",
  5421. "module": "metadata",
  5422. "msecs": 958.3096504211426,
  5423. "msg": "Converting %s out of %s",
  5424. "name": "MEDIA",
  5425. "pathname": "src/media/metadata.py",
  5426. "process": 47545,
  5427. "processName": "MainProcess",
  5428. "relativeCreated": 283.5514545440674,
  5429. "stack_info": null,
  5430. "thread": 140223083710272,
  5431. "threadName": "MainThread"
  5432. },
  5433. {
  5434. "args": [
  5435. "gps",
  5436. "{0: b'\\x02\\x02\\x00\\x00', 1: 'N', 2: ((52, 1), (59, 1), (369564, 10000)), 3: 'E', 4: ((11, 1), (34, 1), (289092, 10000)), 5: b'\\x01', 6: (49610, 1000), 7: ((12, 1), (33, 1), (39, 1)), 18: 'WGS-84', 27: 'ASCII\\x00\\x00\\x00GPS', 29: '2019:06:09'}"
  5437. ],
  5438. "asctime": "2020-08-29 20:16:23,958",
  5439. "created": 1598724983.9583626,
  5440. "exc_info": null,
  5441. "exc_text": null,
  5442. "filename": "metadata.py",
  5443. "funcName": "__get_exif_data__",
  5444. "levelname": "DEBUG",
  5445. "levelno": 10,
  5446. "lineno": 134,
  5447. "message": "Converting gps out of {0: b'\\x02\\x02\\x00\\x00', 1: 'N', 2: ((52, 1), (59, 1), (369564, 10000)), 3: 'E', 4: ((11, 1), (34, 1), (289092, 10000)), 5: b'\\x01', 6: (49610, 1000), 7: ((12, 1), (33, 1), (39, 1)), 18: 'WGS-84', 27: 'ASCII\\x00\\x00\\x00GPS', 29: '2019:06:09'}",
  5448. "module": "metadata",
  5449. "msecs": 958.3625793457031,
  5450. "msg": "Converting %s out of %s",
  5451. "name": "MEDIA",
  5452. "pathname": "src/media/metadata.py",
  5453. "process": 47545,
  5454. "processName": "MainProcess",
  5455. "relativeCreated": 283.60438346862793,
  5456. "stack_info": null,
  5457. "thread": 140223083710272,
  5458. "threadName": "MainThread"
  5459. },
  5460. {
  5461. "args": [
  5462. "height",
  5463. "3120"
  5464. ],
  5465. "asctime": "2020-08-29 20:16:23,958",
  5466. "created": 1598724983.9584196,
  5467. "exc_info": null,
  5468. "exc_text": null,
  5469. "filename": "metadata.py",
  5470. "funcName": "__get_exif_data__",
  5471. "levelname": "DEBUG",
  5472. "levelno": 10,
  5473. "lineno": 134,
  5474. "message": "Converting height out of 3120",
  5475. "module": "metadata",
  5476. "msecs": 958.4195613861084,
  5477. "msg": "Converting %s out of %s",
  5478. "name": "MEDIA",
  5479. "pathname": "src/media/metadata.py",
  5480. "process": 47545,
  5481. "processName": "MainProcess",
  5482. "relativeCreated": 283.6613655090332,
  5483. "stack_info": null,
  5484. "thread": 140223083710272,
  5485. "threadName": "MainThread"
  5486. },
  5487. {
  5488. "args": [
  5489. "iso",
  5490. "100"
  5491. ],
  5492. "asctime": "2020-08-29 20:16:23,958",
  5493. "created": 1598724983.958482,
  5494. "exc_info": null,
  5495. "exc_text": null,
  5496. "filename": "metadata.py",
  5497. "funcName": "__get_exif_data__",
  5498. "levelname": "DEBUG",
  5499. "levelno": 10,
  5500. "lineno": 134,
  5501. "message": "Converting iso out of 100",
  5502. "module": "metadata",
  5503. "msecs": 958.482027053833,
  5504. "msg": "Converting %s out of %s",
  5505. "name": "MEDIA",
  5506. "pathname": "src/media/metadata.py",
  5507. "process": 47545,
  5508. "processName": "MainProcess",
  5509. "relativeCreated": 283.7238311767578,
  5510. "stack_info": null,
  5511. "thread": 140223083710272,
  5512. "threadName": "MainThread"
  5513. },
  5514. {
  5515. "args": [
  5516. "camera_vendor",
  5517. "'motorola'"
  5518. ],
  5519. "asctime": "2020-08-29 20:16:23,958",
  5520. "created": 1598724983.9585314,
  5521. "exc_info": null,
  5522. "exc_text": null,
  5523. "filename": "metadata.py",
  5524. "funcName": "__get_exif_data__",
  5525. "levelname": "DEBUG",
  5526. "levelno": 10,
  5527. "lineno": 134,
  5528. "message": "Converting camera_vendor out of 'motorola'",
  5529. "module": "metadata",
  5530. "msecs": 958.531379699707,
  5531. "msg": "Converting %s out of %s",
  5532. "name": "MEDIA",
  5533. "pathname": "src/media/metadata.py",
  5534. "process": 47545,
  5535. "processName": "MainProcess",
  5536. "relativeCreated": 283.77318382263184,
  5537. "stack_info": null,
  5538. "thread": 140223083710272,
  5539. "threadName": "MainThread"
  5540. },
  5541. {
  5542. "args": [
  5543. "camera_model",
  5544. "'motorola one'"
  5545. ],
  5546. "asctime": "2020-08-29 20:16:23,958",
  5547. "created": 1598724983.9585671,
  5548. "exc_info": null,
  5549. "exc_text": null,
  5550. "filename": "metadata.py",
  5551. "funcName": "__get_exif_data__",
  5552. "levelname": "DEBUG",
  5553. "levelno": 10,
  5554. "lineno": 134,
  5555. "message": "Converting camera_model out of 'motorola one'",
  5556. "module": "metadata",
  5557. "msecs": 958.5671424865723,
  5558. "msg": "Converting %s out of %s",
  5559. "name": "MEDIA",
  5560. "pathname": "src/media/metadata.py",
  5561. "process": 47545,
  5562. "processName": "MainProcess",
  5563. "relativeCreated": 283.80894660949707,
  5564. "stack_info": null,
  5565. "thread": 140223083710272,
  5566. "threadName": "MainThread"
  5567. },
  5568. {
  5569. "args": [
  5570. "orientation",
  5571. "6"
  5572. ],
  5573. "asctime": "2020-08-29 20:16:23,958",
  5574. "created": 1598724983.9586012,
  5575. "exc_info": null,
  5576. "exc_text": null,
  5577. "filename": "metadata.py",
  5578. "funcName": "__get_exif_data__",
  5579. "levelname": "DEBUG",
  5580. "levelno": 10,
  5581. "lineno": 134,
  5582. "message": "Converting orientation out of 6",
  5583. "module": "metadata",
  5584. "msecs": 958.6012363433838,
  5585. "msg": "Converting %s out of %s",
  5586. "name": "MEDIA",
  5587. "pathname": "src/media/metadata.py",
  5588. "process": 47545,
  5589. "processName": "MainProcess",
  5590. "relativeCreated": 283.8430404663086,
  5591. "stack_info": null,
  5592. "thread": 140223083710272,
  5593. "threadName": "MainThread"
  5594. },
  5595. {
  5596. "args": [
  5597. "width",
  5598. "4160"
  5599. ],
  5600. "asctime": "2020-08-29 20:16:23,958",
  5601. "created": 1598724983.9586358,
  5602. "exc_info": null,
  5603. "exc_text": null,
  5604. "filename": "metadata.py",
  5605. "funcName": "__get_exif_data__",
  5606. "levelname": "DEBUG",
  5607. "levelno": 10,
  5608. "lineno": 134,
  5609. "message": "Converting width out of 4160",
  5610. "module": "metadata",
  5611. "msecs": 958.6358070373535,
  5612. "msg": "Converting %s out of %s",
  5613. "name": "MEDIA",
  5614. "pathname": "src/media/metadata.py",
  5615. "process": 47545,
  5616. "processName": "MainProcess",
  5617. "relativeCreated": 283.8776111602783,
  5618. "stack_info": null,
  5619. "thread": 140223083710272,
  5620. "threadName": "MainThread"
  5621. },
  5622. {
  5623. "args": [
  5624. "Media data for image_exif_gps.jpg",
  5625. "{ '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' }",
  5626. "<class 'dict'>"
  5627. ],
  5628. "asctime": "2020-08-29 20:16:23,958",
  5629. "created": 1598724983.9587524,
  5630. "exc_info": null,
  5631. "exc_text": null,
  5632. "filename": "test.py",
  5633. "funcName": "__report_result__",
  5634. "levelname": "DEBUG",
  5635. "levelno": 10,
  5636. "lineno": 22,
  5637. "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'>)",
  5638. "module": "test",
  5639. "msecs": 958.7523937225342,
  5640. "msg": "Result (%s): %s (%s)",
  5641. "name": "__unittest__",
  5642. "pathname": "src/unittest/test.py",
  5643. "process": 47545,
  5644. "processName": "MainProcess",
  5645. "relativeCreated": 283.994197845459,
  5646. "stack_info": null,
  5647. "thread": 140223083710272,
  5648. "threadName": "MainThread"
  5649. },
  5650. {
  5651. "args": [
  5652. "Media data for image_exif_gps.jpg",
  5653. "{ '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 }",
  5654. "<class 'dict'>"
  5655. ],
  5656. "asctime": "2020-08-29 20:16:23,958",
  5657. "created": 1598724983.9588153,
  5658. "exc_info": null,
  5659. "exc_text": null,
  5660. "filename": "test.py",
  5661. "funcName": "__report_expectation_equivalency__",
  5662. "levelname": "DEBUG",
  5663. "levelno": 10,
  5664. "lineno": 26,
  5665. "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'>)",
  5666. "module": "test",
  5667. "msecs": 958.815336227417,
  5668. "msg": "Expectation (%s): result = %s (%s)",
  5669. "name": "__unittest__",
  5670. "pathname": "src/unittest/test.py",
  5671. "process": 47545,
  5672. "processName": "MainProcess",
  5673. "relativeCreated": 284.0571403503418,
  5674. "stack_info": null,
  5675. "thread": 140223083710272,
  5676. "threadName": "MainThread"
  5677. }
  5678. ],
  5679. "msecs": 958.895206451416,
  5680. "msg": "Media data for image_exif_gps.jpg is correct (Content %s and Type is %s).",
  5681. "name": "__tLogger__",
  5682. "pathname": "src/unittest/test.py",
  5683. "process": 47545,
  5684. "processName": "MainProcess",
  5685. "relativeCreated": 284.1370105743408,
  5686. "stack_info": null,
  5687. "thread": 140223083710272,
  5688. "threadName": "MainThread",
  5689. "time_consumption": 7.987022399902344e-05
  5690. },
  5691. {
  5692. "args": [
  5693. "{'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'}",
  5694. "<class 'dict'>"
  5695. ],
  5696. "asctime": "2020-08-29 20:16:23,961",
  5697. "created": 1598724983.9613633,
  5698. "exc_info": null,
  5699. "exc_text": null,
  5700. "filename": "test.py",
  5701. "funcName": "equivalency_chk",
  5702. "levelname": "INFO",
  5703. "levelno": 20,
  5704. "lineno": 142,
  5705. "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'>).",
  5706. "module": "test",
  5707. "moduleLogger": [
  5708. {
  5709. "args": [
  5710. "time",
  5711. "'2018:01:05 10:12:09'"
  5712. ],
  5713. "asctime": "2020-08-29 20:16:23,960",
  5714. "created": 1598724983.9604533,
  5715. "exc_info": null,
  5716. "exc_text": null,
  5717. "filename": "metadata.py",
  5718. "funcName": "__get_exif_data__",
  5719. "levelname": "DEBUG",
  5720. "levelno": 10,
  5721. "lineno": 134,
  5722. "message": "Converting time out of '2018:01:05 10:12:09'",
  5723. "module": "metadata",
  5724. "msecs": 960.4532718658447,
  5725. "msg": "Converting %s out of %s",
  5726. "name": "MEDIA",
  5727. "pathname": "src/media/metadata.py",
  5728. "process": 47545,
  5729. "processName": "MainProcess",
  5730. "relativeCreated": 285.69507598876953,
  5731. "stack_info": null,
  5732. "thread": 140223083710272,
  5733. "threadName": "MainThread"
  5734. },
  5735. {
  5736. "args": [
  5737. "exposure_program",
  5738. "2"
  5739. ],
  5740. "asctime": "2020-08-29 20:16:23,960",
  5741. "created": 1598724983.9605558,
  5742. "exc_info": null,
  5743. "exc_text": null,
  5744. "filename": "metadata.py",
  5745. "funcName": "__get_exif_data__",
  5746. "levelname": "DEBUG",
  5747. "levelno": 10,
  5748. "lineno": 134,
  5749. "message": "Converting exposure_program out of 2",
  5750. "module": "metadata",
  5751. "msecs": 960.5557918548584,
  5752. "msg": "Converting %s out of %s",
  5753. "name": "MEDIA",
  5754. "pathname": "src/media/metadata.py",
  5755. "process": 47545,
  5756. "processName": "MainProcess",
  5757. "relativeCreated": 285.7975959777832,
  5758. "stack_info": null,
  5759. "thread": 140223083710272,
  5760. "threadName": "MainThread"
  5761. },
  5762. {
  5763. "args": [
  5764. "exposure_time",
  5765. "(30000000, 1000000000)"
  5766. ],
  5767. "asctime": "2020-08-29 20:16:23,960",
  5768. "created": 1598724983.9606068,
  5769. "exc_info": null,
  5770. "exc_text": null,
  5771. "filename": "metadata.py",
  5772. "funcName": "__get_exif_data__",
  5773. "levelname": "DEBUG",
  5774. "levelno": 10,
  5775. "lineno": 134,
  5776. "message": "Converting exposure_time out of (30000000, 1000000000)",
  5777. "module": "metadata",
  5778. "msecs": 960.6068134307861,
  5779. "msg": "Converting %s out of %s",
  5780. "name": "MEDIA",
  5781. "pathname": "src/media/metadata.py",
  5782. "process": 47545,
  5783. "processName": "MainProcess",
  5784. "relativeCreated": 285.84861755371094,
  5785. "stack_info": null,
  5786. "thread": 140223083710272,
  5787. "threadName": "MainThread"
  5788. },
  5789. {
  5790. "args": [
  5791. "flash",
  5792. "1"
  5793. ],
  5794. "asctime": "2020-08-29 20:16:23,960",
  5795. "created": 1598724983.9606538,
  5796. "exc_info": null,
  5797. "exc_text": null,
  5798. "filename": "metadata.py",
  5799. "funcName": "__get_exif_data__",
  5800. "levelname": "DEBUG",
  5801. "levelno": 10,
  5802. "lineno": 134,
  5803. "message": "Converting flash out of 1",
  5804. "module": "metadata",
  5805. "msecs": 960.6537818908691,
  5806. "msg": "Converting %s out of %s",
  5807. "name": "MEDIA",
  5808. "pathname": "src/media/metadata.py",
  5809. "process": 47545,
  5810. "processName": "MainProcess",
  5811. "relativeCreated": 285.89558601379395,
  5812. "stack_info": null,
  5813. "thread": 140223083710272,
  5814. "threadName": "MainThread"
  5815. },
  5816. {
  5817. "args": [
  5818. "aperture",
  5819. "(220, 100)"
  5820. ],
  5821. "asctime": "2020-08-29 20:16:23,960",
  5822. "created": 1598724983.9606962,
  5823. "exc_info": null,
  5824. "exc_text": null,
  5825. "filename": "metadata.py",
  5826. "funcName": "__get_exif_data__",
  5827. "levelname": "DEBUG",
  5828. "levelno": 10,
  5829. "lineno": 134,
  5830. "message": "Converting aperture out of (220, 100)",
  5831. "module": "metadata",
  5832. "msecs": 960.6962203979492,
  5833. "msg": "Converting %s out of %s",
  5834. "name": "MEDIA",
  5835. "pathname": "src/media/metadata.py",
  5836. "process": 47545,
  5837. "processName": "MainProcess",
  5838. "relativeCreated": 285.938024520874,
  5839. "stack_info": null,
  5840. "thread": 140223083710272,
  5841. "threadName": "MainThread"
  5842. },
  5843. {
  5844. "args": [
  5845. "focal_length",
  5846. "(4500, 1000)"
  5847. ],
  5848. "asctime": "2020-08-29 20:16:23,960",
  5849. "created": 1598724983.9607368,
  5850. "exc_info": null,
  5851. "exc_text": null,
  5852. "filename": "metadata.py",
  5853. "funcName": "__get_exif_data__",
  5854. "levelname": "DEBUG",
  5855. "levelno": 10,
  5856. "lineno": 134,
  5857. "message": "Converting focal_length out of (4500, 1000)",
  5858. "module": "metadata",
  5859. "msecs": 960.7367515563965,
  5860. "msg": "Converting %s out of %s",
  5861. "name": "MEDIA",
  5862. "pathname": "src/media/metadata.py",
  5863. "process": 47545,
  5864. "processName": "MainProcess",
  5865. "relativeCreated": 285.9785556793213,
  5866. "stack_info": null,
  5867. "thread": 140223083710272,
  5868. "threadName": "MainThread"
  5869. },
  5870. {
  5871. "args": [
  5872. "height",
  5873. "3968"
  5874. ],
  5875. "asctime": "2020-08-29 20:16:23,960",
  5876. "created": 1598724983.960779,
  5877. "exc_info": null,
  5878. "exc_text": null,
  5879. "filename": "metadata.py",
  5880. "funcName": "__get_exif_data__",
  5881. "levelname": "DEBUG",
  5882. "levelno": 10,
  5883. "lineno": 134,
  5884. "message": "Converting height out of 3968",
  5885. "module": "metadata",
  5886. "msecs": 960.7789516448975,
  5887. "msg": "Converting %s out of %s",
  5888. "name": "MEDIA",
  5889. "pathname": "src/media/metadata.py",
  5890. "process": 47545,
  5891. "processName": "MainProcess",
  5892. "relativeCreated": 286.02075576782227,
  5893. "stack_info": null,
  5894. "thread": 140223083710272,
  5895. "threadName": "MainThread"
  5896. },
  5897. {
  5898. "args": [
  5899. "iso",
  5900. "160"
  5901. ],
  5902. "asctime": "2020-08-29 20:16:23,960",
  5903. "created": 1598724983.9608154,
  5904. "exc_info": null,
  5905. "exc_text": null,
  5906. "filename": "metadata.py",
  5907. "funcName": "__get_exif_data__",
  5908. "levelname": "DEBUG",
  5909. "levelno": 10,
  5910. "lineno": 134,
  5911. "message": "Converting iso out of 160",
  5912. "module": "metadata",
  5913. "msecs": 960.8154296875,
  5914. "msg": "Converting %s out of %s",
  5915. "name": "MEDIA",
  5916. "pathname": "src/media/metadata.py",
  5917. "process": 47545,
  5918. "processName": "MainProcess",
  5919. "relativeCreated": 286.0572338104248,
  5920. "stack_info": null,
  5921. "thread": 140223083710272,
  5922. "threadName": "MainThread"
  5923. },
  5924. {
  5925. "args": [
  5926. "camera_vendor",
  5927. "'HUAWEI'"
  5928. ],
  5929. "asctime": "2020-08-29 20:16:23,960",
  5930. "created": 1598724983.9608507,
  5931. "exc_info": null,
  5932. "exc_text": null,
  5933. "filename": "metadata.py",
  5934. "funcName": "__get_exif_data__",
  5935. "levelname": "DEBUG",
  5936. "levelno": 10,
  5937. "lineno": 134,
  5938. "message": "Converting camera_vendor out of 'HUAWEI'",
  5939. "module": "metadata",
  5940. "msecs": 960.850715637207,
  5941. "msg": "Converting %s out of %s",
  5942. "name": "MEDIA",
  5943. "pathname": "src/media/metadata.py",
  5944. "process": 47545,
  5945. "processName": "MainProcess",
  5946. "relativeCreated": 286.09251976013184,
  5947. "stack_info": null,
  5948. "thread": 140223083710272,
  5949. "threadName": "MainThread"
  5950. },
  5951. {
  5952. "args": [
  5953. "camera_model",
  5954. "'EVA-L09'"
  5955. ],
  5956. "asctime": "2020-08-29 20:16:23,960",
  5957. "created": 1598724983.9608898,
  5958. "exc_info": null,
  5959. "exc_text": null,
  5960. "filename": "metadata.py",
  5961. "funcName": "__get_exif_data__",
  5962. "levelname": "DEBUG",
  5963. "levelno": 10,
  5964. "lineno": 134,
  5965. "message": "Converting camera_model out of 'EVA-L09'",
  5966. "module": "metadata",
  5967. "msecs": 960.8898162841797,
  5968. "msg": "Converting %s out of %s",
  5969. "name": "MEDIA",
  5970. "pathname": "src/media/metadata.py",
  5971. "process": 47545,
  5972. "processName": "MainProcess",
  5973. "relativeCreated": 286.1316204071045,
  5974. "stack_info": null,
  5975. "thread": 140223083710272,
  5976. "threadName": "MainThread"
  5977. },
  5978. {
  5979. "args": [
  5980. "orientation",
  5981. "0"
  5982. ],
  5983. "asctime": "2020-08-29 20:16:23,960",
  5984. "created": 1598724983.9609244,
  5985. "exc_info": null,
  5986. "exc_text": null,
  5987. "filename": "metadata.py",
  5988. "funcName": "__get_exif_data__",
  5989. "levelname": "DEBUG",
  5990. "levelno": 10,
  5991. "lineno": 134,
  5992. "message": "Converting orientation out of 0",
  5993. "module": "metadata",
  5994. "msecs": 960.9243869781494,
  5995. "msg": "Converting %s out of %s",
  5996. "name": "MEDIA",
  5997. "pathname": "src/media/metadata.py",
  5998. "process": 47545,
  5999. "processName": "MainProcess",
  6000. "relativeCreated": 286.1661911010742,
  6001. "stack_info": null,
  6002. "thread": 140223083710272,
  6003. "threadName": "MainThread"
  6004. },
  6005. {
  6006. "args": [
  6007. "width",
  6008. "2976"
  6009. ],
  6010. "asctime": "2020-08-29 20:16:23,960",
  6011. "created": 1598724983.9609733,
  6012. "exc_info": null,
  6013. "exc_text": null,
  6014. "filename": "metadata.py",
  6015. "funcName": "__get_exif_data__",
  6016. "levelname": "DEBUG",
  6017. "levelno": 10,
  6018. "lineno": 134,
  6019. "message": "Converting width out of 2976",
  6020. "module": "metadata",
  6021. "msecs": 960.9732627868652,
  6022. "msg": "Converting %s out of %s",
  6023. "name": "MEDIA",
  6024. "pathname": "src/media/metadata.py",
  6025. "process": 47545,
  6026. "processName": "MainProcess",
  6027. "relativeCreated": 286.21506690979004,
  6028. "stack_info": null,
  6029. "thread": 140223083710272,
  6030. "threadName": "MainThread"
  6031. },
  6032. {
  6033. "args": [
  6034. "Media data for image_exif_no_gps.jpg",
  6035. "{ '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' }",
  6036. "<class 'dict'>"
  6037. ],
  6038. "asctime": "2020-08-29 20:16:23,961",
  6039. "created": 1598724983.9611175,
  6040. "exc_info": null,
  6041. "exc_text": null,
  6042. "filename": "test.py",
  6043. "funcName": "__report_result__",
  6044. "levelname": "DEBUG",
  6045. "levelno": 10,
  6046. "lineno": 22,
  6047. "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'>)",
  6048. "module": "test",
  6049. "msecs": 961.1175060272217,
  6050. "msg": "Result (%s): %s (%s)",
  6051. "name": "__unittest__",
  6052. "pathname": "src/unittest/test.py",
  6053. "process": 47545,
  6054. "processName": "MainProcess",
  6055. "relativeCreated": 286.3593101501465,
  6056. "stack_info": null,
  6057. "thread": 140223083710272,
  6058. "threadName": "MainThread"
  6059. },
  6060. {
  6061. "args": [
  6062. "Media data for image_exif_no_gps.jpg",
  6063. "{ '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 }",
  6064. "<class 'dict'>"
  6065. ],
  6066. "asctime": "2020-08-29 20:16:23,961",
  6067. "created": 1598724983.9612248,
  6068. "exc_info": null,
  6069. "exc_text": null,
  6070. "filename": "test.py",
  6071. "funcName": "__report_expectation_equivalency__",
  6072. "levelname": "DEBUG",
  6073. "levelno": 10,
  6074. "lineno": 26,
  6075. "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'>)",
  6076. "module": "test",
  6077. "msecs": 961.2247943878174,
  6078. "msg": "Expectation (%s): result = %s (%s)",
  6079. "name": "__unittest__",
  6080. "pathname": "src/unittest/test.py",
  6081. "process": 47545,
  6082. "processName": "MainProcess",
  6083. "relativeCreated": 286.4665985107422,
  6084. "stack_info": null,
  6085. "thread": 140223083710272,
  6086. "threadName": "MainThread"
  6087. }
  6088. ],
  6089. "msecs": 961.3633155822754,
  6090. "msg": "Media data for image_exif_no_gps.jpg is correct (Content %s and Type is %s).",
  6091. "name": "__tLogger__",
  6092. "pathname": "src/unittest/test.py",
  6093. "process": 47545,
  6094. "processName": "MainProcess",
  6095. "relativeCreated": 286.6051197052002,
  6096. "stack_info": null,
  6097. "thread": 140223083710272,
  6098. "threadName": "MainThread",
  6099. "time_consumption": 0.0001385211944580078
  6100. },
  6101. {
  6102. "args": [
  6103. "{'size': 1139092, 'time': 1449870515, 'tm_is_subst': True}",
  6104. "<class 'dict'>"
  6105. ],
  6106. "asctime": "2020-08-29 20:16:23,962",
  6107. "created": 1598724983.9621167,
  6108. "exc_info": null,
  6109. "exc_text": null,
  6110. "filename": "test.py",
  6111. "funcName": "equivalency_chk",
  6112. "levelname": "INFO",
  6113. "levelno": 20,
  6114. "lineno": 142,
  6115. "message": "Media data for image_non_exif.jpg is correct (Content {'size': 1139092, 'time': 1449870515, 'tm_is_subst': True} and Type is <class 'dict'>).",
  6116. "module": "test",
  6117. "moduleLogger": [
  6118. {
  6119. "args": [
  6120. "/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg"
  6121. ],
  6122. "asctime": "2020-08-29 20:16:23,961",
  6123. "created": 1598724983.9617333,
  6124. "exc_info": null,
  6125. "exc_text": null,
  6126. "filename": "metadata.py",
  6127. "funcName": "__get_exif_data__",
  6128. "levelname": "DEBUG",
  6129. "levelno": 10,
  6130. "lineno": 113,
  6131. "message": "/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_non_exif.jpg does not have any exif information",
  6132. "module": "metadata",
  6133. "msecs": 961.733341217041,
  6134. "msg": "%s does not have any exif information",
  6135. "name": "MEDIA",
  6136. "pathname": "src/media/metadata.py",
  6137. "process": 47545,
  6138. "processName": "MainProcess",
  6139. "relativeCreated": 286.9751453399658,
  6140. "stack_info": null,
  6141. "thread": 140223083710272,
  6142. "threadName": "MainThread"
  6143. },
  6144. {
  6145. "args": [
  6146. "Media data for image_non_exif.jpg",
  6147. "{ 'size': 1139092, 'time': 1449870515, 'tm_is_subst': True }",
  6148. "<class 'dict'>"
  6149. ],
  6150. "asctime": "2020-08-29 20:16:23,961",
  6151. "created": 1598724983.9619246,
  6152. "exc_info": null,
  6153. "exc_text": null,
  6154. "filename": "test.py",
  6155. "funcName": "__report_result__",
  6156. "levelname": "DEBUG",
  6157. "levelno": 10,
  6158. "lineno": 22,
  6159. "message": "Result (Media data for image_non_exif.jpg): { 'size': 1139092, 'time': 1449870515, 'tm_is_subst': True } (<class 'dict'>)",
  6160. "module": "test",
  6161. "msecs": 961.9245529174805,
  6162. "msg": "Result (%s): %s (%s)",
  6163. "name": "__unittest__",
  6164. "pathname": "src/unittest/test.py",
  6165. "process": 47545,
  6166. "processName": "MainProcess",
  6167. "relativeCreated": 287.1663570404053,
  6168. "stack_info": null,
  6169. "thread": 140223083710272,
  6170. "threadName": "MainThread"
  6171. },
  6172. {
  6173. "args": [
  6174. "Media data for image_non_exif.jpg",
  6175. "{ 'time': 1449870515, 'tm_is_subst': True, 'size': 1139092 }",
  6176. "<class 'dict'>"
  6177. ],
  6178. "asctime": "2020-08-29 20:16:23,962",
  6179. "created": 1598724983.962017,
  6180. "exc_info": null,
  6181. "exc_text": null,
  6182. "filename": "test.py",
  6183. "funcName": "__report_expectation_equivalency__",
  6184. "levelname": "DEBUG",
  6185. "levelno": 10,
  6186. "lineno": 26,
  6187. "message": "Expectation (Media data for image_non_exif.jpg): result = { 'time': 1449870515, 'tm_is_subst': True, 'size': 1139092 } (<class 'dict'>)",
  6188. "module": "test",
  6189. "msecs": 962.0170593261719,
  6190. "msg": "Expectation (%s): result = %s (%s)",
  6191. "name": "__unittest__",
  6192. "pathname": "src/unittest/test.py",
  6193. "process": 47545,
  6194. "processName": "MainProcess",
  6195. "relativeCreated": 287.2588634490967,
  6196. "stack_info": null,
  6197. "thread": 140223083710272,
  6198. "threadName": "MainThread"
  6199. }
  6200. ],
  6201. "msecs": 962.1167182922363,
  6202. "msg": "Media data for image_non_exif.jpg is correct (Content %s and Type is %s).",
  6203. "name": "__tLogger__",
  6204. "pathname": "src/unittest/test.py",
  6205. "process": 47545,
  6206. "processName": "MainProcess",
  6207. "relativeCreated": 287.35852241516113,
  6208. "stack_info": null,
  6209. "thread": 140223083710272,
  6210. "threadName": "MainThread",
  6211. "time_consumption": 9.965896606445312e-05
  6212. },
  6213. {
  6214. "args": [
  6215. "{'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'}",
  6216. "<class 'dict'>"
  6217. ],
  6218. "asctime": "2020-08-29 20:16:23,964",
  6219. "created": 1598724983.9645047,
  6220. "exc_info": null,
  6221. "exc_text": null,
  6222. "filename": "test.py",
  6223. "funcName": "equivalency_chk",
  6224. "levelname": "INFO",
  6225. "levelno": 20,
  6226. "lineno": 142,
  6227. "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'>).",
  6228. "module": "test",
  6229. "moduleLogger": [
  6230. {
  6231. "args": [
  6232. "time",
  6233. "'2008:11:08 14:11:55'"
  6234. ],
  6235. "asctime": "2020-08-29 20:16:23,963",
  6236. "created": 1598724983.963678,
  6237. "exc_info": null,
  6238. "exc_text": null,
  6239. "filename": "metadata.py",
  6240. "funcName": "__get_exif_data__",
  6241. "levelname": "DEBUG",
  6242. "levelno": 10,
  6243. "lineno": 134,
  6244. "message": "Converting time out of '2008:11:08 14:11:55'",
  6245. "module": "metadata",
  6246. "msecs": 963.6778831481934,
  6247. "msg": "Converting %s out of %s",
  6248. "name": "MEDIA",
  6249. "pathname": "src/media/metadata.py",
  6250. "process": 47545,
  6251. "processName": "MainProcess",
  6252. "relativeCreated": 288.91968727111816,
  6253. "stack_info": null,
  6254. "thread": 140223083710272,
  6255. "threadName": "MainThread"
  6256. },
  6257. {
  6258. "args": [
  6259. "exposure_program",
  6260. "2"
  6261. ],
  6262. "asctime": "2020-08-29 20:16:23,963",
  6263. "created": 1598724983.963793,
  6264. "exc_info": null,
  6265. "exc_text": null,
  6266. "filename": "metadata.py",
  6267. "funcName": "__get_exif_data__",
  6268. "levelname": "DEBUG",
  6269. "levelno": 10,
  6270. "lineno": 134,
  6271. "message": "Converting exposure_program out of 2",
  6272. "module": "metadata",
  6273. "msecs": 963.7930393218994,
  6274. "msg": "Converting %s out of %s",
  6275. "name": "MEDIA",
  6276. "pathname": "src/media/metadata.py",
  6277. "process": 47545,
  6278. "processName": "MainProcess",
  6279. "relativeCreated": 289.0348434448242,
  6280. "stack_info": null,
  6281. "thread": 140223083710272,
  6282. "threadName": "MainThread"
  6283. },
  6284. {
  6285. "args": [
  6286. "exposure_time",
  6287. "(1, 125)"
  6288. ],
  6289. "asctime": "2020-08-29 20:16:23,963",
  6290. "created": 1598724983.963845,
  6291. "exc_info": null,
  6292. "exc_text": null,
  6293. "filename": "metadata.py",
  6294. "funcName": "__get_exif_data__",
  6295. "levelname": "DEBUG",
  6296. "levelno": 10,
  6297. "lineno": 134,
  6298. "message": "Converting exposure_time out of (1, 125)",
  6299. "module": "metadata",
  6300. "msecs": 963.8450145721436,
  6301. "msg": "Converting %s out of %s",
  6302. "name": "MEDIA",
  6303. "pathname": "src/media/metadata.py",
  6304. "process": 47545,
  6305. "processName": "MainProcess",
  6306. "relativeCreated": 289.08681869506836,
  6307. "stack_info": null,
  6308. "thread": 140223083710272,
  6309. "threadName": "MainThread"
  6310. },
  6311. {
  6312. "args": [
  6313. "flash",
  6314. "9"
  6315. ],
  6316. "asctime": "2020-08-29 20:16:23,963",
  6317. "created": 1598724983.9638903,
  6318. "exc_info": null,
  6319. "exc_text": null,
  6320. "filename": "metadata.py",
  6321. "funcName": "__get_exif_data__",
  6322. "levelname": "DEBUG",
  6323. "levelno": 10,
  6324. "lineno": 134,
  6325. "message": "Converting flash out of 9",
  6326. "module": "metadata",
  6327. "msecs": 963.8903141021729,
  6328. "msg": "Converting %s out of %s",
  6329. "name": "MEDIA",
  6330. "pathname": "src/media/metadata.py",
  6331. "process": 47545,
  6332. "processName": "MainProcess",
  6333. "relativeCreated": 289.13211822509766,
  6334. "stack_info": null,
  6335. "thread": 140223083710272,
  6336. "threadName": "MainThread"
  6337. },
  6338. {
  6339. "args": [
  6340. "aperture",
  6341. "(71, 10)"
  6342. ],
  6343. "asctime": "2020-08-29 20:16:23,963",
  6344. "created": 1598724983.9639342,
  6345. "exc_info": null,
  6346. "exc_text": null,
  6347. "filename": "metadata.py",
  6348. "funcName": "__get_exif_data__",
  6349. "levelname": "DEBUG",
  6350. "levelno": 10,
  6351. "lineno": 134,
  6352. "message": "Converting aperture out of (71, 10)",
  6353. "module": "metadata",
  6354. "msecs": 963.9341831207275,
  6355. "msg": "Converting %s out of %s",
  6356. "name": "MEDIA",
  6357. "pathname": "src/media/metadata.py",
  6358. "process": 47545,
  6359. "processName": "MainProcess",
  6360. "relativeCreated": 289.17598724365234,
  6361. "stack_info": null,
  6362. "thread": 140223083710272,
  6363. "threadName": "MainThread"
  6364. },
  6365. {
  6366. "args": [
  6367. "focal_length",
  6368. "(170, 1)"
  6369. ],
  6370. "asctime": "2020-08-29 20:16:23,963",
  6371. "created": 1598724983.963975,
  6372. "exc_info": null,
  6373. "exc_text": null,
  6374. "filename": "metadata.py",
  6375. "funcName": "__get_exif_data__",
  6376. "levelname": "DEBUG",
  6377. "levelno": 10,
  6378. "lineno": 134,
  6379. "message": "Converting focal_length out of (170, 1)",
  6380. "module": "metadata",
  6381. "msecs": 963.9749526977539,
  6382. "msg": "Converting %s out of %s",
  6383. "name": "MEDIA",
  6384. "pathname": "src/media/metadata.py",
  6385. "process": 47545,
  6386. "processName": "MainProcess",
  6387. "relativeCreated": 289.2167568206787,
  6388. "stack_info": null,
  6389. "thread": 140223083710272,
  6390. "threadName": "MainThread"
  6391. },
  6392. {
  6393. "args": [
  6394. "gps",
  6395. "{0: b'\\x02\\x02\\x00\\x00'}"
  6396. ],
  6397. "asctime": "2020-08-29 20:16:23,964",
  6398. "created": 1598724983.9640152,
  6399. "exc_info": null,
  6400. "exc_text": null,
  6401. "filename": "metadata.py",
  6402. "funcName": "__get_exif_data__",
  6403. "levelname": "DEBUG",
  6404. "levelno": 10,
  6405. "lineno": 134,
  6406. "message": "Converting gps out of {0: b'\\x02\\x02\\x00\\x00'}",
  6407. "module": "metadata",
  6408. "msecs": 964.0152454376221,
  6409. "msg": "Converting %s out of %s",
  6410. "name": "MEDIA",
  6411. "pathname": "src/media/metadata.py",
  6412. "process": 47545,
  6413. "processName": "MainProcess",
  6414. "relativeCreated": 289.2570495605469,
  6415. "stack_info": null,
  6416. "thread": 140223083710272,
  6417. "threadName": "MainThread"
  6418. },
  6419. {
  6420. "args": [
  6421. "{0: b'\\x02\\x02\\x00\\x00'}"
  6422. ],
  6423. "asctime": "2020-08-29 20:16:23,964",
  6424. "created": 1598724983.964053,
  6425. "exc_info": null,
  6426. "exc_text": null,
  6427. "filename": "metadata.py",
  6428. "funcName": "__gps_conv__",
  6429. "levelname": "WARNING",
  6430. "levelno": 30,
  6431. "lineno": 234,
  6432. "message": "GPS data extraction failed for {0: b'\\x02\\x02\\x00\\x00'}",
  6433. "module": "metadata",
  6434. "msecs": 964.0529155731201,
  6435. "msg": "GPS data extraction failed for %s",
  6436. "name": "MEDIA",
  6437. "pathname": "src/media/metadata.py",
  6438. "process": 47545,
  6439. "processName": "MainProcess",
  6440. "relativeCreated": 289.2947196960449,
  6441. "stack_info": null,
  6442. "thread": 140223083710272,
  6443. "threadName": "MainThread"
  6444. },
  6445. {
  6446. "args": [
  6447. "height",
  6448. "2592"
  6449. ],
  6450. "asctime": "2020-08-29 20:16:23,964",
  6451. "created": 1598724983.9640956,
  6452. "exc_info": null,
  6453. "exc_text": null,
  6454. "filename": "metadata.py",
  6455. "funcName": "__get_exif_data__",
  6456. "levelname": "DEBUG",
  6457. "levelno": 10,
  6458. "lineno": 134,
  6459. "message": "Converting height out of 2592",
  6460. "module": "metadata",
  6461. "msecs": 964.0955924987793,
  6462. "msg": "Converting %s out of %s",
  6463. "name": "MEDIA",
  6464. "pathname": "src/media/metadata.py",
  6465. "process": 47545,
  6466. "processName": "MainProcess",
  6467. "relativeCreated": 289.3373966217041,
  6468. "stack_info": null,
  6469. "thread": 140223083710272,
  6470. "threadName": "MainThread"
  6471. },
  6472. {
  6473. "args": [
  6474. "iso",
  6475. "400"
  6476. ],
  6477. "asctime": "2020-08-29 20:16:23,964",
  6478. "created": 1598724983.9641345,
  6479. "exc_info": null,
  6480. "exc_text": null,
  6481. "filename": "metadata.py",
  6482. "funcName": "__get_exif_data__",
  6483. "levelname": "DEBUG",
  6484. "levelno": 10,
  6485. "lineno": 134,
  6486. "message": "Converting iso out of 400",
  6487. "module": "metadata",
  6488. "msecs": 964.1344547271729,
  6489. "msg": "Converting %s out of %s",
  6490. "name": "MEDIA",
  6491. "pathname": "src/media/metadata.py",
  6492. "process": 47545,
  6493. "processName": "MainProcess",
  6494. "relativeCreated": 289.37625885009766,
  6495. "stack_info": null,
  6496. "thread": 140223083710272,
  6497. "threadName": "MainThread"
  6498. },
  6499. {
  6500. "args": [
  6501. "camera_vendor",
  6502. "'Canon'"
  6503. ],
  6504. "asctime": "2020-08-29 20:16:23,964",
  6505. "created": 1598724983.9641695,
  6506. "exc_info": null,
  6507. "exc_text": null,
  6508. "filename": "metadata.py",
  6509. "funcName": "__get_exif_data__",
  6510. "levelname": "DEBUG",
  6511. "levelno": 10,
  6512. "lineno": 134,
  6513. "message": "Converting camera_vendor out of 'Canon'",
  6514. "module": "metadata",
  6515. "msecs": 964.1695022583008,
  6516. "msg": "Converting %s out of %s",
  6517. "name": "MEDIA",
  6518. "pathname": "src/media/metadata.py",
  6519. "process": 47545,
  6520. "processName": "MainProcess",
  6521. "relativeCreated": 289.4113063812256,
  6522. "stack_info": null,
  6523. "thread": 140223083710272,
  6524. "threadName": "MainThread"
  6525. },
  6526. {
  6527. "args": [
  6528. "camera_model",
  6529. "'Canon EOS 40D'"
  6530. ],
  6531. "asctime": "2020-08-29 20:16:23,964",
  6532. "created": 1598724983.964204,
  6533. "exc_info": null,
  6534. "exc_text": null,
  6535. "filename": "metadata.py",
  6536. "funcName": "__get_exif_data__",
  6537. "levelname": "DEBUG",
  6538. "levelno": 10,
  6539. "lineno": 134,
  6540. "message": "Converting camera_model out of 'Canon EOS 40D'",
  6541. "module": "metadata",
  6542. "msecs": 964.2040729522705,
  6543. "msg": "Converting %s out of %s",
  6544. "name": "MEDIA",
  6545. "pathname": "src/media/metadata.py",
  6546. "process": 47545,
  6547. "processName": "MainProcess",
  6548. "relativeCreated": 289.4458770751953,
  6549. "stack_info": null,
  6550. "thread": 140223083710272,
  6551. "threadName": "MainThread"
  6552. },
  6553. {
  6554. "args": [
  6555. "orientation",
  6556. "1"
  6557. ],
  6558. "asctime": "2020-08-29 20:16:23,964",
  6559. "created": 1598724983.9642413,
  6560. "exc_info": null,
  6561. "exc_text": null,
  6562. "filename": "metadata.py",
  6563. "funcName": "__get_exif_data__",
  6564. "levelname": "DEBUG",
  6565. "levelno": 10,
  6566. "lineno": 134,
  6567. "message": "Converting orientation out of 1",
  6568. "module": "metadata",
  6569. "msecs": 964.2412662506104,
  6570. "msg": "Converting %s out of %s",
  6571. "name": "MEDIA",
  6572. "pathname": "src/media/metadata.py",
  6573. "process": 47545,
  6574. "processName": "MainProcess",
  6575. "relativeCreated": 289.48307037353516,
  6576. "stack_info": null,
  6577. "thread": 140223083710272,
  6578. "threadName": "MainThread"
  6579. },
  6580. {
  6581. "args": [
  6582. "width",
  6583. "3888"
  6584. ],
  6585. "asctime": "2020-08-29 20:16:23,964",
  6586. "created": 1598724983.9642766,
  6587. "exc_info": null,
  6588. "exc_text": null,
  6589. "filename": "metadata.py",
  6590. "funcName": "__get_exif_data__",
  6591. "levelname": "DEBUG",
  6592. "levelno": 10,
  6593. "lineno": 134,
  6594. "message": "Converting width out of 3888",
  6595. "module": "metadata",
  6596. "msecs": 964.2765522003174,
  6597. "msg": "Converting %s out of %s",
  6598. "name": "MEDIA",
  6599. "pathname": "src/media/metadata.py",
  6600. "process": 47545,
  6601. "processName": "MainProcess",
  6602. "relativeCreated": 289.5183563232422,
  6603. "stack_info": null,
  6604. "thread": 140223083710272,
  6605. "threadName": "MainThread"
  6606. },
  6607. {
  6608. "args": [
  6609. "Media data for image_extraction_failed.jpg",
  6610. "{ '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' }",
  6611. "<class 'dict'>"
  6612. ],
  6613. "asctime": "2020-08-29 20:16:23,964",
  6614. "created": 1598724983.9643793,
  6615. "exc_info": null,
  6616. "exc_text": null,
  6617. "filename": "test.py",
  6618. "funcName": "__report_result__",
  6619. "levelname": "DEBUG",
  6620. "levelno": 10,
  6621. "lineno": 22,
  6622. "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'>)",
  6623. "module": "test",
  6624. "msecs": 964.3793106079102,
  6625. "msg": "Result (%s): %s (%s)",
  6626. "name": "__unittest__",
  6627. "pathname": "src/unittest/test.py",
  6628. "process": 47545,
  6629. "processName": "MainProcess",
  6630. "relativeCreated": 289.62111473083496,
  6631. "stack_info": null,
  6632. "thread": 140223083710272,
  6633. "threadName": "MainThread"
  6634. },
  6635. {
  6636. "args": [
  6637. "Media data for image_extraction_failed.jpg",
  6638. "{ '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 }",
  6639. "<class 'dict'>"
  6640. ],
  6641. "asctime": "2020-08-29 20:16:23,964",
  6642. "created": 1598724983.964436,
  6643. "exc_info": null,
  6644. "exc_text": null,
  6645. "filename": "test.py",
  6646. "funcName": "__report_expectation_equivalency__",
  6647. "levelname": "DEBUG",
  6648. "levelno": 10,
  6649. "lineno": 26,
  6650. "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'>)",
  6651. "module": "test",
  6652. "msecs": 964.4360542297363,
  6653. "msg": "Expectation (%s): result = %s (%s)",
  6654. "name": "__unittest__",
  6655. "pathname": "src/unittest/test.py",
  6656. "process": 47545,
  6657. "processName": "MainProcess",
  6658. "relativeCreated": 289.67785835266113,
  6659. "stack_info": null,
  6660. "thread": 140223083710272,
  6661. "threadName": "MainThread"
  6662. }
  6663. ],
  6664. "msecs": 964.5047187805176,
  6665. "msg": "Media data for image_extraction_failed.jpg is correct (Content %s and Type is %s).",
  6666. "name": "__tLogger__",
  6667. "pathname": "src/unittest/test.py",
  6668. "process": 47545,
  6669. "processName": "MainProcess",
  6670. "relativeCreated": 289.7465229034424,
  6671. "stack_info": null,
  6672. "thread": 140223083710272,
  6673. "threadName": "MainThread",
  6674. "time_consumption": 6.866455078125e-05
  6675. },
  6676. {
  6677. "args": [
  6678. "{'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'size': 3500036, 'camera': 'motorola: motorola one'}",
  6679. "<class 'dict'>"
  6680. ],
  6681. "asctime": "2020-08-29 20:16:23,966",
  6682. "created": 1598724983.9669585,
  6683. "exc_info": null,
  6684. "exc_text": null,
  6685. "filename": "test.py",
  6686. "funcName": "equivalency_chk",
  6687. "levelname": "INFO",
  6688. "levelno": 20,
  6689. "lineno": 142,
  6690. "message": "Media data for faulty_gps_data.jpg is correct (Content {'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'size': 3500036, 'camera': 'motorola: motorola one'} and Type is <class 'dict'>).",
  6691. "module": "test",
  6692. "moduleLogger": [
  6693. {
  6694. "args": [
  6695. "time",
  6696. "'2020:05:31 18:00:59'"
  6697. ],
  6698. "asctime": "2020-08-29 20:16:23,966",
  6699. "created": 1598724983.9661198,
  6700. "exc_info": null,
  6701. "exc_text": null,
  6702. "filename": "metadata.py",
  6703. "funcName": "__get_exif_data__",
  6704. "levelname": "DEBUG",
  6705. "levelno": 10,
  6706. "lineno": 134,
  6707. "message": "Converting time out of '2020:05:31 18:00:59'",
  6708. "module": "metadata",
  6709. "msecs": 966.1197662353516,
  6710. "msg": "Converting %s out of %s",
  6711. "name": "MEDIA",
  6712. "pathname": "src/media/metadata.py",
  6713. "process": 47545,
  6714. "processName": "MainProcess",
  6715. "relativeCreated": 291.36157035827637,
  6716. "stack_info": null,
  6717. "thread": 140223083710272,
  6718. "threadName": "MainThread"
  6719. },
  6720. {
  6721. "args": [
  6722. "exposure_program",
  6723. "2"
  6724. ],
  6725. "asctime": "2020-08-29 20:16:23,966",
  6726. "created": 1598724983.9662254,
  6727. "exc_info": null,
  6728. "exc_text": null,
  6729. "filename": "metadata.py",
  6730. "funcName": "__get_exif_data__",
  6731. "levelname": "DEBUG",
  6732. "levelno": 10,
  6733. "lineno": 134,
  6734. "message": "Converting exposure_program out of 2",
  6735. "module": "metadata",
  6736. "msecs": 966.2253856658936,
  6737. "msg": "Converting %s out of %s",
  6738. "name": "MEDIA",
  6739. "pathname": "src/media/metadata.py",
  6740. "process": 47545,
  6741. "processName": "MainProcess",
  6742. "relativeCreated": 291.46718978881836,
  6743. "stack_info": null,
  6744. "thread": 140223083710272,
  6745. "threadName": "MainThread"
  6746. },
  6747. {
  6748. "args": [
  6749. "exposure_time",
  6750. "(1, 100)"
  6751. ],
  6752. "asctime": "2020-08-29 20:16:23,966",
  6753. "created": 1598724983.9662786,
  6754. "exc_info": null,
  6755. "exc_text": null,
  6756. "filename": "metadata.py",
  6757. "funcName": "__get_exif_data__",
  6758. "levelname": "DEBUG",
  6759. "levelno": 10,
  6760. "lineno": 134,
  6761. "message": "Converting exposure_time out of (1, 100)",
  6762. "module": "metadata",
  6763. "msecs": 966.2785530090332,
  6764. "msg": "Converting %s out of %s",
  6765. "name": "MEDIA",
  6766. "pathname": "src/media/metadata.py",
  6767. "process": 47545,
  6768. "processName": "MainProcess",
  6769. "relativeCreated": 291.520357131958,
  6770. "stack_info": null,
  6771. "thread": 140223083710272,
  6772. "threadName": "MainThread"
  6773. },
  6774. {
  6775. "args": [
  6776. "flash",
  6777. "16"
  6778. ],
  6779. "asctime": "2020-08-29 20:16:23,966",
  6780. "created": 1598724983.9663231,
  6781. "exc_info": null,
  6782. "exc_text": null,
  6783. "filename": "metadata.py",
  6784. "funcName": "__get_exif_data__",
  6785. "levelname": "DEBUG",
  6786. "levelno": 10,
  6787. "lineno": 134,
  6788. "message": "Converting flash out of 16",
  6789. "module": "metadata",
  6790. "msecs": 966.3231372833252,
  6791. "msg": "Converting %s out of %s",
  6792. "name": "MEDIA",
  6793. "pathname": "src/media/metadata.py",
  6794. "process": 47545,
  6795. "processName": "MainProcess",
  6796. "relativeCreated": 291.56494140625,
  6797. "stack_info": null,
  6798. "thread": 140223083710272,
  6799. "threadName": "MainThread"
  6800. },
  6801. {
  6802. "args": [
  6803. "aperture",
  6804. "(20, 10)"
  6805. ],
  6806. "asctime": "2020-08-29 20:16:23,966",
  6807. "created": 1598724983.966366,
  6808. "exc_info": null,
  6809. "exc_text": null,
  6810. "filename": "metadata.py",
  6811. "funcName": "__get_exif_data__",
  6812. "levelname": "DEBUG",
  6813. "levelno": 10,
  6814. "lineno": 134,
  6815. "message": "Converting aperture out of (20, 10)",
  6816. "module": "metadata",
  6817. "msecs": 966.3660526275635,
  6818. "msg": "Converting %s out of %s",
  6819. "name": "MEDIA",
  6820. "pathname": "src/media/metadata.py",
  6821. "process": 47545,
  6822. "processName": "MainProcess",
  6823. "relativeCreated": 291.6078567504883,
  6824. "stack_info": null,
  6825. "thread": 140223083710272,
  6826. "threadName": "MainThread"
  6827. },
  6828. {
  6829. "args": [
  6830. "focal_length",
  6831. "(3463, 1000)"
  6832. ],
  6833. "asctime": "2020-08-29 20:16:23,966",
  6834. "created": 1598724983.9664068,
  6835. "exc_info": null,
  6836. "exc_text": null,
  6837. "filename": "metadata.py",
  6838. "funcName": "__get_exif_data__",
  6839. "levelname": "DEBUG",
  6840. "levelno": 10,
  6841. "lineno": 134,
  6842. "message": "Converting focal_length out of (3463, 1000)",
  6843. "module": "metadata",
  6844. "msecs": 966.4068222045898,
  6845. "msg": "Converting %s out of %s",
  6846. "name": "MEDIA",
  6847. "pathname": "src/media/metadata.py",
  6848. "process": 47545,
  6849. "processName": "MainProcess",
  6850. "relativeCreated": 291.64862632751465,
  6851. "stack_info": null,
  6852. "thread": 140223083710272,
  6853. "threadName": "MainThread"
  6854. },
  6855. {
  6856. "args": [
  6857. "gps",
  6858. "{0: b'\\x00\\x00\\x00\\x00', 1: '\\x00', 2: ((0, 0), (0, 0), (0, 0)), 3: '\\x00', 4: ((0, 0), (0, 0), (0, 0)), 5: b'\\x00', 6: (0, 0), 7: ((0, 0), (0, 0), (0, 0)), 18: '\\x00\\x00\\x00\\x00\\x00\\x00', 27: '\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00', 29: '\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00'}"
  6859. ],
  6860. "asctime": "2020-08-29 20:16:23,966",
  6861. "created": 1598724983.966493,
  6862. "exc_info": null,
  6863. "exc_text": null,
  6864. "filename": "metadata.py",
  6865. "funcName": "__get_exif_data__",
  6866. "levelname": "DEBUG",
  6867. "levelno": 10,
  6868. "lineno": 134,
  6869. "message": "Converting gps out of {0: b'\\x00\\x00\\x00\\x00', 1: '\\x00', 2: ((0, 0), (0, 0), (0, 0)), 3: '\\x00', 4: ((0, 0), (0, 0), (0, 0)), 5: b'\\x00', 6: (0, 0), 7: ((0, 0), (0, 0), (0, 0)), 18: '\\x00\\x00\\x00\\x00\\x00\\x00', 27: '\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00', 29: '\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00'}",
  6870. "module": "metadata",
  6871. "msecs": 966.4928913116455,
  6872. "msg": "Converting %s out of %s",
  6873. "name": "MEDIA",
  6874. "pathname": "src/media/metadata.py",
  6875. "process": 47545,
  6876. "processName": "MainProcess",
  6877. "relativeCreated": 291.7346954345703,
  6878. "stack_info": null,
  6879. "thread": 140223083710272,
  6880. "threadName": "MainThread"
  6881. },
  6882. {
  6883. "args": [
  6884. "height",
  6885. "3120"
  6886. ],
  6887. "asctime": "2020-08-29 20:16:23,966",
  6888. "created": 1598724983.9665625,
  6889. "exc_info": null,
  6890. "exc_text": null,
  6891. "filename": "metadata.py",
  6892. "funcName": "__get_exif_data__",
  6893. "levelname": "DEBUG",
  6894. "levelno": 10,
  6895. "lineno": 134,
  6896. "message": "Converting height out of 3120",
  6897. "module": "metadata",
  6898. "msecs": 966.5625095367432,
  6899. "msg": "Converting %s out of %s",
  6900. "name": "MEDIA",
  6901. "pathname": "src/media/metadata.py",
  6902. "process": 47545,
  6903. "processName": "MainProcess",
  6904. "relativeCreated": 291.80431365966797,
  6905. "stack_info": null,
  6906. "thread": 140223083710272,
  6907. "threadName": "MainThread"
  6908. },
  6909. {
  6910. "args": [
  6911. "iso",
  6912. "124"
  6913. ],
  6914. "asctime": "2020-08-29 20:16:23,966",
  6915. "created": 1598724983.9666007,
  6916. "exc_info": null,
  6917. "exc_text": null,
  6918. "filename": "metadata.py",
  6919. "funcName": "__get_exif_data__",
  6920. "levelname": "DEBUG",
  6921. "levelno": 10,
  6922. "lineno": 134,
  6923. "message": "Converting iso out of 124",
  6924. "module": "metadata",
  6925. "msecs": 966.6006565093994,
  6926. "msg": "Converting %s out of %s",
  6927. "name": "MEDIA",
  6928. "pathname": "src/media/metadata.py",
  6929. "process": 47545,
  6930. "processName": "MainProcess",
  6931. "relativeCreated": 291.8424606323242,
  6932. "stack_info": null,
  6933. "thread": 140223083710272,
  6934. "threadName": "MainThread"
  6935. },
  6936. {
  6937. "args": [
  6938. "camera_vendor",
  6939. "'motorola'"
  6940. ],
  6941. "asctime": "2020-08-29 20:16:23,966",
  6942. "created": 1598724983.9666395,
  6943. "exc_info": null,
  6944. "exc_text": null,
  6945. "filename": "metadata.py",
  6946. "funcName": "__get_exif_data__",
  6947. "levelname": "DEBUG",
  6948. "levelno": 10,
  6949. "lineno": 134,
  6950. "message": "Converting camera_vendor out of 'motorola'",
  6951. "module": "metadata",
  6952. "msecs": 966.639518737793,
  6953. "msg": "Converting %s out of %s",
  6954. "name": "MEDIA",
  6955. "pathname": "src/media/metadata.py",
  6956. "process": 47545,
  6957. "processName": "MainProcess",
  6958. "relativeCreated": 291.8813228607178,
  6959. "stack_info": null,
  6960. "thread": 140223083710272,
  6961. "threadName": "MainThread"
  6962. },
  6963. {
  6964. "args": [
  6965. "camera_model",
  6966. "'motorola one'"
  6967. ],
  6968. "asctime": "2020-08-29 20:16:23,966",
  6969. "created": 1598724983.9666739,
  6970. "exc_info": null,
  6971. "exc_text": null,
  6972. "filename": "metadata.py",
  6973. "funcName": "__get_exif_data__",
  6974. "levelname": "DEBUG",
  6975. "levelno": 10,
  6976. "lineno": 134,
  6977. "message": "Converting camera_model out of 'motorola one'",
  6978. "module": "metadata",
  6979. "msecs": 966.6738510131836,
  6980. "msg": "Converting %s out of %s",
  6981. "name": "MEDIA",
  6982. "pathname": "src/media/metadata.py",
  6983. "process": 47545,
  6984. "processName": "MainProcess",
  6985. "relativeCreated": 291.9156551361084,
  6986. "stack_info": null,
  6987. "thread": 140223083710272,
  6988. "threadName": "MainThread"
  6989. },
  6990. {
  6991. "args": [
  6992. "orientation",
  6993. "6"
  6994. ],
  6995. "asctime": "2020-08-29 20:16:23,966",
  6996. "created": 1598724983.9667075,
  6997. "exc_info": null,
  6998. "exc_text": null,
  6999. "filename": "metadata.py",
  7000. "funcName": "__get_exif_data__",
  7001. "levelname": "DEBUG",
  7002. "levelno": 10,
  7003. "lineno": 134,
  7004. "message": "Converting orientation out of 6",
  7005. "module": "metadata",
  7006. "msecs": 966.7074680328369,
  7007. "msg": "Converting %s out of %s",
  7008. "name": "MEDIA",
  7009. "pathname": "src/media/metadata.py",
  7010. "process": 47545,
  7011. "processName": "MainProcess",
  7012. "relativeCreated": 291.9492721557617,
  7013. "stack_info": null,
  7014. "thread": 140223083710272,
  7015. "threadName": "MainThread"
  7016. },
  7017. {
  7018. "args": [
  7019. "width",
  7020. "4160"
  7021. ],
  7022. "asctime": "2020-08-29 20:16:23,966",
  7023. "created": 1598724983.9667428,
  7024. "exc_info": null,
  7025. "exc_text": null,
  7026. "filename": "metadata.py",
  7027. "funcName": "__get_exif_data__",
  7028. "levelname": "DEBUG",
  7029. "levelno": 10,
  7030. "lineno": 134,
  7031. "message": "Converting width out of 4160",
  7032. "module": "metadata",
  7033. "msecs": 966.742753982544,
  7034. "msg": "Converting %s out of %s",
  7035. "name": "MEDIA",
  7036. "pathname": "src/media/metadata.py",
  7037. "process": 47545,
  7038. "processName": "MainProcess",
  7039. "relativeCreated": 291.98455810546875,
  7040. "stack_info": null,
  7041. "thread": 140223083710272,
  7042. "threadName": "MainThread"
  7043. },
  7044. {
  7045. "args": [
  7046. "Media data for faulty_gps_data.jpg",
  7047. "{ 'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'size': 3500036, 'camera': 'motorola: motorola one' }",
  7048. "<class 'dict'>"
  7049. ],
  7050. "asctime": "2020-08-29 20:16:23,966",
  7051. "created": 1598724983.966836,
  7052. "exc_info": null,
  7053. "exc_text": null,
  7054. "filename": "test.py",
  7055. "funcName": "__report_result__",
  7056. "levelname": "DEBUG",
  7057. "levelno": 10,
  7058. "lineno": 22,
  7059. "message": "Result (Media data for faulty_gps_data.jpg): { 'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'size': 3500036, 'camera': 'motorola: motorola one' } (<class 'dict'>)",
  7060. "module": "test",
  7061. "msecs": 966.8359756469727,
  7062. "msg": "Result (%s): %s (%s)",
  7063. "name": "__unittest__",
  7064. "pathname": "src/unittest/test.py",
  7065. "process": 47545,
  7066. "processName": "MainProcess",
  7067. "relativeCreated": 292.07777976989746,
  7068. "stack_info": null,
  7069. "thread": 140223083710272,
  7070. "threadName": "MainThread"
  7071. },
  7072. {
  7073. "args": [
  7074. "Media data for faulty_gps_data.jpg",
  7075. "{ 'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'camera': 'motorola: motorola one', 'size': 3500036 }",
  7076. "<class 'dict'>"
  7077. ],
  7078. "asctime": "2020-08-29 20:16:23,966",
  7079. "created": 1598724983.9668906,
  7080. "exc_info": null,
  7081. "exc_text": null,
  7082. "filename": "test.py",
  7083. "funcName": "__report_expectation_equivalency__",
  7084. "levelname": "DEBUG",
  7085. "levelno": 10,
  7086. "lineno": 26,
  7087. "message": "Expectation (Media data for faulty_gps_data.jpg): result = { 'time': 1590940859, 'exposure_program': 'Program Normal', 'exposure_time': 0.01, 'flash': 'Off', 'aperture': 2.0, 'focal_length': 3.463, 'height': 3120, 'iso': 124, 'orientation': 6, 'width': 4160, 'camera': 'motorola: motorola one', 'size': 3500036 } (<class 'dict'>)",
  7088. "module": "test",
  7089. "msecs": 966.8905735015869,
  7090. "msg": "Expectation (%s): result = %s (%s)",
  7091. "name": "__unittest__",
  7092. "pathname": "src/unittest/test.py",
  7093. "process": 47545,
  7094. "processName": "MainProcess",
  7095. "relativeCreated": 292.1323776245117,
  7096. "stack_info": null,
  7097. "thread": 140223083710272,
  7098. "threadName": "MainThread"
  7099. }
  7100. ],
  7101. "msecs": 966.9585227966309,
  7102. "msg": "Media data for faulty_gps_data.jpg is correct (Content %s and Type is %s).",
  7103. "name": "__tLogger__",
  7104. "pathname": "src/unittest/test.py",
  7105. "process": 47545,
  7106. "processName": "MainProcess",
  7107. "relativeCreated": 292.20032691955566,
  7108. "stack_info": null,
  7109. "thread": 140223083710272,
  7110. "threadName": "MainThread",
  7111. "time_consumption": 6.794929504394531e-05
  7112. },
  7113. {
  7114. "args": [
  7115. "{'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345}",
  7116. "<class 'dict'>"
  7117. ],
  7118. "asctime": "2020-08-29 20:16:24,020",
  7119. "created": 1598724984.020073,
  7120. "exc_info": null,
  7121. "exc_text": null,
  7122. "filename": "test.py",
  7123. "funcName": "equivalency_chk",
  7124. "levelname": "INFO",
  7125. "levelno": 20,
  7126. "lineno": 142,
  7127. "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'>).",
  7128. "module": "test",
  7129. "moduleLogger": [
  7130. {
  7131. "args": [
  7132. "Media data for video.3gp",
  7133. "{ 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 }",
  7134. "<class 'dict'>"
  7135. ],
  7136. "asctime": "2020-08-29 20:16:24,019",
  7137. "created": 1598724984.019838,
  7138. "exc_info": null,
  7139. "exc_text": null,
  7140. "filename": "test.py",
  7141. "funcName": "__report_result__",
  7142. "levelname": "DEBUG",
  7143. "levelno": 10,
  7144. "lineno": 22,
  7145. "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'>)",
  7146. "module": "test",
  7147. "msecs": 19.83809471130371,
  7148. "msg": "Result (%s): %s (%s)",
  7149. "name": "__unittest__",
  7150. "pathname": "src/unittest/test.py",
  7151. "process": 47545,
  7152. "processName": "MainProcess",
  7153. "relativeCreated": 345.0798988342285,
  7154. "stack_info": null,
  7155. "thread": 140223083710272,
  7156. "threadName": "MainThread"
  7157. },
  7158. {
  7159. "args": [
  7160. "Media data for video.3gp",
  7161. "{ 'width': 800, 'height': 480, 'ratio': 1.6666666666666667, 'duration': 3.964, 'bitrate': 2341765, 'time': 1414948303, 'size': 1160345 }",
  7162. "<class 'dict'>"
  7163. ],
  7164. "asctime": "2020-08-29 20:16:24,019",
  7165. "created": 1598724984.0199897,
  7166. "exc_info": null,
  7167. "exc_text": null,
  7168. "filename": "test.py",
  7169. "funcName": "__report_expectation_equivalency__",
  7170. "levelname": "DEBUG",
  7171. "levelno": 10,
  7172. "lineno": 26,
  7173. "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'>)",
  7174. "module": "test",
  7175. "msecs": 19.989728927612305,
  7176. "msg": "Expectation (%s): result = %s (%s)",
  7177. "name": "__unittest__",
  7178. "pathname": "src/unittest/test.py",
  7179. "process": 47545,
  7180. "processName": "MainProcess",
  7181. "relativeCreated": 345.2315330505371,
  7182. "stack_info": null,
  7183. "thread": 140223083710272,
  7184. "threadName": "MainThread"
  7185. }
  7186. ],
  7187. "msecs": 20.07293701171875,
  7188. "msg": "Media data for video.3gp is correct (Content %s and Type is %s).",
  7189. "name": "__tLogger__",
  7190. "pathname": "src/unittest/test.py",
  7191. "process": 47545,
  7192. "processName": "MainProcess",
  7193. "relativeCreated": 345.31474113464355,
  7194. "stack_info": null,
  7195. "thread": 140223083710272,
  7196. "threadName": "MainThread",
  7197. "time_consumption": 8.320808410644531e-05
  7198. },
  7199. {
  7200. "args": [
  7201. "{'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508}",
  7202. "<class 'dict'>"
  7203. ],
  7204. "asctime": "2020-08-29 20:16:24,165",
  7205. "created": 1598724984.1652443,
  7206. "exc_info": null,
  7207. "exc_text": null,
  7208. "filename": "test.py",
  7209. "funcName": "equivalency_chk",
  7210. "levelname": "INFO",
  7211. "levelno": 20,
  7212. "lineno": 142,
  7213. "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'>).",
  7214. "module": "test",
  7215. "moduleLogger": [
  7216. {
  7217. "args": [
  7218. "Media data for video.mp4",
  7219. "{ 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 }",
  7220. "<class 'dict'>"
  7221. ],
  7222. "asctime": "2020-08-29 20:16:24,164",
  7223. "created": 1598724984.1649804,
  7224. "exc_info": null,
  7225. "exc_text": null,
  7226. "filename": "test.py",
  7227. "funcName": "__report_result__",
  7228. "levelname": "DEBUG",
  7229. "levelno": 10,
  7230. "lineno": 22,
  7231. "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'>)",
  7232. "module": "test",
  7233. "msecs": 164.98041152954102,
  7234. "msg": "Result (%s): %s (%s)",
  7235. "name": "__unittest__",
  7236. "pathname": "src/unittest/test.py",
  7237. "process": 47545,
  7238. "processName": "MainProcess",
  7239. "relativeCreated": 490.2222156524658,
  7240. "stack_info": null,
  7241. "thread": 140223083710272,
  7242. "threadName": "MainThread"
  7243. },
  7244. {
  7245. "args": [
  7246. "Media data for video.mp4",
  7247. "{ 'width': 1920, 'height': 1080, 'ratio': 1.7777777777777777, 'duration': 12.453, 'bitrate': 17883888, 'time': 1503125482, 'size': 27838508 }",
  7248. "<class 'dict'>"
  7249. ],
  7250. "asctime": "2020-08-29 20:16:24,165",
  7251. "created": 1598724984.165148,
  7252. "exc_info": null,
  7253. "exc_text": null,
  7254. "filename": "test.py",
  7255. "funcName": "__report_expectation_equivalency__",
  7256. "levelname": "DEBUG",
  7257. "levelno": 10,
  7258. "lineno": 26,
  7259. "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'>)",
  7260. "module": "test",
  7261. "msecs": 165.1480197906494,
  7262. "msg": "Expectation (%s): result = %s (%s)",
  7263. "name": "__unittest__",
  7264. "pathname": "src/unittest/test.py",
  7265. "process": 47545,
  7266. "processName": "MainProcess",
  7267. "relativeCreated": 490.3898239135742,
  7268. "stack_info": null,
  7269. "thread": 140223083710272,
  7270. "threadName": "MainThread"
  7271. }
  7272. ],
  7273. "msecs": 165.24434089660645,
  7274. "msg": "Media data for video.mp4 is correct (Content %s and Type is %s).",
  7275. "name": "__tLogger__",
  7276. "pathname": "src/unittest/test.py",
  7277. "process": 47545,
  7278. "processName": "MainProcess",
  7279. "relativeCreated": 490.48614501953125,
  7280. "stack_info": null,
  7281. "thread": 140223083710272,
  7282. "threadName": "MainThread",
  7283. "time_consumption": 9.632110595703125e-05
  7284. },
  7285. {
  7286. "args": [
  7287. "{'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622}",
  7288. "<class 'dict'>"
  7289. ],
  7290. "asctime": "2020-08-29 20:16:24,215",
  7291. "created": 1598724984.2156014,
  7292. "exc_info": null,
  7293. "exc_text": null,
  7294. "filename": "test.py",
  7295. "funcName": "equivalency_chk",
  7296. "levelname": "INFO",
  7297. "levelno": 20,
  7298. "lineno": 142,
  7299. "message": "Media data for video_special_time.avi is correct (Content {'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622} and Type is <class 'dict'>).",
  7300. "module": "test",
  7301. "moduleLogger": [
  7302. {
  7303. "args": [
  7304. "'N/A'",
  7305. "ratio",
  7306. "ratio"
  7307. ],
  7308. "asctime": "2020-08-29 20:16:24,214",
  7309. "created": 1598724984.2148387,
  7310. "exc_info": null,
  7311. "exc_text": null,
  7312. "filename": "metadata.py",
  7313. "funcName": "__get_xxprobe_data__",
  7314. "levelname": "WARNING",
  7315. "levelno": 30,
  7316. "lineno": 103,
  7317. "message": "Can't convert 'N/A' (ratio) for ratio",
  7318. "module": "metadata",
  7319. "msecs": 214.83874320983887,
  7320. "msg": "Can't convert %s (%s) for %s",
  7321. "name": "MEDIA",
  7322. "pathname": "src/media/metadata.py",
  7323. "process": 47545,
  7324. "processName": "MainProcess",
  7325. "relativeCreated": 540.0805473327637,
  7326. "stack_info": null,
  7327. "thread": 140223083710272,
  7328. "threadName": "MainThread"
  7329. },
  7330. {
  7331. "args": [
  7332. "'N/A'",
  7333. "duration",
  7334. "duration"
  7335. ],
  7336. "asctime": "2020-08-29 20:16:24,215",
  7337. "created": 1598724984.2151425,
  7338. "exc_info": null,
  7339. "exc_text": null,
  7340. "filename": "metadata.py",
  7341. "funcName": "__get_xxprobe_data__",
  7342. "levelname": "WARNING",
  7343. "levelno": 30,
  7344. "lineno": 103,
  7345. "message": "Can't convert 'N/A' (duration) for duration",
  7346. "module": "metadata",
  7347. "msecs": 215.14248847961426,
  7348. "msg": "Can't convert %s (%s) for %s",
  7349. "name": "MEDIA",
  7350. "pathname": "src/media/metadata.py",
  7351. "process": 47545,
  7352. "processName": "MainProcess",
  7353. "relativeCreated": 540.3842926025391,
  7354. "stack_info": null,
  7355. "thread": 140223083710272,
  7356. "threadName": "MainThread"
  7357. },
  7358. {
  7359. "args": [
  7360. "Media data for video_special_time.avi",
  7361. "{ 'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 }",
  7362. "<class 'dict'>"
  7363. ],
  7364. "asctime": "2020-08-29 20:16:24,215",
  7365. "created": 1598724984.2154577,
  7366. "exc_info": null,
  7367. "exc_text": null,
  7368. "filename": "test.py",
  7369. "funcName": "__report_result__",
  7370. "levelname": "DEBUG",
  7371. "levelno": 10,
  7372. "lineno": 22,
  7373. "message": "Result (Media data for video_special_time.avi): { 'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 } (<class 'dict'>)",
  7374. "module": "test",
  7375. "msecs": 215.45767784118652,
  7376. "msg": "Result (%s): %s (%s)",
  7377. "name": "__unittest__",
  7378. "pathname": "src/unittest/test.py",
  7379. "process": 47545,
  7380. "processName": "MainProcess",
  7381. "relativeCreated": 540.6994819641113,
  7382. "stack_info": null,
  7383. "thread": 140223083710272,
  7384. "threadName": "MainThread"
  7385. },
  7386. {
  7387. "args": [
  7388. "Media data for video_special_time.avi",
  7389. "{ 'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 }",
  7390. "<class 'dict'>"
  7391. ],
  7392. "asctime": "2020-08-29 20:16:24,215",
  7393. "created": 1598724984.2155287,
  7394. "exc_info": null,
  7395. "exc_text": null,
  7396. "filename": "test.py",
  7397. "funcName": "__report_expectation_equivalency__",
  7398. "levelname": "DEBUG",
  7399. "levelno": 10,
  7400. "lineno": 26,
  7401. "message": "Expectation (Media data for video_special_time.avi): result = { 'width': 320, 'height': 240, 'duration': 26.531264, 'bitrate': 840554, 'time': 1086778620, 'size': 2787622 } (<class 'dict'>)",
  7402. "module": "test",
  7403. "msecs": 215.5287265777588,
  7404. "msg": "Expectation (%s): result = %s (%s)",
  7405. "name": "__unittest__",
  7406. "pathname": "src/unittest/test.py",
  7407. "process": 47545,
  7408. "processName": "MainProcess",
  7409. "relativeCreated": 540.7705307006836,
  7410. "stack_info": null,
  7411. "thread": 140223083710272,
  7412. "threadName": "MainThread"
  7413. }
  7414. ],
  7415. "msecs": 215.60144424438477,
  7416. "msg": "Media data for video_special_time.avi is correct (Content %s and Type is %s).",
  7417. "name": "__tLogger__",
  7418. "pathname": "src/unittest/test.py",
  7419. "process": 47545,
  7420. "processName": "MainProcess",
  7421. "relativeCreated": 540.8432483673096,
  7422. "stack_info": null,
  7423. "thread": 140223083710272,
  7424. "threadName": "MainThread",
  7425. "time_consumption": 7.271766662597656e-05
  7426. },
  7427. {
  7428. "args": [
  7429. "{'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True}",
  7430. "<class 'dict'>"
  7431. ],
  7432. "asctime": "2020-08-29 20:16:24,269",
  7433. "created": 1598724984.2698467,
  7434. "exc_info": null,
  7435. "exc_text": null,
  7436. "filename": "test.py",
  7437. "funcName": "equivalency_chk",
  7438. "levelname": "INFO",
  7439. "levelno": 20,
  7440. "lineno": 142,
  7441. "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'>).",
  7442. "module": "test",
  7443. "moduleLogger": [
  7444. {
  7445. "args": [
  7446. "Media data for video_no_date.avi",
  7447. "{ 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'size': 2965248, 'time': 1158528375, 'tm_is_subst': True }",
  7448. "<class 'dict'>"
  7449. ],
  7450. "asctime": "2020-08-29 20:16:24,269",
  7451. "created": 1598724984.2695417,
  7452. "exc_info": null,
  7453. "exc_text": null,
  7454. "filename": "test.py",
  7455. "funcName": "__report_result__",
  7456. "levelname": "DEBUG",
  7457. "levelno": 10,
  7458. "lineno": 22,
  7459. "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'>)",
  7460. "module": "test",
  7461. "msecs": 269.54174041748047,
  7462. "msg": "Result (%s): %s (%s)",
  7463. "name": "__unittest__",
  7464. "pathname": "src/unittest/test.py",
  7465. "process": 47545,
  7466. "processName": "MainProcess",
  7467. "relativeCreated": 594.7835445404053,
  7468. "stack_info": null,
  7469. "thread": 140223083710272,
  7470. "threadName": "MainThread"
  7471. },
  7472. {
  7473. "args": [
  7474. "Media data for video_no_date.avi",
  7475. "{ 'width': 640, 'height': 480, 'ratio': 1.3333333333333333, 'duration': 11.016, 'bitrate': 2153411, 'time': 1158528375, 'tm_is_subst': True, 'size': 2965248 }",
  7476. "<class 'dict'>"
  7477. ],
  7478. "asctime": "2020-08-29 20:16:24,269",
  7479. "created": 1598724984.269737,
  7480. "exc_info": null,
  7481. "exc_text": null,
  7482. "filename": "test.py",
  7483. "funcName": "__report_expectation_equivalency__",
  7484. "levelname": "DEBUG",
  7485. "levelno": 10,
  7486. "lineno": 26,
  7487. "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'>)",
  7488. "module": "test",
  7489. "msecs": 269.73700523376465,
  7490. "msg": "Expectation (%s): result = %s (%s)",
  7491. "name": "__unittest__",
  7492. "pathname": "src/unittest/test.py",
  7493. "process": 47545,
  7494. "processName": "MainProcess",
  7495. "relativeCreated": 594.9788093566895,
  7496. "stack_info": null,
  7497. "thread": 140223083710272,
  7498. "threadName": "MainThread"
  7499. }
  7500. ],
  7501. "msecs": 269.84667778015137,
  7502. "msg": "Media data for video_no_date.avi is correct (Content %s and Type is %s).",
  7503. "name": "__tLogger__",
  7504. "pathname": "src/unittest/test.py",
  7505. "process": 47545,
  7506. "processName": "MainProcess",
  7507. "relativeCreated": 595.0884819030762,
  7508. "stack_info": null,
  7509. "thread": 140223083710272,
  7510. "threadName": "MainThread",
  7511. "time_consumption": 0.00010967254638671875
  7512. }
  7513. ],
  7514. "thread": 140223083710272,
  7515. "threadName": "MainThread",
  7516. "time_consumption": 0.529137372970581,
  7517. "time_finished": "2020-08-29 20:16:24,269",
  7518. "time_start": "2020-08-29 20:16:23,740"
  7519. },
  7520. "_wvLDcEYCEequ74M7usLaPw": {
  7521. "args": null,
  7522. "asctime": "2020-08-29 20:16:24,991",
  7523. "created": 1598724984.9910464,
  7524. "exc_info": null,
  7525. "exc_text": null,
  7526. "filename": "__init__.py",
  7527. "funcName": "testrun",
  7528. "levelname": "INFO",
  7529. "levelno": 20,
  7530. "lineno": 33,
  7531. "message": "_wvLDcEYCEequ74M7usLaPw",
  7532. "module": "__init__",
  7533. "moduleLogger": [],
  7534. "msecs": 991.0464286804199,
  7535. "msg": "_wvLDcEYCEequ74M7usLaPw",
  7536. "name": "__tLogger__",
  7537. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  7538. "process": 47545,
  7539. "processName": "MainProcess",
  7540. "relativeCreated": 1316.2882328033447,
  7541. "stack_info": null,
  7542. "testcaseLogger": [
  7543. {
  7544. "args": [
  7545. "True",
  7546. "<class 'bool'>"
  7547. ],
  7548. "asctime": "2020-08-29 20:16:25,179",
  7549. "created": 1598724985.1796708,
  7550. "exc_info": null,
  7551. "exc_text": null,
  7552. "filename": "test.py",
  7553. "funcName": "equivalency_chk",
  7554. "levelname": "INFO",
  7555. "levelno": 20,
  7556. "lineno": 142,
  7557. "message": "Filecompare for image_data.jpg is correct (Content True and Type is <class 'bool'>).",
  7558. "module": "test",
  7559. "moduleLogger": [
  7560. {
  7561. "args": [
  7562. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'"
  7563. ],
  7564. "asctime": "2020-08-29 20:16:25,093",
  7565. "created": 1598724985.093121,
  7566. "exc_info": null,
  7567. "exc_text": null,
  7568. "filename": "__init__.py",
  7569. "funcName": "load_from_file",
  7570. "levelname": "DEBUG",
  7571. "levelno": 10,
  7572. "lineno": 116,
  7573. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_no_gps.jpg'",
  7574. "module": "__init__",
  7575. "msecs": 93.12105178833008,
  7576. "msg": "loading image from %s",
  7577. "name": "MEDIA",
  7578. "pathname": "src/media/__init__.py",
  7579. "process": 47545,
  7580. "processName": "MainProcess",
  7581. "relativeCreated": 1418.3628559112549,
  7582. "stack_info": null,
  7583. "thread": 140223083710272,
  7584. "threadName": "MainThread"
  7585. },
  7586. {
  7587. "args": [
  7588. "Filecompare for image_data.jpg",
  7589. "True",
  7590. "<class 'bool'>"
  7591. ],
  7592. "asctime": "2020-08-29 20:16:25,179",
  7593. "created": 1598724985.1795387,
  7594. "exc_info": null,
  7595. "exc_text": null,
  7596. "filename": "test.py",
  7597. "funcName": "__report_result__",
  7598. "levelname": "DEBUG",
  7599. "levelno": 10,
  7600. "lineno": 22,
  7601. "message": "Result (Filecompare for image_data.jpg): True (<class 'bool'>)",
  7602. "module": "test",
  7603. "msecs": 179.53872680664062,
  7604. "msg": "Result (%s): %s (%s)",
  7605. "name": "__unittest__",
  7606. "pathname": "src/unittest/test.py",
  7607. "process": 47545,
  7608. "processName": "MainProcess",
  7609. "relativeCreated": 1504.7805309295654,
  7610. "stack_info": null,
  7611. "thread": 140223083710272,
  7612. "threadName": "MainThread"
  7613. },
  7614. {
  7615. "args": [
  7616. "Filecompare for image_data.jpg",
  7617. "True",
  7618. "<class 'bool'>"
  7619. ],
  7620. "asctime": "2020-08-29 20:16:25,179",
  7621. "created": 1598724985.1796253,
  7622. "exc_info": null,
  7623. "exc_text": null,
  7624. "filename": "test.py",
  7625. "funcName": "__report_expectation_equivalency__",
  7626. "levelname": "DEBUG",
  7627. "levelno": 10,
  7628. "lineno": 26,
  7629. "message": "Expectation (Filecompare for image_data.jpg): result = True (<class 'bool'>)",
  7630. "module": "test",
  7631. "msecs": 179.6252727508545,
  7632. "msg": "Expectation (%s): result = %s (%s)",
  7633. "name": "__unittest__",
  7634. "pathname": "src/unittest/test.py",
  7635. "process": 47545,
  7636. "processName": "MainProcess",
  7637. "relativeCreated": 1504.8670768737793,
  7638. "stack_info": null,
  7639. "thread": 140223083710272,
  7640. "threadName": "MainThread"
  7641. }
  7642. ],
  7643. "msecs": 179.6708106994629,
  7644. "msg": "Filecompare for image_data.jpg is correct (Content %s and Type is %s).",
  7645. "name": "__tLogger__",
  7646. "pathname": "src/unittest/test.py",
  7647. "process": 47545,
  7648. "processName": "MainProcess",
  7649. "relativeCreated": 1504.9126148223877,
  7650. "stack_info": null,
  7651. "thread": 140223083710272,
  7652. "threadName": "MainThread",
  7653. "time_consumption": 4.553794860839844e-05
  7654. }
  7655. ],
  7656. "thread": 140223083710272,
  7657. "threadName": "MainThread",
  7658. "time_consumption": 0.18862438201904297,
  7659. "time_finished": "2020-08-29 20:16:25,179",
  7660. "time_start": "2020-08-29 20:16:24,991"
  7661. },
  7662. "_zQ29EEYCEequ74M7usLaPw": {
  7663. "args": null,
  7664. "asctime": "2020-08-29 20:16:25,183",
  7665. "created": 1598724985.1837823,
  7666. "exc_info": null,
  7667. "exc_text": null,
  7668. "filename": "__init__.py",
  7669. "funcName": "testrun",
  7670. "levelname": "INFO",
  7671. "levelno": 20,
  7672. "lineno": 34,
  7673. "message": "_zQ29EEYCEequ74M7usLaPw",
  7674. "module": "__init__",
  7675. "moduleLogger": [],
  7676. "msecs": 183.78233909606934,
  7677. "msg": "_zQ29EEYCEequ74M7usLaPw",
  7678. "name": "__tLogger__",
  7679. "pathname": "/user_data/data/dirk/prj/unittest/media/unittest/src/tests/__init__.py",
  7680. "process": 47545,
  7681. "processName": "MainProcess",
  7682. "relativeCreated": 1509.0241432189941,
  7683. "stack_info": null,
  7684. "testcaseLogger": [
  7685. {
  7686. "args": [
  7687. "True",
  7688. "<class 'bool'>"
  7689. ],
  7690. "asctime": "2020-08-29 20:16:25,319",
  7691. "created": 1598724985.3192937,
  7692. "exc_info": null,
  7693. "exc_text": null,
  7694. "filename": "test.py",
  7695. "funcName": "equivalency_chk",
  7696. "levelname": "INFO",
  7697. "levelno": 20,
  7698. "lineno": 142,
  7699. "message": "Returnvalue of successful resize method is correct (Content True and Type is <class 'bool'>).",
  7700. "module": "test",
  7701. "moduleLogger": [
  7702. {
  7703. "args": [
  7704. "'/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'"
  7705. ],
  7706. "asctime": "2020-08-29 20:16:25,312",
  7707. "created": 1598724985.3129094,
  7708. "exc_info": null,
  7709. "exc_text": null,
  7710. "filename": "__init__.py",
  7711. "funcName": "load_from_file",
  7712. "levelname": "DEBUG",
  7713. "levelno": 10,
  7714. "lineno": 116,
  7715. "message": "loading image from '/user_data/data/dirk/prj/unittest/media/unittest/input_data/image_exif_gps.jpg'",
  7716. "module": "__init__",
  7717. "msecs": 312.9093647003174,
  7718. "msg": "loading image from %s",
  7719. "name": "MEDIA",
  7720. "pathname": "src/media/__init__.py",
  7721. "process": 47545,
  7722. "processName": "MainProcess",
  7723. "relativeCreated": 1638.1511688232422,
  7724. "stack_info": null,
  7725. "thread": 140223083710272,
  7726. "threadName": "MainThread"
  7727. },
  7728. {
  7729. "args": [
  7730. 300
  7731. ],
  7732. "asctime": "2020-08-29 20:16:25,313",
  7733. "created": 1598724985.3130522,
  7734. "exc_info": null,
  7735. "exc_text": null,
  7736. "filename": "__init__.py",
  7737. "funcName": "resize",
  7738. "levelname": "DEBUG",
  7739. "levelno": 10,
  7740. "lineno": 141,
  7741. "message": "Resizing picture to max 300 pixel in whatever direction",
  7742. "module": "__init__",
  7743. "msecs": 313.0521774291992,
  7744. "msg": "Resizing picture to max %d pixel in whatever direction",
  7745. "name": "MEDIA",
  7746. "pathname": "src/media/__init__.py",
  7747. "process": 47545,
  7748. "processName": "MainProcess",
  7749. "relativeCreated": 1638.293981552124,
  7750. "stack_info": null,
  7751. "thread": 140223083710272,
  7752. "threadName": "MainThread"
  7753. },
  7754. {
  7755. "args": [
  7756. "Returnvalue of successful resize method",
  7757. "True",
  7758. "<class 'bool'>"
  7759. ],
  7760. "asctime": "2020-08-29 20:16:25,319",
  7761. "created": 1598724985.3191264,
  7762. "exc_info": null,
  7763. "exc_text": null,
  7764. "filename": "test.py",
  7765. "funcName": "__report_result__",
  7766. "levelname": "DEBUG",
  7767. "levelno": 10,
  7768. "lineno": 22,
  7769. "message": "Result (Returnvalue of successful resize method): True (<class 'bool'>)",
  7770. "module": "test",
  7771. "msecs": 319.1263675689697,
  7772. "msg": "Result (%s): %s (%s)",
  7773. "name": "__unittest__",
  7774. "pathname": "src/unittest/test.py",
  7775. "process": 47545,
  7776. "processName": "MainProcess",
  7777. "relativeCreated": 1644.3681716918945,
  7778. "stack_info": null,
  7779. "thread": 140223083710272,
  7780. "threadName": "MainThread"
  7781. },
  7782. {
  7783. "args": [
  7784. "Returnvalue of successful resize method",
  7785. "True",
  7786. "<class 'bool'>"
  7787. ],
  7788. "asctime": "2020-08-29 20:16:25,319",
  7789. "created": 1598724985.3192487,
  7790. "exc_info": null,
  7791. "exc_text": null,
  7792. "filename": "test.py",
  7793. "funcName": "__report_expectation_equivalency__",
  7794. "levelname": "DEBUG",
  7795. "levelno": 10,
  7796. "lineno": 26,
  7797. "message": "Expectation (Returnvalue of successful resize method): result = True (<class 'bool'>)",
  7798. "module": "test",
  7799. "msecs": 319.2486763000488,
  7800. "msg": "Expectation (%s): result = %s (%s)",
  7801. "name": "__unittest__",
  7802. "pathname": "src/unittest/test.py",
  7803. "process": 47545,
  7804. "processName": "MainProcess",
  7805. "relativeCreated": 1644.4904804229736,
  7806. "stack_info": null,
  7807. "thread": 140223083710272,
  7808. "threadName": "MainThread"
  7809. }
  7810. ],
  7811. "msecs": 319.293737411499,
  7812. "msg": "Returnvalue of successful resize method is correct (Content %s and Type is %s).",
  7813. "name": "__tLogger__",
  7814. "pathname": "src/unittest/test.py",
  7815. "process": 47545,
  7816. "processName": "MainProcess",
  7817. "relativeCreated": 1644.5355415344238,
  7818. "stack_info": null,
  7819. "thread": 140223083710272,
  7820. "threadName": "MainThread",
  7821. "time_consumption": 4.506111145019531e-05
  7822. },
  7823. {
  7824. "args": [
  7825. "300",
  7826. "<class 'int'>"
  7827. ],
  7828. "asctime": "2020-08-29 20:16:25,320",
  7829. "created": 1598724985.3204536,
  7830. "exc_info": null,
  7831. "exc_text": null,
  7832. "filename": "test.py",
  7833. "funcName": "equivalency_chk",
  7834. "levelname": "INFO",
  7835. "levelno": 20,
  7836. "lineno": 142,
  7837. "message": "Resulution of resized image is correct (Content 300 and Type is <class 'int'>).",
  7838. "module": "test",
  7839. "moduleLogger": [
  7840. {
  7841. "args": [
  7842. "'/user_data/data/dirk/prj/unittest/media/unittest/output_data/resized_image.jpg'"
  7843. ],
  7844. "asctime": "2020-08-29 20:16:25,319",
  7845. "created": 1598724985.3193824,
  7846. "exc_info": null,
  7847. "exc_text": null,
  7848. "filename": "__init__.py",
  7849. "funcName": "save",
  7850. "levelname": "DEBUG",
  7851. "levelno": 10,
  7852. "lineno": 124,
  7853. "message": "Saving image to '/user_data/data/dirk/prj/unittest/media/unittest/output_data/resized_image.jpg'",
  7854. "module": "__init__",
  7855. "msecs": 319.3824291229248,
  7856. "msg": "Saving image to %s",
  7857. "name": "MEDIA",
  7858. "pathname": "src/media/__init__.py",
  7859. "process": 47545,
  7860. "processName": "MainProcess",
  7861. "relativeCreated": 1644.6242332458496,
  7862. "stack_info": null,
  7863. "thread": 140223083710272,
  7864. "threadName": "MainThread"
  7865. },
  7866. {
  7867. "args": [
  7868. "Resulution of resized image",
  7869. "300",
  7870. "<class 'int'>"
  7871. ],
  7872. "asctime": "2020-08-29 20:16:25,320",
  7873. "created": 1598724985.3203554,
  7874. "exc_info": null,
  7875. "exc_text": null,
  7876. "filename": "test.py",
  7877. "funcName": "__report_result__",
  7878. "levelname": "DEBUG",
  7879. "levelno": 10,
  7880. "lineno": 22,
  7881. "message": "Result (Resulution of resized image): 300 (<class 'int'>)",
  7882. "module": "test",
  7883. "msecs": 320.3554153442383,
  7884. "msg": "Result (%s): %s (%s)",
  7885. "name": "__unittest__",
  7886. "pathname": "src/unittest/test.py",
  7887. "process": 47545,
  7888. "processName": "MainProcess",
  7889. "relativeCreated": 1645.597219467163,
  7890. "stack_info": null,
  7891. "thread": 140223083710272,
  7892. "threadName": "MainThread"
  7893. },
  7894. {
  7895. "args": [
  7896. "Resulution of resized image",
  7897. "300",
  7898. "<class 'int'>"
  7899. ],
  7900. "asctime": "2020-08-29 20:16:25,320",
  7901. "created": 1598724985.3204107,
  7902. "exc_info": null,
  7903. "exc_text": null,
  7904. "filename": "test.py",
  7905. "funcName": "__report_expectation_equivalency__",
  7906. "levelname": "DEBUG",
  7907. "levelno": 10,
  7908. "lineno": 26,
  7909. "message": "Expectation (Resulution of resized image): result = 300 (<class 'int'>)",
  7910. "module": "test",
  7911. "msecs": 320.41072845458984,
  7912. "msg": "Expectation (%s): result = %s (%s)",
  7913. "name": "__unittest__",
  7914. "pathname": "src/unittest/test.py",
  7915. "process": 47545,
  7916. "processName": "MainProcess",
  7917. "relativeCreated": 1645.6525325775146,
  7918. "stack_info": null,
  7919. "thread": 140223083710272,
  7920. "threadName": "MainThread"
  7921. }
  7922. ],
  7923. "msecs": 320.4536437988281,
  7924. "msg": "Resulution of resized image is correct (Content %s and Type is %s).",
  7925. "name": "__tLogger__",
  7926. "pathname": "src/unittest/test.py",
  7927. "process": 47545,
  7928. "processName": "MainProcess",
  7929. "relativeCreated": 1645.695447921753,
  7930. "stack_info": null,
  7931. "thread": 140223083710272,
  7932. "threadName": "MainThread",
  7933. "time_consumption": 4.291534423828125e-05
  7934. },
  7935. {
  7936. "args": [
  7937. "False",
  7938. "<class 'bool'>"
  7939. ],
  7940. "asctime": "2020-08-29 20:16:25,320",
  7941. "created": 1598724985.3206787,
  7942. "exc_info": null,
  7943. "exc_text": null,
  7944. "filename": "test.py",
  7945. "funcName": "equivalency_chk",
  7946. "levelname": "INFO",
  7947. "levelno": 20,
  7948. "lineno": 142,
  7949. "message": "Returnvalue of failed resize method is correct (Content False and Type is <class 'bool'>).",
  7950. "module": "test",
  7951. "moduleLogger": [
  7952. {
  7953. "args": [],
  7954. "asctime": "2020-08-29 20:16:25,320",
  7955. "created": 1598724985.320532,
  7956. "exc_info": null,
  7957. "exc_text": null,
  7958. "filename": "__init__.py",
  7959. "funcName": "resize",
  7960. "levelname": "WARNING",
  7961. "levelno": 30,
  7962. "lineno": 138,
  7963. "message": "No image available to be resized",
  7964. "module": "__init__",
  7965. "msecs": 320.53208351135254,
  7966. "msg": "No image available to be resized",
  7967. "name": "MEDIA",
  7968. "pathname": "src/media/__init__.py",
  7969. "process": 47545,
  7970. "processName": "MainProcess",
  7971. "relativeCreated": 1645.7738876342773,
  7972. "stack_info": null,
  7973. "thread": 140223083710272,
  7974. "threadName": "MainThread"
  7975. },
  7976. {
  7977. "args": [
  7978. "Returnvalue of failed resize method",
  7979. "False",
  7980. "<class 'bool'>"
  7981. ],
  7982. "asctime": "2020-08-29 20:16:25,320",
  7983. "created": 1598724985.3205733,
  7984. "exc_info": null,
  7985. "exc_text": null,
  7986. "filename": "test.py",
  7987. "funcName": "__report_result__",
  7988. "levelname": "DEBUG",
  7989. "levelno": 10,
  7990. "lineno": 22,
  7991. "message": "Result (Returnvalue of failed resize method): False (<class 'bool'>)",
  7992. "module": "test",
  7993. "msecs": 320.5733299255371,
  7994. "msg": "Result (%s): %s (%s)",
  7995. "name": "__unittest__",
  7996. "pathname": "src/unittest/test.py",
  7997. "process": 47545,
  7998. "processName": "MainProcess",
  7999. "relativeCreated": 1645.815134048462,
  8000. "stack_info": null,
  8001. "thread": 140223083710272,
  8002. "threadName": "MainThread"
  8003. },
  8004. {
  8005. "args": [
  8006. "Returnvalue of failed resize method",
  8007. "False",
  8008. "<class 'bool'>"
  8009. ],
  8010. "asctime": "2020-08-29 20:16:25,320",
  8011. "created": 1598724985.3206325,
  8012. "exc_info": null,
  8013. "exc_text": null,
  8014. "filename": "test.py",
  8015. "funcName": "__report_expectation_equivalency__",
  8016. "levelname": "DEBUG",
  8017. "levelno": 10,
  8018. "lineno": 26,
  8019. "message": "Expectation (Returnvalue of failed resize method): result = False (<class 'bool'>)",
  8020. "module": "test",
  8021. "msecs": 320.6324577331543,
  8022. "msg": "Expectation (%s): result = %s (%s)",
  8023. "name": "__unittest__",
  8024. "pathname": "src/unittest/test.py",
  8025. "process": 47545,
  8026. "processName": "MainProcess",
  8027. "relativeCreated": 1645.874261856079,
  8028. "stack_info": null,
  8029. "thread": 140223083710272,
  8030. "threadName": "MainThread"
  8031. }
  8032. ],
  8033. "msecs": 320.6787109375,
  8034. "msg": "Returnvalue of failed resize method is correct (Content %s and Type is %s).",
  8035. "name": "__tLogger__",
  8036. "pathname": "src/unittest/test.py",
  8037. "process": 47545,
  8038. "processName": "MainProcess",
  8039. "relativeCreated": 1645.9205150604248,
  8040. "stack_info": null,
  8041. "thread": 140223083710272,
  8042. "threadName": "MainThread",
  8043. "time_consumption": 4.6253204345703125e-05
  8044. }
  8045. ],
  8046. "thread": 140223083710272,
  8047. "threadName": "MainThread",
  8048. "time_consumption": 0.13689637184143066,
  8049. "time_finished": "2020-08-29 20:16:25,320",
  8050. "time_start": "2020-08-29 20:16:25,183"
  8051. }
  8052. },
  8053. "testrun_id": "p3",
  8054. "time_consumption": 5.086660623550415,
  8055. "uid_list_sorted": [
  8056. "_XzMFcHYZEem_kd-7nxt1sg",
  8057. "_Fv7V4EYCEequ74M7usLaPw",
  8058. "_HGpRMEYCEequ74M7usLaPw",
  8059. "_wvLDcEYCEequ74M7usLaPw",
  8060. "_zQ29EEYCEequ74M7usLaPw",
  8061. "_AdR7EEYDEequ74M7usLaPw",
  8062. "_CBaAQEYDEequ74M7usLaPw"
  8063. ]
  8064. }
  8065. ],
  8066. "unittest_information": {
  8067. "Version": "f6d7d5abd9b54bbc40f0db5d65c56893"
  8068. }
  8069. }