#186: Automate media kit sanity tests ---------------------+------------------------------------------------------ Reporter: jlaska | Owner: lili Type: task | Status: new Priority: major | Milestone: Automate installation test plan Component: tests | Version: 1.0 Resolution: | Keywords: ---------------------+------------------------------------------------------ Comment (by liam):
The reason why we are checking the size of ISO is we should make sure the testers can burn the ISO to physical media. As we know the capacity of CDROM is 700M, DVD is 4.7G, we get the bytes of file via os.path.getsize(file),the transform to kb: os.path.getsize(file)/1024, to Mb: os.path.getsize(file)/1024/1024, we will find that 734003200/1024/1024=700. So I think I should have a more accurate transformation in my test. Thanks for your comments.