vote up 1 vote down star

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()
flag

@Daryl Spitzer: could you leave off the meta-question ("I know the answer...") It's confusing. – S.Lott Aug 17 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 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 at 19:43
2  
If answering your own question is considered Karma Whoring, the FAQ should be clarified on that point I think. – EBGreen Aug 17 at 20:44
meta.stackoverflow.com/questions/15007/… – Brad Gilbert Aug 17 at 23:26

1 Answer

vote up 2 vote down check

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|flag
You don't have to make it CW. – Brad Gilbert Aug 17 at 23:26

Your Answer

Get an OpenID
or

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