Finished X-Ray + fixed routing bug
This commit is contained in:
parent
7ea4d8c3e6
commit
0bd3899cb3
6 changed files with 179 additions and 53 deletions
|
|
@ -82,3 +82,58 @@ def test_trace_summary():
|
|||
StartTime=datetime.datetime(2014, 1, 1),
|
||||
EndTime=datetime.datetime(2017, 1, 1)
|
||||
)
|
||||
|
||||
|
||||
@mock_xray
|
||||
def test_batch_get_trace():
|
||||
client = boto3.client('xray', region_name='us-east-1')
|
||||
|
||||
client.put_trace_segments(
|
||||
TraceSegmentDocuments=[
|
||||
json.dumps({
|
||||
'name': 'example.com',
|
||||
'id': '70de5b6f19ff9a0a',
|
||||
'start_time': 1.478293361271E9,
|
||||
'trace_id': '1-581cf771-a006649127e371903a2de979',
|
||||
'in_progress': True
|
||||
}),
|
||||
json.dumps({
|
||||
'name': 'example.com',
|
||||
'id': '70de5b6f19ff9a0b',
|
||||
'start_time': 1478293365,
|
||||
'trace_id': '1-581cf771-a006649127e371903a2de979',
|
||||
'end_time': 1478293385
|
||||
})
|
||||
]
|
||||
)
|
||||
|
||||
resp = client.batch_get_traces(
|
||||
TraceIds=['1-581cf771-a006649127e371903a2de979', '1-581cf772-b006649127e371903a2de979']
|
||||
)
|
||||
len(resp['UnprocessedTraceIds']).should.equal(1)
|
||||
len(resp['Traces']).should.equal(1)
|
||||
|
||||
|
||||
# Following are not implemented, just testing it returns what boto expects
|
||||
@mock_xray
|
||||
def test_batch_get_service_graph():
|
||||
client = boto3.client('xray', region_name='us-east-1')
|
||||
|
||||
client.get_service_graph(
|
||||
StartTime=datetime.datetime(2014, 1, 1),
|
||||
EndTime=datetime.datetime(2017, 1, 1)
|
||||
)
|
||||
|
||||
|
||||
@mock_xray
|
||||
def test_batch_get_trace_graph():
|
||||
client = boto3.client('xray', region_name='us-east-1')
|
||||
|
||||
client.batch_get_traces(
|
||||
TraceIds=['1-581cf771-a006649127e371903a2de979', '1-581cf772-b006649127e371903a2de979']
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue