本文整理匯總了Python中asynctest.Mock.json方法的典型用法代碼示例。如果您正苦於以下問題:Python Mock.json方法的具體用法?Python Mock.json怎麽用?Python Mock.json使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類asynctest.Mock
的用法示例。
在下文中一共展示了Mock.json方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_send_membership
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_send_membership(self):
account = Account("test_salt", "H8uYXvyF6GWeCr8cwFJ6V5B8tNprwRdjepFNJBqivrzr",
"test_account", [], [], [],
self.identities_registry)
account_identity = MagicMock(autospec='sakia.core.registry.Identity')
account_identity.selfcert = CoroutineMock(return_value=SelfCertification(2, "meta_brouzouf",
"H8uYXvyF6GWeCr8cwFJ6V5B8tNprwRdjepFNJBqivrzr", "test_account", 1000000000, ""))
community = MagicMock(autospec='sakia.core.Community')
community.blockUID = CoroutineMock(return_value=BlockUID(3102, "0000C5336F0B64BFB87FF4BC858AE25726B88175"))
self.identities_registry.future_find = CoroutineMock(return_value=account_identity)
community.bma_access = MagicMock(autospec='sakia.core.net.api.bma.access.BmaAccess')
response = Mock()
response.json = CoroutineMock(return_value={
"signature": "H41/8OGV2W4CLKbE35kk5t1HJQsb3jEM0/QGLUf80CwJvGZf3HvVCcNtHPUFoUBKEDQO9mPK3KJkqOoxHpqHCw==",
"membership": {
"version": 2,
"currency": "beta_brouzouf",
"issuer": "HsLShAtzXTVxeUtQd7yi5Z5Zh4zNvbu8sTEZ53nfKcqY",
"membership": "IN",
"sigDate": 1390739944,
"uid": "superman63"
}
})
response.status = 200
community.bma_access.broadcast = CoroutineMock(return_value=[response])
async def exec_test():
result = await account.send_membership("test_password", community, "IN")
self.assertTrue(result)
self.lp.run_until_complete(exec_test())
示例2: request
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def request(method, url, data, headers):
eq_(method, 'get')
eq_(url, 'url')
eq_(data, '{"message": "text"}')
eq_(headers, {
'Content-Type': 'application/json',
'Accept': 'application/json'
})
m = Mock()
m.status = 200
@future_func
def to_json():
return {'response': 'text'}
m.json = to_json
return m
示例3: test_004_patch_rest_configuration
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
async def test_004_patch_rest_configuration(self, bus_stop_mock):
req = Mock()
async def json():
return {
'bus': {'jid': '[email protected]'},
'new': True
}
req.headers = {'Content-Type': 'application/json'}
req.json = json
await self.apiconf.patch(req)
eq_(self.nyuki._config['new'], True)
eq_(self.nyuki._config['bus']['jid'], '[email protected]')
# finish coroutines
await exhaust_callbacks(self.loop)
bus_stop_mock.assert_called_once_with()
示例4: test_aget_dict
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_aget_dict(mocker):
from jenkins_epo.github import CustomGitHub
aiohttp = mocker.patch('jenkins_epo.github.aiohttp')
session = aiohttp.ClientSession.return_value
response = Mock(spec=['headers', 'json', 'status'])
session.get = CoroutineMock(return_value=response)
response.status = 200
response.content_type = 'application/json'
response.headers = {'ETag': 'cafed0d0'}
response.json = CoroutineMock(return_value={'data': 1})
GITHUB = CustomGitHub(access_token='cafed0d0')
res = yield from GITHUB.user.aget(per_page='100')
assert res._headers
assert 'data' in res
示例5: test_apost
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_apost(mocker):
from jenkins_epo.github import CustomGitHub, ApiError
aiohttp = mocker.patch('jenkins_epo.github.aiohttp')
session = aiohttp.ClientSession.return_value
response = Mock(spec=['headers', 'json', 'status'])
session.post = CoroutineMock(return_value=response)
response.status = 304
response.content_type = 'application/json'
response.headers = {'ETag': 'cafed0d0'}
response.json = CoroutineMock(return_value={'message': 'Not found'})
GITHUB = CustomGitHub(access_token='cafed0d0')
with pytest.raises(ApiError):
yield from GITHUB.user.apost(pouet=True)
示例6: test_aget_422
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_aget_422(mocker):
from jenkins_epo.github import CustomGitHub, ApiError
aiohttp = mocker.patch('jenkins_epo.github.aiohttp')
session = aiohttp.ClientSession.return_value
response = Mock(spec=['headers', 'json', 'status'])
session.get = CoroutineMock(return_value=response)
response.status = 422
response.headers = {}
response.content_type = 'application/json'
response.json = CoroutineMock(
return_value={'errors': [{'message': 'Pouet'}]},
)
GITHUB = CustomGitHub(access_token='cafed0d0')
with pytest.raises(ApiError):
yield from GITHUB.user.aget()
示例7: test_send_certification
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_send_certification(self):
cert_signal_sent = False
def check_certification_accepted():
nonlocal cert_signal_sent
cert_signal_sent = True
account = Account("test_salt", "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ",
"test_account", [], [], [],
self.identities_registry)
account.certification_accepted.connect(check_certification_accepted)
account_identity = MagicMock(autospec='sakia.core.registry.Identity')
account_identity.selfcert = CoroutineMock(return_value=SelfCertification(2, "meta_brouzouf",
"H8uYXvyF6GWeCr8cwFJ6V5B8tNprwRdjepFNJBqivrzr", "test_account",
BlockUID(1000, "49E2A1D1131F1496FAD6EDAE794A9ADBFA8844029675E3732D3B027ABB780243"),
"82o1sNCh1bLpUXU6nacbK48HBcA9Eu2sPkL1/3c2GtDPxBUZd2U2sb7DxwJ54n6ce9G0Oy7nd1hCxN3fS0oADw=="))
certified = MagicMock(autospec='sakia.core.registry.Identity')
certified.uid = "john"
certified.pubkey = "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ"
certified.sigdate = 1441130831
certified.selfcert = CoroutineMock(return_value=SelfCertification(2, "meta_brouzouf",
"7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ", "john",
BlockUID(1200, "49E2A1D1131F1496FAD6EDAE794A9ADBFA8844029675E3732D3B027ABB780243"),
"82o1sNCh1bLpUXU6nacbK48HBcA9Eu2sPkL1/3c2GtDPxBUZd2U2sb7DxwJ54n6ce9G0Oy7nd1hCxN3fS0oADw=="))
community = MagicMock(autospec='sakia.core.Community')
community.blockUID = CoroutineMock(return_value=BlockUID(3102, "49E2A1D1131F1496FAD6EDAE794A9ADBFA8844029675E3732D3B027ABB780243"))
self.identities_registry.future_find = CoroutineMock(side_effect=lambda pubkey, community :account_identity \
if pubkey == "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ" else certified)
community.bma_access = MagicMock(autospec='sakia.core.net.api.bma.access.BmaAccess')
response = Mock()
response.json = CoroutineMock(return_value={})
response.status = 200
community.bma_access.broadcast = CoroutineMock(return_value=[response])
async def exec_test():
result = await account.certify("test_password", community, "")
self.assertTrue(result)
self.lp.run_until_complete(exec_test())
self.assertTrue(cert_signal_sent)
示例8: test_send_certification
# 需要導入模塊: from asynctest import Mock [as 別名]
# 或者: from asynctest.Mock import json [as 別名]
def test_send_certification(self):
cert_signal_sent = False
def check_certification_accepted():
nonlocal cert_signal_sent
cert_signal_sent = True
account = Account("test_salt", "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ",
"test_account", [], [], [],
self.identities_registry)
account.certification_accepted.connect(check_certification_accepted)
account_identity = MagicMock(autospec='sakia.core.registry.Identity')
account_identity.selfcert = CoroutineMock(return_value=SelfCertification(1, "meta_brouzouf",
"H8uYXvyF6GWeCr8cwFJ6V5B8tNprwRdjepFNJBqivrzr", "test_account", 1000000000, ""))
certified = MagicMock(autospec='sakia.core.registry.Identity')
certified.uid = "john"
certified.pubkey = "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ"
certified.sigdate = 1441130831
certified.selfcert = CoroutineMock(return_value=SelfCertification(1, "meta_brouzouf",
"7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ", "john", 1441130831, ""))
community = MagicMock(autospec='sakia.core.Community')
community.blockid = CoroutineMock(return_value=BlockId(3102, "0000C5336F0B64BFB87FF4BC858AE25726B88175"))
self.identities_registry.future_find = CoroutineMock(side_effect=lambda pubkey, community :account_identity \
if pubkey == "7Aqw6Efa9EzE7gtsc8SveLLrM7gm6NEGoywSv4FJx6pZ" else certified)
community.bma_access = MagicMock(autospec='sakia.core.net.api.bma.access.BmaAccess')
response = Mock()
response.json = CoroutineMock(return_value={})
response.status = 200
community.bma_access.broadcast = CoroutineMock(return_value=[response])
async def exec_test():
result = await account.certify("test_password", community, "")
self.assertTrue(result)
self.lp.run_until_complete(exec_test())
self.assertTrue(cert_signal_sent)