My project makes various calls to external API's using Python's urllib2.urlopen. I'm using NoseTests for my unit testing and MiniMock to mock up calls made to urllib2.urlopen.
The mocking code:
from hashlib import md5
from os.path import dirname, join
from urllib2 import Request, urlopen
from minimock import mock, restore
def urlopen_stub(url, data=None, timeout=30):
"""
Mock urllib2.urlopen and return a local file handle or create file if
not existent and then return it.
"""
if isinstance(url, Request):
key = md5(url.get_full_url()).hexdigest()
else:
key = md5(url).hexdigest()
data_file = join(dirname(__file__), 'cache', '%s.xml' % key)
try:
f = open(data_file)
except IOError:
restore() # restore normal function
data = urlopen(url, data).read()
mock('urlopen', returns_func=urlopen_stub, tracker=None) # re-mock it.
with open(data_file, 'w') as f:
f.write(data)
f = open(data_file, 'r')
return f
mock('urlopen', returns_func=urlopen_stub, tracker=None)
I'm running my tests like so:
from os.path import isfile, join
from shutil import copytree, rmtree
from nose.tools import assert_raises, assert_true
import urlopenmock
class TestMain(object):
working = 'testing/working'
def setUp(self):
files = 'testing/files'
copytree(files, self.working)
def tearDown(self):
rmtree(self.working)
def test_foo(self):
func_a_calling_urlopen()
assert_true(isfile(join(self.working, 'file_b.txt')))
def test_bar(self):
func_b_calling_urlopen()
assert_true(isfile(join(self.working, 'file_b.txt')))
def test_bar_exception(self):
assert_raises(AnException, func_c_calling_urlopen)
Originally I had the test checking for the exception in a separate module which imported a different mocking file that returned a broken XML file when urlopen was called. However importing that mocking class overrode the one shown above, breaking all the tests as the broken XML was used each time.
I assume this was because the exception testing module was loaded after the others thus it's import was called last and the mocked function returning the broken XML overrode the original mocked function.
I'd like to be able to tell the mocking code to use the broken XML file when test_bar_exception is run so that it raises the exception. How would I go about doing this?