%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2004-2018. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
%%
-module(ei_encode_SUITE).
-include_lib("common_test/include/ct.hrl").
-include("ei_encode_SUITE_data/ei_encode_test_cases.hrl").
-export([all/0, suite/0,
init_per_testcase/2,
test_ei_encode_long/1,
test_ei_encode_ulong/1,
test_ei_encode_longlong/1,
test_ei_encode_ulonglong/1,
test_ei_encode_char/1,
test_ei_encode_misc/1,
test_ei_encode_fails/1,
test_ei_encode_utf8_atom/1,
test_ei_encode_utf8_atom_len/1]).
suite() ->
[{ct_hooks,[ts_install_cth]}].
all() ->
[test_ei_encode_long, test_ei_encode_ulong,
test_ei_encode_longlong, test_ei_encode_ulonglong,
test_ei_encode_char, test_ei_encode_misc,
test_ei_encode_fails, test_ei_encode_utf8_atom,
test_ei_encode_utf8_atom_len].
init_per_testcase(Case, Config) ->
runner:init_per_testcase(?MODULE, Case, Config).
%% ---------------------------------------------------------------------------
% NOTE: for historical reasons we don't pach as tight as we can,
% we only fill 27 bits in 32 bit INTEGER_EXT
%% ######################################################################## %%
test_ei_encode_long(Config) when is_list(Config) ->
P = runner:start(Config, ?test_ei_encode_long),
{<<97,0>> ,0} = get_buf_and_term(P),
{<<97,255>> ,255} = get_buf_and_term(P),
{<<98,256:32/big-signed-integer>>,256} = get_buf_and_term(P),
{<<98,-1:32/big-signed-integer>> ,-1} = get_buf_and_term(P),
{<<98, 16#07ffffff:32/big-signed-integer>>, 16#07ffffff} = get_buf_and_term(P),
{<<98,-16#08000000:32/big-signed-integer>>,-16#08000000} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,8>> , 16#08000000} = get_buf_and_term(P),
{<<110,4,1, 1,0,0,8>> ,-16#08000001} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,127>> , 16#7fffffff} = get_buf_and_term(P),
{<<110,4,1, 0,0,0,128>> ,-16#80000000} = get_buf_and_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_ulong(Config) when is_list(Config) ->
P = runner:start(Config, ?test_ei_encode_ulong),
{<<97,0>> ,0} = get_buf_and_term(P),
{<<97,255>> ,255} = get_buf_and_term(P),
{<<98,256:32/big-unsigned-integer>>,256} = get_buf_and_term(P),
{<<98, 16#07ffffff:32/big-signed-integer>>,16#07ffffff} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,8>> ,16#08000000} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,127>> ,16#7fffffff} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,128>> ,16#80000000} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,255>> ,16#ffffffff} = get_buf_and_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_longlong(Config) when is_list(Config) ->
case os:type() of
vxworks ->
{skip,"Skipped on VxWorks"};
_ ->
P = runner:start(Config, ?test_ei_encode_longlong),
{<<97,0>> ,0} = get_buf_and_term(P),
{<<97,255>> ,255} = get_buf_and_term(P),
{<<98,256:32/big-signed-integer>>,256} = get_buf_and_term(P),
{<<98,-1:32/big-signed-integer>> ,-1} = get_buf_and_term(P),
{<<98, 16#07ffffff:32/big-signed-integer>>, 16#07ffffff} = get_buf_and_term(P),
{<<98,-16#08000000:32/big-signed-integer>>,-16#08000000} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,8>> , 16#08000000} = get_buf_and_term(P),
{<<110,4,1, 1,0,0,8>> ,-16#08000001} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,127>> , 16#7fffffff} = get_buf_and_term(P),
{<<110,4,1, 0,0,0,128>> ,-16#80000000} = get_buf_and_term(P),
{<<110,6,0, 255,255,255,255,255,127>> , 16#7fffffffffff} = get_buf_and_term(P),
{<<110,6,1, 0,0,0,0,0,128>> ,-16#800000000000} = get_buf_and_term(P),
{<<110,8,0, 255,255,255,255,255,255,255,127>>,16#7fffffffffffffff} = get_buf_and_term(P),
{<<110,8,1, 0,0,0,0,0,0,0,128>> ,-16#8000000000000000} = get_buf_and_term(P),
runner:recv_eot(P),
ok
end.
%% ######################################################################## %%
test_ei_encode_ulonglong(Config) when is_list(Config) ->
case os:type() of
vxworks ->
{skip,"Skipped on VxWorks"};
_ ->
P = runner:start(Config, ?test_ei_encode_ulonglong),
{<<97,0>> ,0} = get_buf_and_term(P),
{<<97,255>> ,255} = get_buf_and_term(P),
{<<98,256:32/big-unsigned-integer>>,256} = get_buf_and_term(P),
{<<98, 16#07ffffff:32/big-signed-integer>>,16#07ffffff} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,8>> ,16#08000000} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,127>> ,16#7fffffff} = get_buf_and_term(P),
{<<110,4,0, 0,0,0,128>> ,16#80000000} = get_buf_and_term(P),
{<<110,4,0, 255,255,255,255>> ,16#ffffffff} = get_buf_and_term(P),
{<<110,6,0, 255,255,255,255,255,255>>,16#ffffffffffff} = get_buf_and_term(P),
{<<110,8,0, 255,255,255,255,255,255,255,255>>,16#ffffffffffffffff} = get_buf_and_term(P),
runner:recv_eot(P),
ok
end.
%% ######################################################################## %%
%% A "character" for us is an 8 bit integer, always positive, i.e.
%% it is unsigned.
%% FIXME maybe the API should change to use "unsigned char" to be clear?!
test_ei_encode_char(Config) when is_list(Config) ->
P = runner:start(Config, ?test_ei_encode_char),
{<<97, 0>>,0} = get_buf_and_term(P),
{<<97,127>>,16#7f} = get_buf_and_term(P),
{<<97,255>>,16#ff} = get_buf_and_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_misc(Config) when is_list(Config) ->
P = runner:start(Config, ?test_ei_encode_misc),
<<131>> = get_binaries(P),
{<<70,_:8/binary>>,F0} = get_buf_and_term(P),
true = match_float(F0, 0.0),
{<<70,_:8/binary>>,Fn1} = get_buf_and_term(P),
true = match_float(Fn1, -1.0),
{<<70,_:8/binary>>,Fp1} = get_buf_and_term(P),
true = match_float(Fp1, 1.0),
{<<$w,5,"false">>,false} = get_buf_and_term(P),
{<<$w,4,"true">> ,true} = get_buf_and_term(P),
{<<$w,4,"true">> ,true} = get_buf_and_term(P),
{<<$w,4,"true">> ,true} = get_buf_and_term(P),
{<<$w,3,"foo">>,foo} = get_buf_and_term(P),
{<<$w,3,"foo">>,foo} = get_buf_and_term(P),
{<<$w,0,"">>,''} = get_buf_and_term(P),
{<<$w,0,"">>,''} = get_buf_and_term(P),
{<<$w,12,"ÅÄÖåäö"/utf8>>,'ÅÄÖåäö'} = get_buf_and_term(P),
{<<$w,12,"ÅÄÖåäö"/utf8>>,'ÅÄÖåäö'} = get_buf_and_term(P),
{<<107,0,3,"foo">>,"foo"} = get_buf_and_term(P),
{<<107,0,3,"foo">>,"foo"} = get_buf_and_term(P),
{<<106>>,""} = get_buf_and_term(P),
{<<106>>,""} = get_buf_and_term(P),
{<<107,0,6,"ÅÄÖåäö">>,"ÅÄÖåäö"} = get_buf_and_term(P),
{<<107,0,6,"ÅÄÖåäö">>,"ÅÄÖåäö"} = get_buf_and_term(P),
{<<109,0,0,0,3,"foo">>,<<"foo">>} = get_buf_and_term(P),
{<<109,0,0,0,0,"">>,<<>>} = get_buf_and_term(P),
{<<109,0,0,0,6,"ÅÄÖåäö">>,<<"ÅÄÖåäö">>} = get_buf_and_term(P),
{<<104,0>>,{}} = get_buf_and_term(P), % Tuple header for {}
{<<106>>,[]} = get_buf_and_term(P), % Empty list []
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_fails(Config) when is_list(Config) ->
P = runner:start(Config, ?test_ei_encode_fails),
XAtom = list_to_atom(lists:duplicate(255, $x)),
YAtom = list_to_atom(lists:duplicate(255, $y)),
XAtom = get_term(P),
XAtom = get_term(P),
YAtom = get_term(P),
YAtom = get_term(P),
{{{{}}}} = get_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_utf8_atom(Config) ->
P = runner:start(Config, ?test_ei_encode_utf8_atom),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,1,$A>>,'A'} = get_buf_and_term(P),
{<<119,1,$A>>,'A'} = get_buf_and_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
test_ei_encode_utf8_atom_len(Config) ->
P = runner:start(Config, ?test_ei_encode_utf8_atom_len),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,4,195,133,195,132>>,'ÅÄ'} = get_buf_and_term(P),
{<<119,2,195,133>>,'Å'} = get_buf_and_term(P),
{<<119,4,195,133,195,132>>,'ÅÄ'} = get_buf_and_term(P),
{<<119,1,$A>>,'A'} = get_buf_and_term(P),
{<<119,2,$A,$B>>,'AB'} = get_buf_and_term(P),
{<<119,255,_:(255*8)>>,_} = get_buf_and_term(P),
runner:recv_eot(P),
ok.
%% ######################################################################## %%
% We read two packets for each test, the ei_encode and ei_x_encode version....
get_buf_and_term(P) ->
B = get_binaries(P),
case B of
<<131>> ->
io:format("(got single magic, no content)\n",[]),
{B,'$$magic$$'};
<<131,_>> ->
T = binary_to_term(B),
io:format("~w\n~w\n(got magic)\n",[B,T]),
{B,T};
_ ->
B1 = list_to_binary([131,B]), % No magic, add
T = binary_to_term(B1),
io:format("~w\n~w\n(got no magic)\n",[B,T]),
{B,T}
end.
get_binaries(P) ->
B1 = get_binary(P),
B2 = get_binary(P),
B1 = B2.
get_binary(P) ->
case runner:get_term(P) of
{bytes,L} ->
B = list_to_binary(L),
io:format("~w\n",[L]),
% For strange reasons <<131>> show up as <>....
% io:format("~w\n",[B]),
B;
Other ->
Other
end.
%%
% We use our own get_term()
get_term(P) ->
case runner:get_term(P) of
{bytes,[131]} ->
io:format("(got single magic, no content)\n",[]),
'$$magic$$';
{bytes,[131,L]} ->
B = list_to_binary(L),
T = binary_to_term(B),
io:format("~w\n~w\n(got magic)\n",[L,T]),
T;
{bytes,L} ->
B = list_to_binary([131,L]),
T = binary_to_term(B),
io:format("~w\n~w\n(got no magic)\n",[L,T]),
T;
Other ->
Other
end.
%%
match_float(F, Match) when is_float(F), is_float(Match), F == Match ->
true;
match_float(F, Match) when is_float(F), F > Match*0.99, F < Match*1.01 ->
true.