1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2008-2021. 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(ssh_engine_SUITE).
-include_lib("common_test/include/ct.hrl").
-include("ssh_test_lib.hrl").
%% Note: This directive should only be used in test suites.
-export([
suite/0,
all/0,
groups/0,
init_per_suite/1,
end_per_suite/1,
init_per_group/2,
end_per_group/2
]).
-export([
simple_connect/1
]).
%%--------------------------------------------------------------------
%% Common Test interface functions -----------------------------------
%%--------------------------------------------------------------------
suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap,{seconds,40}}].
all() ->
[{group, dsa_key},
{group, rsa_key}
].
groups() ->
[{dsa_key, [], basic_tests()},
{rsa_key, [], basic_tests()}
].
basic_tests() ->
[simple_connect
].
%%--------------------------------------------------------------------
init_per_suite(Config) ->
ssh:start(),
?CHECK_CRYPTO(
case crypto:info_lib() of
[{_,_, <<"OpenSSL 1.0.1s-freebsd 1 Mar 2016">>}] ->
{skip, "Strange Engine stuff"};
_ ->
case load_engine() of
{ok,E} ->
[{engine,E}|Config];
{error, notsup} ->
{skip, "Engine not supported on this OpenSSL version"};
{error, bad_engine_id} ->
{skip, "Dynamic Engine not supported"};
{error, notexist} ->
{skip, "No Dynamic Engine to test with"};
Other ->
ct:log("Engine load failed: ~p",[Other]),
{fail, "Engine load failed"}
end
end
).
end_per_suite(Config) ->
catch crypto:engine_unload( proplists:get_value(engine,Config) ),
ssh:stop().
%%--------------------------------------------------------------------
init_per_group(dsa_key, Config) ->
case lists:member('ssh-dss',
ssh_transport:supported_algorithms(public_key)) of
true ->
start_daemon(Config, 'ssh-dss', "dsa_private_key.pem");
false ->
{skip, unsupported_pub_key}
end;
init_per_group(rsa_key, Config) ->
case lists:member('ssh-rsa',
ssh_transport:supported_algorithms(public_key)) of
true ->
start_daemon(Config, 'ssh-rsa', "rsa_private_key.pem");
false ->
{skip, unsupported_pub_key}
end.
start_daemon(Config, KeyType, KeyId) ->
SystemDir = proplists:get_value(data_dir, Config),
FullKeyId = filename:join(SystemDir, KeyId),
KeyCBOpts = [{engine, proplists:get_value(engine,Config)},
{KeyType, FullKeyId}
],
Opts = [{key_cb, {ssh_key_cb_engine_keys, KeyCBOpts}},
{modify_algorithms, [{append, [{public_key,[KeyType]}]}]}
],
{Pid, Host, Port} = ssh_test_lib:std_daemon(Config, Opts),
[{host_port,{Host,Port}}, {daemon_pid,Pid}, {key_type,KeyType}| Config].
end_per_group(_, Config) ->
catch ssh:stop_daemon(proplists:get_value(daemon_pid,Config)),
Config.
%%--------------------------------------------------------------------
%% Test Cases --------------------------------------------------------
%%--------------------------------------------------------------------
%% A simple exec call
simple_connect(Config) ->
{Host,Port} = proplists:get_value(host_port, Config),
KeyType = proplists:get_value(key_type, Config),
Opts = [
{modify_algorithms, [{append, [{public_key,[KeyType]}]}]}
],
CRef = ssh_test_lib:std_connect(Config, Host, Port, Opts),
ssh:close(CRef).
%%--------------------------------------------------------------------
%%--------------------------------------------------------------------
load_engine() ->
case crypto:get_test_engine() of
{ok, Engine} ->
try
%% The test engine has it's own fake rsa sign/verify that
%% you don't want to use, so exclude it from methods to load:
Methods =
crypto:engine_get_all_methods() -- [engine_method_rsa],
crypto:engine_load(<<"dynamic">>,
[{<<"SO_PATH">>, Engine},
<<"LOAD">>],
[],
Methods
)
catch
error:notsup ->
{error, notsup}
end;
{error, Error} ->
{error, Error}
end.
|