]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Mock out image source file in image_utils tests
authorJohn Griffith <john.griffith8@gmail.com>
Sat, 16 Aug 2014 00:18:33 +0000 (18:18 -0600)
committerJohn Griffith <john.griffith8@gmail.com>
Tue, 19 Aug 2014 15:28:58 +0000 (09:28 -0600)
commitf954f65229ca5a3791bebd845ab2ff88375848a0
treefef1388623129828463abbd9fbaf5d541418b5d5
parentda93b87b600db5a5f1ddc2d0f72c326a6d72ae4b
Mock out image source file in image_utils tests

Change 202ebc2d987c86984ba9cf8e8e36c32899baaa3b
added some metrics gathering around time to fetch
and convert images.  To do this it uses os.stat,
and when it was written and tested on Linux everything
was cool.

Turns out however there were a few more methods that needed
mocks for the stat command.  This patch adds them.

Also, it was pointed out that for this specific set of tests
we don't actually need to set the class stat_results, mock
will just work for us here since we're not checking an explicit
value.  So this patch also removes those class decl's from
previous methods as they're not needed and we should keep
things consistent.

Change-Id: I31e85694bd167c08a585594b2675dc7232429e05
cinder/tests/test_image_utils.py