blob: 716bb4e0d3af1a0f0cee0a0420de32467788f96d [file] [log] [blame]
-module(thrift_protocol_binary_tests).
-include_lib("eunit/include/eunit.hrl").
-include("thrift_protocol.hrl").
decode_test() ->
Input = bytes(),
{Message, <<>>} = thrift_protocol_binary:decode_message(Input),
?assertEqual(message(), Message).
encode_test() ->
Bytes = thrift_protocol_binary:encode_message(message()),
{Message, <<>>} = thrift_protocol_binary:decode_message(list_to_binary(Bytes)),
?assertEqual(message(), Message),
?assertEqual(lists:sort(binary_to_list(bytes())),
lists:sort(binary_to_list(list_to_binary(Bytes)))).
float_test() ->
Message = #thrift_protocol_message{method_name = <<"foo">>, message_type = call, sequence_id = 1000,
body = #thrift_protocol_struct{fields = #{1 => 123.456}}},
Encoded = list_to_binary(thrift_protocol_binary:encode_message(Message)),
?assertEqual(<<128,1,0,1,0,0,0,3,102,111,111,0,0,3,232,4,0,1,64,94,221,47,26,159,190,119,0>>,
Encoded),
{Decoded, <<>>} = thrift_protocol_binary:decode_message(Encoded),
?assertEqual(Message, Decoded).
-spec bytes() -> binary().
bytes() ->
<<128,1,0,4,0,0,0,9,101,109,105,116,66,97,116,99,104,0,0,0,1, 12,
0,1,12,0,1,11,0,1,0,0,0,11,102,111,111,95,115,101,114,118, 105,99,
101,15,0,2,12,0,0,0,3,11,0,1,0,0,0,14,106,97,101,103, 101,114,46,
118,101,114,115,105,111,110,8,0,2,0,0,0,0,11,0,3, 0,0,0,8,71,
111,45,50,46,57,46,48,0,11,0,1,0,0,0,8,104,111,115,116,110,97,
109,101,8,0,2,0,0,0,0,11,0,3,0,0,0,3,117,98,117,0,11,0,1,0,0,
0,2,105,112,8,0,2,0,0,0,0,11,0,3,0,0,0,9,49,48,46,48,46,50,46,
49,53,0,0,15,0,2,12,0,0,0,1,10,0,1,0,5,91,207,149,156,234,128,10,
0,2,0,0,0,0,0,0,0,0,10,0,3,0,0,0,0,0,0,3,21,10,0,4,0,0,0,0,0,0,
0,0,11,0,5,0,0,0,4,109,97,105,110,8,0,7,0,0,0,1,10,0,8,0,5,
91,207,149,156,234,128,10,0,9,0,0,0,0,0,1,226,64,0,0,0>>.
-spec message() -> thrift_protocol:message().
message() ->
Process =
#thrift_protocol_struct{
fields =
#{1 => <<"foo_service">>,
2 => #thrift_protocol_list{
element_type = struct,
elements =
[
#thrift_protocol_struct{
fields = #{1 => <<"jaeger.version">>,
2 => {i32,0},
3 => <<"Go-2.9.0">>}},
#thrift_protocol_struct{
fields = #{1 => <<"hostname">>,
2 => {i32,0},
3 => <<"ubu">>}},
#thrift_protocol_struct{
fields = #{1 => <<"ip">>,
2 => {i32,0},
3 => <<"10.0.2.15">>}}
]
}
}
},
Spans =
#thrift_protocol_list{
element_type = struct,
elements =
[#thrift_protocol_struct{
fields =
#{1 => {i64,1508322010000000},
2 => {i64,0},
3 => {i64,789},
4 => {i64,0},
5 => <<"main">>,
7 => {i32,1},
8 => {i64,1508322010000000},
9 => {i64,123456}}}]
},
Batch =
#thrift_protocol_struct{fields = #{1 => Process, 2 => Spans}},
#thrift_protocol_message{
method_name = <<"emitBatch">>,
message_type = oneway,
sequence_id = 1,
body = #thrift_protocol_struct{fields = #{1 => Batch}}
}.