• unittest.mock —- mock对象库
    • Quick Guide
    • The Mock Class
      • Calling
      • Deleting Attributes
      • Mock names and the name attribute
      • Attaching Mocks as Attributes
    • The patchers
      • patch
      • patch.object
      • patch.dict
      • patch.multiple
      • patch methods: start and stop
      • patch builtins
      • TEST_PREFIX
      • Nesting Patch Decorators
      • Where to patch
      • Patching Descriptors and Proxy Objects
    • MagicMock and magic method support
      • Mocking Magic Methods
      • Magic Mock
    • Helpers
      • sentinel
      • DEFAULT
      • call
      • create_autospec
      • ANY
      • FILTER_DIR
      • mock_open
      • Autospeccing
      • Sealing mocks

    unittest.mock —- mock对象库

    3.3 新版功能.

    源代码:Lib/unittest/mock.py


    unittest.mock 是一个用于测试的Python库。它允许使用mock对象替换受测试系统的部分,并对它们如何已经被使用进行断言。

    unittest.mock provides a core Mock class removing the need tocreate a host of stubs throughout your test suite. After performing anaction, you can make assertions about which methods / attributes were usedand arguments they were called with. You can also specify return values andset needed attributes in the normal way.

    Additionally, mock provides a patch() decorator that handles patchingmodule and class level attributes within the scope of a test, along withsentinel for creating unique objects. See the quick guide forsome examples of how to use Mock, MagicMock andpatch().

    Mock is very easy to use and is designed for use with unittest. Mockis based on the 'action -> assertion' pattern instead of 'record -> replay'used by many mocking frameworks.

    There is a backport of unittest.mock for earlier versions of Python,available as mock on PyPI.

    Quick Guide

    Mock and MagicMock objects create all attributes andmethods as you access them and store details of how they have been used. Youcan configure them, to specify return values or limit what attributes areavailable, and then make assertions about how they have been used:

    1. >>> from unittest.mock import MagicMock
    2. >>> thing = ProductionClass()
    3. >>> thing.method = MagicMock(return_value=3)
    4. >>> thing.method(3, 4, 5, key='value')
    5. 3
    6. >>> thing.method.assert_called_with(3, 4, 5, key='value')

    side_effect allows you to perform side effects, including raising anexception when a mock is called:

    1. >>> mock = Mock(side_effect=KeyError('foo'))
    2. >>> mock()
    3. Traceback (most recent call last):
    4. ...
    5. KeyError: 'foo'
    1. >>> values = {'a': 1, 'b': 2, 'c': 3}
    2. >>> def side_effect(arg):
    3. ... return values[arg]
    4. ...
    5. >>> mock.side_effect = side_effect
    6. >>> mock('a'), mock('b'), mock('c')
    7. (1, 2, 3)
    8. >>> mock.side_effect = [5, 4, 3, 2, 1]
    9. >>> mock(), mock(), mock()
    10. (5, 4, 3)

    Mock has many other ways you can configure it and control its behaviour. Forexample the spec argument configures the mock to take its specificationfrom another object. Attempting to access attributes or methods on the mockthat don't exist on the spec will fail with an AttributeError.

    The patch() decorator / context manager makes it easy to mock classes orobjects in a module under test. The object you specify will be replaced with amock (or other object) during the test and restored when the test ends:

    1. >>> from unittest.mock import patch
    2. >>> @patch('module.ClassName2')
    3. ... @patch('module.ClassName1')
    4. ... def test(MockClass1, MockClass2):
    5. ... module.ClassName1()
    6. ... module.ClassName2()
    7. ... assert MockClass1 is module.ClassName1
    8. ... assert MockClass2 is module.ClassName2
    9. ... assert MockClass1.called
    10. ... assert MockClass2.called
    11. ...
    12. >>> test()

    注解

    When you nest patch decorators the mocks are passed in to the decoratedfunction in the same order they applied (the normal Python order thatdecorators are applied). This means from the bottom up, so in the exampleabove the mock for module.ClassName1 is passed in first.

    With patch() it matters that you patch objects in the namespace where theyare looked up. This is normally straightforward, but for a quick guideread where to patch.

    As well as a decorator patch() can be used as a context manager in a withstatement:

    1. >>> with patch.object(ProductionClass, 'method', return_value=None) as mock_method:
    2. ... thing = ProductionClass()
    3. ... thing.method(1, 2, 3)
    4. ...
    5. >>> mock_method.assert_called_once_with(1, 2, 3)

    There is also patch.dict() for setting values in a dictionary justduring a scope and restoring the dictionary to its original state when the testends:

    1. >>> foo = {'key': 'value'}
    2. >>> original = foo.copy()
    3. >>> with patch.dict(foo, {'newkey': 'newvalue'}, clear=True):
    4. ... assert foo == {'newkey': 'newvalue'}
    5. ...
    6. >>> assert foo == original

    Mock supports the mocking of Python magic methods. Theeasiest way of using magic methods is with the MagicMock class. Itallows you to do things like:

    1. >>> mock = MagicMock()
    2. >>> mock.__str__.return_value = 'foobarbaz'
    3. >>> str(mock)
    4. 'foobarbaz'
    5. >>> mock.__str__.assert_called_with()

    Mock allows you to assign functions (or other Mock instances) to magic methodsand they will be called appropriately. The MagicMock class is just a Mockvariant that has all of the magic methods pre-created for you (well, all theuseful ones anyway).

    The following is an example of using magic methods with the ordinary Mockclass:

    1. >>> mock = Mock()
    2. >>> mock.__str__ = Mock(return_value='wheeeeee')
    3. >>> str(mock)
    4. 'wheeeeee'

    For ensuring that the mock objects in your tests have the same api as theobjects they are replacing, you can use auto-speccing.Auto-speccing can be done through the autospec argument to patch, or thecreate_autospec() function. Auto-speccing creates mock objects thathave the same attributes and methods as the objects they are replacing, andany functions and methods (including constructors) have the same callsignature as the real object.

    This ensures that your mocks will fail in the same way as your productioncode if they are used incorrectly:

    1. >>> from unittest.mock import create_autospec
    2. >>> def function(a, b, c):
    3. ... pass
    4. ...
    5. >>> mock_function = create_autospec(function, return_value='fishy')
    6. >>> mock_function(1, 2, 3)
    7. 'fishy'
    8. >>> mock_function.assert_called_once_with(1, 2, 3)
    9. >>> mock_function('wrong arguments')
    10. Traceback (most recent call last):
    11. ...
    12. TypeError: <lambda>() takes exactly 3 arguments (1 given)

    create_autospec() can also be used on classes, where it copies the signature ofthe init method, and on callable objects where it copies the signature ofthe call method.

    The Mock Class

    Mock is a flexible mock object intended to replace the use of stubs andtest doubles throughout your code. Mocks are callable and create attributes asnew mocks when you access them 1. Accessing the same attribute will alwaysreturn the same mock. Mocks record how you use them, allowing you to makeassertions about what your code has done to them.

    MagicMock is a subclass of Mock with all the magic methodspre-created and ready to use. There are also non-callable variants, usefulwhen you are mocking out objects that aren't callable:NonCallableMock and NonCallableMagicMock

    The patch() decorators makes it easy to temporarily replace classesin a particular module with a Mock object. By default patch() will createa MagicMock for you. You can specify an alternative class of Mock usingthe new_callable argument to patch().

    • class unittest.mock.Mock(spec=None, side_effect=None, return_value=DEFAULT, wraps=None, name=None, spec_set=None, unsafe=False, **kwargs)
    • Create a new Mock object. Mock takes several optional argumentsthat specify the behaviour of the Mock object:

      • spec: This can be either a list of strings or an existing object (aclass or instance) that acts as the specification for the mock object. Ifyou pass in an object then a list of strings is formed by calling dir onthe object (excluding unsupported magic attributes and methods).Accessing any attribute not in this list will raise an AttributeError.

    If spec is an object (rather than a list of strings) thenclass returns the class of the spec object. Thisallows mocks to pass isinstance() tests.

    • spec_set: A stricter variant of spec. If used, attempting to set_or get an attribute on the mock that isn't on the object passed as_spec_set will raise an AttributeError.

    • side_effect: A function to be called whenever the Mock is called. Seethe side_effect attribute. Useful for raising exceptions ordynamically changing return values. The function is called with the samearguments as the mock, and unless it returns DEFAULT, the returnvalue of this function is used as the return value.

    Alternatively side_effect can be an exception class or instance. Inthis case the exception will be raised when the mock is called.

    If side_effect is an iterable then each call to the mock will returnthe next value from the iterable.

    A side_effect can be cleared by setting it to None.

    • return_value: The value returned when the mock is called. By defaultthis is a new Mock (created on first access). See thereturn_value attribute.

    • unsafe: By default if any attribute starts with assert orassret will raise an AttributeError. Passing unsafe=Truewill allow access to these attributes.

    3.5 新版功能.

    • wraps: Item for the mock object to wrap. If wraps is not None thencalling the Mock will pass the call through to the wrapped object(returning the real result). Attribute access on the mock will return aMock object that wraps the corresponding attribute of the wrappedobject (so attempting to access an attribute that doesn't exist willraise an AttributeError).

    If the mock has an explicit return_value set then calls are not passedto the wrapped object and the return_value is returned instead.

    • name: If the mock has a name then it will be used in the repr of themock. This can be useful for debugging. The name is propagated to childmocks.

    Mocks can also be called with arbitrary keyword arguments. These will beused to set attributes on the mock after it is created. See theconfigure_mock() method for details.

    • assert_called()
    • Assert that the mock was called at least once.
    1. >>> mock = Mock()
    2. >>> mock.method()
    3. <Mock name='mock.method()' id='...'>
    4. >>> mock.method.assert_called()

    3.6 新版功能.

    • assert_called_once()
    • Assert that the mock was called exactly once.
    1. >>> mock = Mock()
    2. >>> mock.method()
    3. <Mock name='mock.method()' id='...'>
    4. >>> mock.method.assert_called_once()
    5. >>> mock.method()
    6. <Mock name='mock.method()' id='...'>
    7. >>> mock.method.assert_called_once()
    8. Traceback (most recent call last):
    9. ...
    10. AssertionError: Expected 'method' to have been called once. Called 2 times.

    3.6 新版功能.

    • assertcalled_with(args, *kwargs_)
    • This method is a convenient way of asserting that the last call has beenmade in a particular way:
    1. >>> mock = Mock()
    2. >>> mock.method(1, 2, 3, test='wow')
    3. <Mock name='mock.method()' id='...'>
    4. >>> mock.method.assert_called_with(1, 2, 3, test='wow')
    • assertcalled_once_with(args, *kwargs_)
    • Assert that the mock was called exactly once and that that call waswith the specified arguments.
    1. >>> mock = Mock(return_value=None)
    2. >>> mock('foo', bar='baz')
    3. >>> mock.assert_called_once_with('foo', bar='baz')
    4. >>> mock('other', bar='values')
    5. >>> mock.assert_called_once_with('other', bar='values')
    6. Traceback (most recent call last):
    7. ...
    8. AssertionError: Expected 'mock' to be called once. Called 2 times.
    • assertany_call(args, *kwargs_)
    • assert the mock has been called with the specified arguments.

    The assert passes if the mock has ever been called, unlikeassert_called_with() and assert_called_once_with() thatonly pass if the call is the most recent one, and in the case ofassert_called_once_with() it must also be the only call.

    1. >>> mock = Mock(return_value=None)
    2. >>> mock(1, 2, arg='thing')
    3. >>> mock('some', 'thing', 'else')
    4. >>> mock.assert_any_call(1, 2, arg='thing')
    • asserthas_calls(_calls, any_order=False)
    • assert the mock has been called with the specified calls.The mock_calls list is checked for the calls.

    If any_order is false then the calls must besequential. There can be extra calls before or after thespecified calls.

    If any_order is true then the calls can be in any order, butthey must all appear in mock_calls.

    1. >>> mock = Mock(return_value=None)
    2. >>> mock(1)
    3. >>> mock(2)
    4. >>> mock(3)
    5. >>> mock(4)
    6. >>> calls = [call(2), call(3)]
    7. >>> mock.assert_has_calls(calls)
    8. >>> calls = [call(4), call(2), call(3)]
    9. >>> mock.assert_has_calls(calls, any_order=True)
    • assert_not_called()
    • Assert the mock was never called.
    1. >>> m = Mock()
    2. >>> m.hello.assert_not_called()
    3. >>> obj = m.hello()
    4. >>> m.hello.assert_not_called()
    5. Traceback (most recent call last):
    6. ...
    7. AssertionError: Expected 'hello' to not have been called. Called 1 times.

    3.5 新版功能.

    • resetmock(*, _return_value=False, side_effect=False)
    • The reset_mock method resets all the call attributes on a mock object:
    1. >>> mock = Mock(return_value=None)
    2. >>> mock('hello')
    3. >>> mock.called
    4. True
    5. >>> mock.reset_mock()
    6. >>> mock.called
    7. False

    在 3.6 版更改: Added two keyword only argument to the reset_mock function.

    This can be useful where you want to make a series of assertions thatreuse the same object. Note that reset_mock()doesn't clear thereturn value, side_effect or any child attributes you haveset using normal assignment by default. In case you want to resetreturn_value or side_effect, then pass the correspondingparameter as True. Child mocks and the return value mock(if any) are reset as well.

    注解

    return_value, and side_effect are keyword onlyargument.

    • mockadd_spec(_spec, spec_set=False)
    • Add a spec to a mock. spec can either be an object or alist of strings. Only attributes on the spec can be fetched asattributes from the mock.

    If spec_set is true then only attributes on the spec can be set.

    • attachmock(_mock, attribute)
    • Attach a mock as an attribute of this one, replacing its name andparent. Calls to the attached mock will be recorded in themethod_calls and mock_calls attributes of this one.

    • configuremock(**kwargs_)

    • Set attributes on the mock through keyword arguments.

    Attributes plus return values and side effects can be set on childmocks using standard dot notation and unpacking a dictionary in themethod call:

    1. >>> mock = Mock()
    2. >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
    3. >>> mock.configure_mock(**attrs)
    4. >>> mock.method()
    5. 3
    6. >>> mock.other()
    7. Traceback (most recent call last):
    8. ...
    9. KeyError

    The same thing can be achieved in the constructor call to mocks:

    1. >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
    2. >>> mock = Mock(some_attribute='eggs', **attrs)
    3. >>> mock.some_attribute
    4. 'eggs'
    5. >>> mock.method()
    6. 3
    7. >>> mock.other()
    8. Traceback (most recent call last):
    9. ...
    10. KeyError

    configure_mock() exists to make it easier to do configurationafter the mock has been created.

    • dir()
    • Mock objects limit the results of dir(somemock) to useful results.For mocks with a _spec this includes all the permitted attributesfor the mock.

    See FILTER_DIR for what this filtering does, and how toswitch it off.

    • get_child_mock(**kw_)
    • Create the child mocks for attributes and return value.By default child mocks will be the same type as the parent.Subclasses of Mock may want to override this to customize the waychild mocks are made.

    For non-callable mocks the callable variant will be used (rather thanany custom subclass).

    • called
    • A boolean representing whether or not the mock object has been called:
    1. >>> mock = Mock(return_value=None)
    2. >>> mock.called
    3. False
    4. >>> mock()
    5. >>> mock.called
    6. True
    • call_count
    • An integer telling you how many times the mock object has been called:
    1. >>> mock = Mock(return_value=None)
    2. >>> mock.call_count
    3. 0
    4. >>> mock()
    5. >>> mock()
    6. >>> mock.call_count
    7. 2
    • return_value
    • Set this to configure the value returned by calling the mock:
    1. >>> mock = Mock()
    2. >>> mock.return_value = 'fish'
    3. >>> mock()
    4. 'fish'

    The default return value is a mock object and you can configure it inthe normal way:

    1. >>> mock = Mock()
    2. >>> mock.return_value.attribute = sentinel.Attribute
    3. >>> mock.return_value()
    4. <Mock name='mock()()' id='...'>
    5. >>> mock.return_value.assert_called_with()

    return_value can also be set in the constructor:

    1. >>> mock = Mock(return_value=3)
    2. >>> mock.return_value
    3. 3
    4. >>> mock()
    5. 3
    • side_effect
    • This can either be a function to be called when the mock is called,an iterable or an exception (class or instance) to be raised.

    If you pass in a function it will be called with same arguments as themock and unless the function returns the DEFAULT singleton thecall to the mock will then return whatever the function returns. If thefunction returns DEFAULT then the mock will return its normalvalue (from the return_value).

    If you pass in an iterable, it is used to retrieve an iterator whichmust yield a value on every call. This value can either be an exceptioninstance to be raised, or a value to be returned from the call to themock (DEFAULT handling is identical to the function case).

    An example of a mock that raises an exception (to test exceptionhandling of an API):

    1. >>> mock = Mock()
    2. >>> mock.side_effect = Exception('Boom!')
    3. >>> mock()
    4. Traceback (most recent call last):
    5. ...
    6. Exception: Boom!

    Using side_effect to return a sequence of values:

    1. >>> mock = Mock()
    2. >>> mock.side_effect = [3, 2, 1]
    3. >>> mock(), mock(), mock()
    4. (3, 2, 1)

    Using a callable:

    1. >>> mock = Mock(return_value=3)
    2. >>> def side_effect(*args, **kwargs):
    3. ... return DEFAULT
    4. ...
    5. >>> mock.side_effect = side_effect
    6. >>> mock()
    7. 3

    side_effect can be set in the constructor. Here's an example thatadds one to the value the mock is called with and returns it:

    1. >>> side_effect = lambda value: value + 1
    2. >>> mock = Mock(side_effect=side_effect)
    3. >>> mock(3)
    4. 4
    5. >>> mock(-8)
    6. -7

    Setting side_effect to None clears it:

    1. >>> m = Mock(side_effect=KeyError, return_value=3)
    2. >>> m()
    3. Traceback (most recent call last):
    4. ...
    5. KeyError
    6. >>> m.side_effect = None
    7. >>> m()
    8. 3
    • call_args
    • This is either None (if the mock hasn't been called), or thearguments that the mock was last called with. This will be in theform of a tuple: the first member, which can also be accessed throughthe args property, is any ordered arguments the mock wascalled with (or an empty tuple) and the second member, which canalso be accessed through the kwargs property, is any keywordarguments (or an empty dictionary).
    1. >>> mock = Mock(return_value=None)
    2. >>> print(mock.call_args)
    3. None
    4. >>> mock()
    5. >>> mock.call_args
    6. call()
    7. >>> mock.call_args == ()
    8. True
    9. >>> mock(3, 4)
    10. >>> mock.call_args
    11. call(3, 4)
    12. >>> mock.call_args == ((3, 4),)
    13. True
    14. >>> mock.call_args.args
    15. (3, 4)
    16. >>> mock.call_args.kwargs
    17. {}
    18. >>> mock(3, 4, 5, key='fish', next='w00t!')
    19. >>> mock.call_args
    20. call(3, 4, 5, key='fish', next='w00t!')
    21. >>> mock.call_args.args
    22. (3, 4, 5)
    23. >>> mock.call_args.kwargs
    24. {'key': 'fish', 'next': 'w00t!'}

    call_args, along with members of the lists call_args_list,method_calls and mock_calls are call objects.These are tuples, so they can be unpacked to get at the individualarguments and make more complex assertions. Seecalls as tuples.

    • call_args_list
    • This is a list of all the calls made to the mock object in sequence(so the length of the list is the number of times it has beencalled). Before any calls have been made it is an empty list. Thecall object can be used for conveniently constructing lists ofcalls to compare with call_args_list.
    1. >>> mock = Mock(return_value=None)
    2. >>> mock()
    3. >>> mock(3, 4)
    4. >>> mock(key='fish', next='w00t!')
    5. >>> mock.call_args_list
    6. [call(), call(3, 4), call(key='fish', next='w00t!')]
    7. >>> expected = [(), ((3, 4),), ({'key': 'fish', 'next': 'w00t!'},)]
    8. >>> mock.call_args_list == expected
    9. True

    Members of call_args_list are call objects. These can beunpacked as tuples to get at the individual arguments. Seecalls as tuples.

    • method_calls
    • As well as tracking calls to themselves, mocks also track calls tomethods and attributes, and their methods and attributes:
    1. >>> mock = Mock()
    2. >>> mock.method()
    3. <Mock name='mock.method()' id='...'>
    4. >>> mock.property.method.attribute()
    5. <Mock name='mock.property.method.attribute()' id='...'>
    6. >>> mock.method_calls
    7. [call.method(), call.property.method.attribute()]

    Members of method_calls are call objects. These can beunpacked as tuples to get at the individual arguments. Seecalls as tuples.

    • mock_calls
    • mock_calls records all calls to the mock object, its methods,magic methods and return value mocks.
    1. >>> mock = MagicMock()
    2. >>> result = mock(1, 2, 3)
    3. >>> mock.first(a=3)
    4. <MagicMock name='mock.first()' id='...'>
    5. >>> mock.second()
    6. <MagicMock name='mock.second()' id='...'>
    7. >>> int(mock)
    8. 1
    9. >>> result(1)
    10. <MagicMock name='mock()()' id='...'>
    11. >>> expected = [call(1, 2, 3), call.first(a=3), call.second(),
    12. ... call.__int__(), call()(1)]
    13. >>> mock.mock_calls == expected
    14. True

    Members of mock_calls are call objects. These can beunpacked as tuples to get at the individual arguments. Seecalls as tuples.

    注解

    The way mock_calls are recorded means that where nestedcalls are made, the parameters of ancestor calls are not recordedand so will always compare equal:

    1. >>> mock = MagicMock()
    2. >>> mock.top(a=3).bottom()
    3. <MagicMock name='mock.top().bottom()' id='...'>
    4. >>> mock.mock_calls
    5. [call.top(a=3), call.top().bottom()]
    6. >>> mock.mock_calls[-1] == call.top(a=-1).bottom()
    7. True
    • class
    • Normally the class attribute of an object will return its type.For a mock object with a spec, class returns the spec classinstead. This allows mock objects to pass isinstance() tests for theobject they are replacing / masquerading as:
    1. >>> mock = Mock(spec=3)
    2. >>> isinstance(mock, int)
    3. True

    class is assignable to, this allows a mock to pass anisinstance() check without forcing you to use a spec:

    1. >>> mock = Mock()
    2. >>> mock.__class__ = dict
    3. >>> isinstance(mock, dict)
    4. True
    • class unittest.mock.NonCallableMock(spec=None, wraps=None, name=None, spec_set=None, **kwargs)
    • A non-callable version of Mock. The constructor parameters have the samemeaning of Mock, with the exception of return_value and _side_effect_which have no meaning on a non-callable mock.

    Mock objects that use a class or an instance as a spec orspec_set are able to pass isinstance() tests:

    1. >>> mock = Mock(spec=SomeClass)
    2. >>> isinstance(mock, SomeClass)
    3. True
    4. >>> mock = Mock(spec_set=SomeClass())
    5. >>> isinstance(mock, SomeClass)
    6. True

    The Mock classes have support for mocking magic methods. See magicmethods for the full details.

    The mock classes and the patch() decorators all take arbitrary keywordarguments for configuration. For the patch() decorators the keywords arepassed to the constructor of the mock being created. The keyword argumentsare for configuring attributes of the mock:

    1. >>> m = MagicMock(attribute=3, other='fish')
    2. >>> m.attribute
    3. 3
    4. >>> m.other
    5. 'fish'

    The return value and side effect of child mocks can be set in the same way,using dotted notation. As you can't use dotted names directly in a call youhave to create a dictionary and unpack it using **:

    1. >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
    2. >>> mock = Mock(some_attribute='eggs', **attrs)
    3. >>> mock.some_attribute
    4. 'eggs'
    5. >>> mock.method()
    6. 3
    7. >>> mock.other()
    8. Traceback (most recent call last):
    9. ...
    10. KeyError

    A callable mock which was created with a spec (or a spec_set) willintrospect the specification object's signature when matching calls tothe mock. Therefore, it can match the actual call's arguments regardlessof whether they were passed positionally or by name:

    1. >>> def f(a, b, c): pass
    2. ...
    3. >>> mock = Mock(spec=f)
    4. >>> mock(1, 2, c=3)
    5. <Mock name='mock()' id='140161580456576'>
    6. >>> mock.assert_called_with(1, 2, 3)
    7. >>> mock.assert_called_with(a=1, b=2, c=3)

    This applies to assert_called_with(),assert_called_once_with(), assert_has_calls() andassert_any_call(). When Autospeccing, it will alsoapply to method calls on the mock object.

    在 3.4 版更改: Added signature introspection on specced and autospecced mock objects.

    • class unittest.mock.PropertyMock(*args, **kwargs)
    • A mock intended to be used as a property, or other descriptor, on a class.PropertyMock provides get() and set() methodsso you can specify a return value when it is fetched.

    Fetching a PropertyMock instance from an object calls the mock, withno args. Setting it calls the mock with the value being set.

    1. >>> class Foo:
    2. ... @property
    3. ... def foo(self):
    4. ... return 'something'
    5. ... @foo.setter
    6. ... def foo(self, value):
    7. ... pass
    8. ...
    9. >>> with patch('__main__.Foo.foo', new_callable=PropertyMock) as mock_foo:
    10. ... mock_foo.return_value = 'mockity-mock'
    11. ... this_foo = Foo()
    12. ... print(this_foo.foo)
    13. ... this_foo.foo = 6
    14. ...
    15. mockity-mock
    16. >>> mock_foo.mock_calls
    17. [call(), call(6)]

    Because of the way mock attributes are stored you can't directly attach aPropertyMock to a mock object. Instead you can attach it to the mock typeobject:

    1. >>> m = MagicMock()
    2. >>> p = PropertyMock(return_value=3)
    3. >>> type(m).foo = p
    4. >>> m.foo
    5. 3
    6. >>> p.assert_called_once_with()
    • class unittest.mock.AsyncMock(spec=None, side_effect=None, return_value=DEFAULT, wraps=None, name=None, spec_set=None, unsafe=False, **kwargs)
    • An asynchronous version of Mock. The AsyncMock object willbehave so the object is recognized as an async function, and the result of acall is an awaitable.
    1. >>> mock = AsyncMock()
    2. >>> asyncio.iscoroutinefunction(mock)
    3. True
    4. >>> inspect.isawaitable(mock()) # doctest: +SKIP
    5. True

    The result of mock() is an async function which will have the outcomeof side_effect or return_value after it has been awaited:

    • if side_effect is a function, the async function will return theresult of that function,

    • if side_effect is an exception, the async function will raise theexception,

    • if side_effect is an iterable, the async function will return thenext value of the iterable, however, if the sequence of result isexhausted, StopAsyncIteration is raised immediately,

    • if side_effect is not defined, the async function will return thevalue defined by return_value, hence, by default, the async functionreturns a new AsyncMock object.

    Setting the spec of a Mock or MagicMock to an async functionwill result in a coroutine object being returned after calling.

    1. >>> async def async_func(): pass
    2. ...
    3. >>> mock = MagicMock(async_func)
    4. >>> mock
    5. <MagicMock spec='function' id='...'>
    6. >>> mock() # doctest: +SKIP
    7. <coroutine object AsyncMockMixin._mock_call at ...>

    Setting the spec of a Mock, MagicMock, or AsyncMockto a class with asynchronous and synchronous functions will automaticallydetect the synchronous functions and set them as MagicMock (if theparent mock is AsyncMock or MagicMock) or Mock (ifthe parent mock is Mock). All asynchronous functions will beAsyncMock.

    1. >>> class ExampleClass:
    2. ... def sync_foo():
    3. ... pass
    4. ... async def async_foo():
    5. ... pass
    6. ...
    7. >>> a_mock = AsyncMock(ExampleClass)
    8. >>> a_mock.sync_foo
    9. <MagicMock name='mock.sync_foo' id='...'>
    10. >>> a_mock.async_foo
    11. <AsyncMock name='mock.async_foo' id='...'>
    12. >>> mock = Mock(ExampleClass)
    13. >>> mock.sync_foo
    14. <Mock name='mock.sync_foo' id='...'>
    15. >>> mock.async_foo
    16. <AsyncMock name='mock.async_foo' id='...'>
    • assert_awaited()
    • Assert that the mock was awaited at least once. Note that this is separatefrom the object having been called, the await keyword must be used:
    1. >>> mock = AsyncMock()
    2. >>> async def main(coroutine_mock):
    3. ... await coroutine_mock
    4. ...
    5. >>> coroutine_mock = mock()
    6. >>> mock.called
    7. True
    8. >>> mock.assert_awaited()
    9. Traceback (most recent call last):
    10. ...
    11. AssertionError: Expected mock to have been awaited.
    12. >>> asyncio.run(main(coroutine_mock))
    13. >>> mock.assert_awaited()
    • assert_awaited_once()
    • Assert that the mock was awaited exactly once.
    1. >>> mock = AsyncMock()
    2. >>> async def main():
    3. ... await mock()
    4. ...
    5. >>> asyncio.run(main())
    6. >>> mock.assert_awaited_once()
    7. >>> asyncio.run(main())
    8. >>> mock.method.assert_awaited_once()
    9. Traceback (most recent call last):
    10. ...
    11. AssertionError: Expected mock to have been awaited once. Awaited 2 times.
    • assertawaited_with(args, *kwargs_)
    • Assert that the last await was with the specified arguments.
    1. >>> mock = AsyncMock()
    2. >>> async def main(*args, **kwargs):
    3. ... await mock(*args, **kwargs)
    4. ...
    5. >>> asyncio.run(main('foo', bar='bar'))
    6. >>> mock.assert_awaited_with('foo', bar='bar')
    7. >>> mock.assert_awaited_with('other')
    8. Traceback (most recent call last):
    9. ...
    10. AssertionError: expected call not found.
    11. Expected: mock('other')
    12. Actual: mock('foo', bar='bar')
    • assertawaited_once_with(args, *kwargs_)
    • Assert that the mock was awaited exactly once and with the specifiedarguments.
    1. >>> mock = AsyncMock()
    2. >>> async def main(*args, **kwargs):
    3. ... await mock(*args, **kwargs)
    4. ...
    5. >>> asyncio.run(main('foo', bar='bar'))
    6. >>> mock.assert_awaited_once_with('foo', bar='bar')
    7. >>> asyncio.run(main('foo', bar='bar'))
    8. >>> mock.assert_awaited_once_with('foo', bar='bar')
    9. Traceback (most recent call last):
    10. ...
    11. AssertionError: Expected mock to have been awaited once. Awaited 2 times.
    • assertany_await(args, *kwargs_)
    • Assert the mock has ever been awaited with the specified arguments.
    1. >>> mock = AsyncMock()
    2. >>> async def main(*args, **kwargs):
    3. ... await mock(*args, **kwargs)
    4. ...
    5. >>> asyncio.run(main('foo', bar='bar'))
    6. >>> asyncio.run(main('hello'))
    7. >>> mock.assert_any_await('foo', bar='bar')
    8. >>> mock.assert_any_await('other')
    9. Traceback (most recent call last):
    10. ...
    11. AssertionError: mock('other') await not found
    • asserthas_awaits(_calls, any_order=False)
    • Assert the mock has been awaited with the specified calls.The await_args_list list is checked for the awaits.

    If any_order is false then the awaits must besequential. There can be extra calls before or after thespecified awaits.

    If any_order is true then the awaits can be in any order, butthey must all appear in await_args_list.

    1. >>> mock = AsyncMock()
    2. >>> async def main(*args, **kwargs):
    3. ... await mock(*args, **kwargs)
    4. ...
    5. >>> calls = [call("foo"), call("bar")]
    6. >>> mock.assert_has_awaits(calls)
    7. Traceback (most recent call last):
    8. ...
    9. AssertionError: Awaits not found.
    10. Expected: [call('foo'), call('bar')]
    11. Actual: []
    12. >>> asyncio.run(main('foo'))
    13. >>> asyncio.run(main('bar'))
    14. >>> mock.assert_has_awaits(calls)
    • assert_not_awaited()
    • Assert that the mock was never awaited.
    1. >>> mock = AsyncMock()
    2. >>> mock.assert_not_awaited()
    • resetmock(args, *kwargs_)
    • See Mock.reset_mock(). Also sets await_count to 0,await_args to None, and clears the await_args_list.

    • await_count

    • An integer keeping track of how many times the mock object has been awaited.
    1. >>> mock = AsyncMock()
    2. >>> async def main():
    3. ... await mock()
    4. ...
    5. >>> asyncio.run(main())
    6. >>> mock.await_count
    7. 1
    8. >>> asyncio.run(main())
    9. >>> mock.await_count
    10. 2
    • await_args
    • This is either None (if the mock hasn’t been awaited), or the arguments thatthe mock was last awaited with. Functions the same as Mock.call_args.
    1. >>> mock = AsyncMock()
    2. >>> async def main(*args):
    3. ... await mock(*args)
    4. ...
    5. >>> mock.await_args
    6. >>> asyncio.run(main('foo'))
    7. >>> mock.await_args
    8. call('foo')
    9. >>> asyncio.run(main('bar'))
    10. >>> mock.await_args
    11. call('bar')
    • await_args_list
    • This is a list of all the awaits made to the mock object in sequence (so thelength of the list is the number of times it has been awaited). Before anyawaits have been made it is an empty list.
    1. >>> mock = AsyncMock()
    2. >>> async def main(*args):
    3. ... await mock(*args)
    4. ...
    5. >>> mock.await_args_list
    6. []
    7. >>> asyncio.run(main('foo'))
    8. >>> mock.await_args_list
    9. [call('foo')]
    10. >>> asyncio.run(main('bar'))
    11. >>> mock.await_args_list
    12. [call('foo'), call('bar')]

    Calling

    Mock objects are callable. The call will return the value set as thereturn_value attribute. The default return value is a new Mockobject; it is created the first time the return value is accessed (eitherexplicitly or by calling the Mock) - but it is stored and the same onereturned each time.

    Calls made to the object will be recorded in the attributeslike call_args and call_args_list.

    If side_effect is set then it will be called after the call hasbeen recorded, so if side_effect raises an exception the call is stillrecorded.

    The simplest way to make a mock raise an exception when called is to makeside_effect an exception class or instance:

    1. >>> m = MagicMock(side_effect=IndexError)
    2. >>> m(1, 2, 3)
    3. Traceback (most recent call last):
    4. ...
    5. IndexError
    6. >>> m.mock_calls
    7. [call(1, 2, 3)]
    8. >>> m.side_effect = KeyError('Bang!')
    9. >>> m('two', 'three', 'four')
    10. Traceback (most recent call last):
    11. ...
    12. KeyError: 'Bang!'
    13. >>> m.mock_calls
    14. [call(1, 2, 3), call('two', 'three', 'four')]

    If side_effect is a function then whatever that function returns is whatcalls to the mock return. The side_effect function is called with thesame arguments as the mock. This allows you to vary the return value of thecall dynamically, based on the input:

    1. >>> def side_effect(value):
    2. ... return value + 1
    3. ...
    4. >>> m = MagicMock(side_effect=side_effect)
    5. >>> m(1)
    6. 2
    7. >>> m(2)
    8. 3
    9. >>> m.mock_calls
    10. [call(1), call(2)]

    If you want the mock to still return the default return value (a new mock), orany set return value, then there are two ways of doing this. Either returnmock.return_value from inside side_effect, or return DEFAULT:

    1. >>> m = MagicMock()
    2. >>> def side_effect(*args, **kwargs):
    3. ... return m.return_value
    4. ...
    5. >>> m.side_effect = side_effect
    6. >>> m.return_value = 3
    7. >>> m()
    8. 3
    9. >>> def side_effect(*args, **kwargs):
    10. ... return DEFAULT
    11. ...
    12. >>> m.side_effect = side_effect
    13. >>> m()
    14. 3

    To remove a side_effect, and return to the default behaviour, set theside_effect to None:

    1. >>> m = MagicMock(return_value=6)
    2. >>> def side_effect(*args, **kwargs):
    3. ... return 3
    4. ...
    5. >>> m.side_effect = side_effect
    6. >>> m()
    7. 3
    8. >>> m.side_effect = None
    9. >>> m()
    10. 6

    The side_effect can also be any iterable object. Repeated calls to the mockwill return values from the iterable (until the iterable is exhausted anda StopIteration is raised):

    1. >>> m = MagicMock(side_effect=[1, 2, 3])
    2. >>> m()
    3. 1
    4. >>> m()
    5. 2
    6. >>> m()
    7. 3
    8. >>> m()
    9. Traceback (most recent call last):
    10. ...
    11. StopIteration

    If any members of the iterable are exceptions they will be raised instead ofreturned:

    1. >>> iterable = (33, ValueError, 66)
    2. >>> m = MagicMock(side_effect=iterable)
    3. >>> m()
    4. 33
    5. >>> m()
    6. Traceback (most recent call last):
    7. ...
    8. ValueError
    9. >>> m()
    10. 66

    Deleting Attributes

    Mock objects create attributes on demand. This allows them to pretend to beobjects of any type.

    You may want a mock object to return False to a hasattr() call, or raise anAttributeError when an attribute is fetched. You can do this by providingan object as a spec for a mock, but that isn't always convenient.

    You "block" attributes by deleting them. Once deleted, accessing an attributewill raise an AttributeError.

    1. >>> mock = MagicMock()
    2. >>> hasattr(mock, 'm')
    3. True
    4. >>> del mock.m
    5. >>> hasattr(mock, 'm')
    6. False
    7. >>> del mock.f
    8. >>> mock.f
    9. Traceback (most recent call last):
    10. ...
    11. AttributeError: f

    Mock names and the name attribute

    Since "name" is an argument to the Mock constructor, if you want yourmock object to have a "name" attribute you can't just pass it in at creationtime. There are two alternatives. One option is to useconfigure_mock():

    1. >>> mock = MagicMock()
    2. >>> mock.configure_mock(name='my_name')
    3. >>> mock.name
    4. 'my_name'

    A simpler option is to simply set the "name" attribute after mock creation:

    1. >>> mock = MagicMock()
    2. >>> mock.name = "foo"

    Attaching Mocks as Attributes

    When you attach a mock as an attribute of another mock (or as the returnvalue) it becomes a "child" of that mock. Calls to the child are recorded inthe method_calls and mock_calls attributes of theparent. This is useful for configuring child mocks and then attaching them tothe parent, or for attaching mocks to a parent that records all calls to thechildren and allows you to make assertions about the order of calls betweenmocks:

    1. >>> parent = MagicMock()
    2. >>> child1 = MagicMock(return_value=None)
    3. >>> child2 = MagicMock(return_value=None)
    4. >>> parent.child1 = child1
    5. >>> parent.child2 = child2
    6. >>> child1(1)
    7. >>> child2(2)
    8. >>> parent.mock_calls
    9. [call.child1(1), call.child2(2)]

    The exception to this is if the mock has a name. This allows you to preventthe "parenting" if for some reason you don't want it to happen.

    1. >>> mock = MagicMock()
    2. >>> not_a_child = MagicMock(name='not-a-child')
    3. >>> mock.attribute = not_a_child
    4. >>> mock.attribute()
    5. <MagicMock name='not-a-child()' id='...'>
    6. >>> mock.mock_calls
    7. []

    Mocks created for you by patch() are automatically given names. Toattach mocks that have names to a parent you use the attach_mock()method:

    1. >>> thing1 = object()
    2. >>> thing2 = object()
    3. >>> parent = MagicMock()
    4. >>> with patch('__main__.thing1', return_value=None) as child1:
    5. ... with patch('__main__.thing2', return_value=None) as child2:
    6. ... parent.attach_mock(child1, 'child1')
    7. ... parent.attach_mock(child2, 'child2')
    8. ... child1('one')
    9. ... child2('two')
    10. ...
    11. >>> parent.mock_calls
    12. [call.child1('one'), call.child2('two')]
    • 1
    • The only exceptions are magic methods and attributes (those that haveleading and trailing double underscores). Mock doesn't create these butinstead raises an AttributeError. This is because the interpreterwill often implicitly request these methods, and gets very confused toget a new Mock object when it expects a magic method. If you need magicmethod support see magic methods.

    The patchers

    The patch decorators are used for patching objects only within the scope ofthe function they decorate. They automatically handle the unpatching for you,even if exceptions are raised. All of these functions can also be used in withstatements or as class decorators.

    patch

    注解

    patch() is straightforward to use. The key is to do the patching in theright namespace. See the section where to patch.

    • unittest.mock.patch(target, new=DEFAULT, spec=None, create=False, spec_set=None, autospec=None, new_callable=None, **kwargs)
    • patch() acts as a function decorator, class decorator or a contextmanager. Inside the body of the function or with statement, the target_is patched with a _new object. When the function/with statement exitsthe patch is undone.

    If new is omitted, then the target is replaced with anAsyncMock if the patched object is an async function ora MagicMock otherwise.If patch() is used as a decorator and new isomitted, the created mock is passed in as an extra argument to thedecorated function. If patch() is used as a context manager the createdmock is returned by the context manager.

    target should be a string in the form 'package.module.ClassName'. Thetarget is imported and the specified object replaced with the new_object, so the _target must be importable from the environment you arecalling patch() from. The target is imported when the decorated functionis executed, not at decoration time.

    The spec and spec_set keyword arguments are passed to the MagicMockif patch is creating one for you.

    In addition you can pass spec=True or spec_set=True, which causespatch to pass in the object being mocked as the spec/spec_set object.

    new_callable allows you to specify a different class, or callable object,that will be called to create the new object. By default AsyncMockis used for async functions and MagicMock for the rest.

    A more powerful form of spec is autospec. If you set autospec=Truethen the mock will be created with a spec from the object being replaced.All attributes of the mock will also have the spec of the correspondingattribute of the object being replaced. Methods and functions being mockedwill have their arguments checked and will raise a TypeError if they arecalled with the wrong signature. For mocksreplacing a class, their return value (the 'instance') will have the samespec as the class. See the create_autospec() function andAutospeccing.

    Instead of autospec=True you can pass autospec=some_object to use anarbitrary object as the spec instead of the one being replaced.

    By default patch() will fail to replace attributes that don't exist.If you pass in create=True, and the attribute doesn't exist, patch willcreate the attribute for you when the patched function is called, and deleteit again after the patched function has exited. This is useful for writingtests against attributes that your production code creates at runtime. It isoff by default because it can be dangerous. With it switched on you canwrite passing tests against APIs that don't actually exist!

    注解

    在 3.5 版更改: If you are patching builtins in a module then you don'tneed to pass create=True, it will be added by default.

    Patch can be used as a TestCase class decorator. It works bydecorating each test method in the class. This reduces the boilerplatecode when your test methods share a common patchings set. patch() findstests by looking for method names that start with patch.TEST_PREFIX.By default this is 'test', which matches the way unittest finds tests.You can specify an alternative prefix by setting patch.TEST_PREFIX.

    Patch can be used as a context manager, with the with statement. Here thepatching applies to the indented block after the with statement. If youuse "as" then the patched object will be bound to the name after the"as"; very useful if patch() is creating a mock object for you.

    patch() takes arbitrary keyword arguments. These will be passed tothe Mock (or new_callable) on construction.

    patch.dict(…), patch.multiple(…) and patch.object(…) areavailable for alternate use-cases.

    patch() as function decorator, creating the mock for you and passing it intothe decorated function:

    1. >>> @patch('__main__.SomeClass')
    2. ... def function(normal_argument, mock_class):
    3. ... print(mock_class is SomeClass)
    4. ...
    5. >>> function(None)
    6. True

    Patching a class replaces the class with a MagicMockinstance. If theclass is instantiated in the code under test then it will be thereturn_value of the mock that will be used.

    If the class is instantiated multiple times you could useside_effect to return a new mock each time. Alternatively youcan set the return_value to be anything you want.

    To configure return values on methods of instances on the patched classyou must do this on the return_value. For example:

    1. >>> class Class:
    2. ... def method(self):
    3. ... pass
    4. ...
    5. >>> with patch('__main__.Class') as MockClass:
    6. ... instance = MockClass.return_value
    7. ... instance.method.return_value = 'foo'
    8. ... assert Class() is instance
    9. ... assert Class().method() == 'foo'
    10. ...

    If you use spec or spec_set and patch() is replacing a class, then thereturn value of the created mock will have the same spec.

    1. >>> Original = Class
    2. >>> patcher = patch('__main__.Class', spec=True)
    3. >>> MockClass = patcher.start()
    4. >>> instance = MockClass()
    5. >>> assert isinstance(instance, Original)
    6. >>> patcher.stop()

    The new_callable argument is useful where you want to use an alternativeclass to the default MagicMock for the created mock. For example, ifyou wanted a NonCallableMock to be used:

    1. >>> thing = object()
    2. >>> with patch('__main__.thing', new_callable=NonCallableMock) as mock_thing:
    3. ... assert thing is mock_thing
    4. ... thing()
    5. ...
    6. Traceback (most recent call last):
    7. ...
    8. TypeError: 'NonCallableMock' object is not callable

    Another use case might be to replace an object with an io.StringIO instance:

    1. >>> from io import StringIO
    2. >>> def foo():
    3. ... print('Something')
    4. ...
    5. >>> @patch('sys.stdout', new_callable=StringIO)
    6. ... def test(mock_stdout):
    7. ... foo()
    8. ... assert mock_stdout.getvalue() == 'Something\n'
    9. ...
    10. >>> test()

    When patch() is creating a mock for you, it is common that the first thingyou need to do is to configure the mock. Some of that configuration can be donein the call to patch. Any arbitrary keywords you pass into the call will beused to set attributes on the created mock:

    1. >>> patcher = patch('__main__.thing', first='one', second='two')
    2. >>> mock_thing = patcher.start()
    3. >>> mock_thing.first
    4. 'one'
    5. >>> mock_thing.second
    6. 'two'

    As well as attributes on the created mock attributes, like thereturn_value and side_effect, of child mocks canalso be configured. These aren't syntactically valid to pass in directly askeyword arguments, but a dictionary with these as keys can still be expandedinto a patch() call using **:

    1. >>> config = {'method.return_value': 3, 'other.side_effect': KeyError}
    2. >>> patcher = patch('__main__.thing', **config)
    3. >>> mock_thing = patcher.start()
    4. >>> mock_thing.method()
    5. 3
    6. >>> mock_thing.other()
    7. Traceback (most recent call last):
    8. ...
    9. KeyError

    By default, attempting to patch a function in a module (or a method or anattribute in a class) that does not exist will fail with AttributeError:

    1. >>> @patch('sys.non_existing_attribute', 42)
    2. ... def test():
    3. ... assert sys.non_existing_attribute == 42
    4. ...
    5. >>> test()
    6. Traceback (most recent call last):
    7. ...
    8. AttributeError: <module 'sys' (built-in)> does not have the attribute 'non_existing'

    but adding create=True in the call to patch() will make the previous examplework as expected:

    1. >>> @patch('sys.non_existing_attribute', 42, create=True)
    2. ... def test(mock_stdout):
    3. ... assert sys.non_existing_attribute == 42
    4. ...
    5. >>> test()

    在 3.8 版更改: patch() now returns an AsyncMock if the target is an async function.

    patch.object

    • patch.object(target, attribute, new=DEFAULT, spec=None, create=False, spec_set=None, autospec=None, new_callable=None, **kwargs)
    • patch the named member (attribute) on an object (target) with a mockobject.

    patch.object() can be used as a decorator, class decorator or a contextmanager. Arguments new, spec, create, spec_set, autospec andnew_callable have the same meaning as for patch(). Like patch(),patch.object() takes arbitrary keyword arguments for configuring the mockobject it creates.

    When used as a class decorator patch.object() honours patch.TEST_PREFIXfor choosing which methods to wrap.

    You can either call patch.object() with three arguments or two arguments. Thethree argument form takes the object to be patched, the attribute name and theobject to replace the attribute with.

    When calling with the two argument form you omit the replacement object, and amock is created for you and passed in as an extra argument to the decoratedfunction:

    1. >>> @patch.object(SomeClass, 'class_method')
    2. ... def test(mock_method):
    3. ... SomeClass.class_method(3)
    4. ... mock_method.assert_called_with(3)
    5. ...
    6. >>> test()

    spec, create and the other arguments to patch.object() have the samemeaning as they do for patch().

    patch.dict

    • patch.dict(in_dict, values=(), clear=False, **kwargs)
    • Patch a dictionary, or dictionary like object, and restore the dictionaryto its original state after the test.

    in_dict can be a dictionary or a mapping like container. If it is amapping then it must at least support getting, setting and deleting itemsplus iterating over keys.

    in_dict can also be a string specifying the name of the dictionary, whichwill then be fetched by importing it.

    values can be a dictionary of values to set in the dictionary. _values_can also be an iterable of (key, value) pairs.

    If clear is true then the dictionary will be cleared before the newvalues are set.

    patch.dict() can also be called with arbitrary keyword arguments to setvalues in the dictionary.

    在 3.8 版更改: patch.dict() now returns the patched dictionary when used as a contextmanager.

    patch.dict() can be used as a context manager, decorator or classdecorator:

    1. >>> foo = {}
    2. >>> @patch.dict(foo, {'newkey': 'newvalue'})
    3. ... def test():
    4. ... assert foo == {'newkey': 'newvalue'}
    5. >>> test()
    6. >>> assert foo == {}

    When used as a class decorator patch.dict() honourspatch.TEST_PREFIX (default to 'test') for choosing which methods to wrap:

    1. >>> import os
    2. >>> import unittest
    3. >>> from unittest.mock import patch
    4. >>> @patch.dict('os.environ', {'newkey': 'newvalue'})
    5. ... class TestSample(unittest.TestCase):
    6. ... def test_sample(self):
    7. ... self.assertEqual(os.environ['newkey'], 'newvalue')

    If you want to use a different prefix for your test, you can inform thepatchers of the different prefix by setting patch.TEST_PREFIX. Formore details about how to change the value of see TEST_PREFIX.

    patch.dict() can be used to add members to a dictionary, or simply let a testchange a dictionary, and ensure the dictionary is restored when the testends.

    1. >>> foo = {}
    2. >>> with patch.dict(foo, {'newkey': 'newvalue'}) as patched_foo:
    3. ... assert foo == {'newkey': 'newvalue'}
    4. ... assert patched_foo == {'newkey': 'newvalue'}
    5. ... # You can add, update or delete keys of foo (or patched_foo, it's the same dict)
    6. ... patched_foo['spam'] = 'eggs'
    7. ...
    8. >>> assert foo == {}
    9. >>> assert patched_foo == {}
    1. >>> import os
    2. >>> with patch.dict('os.environ', {'newkey': 'newvalue'}):
    3. ... print(os.environ['newkey'])
    4. ...
    5. newvalue
    6. >>> assert 'newkey' not in os.environ

    Keywords can be used in the patch.dict() call to set values in the dictionary:

    1. >>> mymodule = MagicMock()
    2. >>> mymodule.function.return_value = 'fish'
    3. >>> with patch.dict('sys.modules', mymodule=mymodule):
    4. ... import mymodule
    5. ... mymodule.function('some', 'args')
    6. ...
    7. 'fish'

    patch.dict() can be used with dictionary like objects that aren't actuallydictionaries. At the very minimum they must support item getting, setting,deleting and either iteration or membership test. This corresponds to themagic methods getitem(), setitem(), delitem() and eitheriter() or contains().

    1. >>> class Container:
    2. ... def __init__(self):
    3. ... self.values = {}
    4. ... def __getitem__(self, name):
    5. ... return self.values[name]
    6. ... def __setitem__(self, name, value):
    7. ... self.values[name] = value
    8. ... def __delitem__(self, name):
    9. ... del self.values[name]
    10. ... def __iter__(self):
    11. ... return iter(self.values)
    12. ...
    13. >>> thing = Container()
    14. >>> thing['one'] = 1
    15. >>> with patch.dict(thing, one=2, two=3):
    16. ... assert thing['one'] == 2
    17. ... assert thing['two'] == 3
    18. ...
    19. >>> assert thing['one'] == 1
    20. >>> assert list(thing) == ['one']

    patch.multiple

    • patch.multiple(target, spec=None, create=False, spec_set=None, autospec=None, new_callable=None, **kwargs)
    • Perform multiple patches in a single call. It takes the object to bepatched (either as an object or a string to fetch the object by importing)and keyword arguments for the patches:
    1. with patch.multiple(settings, FIRST_PATCH='one', SECOND_PATCH='two'):
    2. ...

    Use DEFAULT as the value if you want patch.multiple() to createmocks for you. In this case the created mocks are passed into a decoratedfunction by keyword, and a dictionary is returned when patch.multiple() isused as a context manager.

    patch.multiple() can be used as a decorator, class decorator or a contextmanager. The arguments spec, spec_set, create, autospec andnew_callable have the same meaning as for patch(). These arguments willbe applied to all patches done by patch.multiple().

    When used as a class decorator patch.multiple() honours patch.TEST_PREFIXfor choosing which methods to wrap.

    If you want patch.multiple() to create mocks for you, then you can useDEFAULT as the value. If you use patch.multiple() as a decoratorthen the created mocks are passed into the decorated function by keyword.

    1. >>> thing = object()
    2. >>> other = object()
    3.  
    4. >>> @patch.multiple('__main__', thing=DEFAULT, other=DEFAULT)
    5. ... def test_function(thing, other):
    6. ... assert isinstance(thing, MagicMock)
    7. ... assert isinstance(other, MagicMock)
    8. ...
    9. >>> test_function()

    patch.multiple() can be nested with other patch decorators, but put argumentspassed by keyword after any of the standard arguments created by patch():

    1. >>> @patch('sys.exit')
    2. ... @patch.multiple('__main__', thing=DEFAULT, other=DEFAULT)
    3. ... def test_function(mock_exit, other, thing):
    4. ... assert 'other' in repr(other)
    5. ... assert 'thing' in repr(thing)
    6. ... assert 'exit' in repr(mock_exit)
    7. ...
    8. >>> test_function()

    If patch.multiple() is used as a context manager, the value returned by thecontext manager is a dictionary where created mocks are keyed by name:

    1. >>> with patch.multiple('__main__', thing=DEFAULT, other=DEFAULT) as values:
    2. ... assert 'other' in repr(values['other'])
    3. ... assert 'thing' in repr(values['thing'])
    4. ... assert values['thing'] is thing
    5. ... assert values['other'] is other
    6. ...

    patch methods: start and stop

    All the patchers have start() and stop() methods. These make it simpler to dopatching in setUp methods or where you want to do multiple patches withoutnesting decorators or with statements.

    To use them call patch(), patch.object() or patch.dict() asnormal and keep a reference to the returned patcher object. You can thencall start() to put the patch in place and stop() to undo it.

    If you are using patch() to create a mock for you then it will be returned bythe call to patcher.start.

    1. >>> patcher = patch('package.module.ClassName')
    2. >>> from package import module
    3. >>> original = module.ClassName
    4. >>> new_mock = patcher.start()
    5. >>> assert module.ClassName is not original
    6. >>> assert module.ClassName is new_mock
    7. >>> patcher.stop()
    8. >>> assert module.ClassName is original
    9. >>> assert module.ClassName is not new_mock

    A typical use case for this might be for doing multiple patches in the setUpmethod of a TestCase:

    1. >>> class MyTest(unittest.TestCase):
    2. ... def setUp(self):
    3. ... self.patcher1 = patch('package.module.Class1')
    4. ... self.patcher2 = patch('package.module.Class2')
    5. ... self.MockClass1 = self.patcher1.start()
    6. ... self.MockClass2 = self.patcher2.start()
    7. ...
    8. ... def tearDown(self):
    9. ... self.patcher1.stop()
    10. ... self.patcher2.stop()
    11. ...
    12. ... def test_something(self):
    13. ... assert package.module.Class1 is self.MockClass1
    14. ... assert package.module.Class2 is self.MockClass2
    15. ...
    16. >>> MyTest('test_something').run()

    警告

    If you use this technique you must ensure that the patching is "undone" bycalling stop. This can be fiddlier than you might think, because if anexception is raised in the setUp then tearDown is not called.unittest.TestCase.addCleanup() makes this easier:

    1. >>> class MyTest(unittest.TestCase):
    2. ... def setUp(self):
    3. ... patcher = patch('package.module.Class')
    4. ... self.MockClass = patcher.start()
    5. ... self.addCleanup(patcher.stop)
    6. ...
    7. ... def test_something(self):
    8. ... assert package.module.Class is self.MockClass
    9. ...

    As an added bonus you no longer need to keep a reference to the patcherobject.

    It is also possible to stop all patches which have been started by usingpatch.stopall().

    • patch.stopall()
    • Stop all active patches. Only stops patches started with start.

    patch builtins

    You can patch any builtins within a module. The following example patchesbuiltin ord():

    1. >>> @patch('__main__.ord')
    2. ... def test(mock_ord):
    3. ... mock_ord.return_value = 101
    4. ... print(ord('c'))
    5. ...
    6. >>> test()
    7. 101

    TEST_PREFIX

    All of the patchers can be used as class decorators. When used in this waythey wrap every test method on the class. The patchers recognise methods thatstart with 'test' as being test methods. This is the same way that theunittest.TestLoader finds test methods by default.

    It is possible that you want to use a different prefix for your tests. You caninform the patchers of the different prefix by setting patch.TEST_PREFIX:

    1. >>> patch.TEST_PREFIX = 'foo'
    2. >>> value = 3
    3. >>>
    4. >>> @patch('__main__.value', 'not three')
    5. ... class Thing:
    6. ... def foo_one(self):
    7. ... print(value)
    8. ... def foo_two(self):
    9. ... print(value)
    10. ...
    11. >>>
    12. >>> Thing().foo_one()
    13. not three
    14. >>> Thing().foo_two()
    15. not three
    16. >>> value
    17. 3

    Nesting Patch Decorators

    If you want to perform multiple patches then you can simply stack up thedecorators.

    You can stack up multiple patch decorators using this pattern:

    1. >>> @patch.object(SomeClass, 'class_method')
    2. ... @patch.object(SomeClass, 'static_method')
    3. ... def test(mock1, mock2):
    4. ... assert SomeClass.static_method is mock1
    5. ... assert SomeClass.class_method is mock2
    6. ... SomeClass.static_method('foo')
    7. ... SomeClass.class_method('bar')
    8. ... return mock1, mock2
    9. ...
    10. >>> mock1, mock2 = test()
    11. >>> mock1.assert_called_once_with('foo')
    12. >>> mock2.assert_called_once_with('bar')

    Note that the decorators are applied from the bottom upwards. This is thestandard way that Python applies decorators. The order of the created mockspassed into your test function matches this order.

    Where to patch

    patch() works by (temporarily) changing the object that a name points to withanother one. There can be many names pointing to any individual object, sofor patching to work you must ensure that you patch the name used by the systemunder test.

    The basic principle is that you patch where an object is looked up, whichis not necessarily the same place as where it is defined. A couple ofexamples will help to clarify this.

    Imagine we have a project that we want to test with the following structure:

    1. a.py
    2. -> Defines SomeClass
    3.  
    4. b.py
    5. -> from a import SomeClass
    6. -> some_function instantiates SomeClass

    Now we want to test somefunction but we want to mock out SomeClass usingpatch(). The problem is that when we import module b, which we will have todo then it imports SomeClass from module a. If we use patch() to mock outa.SomeClass then it will have no effect on our test; module b already has areference to the _real SomeClass and it looks like our patching had noeffect.

    The key is to patch out SomeClass where it is used (or where it is looked up).In this case some_function will actually look up SomeClass in module b,where we have imported it. The patching should look like:

    1. @patch('b.SomeClass')

    However, consider the alternative scenario where instead of from a importSomeClass module b does import a and some_function uses a.SomeClass. Bothof these import forms are common. In this case the class we want to patch isbeing looked up in the module and so we have to patch a.SomeClass instead:

    1. @patch('a.SomeClass')

    Patching Descriptors and Proxy Objects

    Both patch and patch.object correctly patch and restore descriptors: classmethods, static methods and properties. You should patch these on the class_rather than an instance. They also work with _some objectsthat proxy attribute access, like the django settings object.

    MagicMock and magic method support

    Mocking Magic Methods

    Mock supports mocking the Python protocol methods, also known as"magic methods". This allows mock objects to replace containers or otherobjects that implement Python protocols.

    Because magic methods are looked up differently from normal methods 2, thissupport has been specially implemented. This means that only specific magicmethods are supported. The supported list includes almost all of them. Ifthere are any missing that you need please let us know.

    You mock magic methods by setting the method you are interested in to a functionor a mock instance. If you are using a function then it must take self asthe first argument 3.

    1. >>> def __str__(self):
    2. ... return 'fooble'
    3. ...
    4. >>> mock = Mock()
    5. >>> mock.__str__ = __str__
    6. >>> str(mock)
    7. 'fooble'
    1. >>> mock = Mock()
    2. >>> mock.__str__ = Mock()
    3. >>> mock.__str__.return_value = 'fooble'
    4. >>> str(mock)
    5. 'fooble'
    1. >>> mock = Mock()
    2. >>> mock.__iter__ = Mock(return_value=iter([]))
    3. >>> list(mock)
    4. []

    One use case for this is for mocking objects used as context managers in awith statement:

    1. >>> mock = Mock()
    2. >>> mock.__enter__ = Mock(return_value='foo')
    3. >>> mock.__exit__ = Mock(return_value=False)
    4. >>> with mock as m:
    5. ... assert m == 'foo'
    6. ...
    7. >>> mock.__enter__.assert_called_with()
    8. >>> mock.__exit__.assert_called_with(None, None, None)

    Calls to magic methods do not appear in method_calls, but theyare recorded in mock_calls.

    注解

    If you use the spec keyword argument to create a mock then attempting toset a magic method that isn't in the spec will raise an AttributeError.

    The full list of supported magic methods is:

    • hash, sizeof, repr and str

    • dir, format and subclasses

    • round, floor, trunc and ceil

    • Comparisons: lt, gt, le, ge,eq and ne

    • Container methods: getitem, setitem, delitem,contains, len, iter, reversedand missing

    • Context manager: enter, exit, aenter and aexit

    • Unary numeric methods: neg, pos and invert

    • The numeric methods (including right hand and in-place variants):add, sub, mul, matmul, div, truediv,floordiv, mod, divmod, lshift,rshift, and, xor, or, and pow

    • Numeric conversion methods: complex, int, floatand index

    • Descriptor methods: get, set and delete

    • Pickling: reduce, reduce_ex, getinitargs,getnewargs, getstate and setstate

    • File system path representation: fspath

    • Asynchronous iteration methods: aiter and anext

    在 3.8 版更改: Added support for os.PathLike.fspath().

    在 3.8 版更改: Added support for aenter, aexit, aiter and anext.

    The following methods exist but are not supported as they are either in useby mock, can't be set dynamically, or can cause problems:

    • getattr, setattr, init and new

    • prepare, instancecheck, subclasscheck, del

    Magic Mock

    There are two MagicMock variants: MagicMock and NonCallableMagicMock.

    • class unittest.mock.MagicMock(*args, **kw)
    • MagicMock is a subclass of Mock with default implementationsof most of the magic methods. You can use MagicMock without having toconfigure the magic methods yourself.

    The constructor parameters have the same meaning as for Mock.

    If you use the spec or spec_set arguments then only magic methodsthat exist in the spec will be created.

    • class unittest.mock.NonCallableMagicMock(*args, **kw)
    • A non-callable version of MagicMock.

    The constructor parameters have the same meaning as forMagicMock, with the exception of return_value andside_effect which have no meaning on a non-callable mock.

    The magic methods are setup with MagicMock objects, so you can configure themand use them in the usual way:

    1. >>> mock = MagicMock()
    2. >>> mock[3] = 'fish'
    3. >>> mock.__setitem__.assert_called_with(3, 'fish')
    4. >>> mock.__getitem__.return_value = 'result'
    5. >>> mock[2]
    6. 'result'

    By default many of the protocol methods are required to return objects of aspecific type. These methods are preconfigured with a default return value, sothat they can be used without you having to do anything if you aren't interestedin the return value. You can still set the return value manually if you wantto change the default.

    Methods and their defaults:

    • lt: NotImplemented

    • gt: NotImplemented

    • le: NotImplemented

    • ge: NotImplemented

    • int: 1

    • contains: False

    • len: 0

    • iter: iter([])

    • exit: False

    • aexit: False

    • complex: 1j

    • float: 1.0

    • bool: True

    • index: 1

    • hash: default hash for the mock

    • str: default str for the mock

    • sizeof: default sizeof for the mock

    例如:

    1. >>> mock = MagicMock()
    2. >>> int(mock)
    3. 1
    4. >>> len(mock)
    5. 0
    6. >>> list(mock)
    7. []
    8. >>> object() in mock
    9. False

    The two equality methods, eq() and ne(), are special.They do the default equality comparison on identity, using theside_effect attribute, unless you change their return value toreturn something else:

    1. >>> MagicMock() == 3
    2. False
    3. >>> MagicMock() != 3
    4. True
    5. >>> mock = MagicMock()
    6. >>> mock.__eq__.return_value = True
    7. >>> mock == 3
    8. True

    The return value of MagicMock.iter() can be any iterable object and isn'trequired to be an iterator:

    1. >>> mock = MagicMock()
    2. >>> mock.__iter__.return_value = ['a', 'b', 'c']
    3. >>> list(mock)
    4. ['a', 'b', 'c']
    5. >>> list(mock)
    6. ['a', 'b', 'c']

    If the return value is an iterator, then iterating over it once will consumeit and subsequent iterations will result in an empty list:

    1. >>> mock.__iter__.return_value = iter(['a', 'b', 'c'])
    2. >>> list(mock)
    3. ['a', 'b', 'c']
    4. >>> list(mock)
    5. []

    MagicMock has all of the supported magic methods configured except for someof the obscure and obsolete ones. You can still set these up if you want.

    Magic methods that are supported but not setup by default in MagicMock are:

    • subclasses

    • dir

    • format

    • get, set and delete

    • reversed and missing

    • reduce, reduce_ex, getinitargs, getnewargs,getstate and setstate

    • getformat and setformat

    • 2

    • Magic methods should be looked up on the class rather than theinstance. Different versions of Python are inconsistent about applying thisrule. The supported protocol methods should work with all supported versionsof Python.

    • 3

    • The function is basically hooked up to the class, but each Mockinstance is kept isolated from the others.

    Helpers

    sentinel

    • unittest.mock.sentinel
    • The sentinel object provides a convenient way of providing uniqueobjects for your tests.

    Attributes are created on demand when you access them by name. Accessingthe same attribute will always return the same object. The objectsreturned have a sensible repr so that test failure messages are readable.

    在 3.7 版更改: The sentinel attributes now preserve their identity when they arecopied or pickled.

    Sometimes when testing you need to test that a specific object is passed as anargument to another method, or returned. It can be common to create namedsentinel objects to test this. sentinel provides a convenient way ofcreating and testing the identity of objects like this.

    In this example we monkey patch method to return sentinel.some_object:

    1. >>> real = ProductionClass()
    2. >>> real.method = Mock(name="method")
    3. >>> real.method.return_value = sentinel.some_object
    4. >>> result = real.method()
    5. >>> assert result is sentinel.some_object
    6. >>> sentinel.some_object
    7. sentinel.some_object

    DEFAULT

    • unittest.mock.DEFAULT
    • The DEFAULT object is a pre-created sentinel (actuallysentinel.DEFAULT). It can be used by side_effectfunctions to indicate that the normal return value should be used.

    call

    • unittest.mock.call(*args, **kwargs)
    • call() is a helper object for making simpler assertions, for comparing withcall_args, call_args_list,mock_calls and method_calls. call() can also beused with assert_has_calls().
    1. >>> m = MagicMock(return_value=None)
    2. >>> m(1, 2, a='foo', b='bar')
    3. >>> m()
    4. >>> m.call_args_list == [call(1, 2, a='foo', b='bar'), call()]
    5. True
    • call.call_list()
    • For a call object that represents multiple calls, call_list()returns a list of all the intermediate calls as well as thefinal call.

    call_list is particularly useful for making assertions on "chained calls". Achained call is multiple calls on a single line of code. This results inmultiple entries in mock_calls on a mock. Manually constructingthe sequence of calls can be tedious.

    call_list() can construct the sequence of calls from the samechained call:

    1. >>> m = MagicMock()
    2. >>> m(1).method(arg='foo').other('bar')(2.0)
    3. <MagicMock name='mock().method().other()()' id='...'>
    4. >>> kall = call(1).method(arg='foo').other('bar')(2.0)
    5. >>> kall.call_list()
    6. [call(1),
    7. call().method(arg='foo'),
    8. call().method().other('bar'),
    9. call().method().other()(2.0)]
    10. >>> m.mock_calls == kall.call_list()
    11. True

    A call object is either a tuple of (positional args, keyword args) or(name, positional args, keyword args) depending on how it was constructed. Whenyou construct them yourself this isn't particularly interesting, but the callobjects that are in the Mock.call_args, Mock.call_args_list andMock.mock_calls attributes can be introspected to get at the individualarguments they contain.

    The call objects in Mock.call_args and Mock.call_args_listare two-tuples of (positional args, keyword args) whereas the call objectsin Mock.mock_calls, along with ones you construct yourself, arethree-tuples of (name, positional args, keyword args).

    You can use their "tupleness" to pull out the individual arguments for morecomplex introspection and assertions. The positional arguments are a tuple(an empty tuple if there are no positional arguments) and the keywordarguments are a dictionary:

    1. >>> m = MagicMock(return_value=None)
    2. >>> m(1, 2, 3, arg='one', arg2='two')
    3. >>> kall = m.call_args
    4. >>> kall.args
    5. (1, 2, 3)
    6. >>> kall.kwargs
    7. {'arg': 'one', 'arg2': 'two'}
    8. >>> kall.args is kall[0]
    9. True
    10. >>> kall.kwargs is kall[1]
    11. True
    1. >>> m = MagicMock()
    2. >>> m.foo(4, 5, 6, arg='two', arg2='three')
    3. <MagicMock name='mock.foo()' id='...'>
    4. >>> kall = m.mock_calls[0]
    5. >>> name, args, kwargs = kall
    6. >>> name
    7. 'foo'
    8. >>> args
    9. (4, 5, 6)
    10. >>> kwargs
    11. {'arg': 'two', 'arg2': 'three'}
    12. >>> name is m.mock_calls[0][0]
    13. True

    create_autospec

    • unittest.mock.createautospec(_spec, spec_set=False, instance=False, **kwargs)
    • Create a mock object using another object as a spec. Attributes on themock will use the corresponding attribute on the spec object as theirspec.

    Functions or methods being mocked will have their arguments checked toensure that they are called with the correct signature.

    If spec_set is True then attempting to set attributes that don't existon the spec object will raise an AttributeError.

    If a class is used as a spec then the return value of the mock (theinstance of the class) will have the same spec. You can use a class as thespec for an instance object by passing instance=True. The returned mockwill only be callable if instances of the mock are callable.

    create_autospec() also takes arbitrary keyword arguments that are passed tothe constructor of the created mock.

    See Autospeccing for examples of how to use auto-speccing withcreate_autospec() and the autospec argument to patch().

    在 3.8 版更改: create_autospec() now returns an AsyncMock if the target isan async function.

    ANY

    • unittest.mock.ANY
    • Sometimes you may need to make assertions about some of the arguments in acall to mock, but either not care about some of the arguments or want to pullthem individually out of call_args and make more complexassertions on them.

    To ignore certain arguments you can pass in objects that compare equal toeverything. Calls to assert_called_with() andassert_called_once_with() will then succeed no matter what waspassed in.

    1. >>> mock = Mock(return_value=None)
    2. >>> mock('foo', bar=object())
    3. >>> mock.assert_called_once_with('foo', bar=ANY)

    ANY can also be used in comparisons with call lists likemock_calls:

    1. >>> m = MagicMock(return_value=None)
    2. >>> m(1)
    3. >>> m(1, 2)
    4. >>> m(object())
    5. >>> m.mock_calls == [call(1), call(1, 2), ANY]
    6. True

    FILTER_DIR

    • unittest.mock.FILTER_DIR
    • FILTER_DIR is a module level variable that controls the way mock objectsrespond to dir() (only for Python 2.6 or more recent). The default is True,which uses the filtering described below, to only show useful members. If youdislike this filtering, or need to switch it off for diagnostic purposes, thenset mock.FILTER_DIR = False.

    With filtering on, dir(somemock) shows only useful attributes and willinclude any dynamically created attributes that wouldn't normally be shown.If the mock was created with a _spec (or autospec of course) then all theattributes from the original are shown, even if they haven't been accessedyet:

    1. >>> dir(Mock())
    2. ['assert_any_call',
    3. 'assert_called',
    4. 'assert_called_once',
    5. 'assert_called_once_with',
    6. 'assert_called_with',
    7. 'assert_has_calls',
    8. 'assert_not_called',
    9. 'attach_mock',
    10. ...
    11. >>> from urllib import request
    12. >>> dir(Mock(spec=request))
    13. ['AbstractBasicAuthHandler',
    14. 'AbstractDigestAuthHandler',
    15. 'AbstractHTTPHandler',
    16. 'BaseHandler',
    17. ...

    Many of the not-very-useful (private to Mock rather than the thing beingmocked) underscore and double underscore prefixed attributes have beenfiltered from the result of calling dir() on a Mock. If you dislike thisbehaviour you can switch it off by setting the module level switchFILTER_DIR:

    1. >>> from unittest import mock
    2. >>> mock.FILTER_DIR = False
    3. >>> dir(mock.Mock())
    4. ['_NonCallableMock__get_return_value',
    5. '_NonCallableMock__get_side_effect',
    6. '_NonCallableMock__return_value_doc',
    7. '_NonCallableMock__set_return_value',
    8. '_NonCallableMock__set_side_effect',
    9. '__call__',
    10. '__class__',
    11. ...

    Alternatively you can just use vars(my_mock) (instance members) anddir(type(my_mock)) (type members) to bypass the filtering irrespective ofmock.FILTER_DIR.

    mock_open

    • unittest.mock.mockopen(_mock=None, read_data=None)
    • A helper function to create a mock to replace the use of open(). It worksfor open() called directly or used as a context manager.

    The mock argument is the mock object to configure. If None (thedefault) then a MagicMock will be created for you, with the API limitedto methods or attributes available on standard file handles.

    read_data is a string for the read(),readline(), and readlines() methodsof the file handle to return. Calls to those methods will take data fromread_data until it is depleted. The mock of these methods is prettysimplistic: every time the mock is called, the read_data is rewound tothe start. If you need more control over the data that you are feeding tothe tested code you will need to customize this mock for yourself. When thatis insufficient, one of the in-memory filesystem packages on PyPI can offer a realistic filesystem for testing.

    在 3.4 版更改: Added readline() and readlines() support.The mock of read() changed to consume read_data ratherthan returning it on each call.

    在 3.5 版更改: read_data is now reset on each call to the mock.

    在 3.8 版更改: Added iter() to implementation so that iteration (such as in forloops) correctly consumes read_data.

    Using open() as a context manager is a great way to ensure your file handlesare closed properly and is becoming common:

    1. with open('/some/path', 'w') as f:
    2. f.write('something')

    The issue is that even if you mock out the call to open() it is thereturned object that is used as a context manager (and has enter() andexit() called).

    Mocking context managers with a MagicMock is common enough and fiddlyenough that a helper function is useful.

    1. >>> m = mock_open()
    2. >>> with patch('__main__.open', m):
    3. ... with open('foo', 'w') as h:
    4. ... h.write('some stuff')
    5. ...
    6. >>> m.mock_calls
    7. [call('foo', 'w'),
    8. call().__enter__(),
    9. call().write('some stuff'),
    10. call().__exit__(None, None, None)]
    11. >>> m.assert_called_once_with('foo', 'w')
    12. >>> handle = m()
    13. >>> handle.write.assert_called_once_with('some stuff')

    And for reading files:

    1. >>> with patch('__main__.open', mock_open(read_data='bibble')) as m:
    2. ... with open('foo') as h:
    3. ... result = h.read()
    4. ...
    5. >>> m.assert_called_once_with('foo')
    6. >>> assert result == 'bibble'

    Autospeccing

    Autospeccing is based on the existing spec feature of mock. It limits theapi of mocks to the api of an original object (the spec), but it is recursive(implemented lazily) so that attributes of mocks only have the same api asthe attributes of the spec. In addition mocked functions / methods have thesame call signature as the original so they raise a TypeError if they arecalled incorrectly.

    Before I explain how auto-speccing works, here's why it is needed.

    Mock is a very powerful and flexible object, but it suffers from two flawswhen used to mock out objects from a system under test. One of these flaws isspecific to the Mock api and the other is a more general problem with usingmock objects.

    First the problem specific to Mock. Mock has two assert methods that areextremely handy: assert_called_with() andassert_called_once_with().

    1. >>> mock = Mock(name='Thing', return_value=None)
    2. >>> mock(1, 2, 3)
    3. >>> mock.assert_called_once_with(1, 2, 3)
    4. >>> mock(1, 2, 3)
    5. >>> mock.assert_called_once_with(1, 2, 3)
    6. Traceback (most recent call last):
    7. ...
    8. AssertionError: Expected 'mock' to be called once. Called 2 times.

    Because mocks auto-create attributes on demand, and allow you to call themwith arbitrary arguments, if you misspell one of these assert methods thenyour assertion is gone:

    1. >>> mock = Mock(name='Thing', return_value=None)
    2. >>> mock(1, 2, 3)
    3. >>> mock.assret_called_once_with(4, 5, 6)

    Your tests can pass silently and incorrectly because of the typo.

    The second issue is more general to mocking. If you refactor some of yourcode, rename members and so on, any tests for code that is still using theold api but uses mocks instead of the real objects will still pass. Thismeans your tests can all pass even though your code is broken.

    Note that this is another reason why you need integration tests as well asunit tests. Testing everything in isolation is all fine and dandy, but if youdon't test how your units are "wired together" there is still lots of roomfor bugs that tests might have caught.

    mock already provides a feature to help with this, called speccing. If youuse a class or instance as the spec for a mock then you can only accessattributes on the mock that exist on the real class:

    1. >>> from urllib import request
    2. >>> mock = Mock(spec=request.Request)
    3. >>> mock.assret_called_with
    4. Traceback (most recent call last):
    5. ...
    6. AttributeError: Mock object has no attribute 'assret_called_with'

    The spec only applies to the mock itself, so we still have the same issuewith any methods on the mock:

    1. >>> mock.has_data()
    2. <mock.Mock object at 0x...>
    3. >>> mock.has_data.assret_called_with()

    Auto-speccing solves this problem. You can either pass autospec=True topatch() / patch.object() or use the create_autospec() function to create amock with a spec. If you use the autospec=True argument to patch() then theobject that is being replaced will be used as the spec object. Because thespeccing is done "lazily" (the spec is created as attributes on the mock areaccessed) you can use it with very complex or deeply nested objects (likemodules that import modules that import modules) without a big performancehit.

    Here's an example of it in use:

    1. >>> from urllib import request
    2. >>> patcher = patch('__main__.request', autospec=True)
    3. >>> mock_request = patcher.start()
    4. >>> request is mock_request
    5. True
    6. >>> mock_request.Request
    7. <MagicMock name='request.Request' spec='Request' id='...'>

    You can see that request.Request has a spec. request.Request takes twoarguments in the constructor (one of which is self). Here's what happens ifwe try to call it incorrectly:

    1. >>> req = request.Request()
    2. Traceback (most recent call last):
    3. ...
    4. TypeError: <lambda>() takes at least 2 arguments (1 given)

    The spec also applies to instantiated classes (i.e. the return value ofspecced mocks):

    1. >>> req = request.Request('foo')
    2. >>> req
    3. <NonCallableMagicMock name='request.Request()' spec='Request' id='...'>

    Request objects are not callable, so the return value of instantiating ourmocked out request.Request is a non-callable mock. With the spec in placeany typos in our asserts will raise the correct error:

    1. >>> req.add_header('spam', 'eggs')
    2. <MagicMock name='request.Request().add_header()' id='...'>
    3. >>> req.add_header.assret_called_with
    4. Traceback (most recent call last):
    5. ...
    6. AttributeError: Mock object has no attribute 'assret_called_with'
    7. >>> req.add_header.assert_called_with('spam', 'eggs')

    In many cases you will just be able to add autospec=True to your existingpatch() calls and then be protected against bugs due to typos and apichanges.

    As well as using autospec through patch() there is acreate_autospec() for creating autospecced mocks directly:

    1. >>> from urllib import request
    2. >>> mock_request = create_autospec(request)
    3. >>> mock_request.Request('foo', 'bar')
    4. <NonCallableMagicMock name='mock.Request()' spec='Request' id='...'>

    This isn't without caveats and limitations however, which is why it is notthe default behaviour. In order to know what attributes are available on thespec object, autospec has to introspect (access attributes) the spec. As youtraverse attributes on the mock a corresponding traversal of the originalobject is happening under the hood. If any of your specced objects haveproperties or descriptors that can trigger code execution then you may not beable to use autospec. On the other hand it is much better to design yourobjects so that introspection is safe 4.

    A more serious problem is that it is common for instance attributes to becreated in the init() method and not to exist on the class at all.autospec can't know about any dynamically created attributes and restrictsthe api to visible attributes.

    1. >>> class Something:
    2. ... def __init__(self):
    3. ... self.a = 33
    4. ...
    5. >>> with patch('__main__.Something', autospec=True):
    6. ... thing = Something()
    7. ... thing.a
    8. ...
    9. Traceback (most recent call last):
    10. ...
    11. AttributeError: Mock object has no attribute 'a'

    There are a few different ways of resolving this problem. The easiest, butnot necessarily the least annoying, way is to simply set the requiredattributes on the mock after creation. Just because autospec doesn't allowyou to fetch attributes that don't exist on the spec it doesn't prevent yousetting them:

    1. >>> with patch('__main__.Something', autospec=True):
    2. ... thing = Something()
    3. ... thing.a = 33
    4. ...

    There is a more aggressive version of both spec and autospec that does_prevent you setting non-existent attributes. This is useful if you want toensure your code only _sets valid attributes too, but obviously it preventsthis particular scenario:

    1. >>> with patch('__main__.Something', autospec=True, spec_set=True):
    2. ... thing = Something()
    3. ... thing.a = 33
    4. ...
    5. Traceback (most recent call last):
    6. ...
    7. AttributeError: Mock object has no attribute 'a'

    Probably the best way of solving the problem is to add class attributes asdefault values for instance members initialised in init(). Note that ifyou are only setting default attributes in init() then providing them viaclass attributes (shared between instances of course) is faster too. e.g.

    1. class Something:
    2. a = 33

    This brings up another issue. It is relatively common to provide a defaultvalue of None for members that will later be an object of a different type.None would be useless as a spec because it wouldn't let you access any_attributes or methods on it. As None is _never going to be useful as aspec, and probably indicates a member that will normally of some other type,autospec doesn't use a spec for members that are set to None. These willjust be ordinary mocks (well - MagicMocks):

    1. >>> class Something:
    2. ... member = None
    3. ...
    4. >>> mock = create_autospec(Something)
    5. >>> mock.member.foo.bar.baz()
    6. <MagicMock name='mock.member.foo.bar.baz()' id='...'>

    If modifying your production classes to add defaults isn't to your likingthen there are more options. One of these is simply to use an instance as thespec rather than the class. The other is to create a subclass of theproduction class and add the defaults to the subclass without affecting theproduction class. Both of these require you to use an alternative object asthe spec. Thankfully patch() supports this - you can simply pass thealternative object as the autospec argument:

    1. >>> class Something:
    2. ... def __init__(self):
    3. ... self.a = 33
    4. ...
    5. >>> class SomethingForTest(Something):
    6. ... a = 33
    7. ...
    8. >>> p = patch('__main__.Something', autospec=SomethingForTest)
    9. >>> mock = p.start()
    10. >>> mock.a
    11. <NonCallableMagicMock name='Something.a' spec='int' id='...'>
    • 4
    • This only applies to classes or already instantiated objects. Callinga mocked class to create a mock instance does not create a real instance.It is only attribute lookups - along with calls to dir() - that are done.

    Sealing mocks

    • unittest.mock.seal(mock)
    • Seal will disable the automatic creation of mocks when accessing an attribute ofthe mock being sealed or any of its attributes that are already mocks recursively.

    If a mock instance with a name or a spec is assigned to an attributeit won't be considered in the sealing chain. This allows one to prevent seal fromfixing part of the mock object.

    1. >>> mock = Mock()
    2. >>> mock.submock.attribute1 = 2
    3. >>> mock.not_submock = mock.Mock(name="sample_name")
    4. >>> seal(mock)
    5. >>> mock.new_attribute # This will raise AttributeError.
    6. >>> mock.submock.attribute2 # This will raise AttributeError.
    7. >>> mock.not_submock.attribute2 # This won't raise.

    3.7 新版功能.