本文整理汇总了Python中pyon.net.endpoint.RPCRequestEndpointUnit类的典型用法代码示例。如果您正苦于以下问题:Python RPCRequestEndpointUnit类的具体用法?Python RPCRequestEndpointUnit怎么用?Python RPCRequestEndpointUnit使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RPCRequestEndpointUnit类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_build_msg
def test_build_msg(self):
e = RPCRequestEndpointUnit()
fakemsg = {'fake':'content'}
msg = e._build_msg(fakemsg, {})
# er in json now, how to really check
self.assertNotEquals(str(msg), str(fakemsg))
示例2: test__get_sflow_manager_with_container
def test__get_sflow_manager_with_container(self):
Container.instance = None
c = Container() # ensure an instance
e = RPCRequestEndpointUnit()
self.assertEquals(e._get_sflow_manager(), c.sflow_manager)
Container.instance = None
示例3: test__sample_request
def test__sample_request(self):
e = RPCRequestEndpointUnit()
e._get_sflow_manager = Mock(return_value=Mock(spec=SFlowManager))
e._get_sflow_manager.return_value.should_sample = True
e._build_sample = Mock(return_value={"test": sentinel.test})
e._sample_request(
sentinel.status,
sentinel.status_descr,
sentinel.msg,
sentinel.headers,
sentinel.response,
sentinel.response_headers,
)
e._get_sflow_manager.assert_called_once_with()
e._build_sample.assert_called_once_with(
ANY,
sentinel.status,
sentinel.status_descr,
sentinel.msg,
sentinel.headers,
sentinel.response,
sentinel.response_headers,
)
e._get_sflow_manager.return_value.transaction.assert_called_once_with(test=sentinel.test)
示例4: test__build_sample
def test__build_sample(self):
e = RPCRequestEndpointUnit()
heads = {
"conv-id": sentinel.conv_id,
"ts": "1",
"op": "remove_femur",
"sender": sentinel.sender,
"receiver": sentinel.receiver,
}
resp_heads = {"sender-service": "theservice"}
samp = e._build_sample(sentinel.name, 200, "Ok", "msg", heads, "response", resp_heads)
self.assertEquals(
samp,
{
"app_name": sentinel.name,
"op": "theservice.remove_femur",
"attrs": {"conv-id": sentinel.conv_id, "service": "theservice"},
"status_descr": "Ok",
"status": "0",
"req_bytes": len("msg"),
"resp_bytes": len("response"),
"uS": 999000, # it's in microseconds!
"initiator": sentinel.sender,
"target": sentinel.receiver,
},
)
示例5: test_endpoint_send_errors
def test_endpoint_send_errors(self):
errlist = [exception.BadRequest, exception.Unauthorized, exception.NotFound, exception.Timeout, exception.Conflict, exception.ServerError, exception.ServiceUnavailable]
for err in errlist:
e = RPCRequestEndpointUnit(interceptors={})
ch = self._setup_mock_channel(status_code=err.status_code, error_message=str(err.status_code))
e.attach_channel(ch)
self.assertRaises(err, e.send, {})
示例6: test__sample_request_exception
def test__sample_request_exception(self, mocklog):
e = RPCRequestEndpointUnit(interceptors={})
e._get_sflow_manager = Mock(return_value=Mock(spec=SFlowManager))
e._get_sflow_manager.return_value.should_sample = True
e._build_sample = Mock(side_effect=TestError)
e._sample_request(sentinel.status, sentinel.status_descr, sentinel.msg, sentinel.headers, sentinel.response, sentinel.response_headers)
mocklog.exception.assert_called_once_with("Could not sample, ignoring")
示例7: test__sample_request_no_sample
def test__sample_request_no_sample(self, mocklog):
e = RPCRequestEndpointUnit(interceptors={})
e._get_sflow_manager = Mock(return_value=Mock(spec=SFlowManager))
e._get_sflow_manager.return_value.should_sample = False
e._get_sample_name = Mock()
e._sample_request(sentinel.status, sentinel.status_descr, sentinel.msg, sentinel.headers, sentinel.response, sentinel.response_headers)
self.assertEquals(mocklog.debug.call_count, 1)
self.assertIn("not to sample", mocklog.debug.call_args[0][0])
示例8: test__build_sample_uses_last_name_for_op
def test__build_sample_uses_last_name_for_op(self):
e = RPCRequestEndpointUnit(interceptors={})
heads = {'conv-id': sentinel.conv_id,
'ts': '1',
'op': 'remove_femur',
'sender': sentinel.sender,
'receiver': sentinel.receiver}
resp_heads = {'sender-service': 'service1,service2,service3'}
samp = e._build_sample(sentinel.name, 200, "Ok", "msg", heads, "response", resp_heads)
self.assertIn('op', samp)
self.assertEquals(samp['op'], 'service3.remove_femur')
示例9: test__build_sample_uses_last_name_for_op
def test__build_sample_uses_last_name_for_op(self):
e = RPCRequestEndpointUnit()
heads = {
"conv-id": sentinel.conv_id,
"ts": "1",
"op": "remove_femur",
"sender": sentinel.sender,
"receiver": sentinel.receiver,
}
resp_heads = {"sender-service": "service1,service2,service3"}
samp = e._build_sample(sentinel.name, 200, "Ok", "msg", heads, "response", resp_heads)
self.assertIn("op", samp)
self.assertEquals(samp["op"], "service3.remove_femur")
示例10: _build_header
def _build_header(self, raw_msg):
"""
Override to direct the calls in _build_header - first the RPCRequest side, then the Process mixin.
"""
header1 = RPCRequestEndpointUnit._build_header(self, raw_msg)
header2 = ProcessEndpointUnitMixin._build_header(self, raw_msg)
header1.update(header2)
return header1
示例11: test_endpoint_send
def test_endpoint_send(self):
e = RPCRequestEndpointUnit(interceptors={})
ch = self._setup_mock_channel()
e.attach_channel(ch)
ret, heads = e.send("rpc call")
self.assertEquals(ret, 'bidirmsg') # we just get payload back due to success RPC code 200
e.close()
示例12: test__build_sample
def test__build_sample(self):
e = RPCRequestEndpointUnit(interceptors={})
heads = {'conv-id': sentinel.conv_id,
'ts': '1',
'op': 'remove_femur',
'sender': sentinel.sender,
'receiver': sentinel.receiver}
resp_heads = {'sender-service': 'theservice'}
samp = e._build_sample(sentinel.name, 200, "Ok", "msg", heads, "response", resp_heads)
self.assertEquals(samp, {
'app_name' : sentinel.name,
'op' : 'theservice.remove_femur',
'attrs' : {'conv-id': sentinel.conv_id, 'service': 'theservice'},
'status_descr' : "Ok",
'status' : '0',
'req_bytes' : len('msg'),
'resp_bytes': len('response'),
'uS' : 999000, # it's in microseconds!
'initiator' : sentinel.sender,
'target' : sentinel.receiver
})
示例13: __init__
def __init__(self, process=None, **kwargs):
ProcessEndpointUnitMixin.__init__(self, process=process)
RPCRequestEndpointUnit.__init__(self, **kwargs)
示例14: test__get_sflow_manager
def test__get_sflow_manager(self):
Container.instance = None
e = RPCRequestEndpointUnit()
self.assertIsNone(e._get_sflow_manager())
示例15: test__get_sample_name
def test__get_sample_name(self):
e = RPCRequestEndpointUnit()
self.assertEquals(e._get_sample_name(), "unknown-rpc-client")