當前位置: 首頁>>代碼示例>>Python>>正文


Python mock.reset_mock方法代碼示例

本文整理匯總了Python中unittest.mock.reset_mock方法的典型用法代碼示例。如果您正苦於以下問題:Python mock.reset_mock方法的具體用法?Python mock.reset_mock怎麽用?Python mock.reset_mock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在unittest.mock的用法示例。


在下文中一共展示了mock.reset_mock方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_assert_called_once_with

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_assert_called_once_with(self):
        mock = Mock()
        mock()

        # Will raise an exception if it fails
        mock.assert_called_once_with()

        mock()
        self.assertRaises(AssertionError, mock.assert_called_once_with)

        mock.reset_mock()
        self.assertRaises(AssertionError, mock.assert_called_once_with)

        mock('foo', 'bar', baz=2)
        mock.assert_called_once_with('foo', 'bar', baz=2)

        mock.reset_mock()
        mock('foo', 'bar', baz=2)
        self.assertRaises(
            AssertionError,
            lambda: mock.assert_called_once_with('bob', 'bar', baz=2)
        ) 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:24,代碼來源:testmock.py

示例2: test_reset_mock

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_mock(self):
        parent = Mock()
        spec = ["something"]
        mock = Mock(name="child", parent=parent, spec=spec)
        mock(sentinel.Something, something=sentinel.SomethingElse)
        something = mock.something
        mock.something()
        mock.side_effect = sentinel.SideEffect
        return_value = mock.return_value
        return_value()

        mock.reset_mock()

        self.assertEqual(mock._mock_name, "child",
                         "name incorrectly reset")
        self.assertEqual(mock._mock_parent, parent,
                         "parent incorrectly reset")
        self.assertEqual(mock._mock_methods, spec,
                         "methods incorrectly reset")

        self.assertFalse(mock.called, "called not reset")
        self.assertEqual(mock.call_count, 0, "call_count not reset")
        self.assertEqual(mock.call_args, None, "call_args not reset")
        self.assertEqual(mock.call_args_list, [], "call_args_list not reset")
        self.assertEqual(mock.method_calls, [],
                        "method_calls not initialised correctly: %r != %r" %
                        (mock.method_calls, []))
        self.assertEqual(mock.mock_calls, [])

        self.assertEqual(mock.side_effect, sentinel.SideEffect,
                          "side_effect incorrectly reset")
        self.assertEqual(mock.return_value, return_value,
                          "return_value incorrectly reset")
        self.assertFalse(return_value.called, "return value mock not reset")
        self.assertEqual(mock._mock_children, {'something': something},
                          "children reset incorrectly")
        self.assertEqual(mock.something, something,
                          "children incorrectly cleared")
        self.assertFalse(mock.something.called, "child not reset") 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:41,代碼來源:testmock.py

示例3: test_reset_mock_recursion

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_mock_recursion(self):
        mock = Mock()
        mock.return_value = mock

        # used to cause recursion
        mock.reset_mock() 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:8,代碼來源:testmock.py

示例4: test_call

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_call(self):
        mock = Mock()
        self.assertTrue(is_instance(mock.return_value, Mock),
                        "Default return_value should be a Mock")

        result = mock()
        self.assertEqual(mock(), result,
                         "different result from consecutive calls")
        mock.reset_mock()

        ret_val = mock(sentinel.Arg)
        self.assertTrue(mock.called, "called not set")
        self.assertEqual(mock.call_count, 1, "call_count incoreect")
        self.assertEqual(mock.call_args, ((sentinel.Arg,), {}),
                         "call_args not set")
        self.assertEqual(mock.call_args_list, [((sentinel.Arg,), {})],
                         "call_args_list not initialised correctly")

        mock.return_value = sentinel.ReturnValue
        ret_val = mock(sentinel.Arg, key=sentinel.KeyArg)
        self.assertEqual(ret_val, sentinel.ReturnValue,
                         "incorrect return value")

        self.assertEqual(mock.call_count, 2, "call_count incorrect")
        self.assertEqual(mock.call_args,
                         ((sentinel.Arg,), {'key': sentinel.KeyArg}),
                         "call_args not set")
        self.assertEqual(mock.call_args_list, [
            ((sentinel.Arg,), {}),
            ((sentinel.Arg,), {'key': sentinel.KeyArg})
        ],
            "call_args_list not set") 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:34,代碼來源:testmock.py

示例5: test_assert_called_with

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_assert_called_with(self):
        mock = Mock()
        mock()

        # Will raise an exception if it fails
        mock.assert_called_with()
        self.assertRaises(AssertionError, mock.assert_called_with, 1)

        mock.reset_mock()
        self.assertRaises(AssertionError, mock.assert_called_with)

        mock(1, 2, 3, a='fish', b='nothing')
        mock.assert_called_with(1, 2, 3, a='fish', b='nothing') 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:15,代碼來源:testmock.py

示例6: test_arg_lists

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_arg_lists(self):
        mocks = [
            Mock(),
            MagicMock(),
            NonCallableMock(),
            NonCallableMagicMock()
        ]

        def assert_attrs(mock):
            names = 'call_args_list', 'method_calls', 'mock_calls'
            for name in names:
                attr = getattr(mock, name)
                self.assertIsInstance(attr, _CallList)
                self.assertIsInstance(attr, list)
                self.assertEqual(attr, [])

        for mock in mocks:
            assert_attrs(mock)

            if callable(mock):
                mock()
                mock(1, 2)
                mock(a=3)

                mock.reset_mock()
                assert_attrs(mock)

            mock.foo()
            mock.foo.bar(1, a=3)
            mock.foo(1).bar().baz(3)

            mock.reset_mock()
            assert_attrs(mock) 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:35,代碼來源:testmock.py

示例7: test_mock_parents

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_mock_parents(self):
        for Klass in Mock, MagicMock:
            m = Klass()
            original_repr = repr(m)
            m.return_value = m
            self.assertIs(m(), m)
            self.assertEqual(repr(m), original_repr)

            m.reset_mock()
            self.assertIs(m(), m)
            self.assertEqual(repr(m), original_repr)

            m = Klass()
            m.b = m.a
            self.assertIn("name='mock.a'", repr(m.b))
            self.assertIn("name='mock.a'", repr(m.a))
            m.reset_mock()
            self.assertIn("name='mock.a'", repr(m.b))
            self.assertIn("name='mock.a'", repr(m.a))

            m = Klass()
            original_repr = repr(m)
            m.a = m()
            m.a.return_value = m

            self.assertEqual(repr(m), original_repr)
            self.assertEqual(repr(m.a()), original_repr) 
開發者ID:war-and-code,項目名稱:jawfish,代碼行數:29,代碼來源:testmock.py

示例8: test_reset_mock_on_mock_open_issue_18622

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_mock_on_mock_open_issue_18622(self):
        a = mock.mock_open()
        a.reset_mock() 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:5,代碼來源:testmock.py

示例9: test_wraps_calls

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_wraps_calls(self):
        real = Mock()

        mock = Mock(wraps=real)
        self.assertEqual(mock(), real())

        real.reset_mock()

        mock(1, 2, fish=3)
        real.assert_called_with(1, 2, fish=3) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:12,代碼來源:testmock.py

示例10: test_reset_return_sideeffect

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_return_sideeffect(self):
        m = Mock(return_value=10, side_effect=[2,3])
        m.reset_mock(return_value=True, side_effect=True)
        self.assertIsInstance(m.return_value, Mock)
        self.assertEqual(m.side_effect, None) 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:7,代碼來源:testmock.py

示例11: test_reset_return

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_return(self):
        m = Mock(return_value=10, side_effect=[2,3])
        m.reset_mock(return_value=True)
        self.assertIsInstance(m.return_value, Mock)
        self.assertNotEqual(m.side_effect, None) 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:7,代碼來源:testmock.py

示例12: test_reset_sideeffect

# 需要導入模塊: from unittest import mock [as 別名]
# 或者: from unittest.mock import reset_mock [as 別名]
def test_reset_sideeffect(self):
        m = Mock(return_value=10, side_effect=[2,3])
        m.reset_mock(side_effect=True)
        self.assertEqual(m.return_value, 10)
        self.assertEqual(m.side_effect, None) 
開發者ID:CedricGuillemet,項目名稱:Imogen,代碼行數:7,代碼來源:testmock.py


注:本文中的unittest.mock.reset_mock方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。