diff options
author | Hans Nilsson <[email protected]> | 2015-11-02 17:14:00 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-11-02 17:14:00 +0100 |
commit | a541756c4ab173a63969f1789f82b56d22b00fa2 (patch) | |
tree | 0bdda299f82d806339a1b48305e8ce13be21699e /lib/ssh/test/ssh_trpt_test_lib.erl | |
parent | 0563f1132a4b2fbb04dcbcea51e68a7f110502f2 (diff) | |
download | otp-a541756c4ab173a63969f1789f82b56d22b00fa2.tar.gz otp-a541756c4ab173a63969f1789f82b56d22b00fa2.tar.bz2 otp-a541756c4ab173a63969f1789f82b56d22b00fa2.zip |
ssh: Make tests for bad packet_len and field lengths inside packets
Includes a ssh_transport:pack/3 function for generating invalid packets
Diffstat (limited to 'lib/ssh/test/ssh_trpt_test_lib.erl')
-rw-r--r-- | lib/ssh/test/ssh_trpt_test_lib.erl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_trpt_test_lib.erl b/lib/ssh/test/ssh_trpt_test_lib.erl index 5080b33249..4269529ae8 100644 --- a/lib/ssh/test/ssh_trpt_test_lib.erl +++ b/lib/ssh/test/ssh_trpt_test_lib.erl @@ -386,7 +386,14 @@ send(S0, Line) when is_binary(Line) -> fun(X) when X==true;X==detail -> {"Send line~n~p~n",[Line]} end), send_bytes(Line, S#s{return_value = Line}); -%%% Msg = #ssh_msg_*{} +send(S0, {special,Msg,PacketFun}) when is_tuple(Msg), + is_function(PacketFun,2) -> + S = opt(print_messages, S0, + fun(X) when X==true;X==detail -> {"Send~n~s~n",[format_msg(Msg)]} end), + {Packet, C} = PacketFun(Msg, S#s.ssh), + send_bytes(Packet, S#s{ssh = C, %%inc_send_seq_num(C), + return_value = Msg}); + send(S0, Msg) when is_tuple(Msg) -> S = opt(print_messages, S0, fun(X) when X==true;X==detail -> {"Send~n~s~n",[format_msg(Msg)]} end), |