How do I test the following code with mocks (using mocks, the patch decorator and sentinels provided by Michael Foord's Mock framework):

def testme(filepath):
    with open(filepath, 'r') as f:
        return f.read()
link|improve this question

@Daryl Spitzer: could you leave off the meta-question ("I know the answer...") It's confusing. – S.Lott Aug 17 '09 at 19:34
In the past when I've left it off, people have complained that I'm answering my own question. I'll try moving that to my answer. – Daryl Spitzer Aug 17 '09 at 19:38
1  
@Daryl: The best way to avoid complaints about answering one's own question, which usually stem from worries of "karma whoring", is to mark the question and/or answer as a "community wiki". – John Millikin Aug 17 '09 at 19:43
3  
If answering your own question is considered Karma Whoring, the FAQ should be clarified on that point I think. – EBGreen Aug 17 '09 at 20:44
feedback

3 Answers

up vote 2 down vote accepted

Updated Daryl's answer to fix changes to Mock class.

@patch('__builtin__.open')
def test_testme(self, open_mock):
    #
    # setup
    #
    context_manager_mock = Mock()
    open_mock.return_value = context_manager_mock
    file_mock = Mock()
    file_mock.read.return_value = sentinel.file_contents
    enter_mock = Mock()
    enter_mock.return_value = file_mock
    exit_mock  = Mock()
    setattr( context_manager_mock, '__enter__', enter_mock )
    setattr( context_manager_mock, '__exit__', exit_mock )

    #
    # exercise
    #
    result = cbot.testme(sentinel.filepath)

    #
    # verify
    #
    self.assertEquals(result, sentinel.file_contents)
    self.assertEquals(open_mock.call_args,
                      ((sentinel.filepath, 'r'), {}))
    self.assertEquals(context_manager_mock.method_calls,
                      [('__enter__', (), {}),
                       ('__exit__', (None, None, None), {})])
    self.assertEquals(file_mock.method_calls, [('read', (), {})])
link|improve this answer
Where is your context_manager variable coming from, that you use in the middle of your function? – Brandon Rhodes May 24 '11 at 13:00
1  
It should context_manager_mock. Now fixed. – Casey May 24 '11 at 19:29
feedback

The way to do this has changed in mock 0.7.0 which finally supports mocking the python protocol methods (magic methods), particularly using the MagicMock:

http://www.voidspace.org.uk/python/mock/magicmock.html

An example of mocking open as a context manager (from the examples page in the mock documentation):

>>> open_name = '%s.open' % __name__
>>> with patch(open_name, create=True) as mock_open:
...     mock_open.return_value = MagicMock(spec=file)
...
...     with open('/some/path', 'w') as f:
...         f.write('something')
...
<mock.Mock object at 0x...>
>>> file_handle = mock_open.return_value.__enter__.return_value
>>> file_handle.write.assert_called_with('something')
link|improve this answer
Wow! This looks much simpler than the context-manager example currently at voidspace.org.uk/python/mock/magicmock.html which explicitly sets __enter__ and __exit__ to mock objects as well — is the latter approach out of date, or still useful? – Brandon Rhodes May 24 '11 at 16:18
3  
The "latter approach" is showing how to do it without using a MagicMock (i.e. it is just an example of how Mock supports magic methods). If you use a MagicMock (as above) then enter and exit are preconfigured for you. – fuzzyman Jun 6 '11 at 19:15
1  
you could point to your blog post where you explain in more details why/how that works – Rodrigue Jun 23 '11 at 19:26
1  
This should be the accepted answer. – Sardathrion Nov 11 '11 at 15:33
Very elegant. Thank you! – Alexey Savanovich Dec 19 '11 at 10:14
show 2 more comments
feedback

When used in a with statement, open returns a context manager. So the mock of open needs to also. A context manager must have an __enter__() and __exit__() method. The __enter__() method needs to return the file handle mock that will register the call to the read() method in the code above:

@patch('__builtin__.open')
def test_testme(self, open_mock):
    #
    # setup
    #
    context_manager_mock = Mock()
    open_mock.return_value = context_manager_mock
    file_mock = Mock()
    file_mock.read.return_value = sentinel.file_contents
    context_manager_mock.__enter__.return_value = file_mock

    #
    # exercise
    #
    result = cbot.testme(sentinel.filepath)

    #
    # verify
    #
    self.assertEquals(result, sentinel.file_contents)
    self.assertEquals(open_mock.call_args,
                      ((sentinel.filepath, 'r'), {}))
    self.assertEquals(context_manager_mock.method_calls,
                      [('__enter__', (), {}),
                       ('__exit__', (None, None, None), {})])
    self.assertEquals(file_mock.method_calls, [('read', (), {})])
link|improve this answer
You don't have to make it CW. – Brad Gilbert Aug 17 '09 at 23:26
This doesn't work; the mock doesn't have the __enter__ attribute, and that's because it automatically omits any magic values (__'d). Do you happen to have a working solution for this now? That'd be really cool. – Chris R Mar 26 '10 at 17:20
This did work at the the time I wrote this. Perhaps changes have been made to Mock that broke it. I'm no longer set up with Mock--I'll make time to re-create this with the latest version of Mock and update this. – Daryl Spitzer Mar 27 '10 at 14:38
Answer no longer valid – Casey Jul 16 '10 at 3:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.