aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_basic_SUITE.erl
AgeCommit message (Collapse)Author
2019-04-17ssh: Remove unused var warning in testsHans Nilsson
2018-12-27Merge branch 'hans/ssh/port_leak/OTP-15397' into maint-21Erlang/OTP
* hans/ssh/port_leak/OTP-15397: ssh: Fix port leakage for daemons failing at start ssh: Add port close test # Conflicts: # lib/ssh/test/ssh_basic_SUITE.erl
2018-12-21ssh: Add port close testHans Nilsson
2018-11-19ssh: Update test cases for eddsaHans Nilsson
2018-06-18Update copyright yearHenrik Nord
2018-05-14ssh: Test cases fixesHans Nilsson
2018-05-09ssh: Test the infinity rekey_limit optionHans Nilsson
2018-05-04ssh: Extend rekey_limit to also take an optional timeHans Nilsson
2018-04-19ssh: Declare serial for three test casesHans Nilsson
2018-03-16ssh: Join basic and renegotiation suites and parallelizeHans Nilsson
2018-03-16ssh: Parallelize ssh_basic_SUITEHans Nilsson
2018-03-15ssh: Fix non-working test + add log in test suiteHans Nilsson
2018-03-01ssh: Extend ssh_basic_SUITE:packet_size_zero to ...:packet_sizeHans Nilsson
Also got rid of some EXIT messages due to ssh_connection:shell/2 being async and ssh:close came too soon
2018-02-27ssh: Fix cli testcaseHans Nilsson
2018-02-27ssh: Misspelling in test suiteHans Nilsson
2017-10-30ssh: Fix testcase failures caused by better key checksHans Nilsson
2017-10-30ssh: Testcase with ecdsa hostkey placed in rsa filesHans Nilsson
2017-10-02ssh: add ecdsa_pass_phrase option in analogy with rsa_pass_phraseHans Nilsson
2017-05-17ssh: select server-sig-algs from configured algos (preferred_algorithms)Hans Nilsson
2017-05-12ssh: Better error checking for option 'auth_methods'Hans Nilsson
2017-05-04Update copyright yearRaimo Niskanen
2017-04-28Merge branch 'hans/ssh/cuddle_tests'Hans Nilsson
2017-04-26ssh: Handle node-names with ' in ssh_basic_SUITEHans Nilsson
2017-04-26ssh: test case adjustmentsHans Nilsson
2017-04-07ssh: Make test suites passHans Nilsson
2017-04-04ssh: idle_timer on daemon - test caseHans Nilsson
2017-02-01ssh: update tests for removed algorithmsHans Nilsson
2017-01-31ssh: better error msg at kex failureHans Nilsson
2016-10-28ssh: change of test helper ssh_test_lib:start_shellHans Nilsson
2016-10-27ssh: better ssh_basic_SUITE:end_per_suite/2Hans Nilsson
The testcases shell_unicode_string and shell_no_unicode in ssh_basic_SUITE could raise an exception in the end_per_suite when stopping the dameon. This is due to a natural race condition between the server and the client.
2016-09-19Add SSH custom REPL exit status testSvilen Ivanov
Test that when used defined shell REPL exit with reason normal SSH client receives exit status 0.
2016-06-27Merge branch 'maint-18' into maintHans Nilsson
Conflicts: OTP_VERSION lib/ssh/doc/src/notes.xml lib/ssh/src/ssh_connection_handler.erl lib/ssh/vsn.mk otp_versions.table
2016-06-22ssh: test cases for no repetition of bad passwordsHans Nilsson
2016-06-09ssh: skip test suites if no crypto lib is installedHans Nilsson
2016-06-01ssh: replace ?config in testsHans Nilsson
OTP-13565
2016-04-13Merge branch 'henrik/update-copyrightyear'Henrik Nord
* henrik/update-copyrightyear: update copyright-year
2016-03-18Set timetrap to 40s except for some long running test casesHans Nilsson
Conflicts: lib/ssh/test/ssh_connection_SUITE.erl
2016-03-15update copyright-yearHenrik Nord
2016-02-25ssh: Adjusted timetrap values on ssh testsHans Nilsson
2016-02-22ssh: remove calls to crypto:start|stopHans Nilsson
Conflicts: lib/ssh/test/ssh_upgrade_SUITE.erl
2016-02-22ssh: add timetrap to all test suitesHans Nilsson
2016-02-22ssh: remove some spurions test printoutsHans Nilsson
2016-02-08ssh: fixes port_command failure on WIndows in ssh_test_cli.erlHans Nilsson
2015-12-07ssh: add check for available ipv6 addr in test caseHans Nilsson
2015-12-04ssh: tests skips if not supported cryptoHans Nilsson
2015-12-03ssh: client pub key testcaseHans Nilsson
2015-12-01Support SSH key callback module optionsVipin Nair
This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. A module implementing the SSH key callback API is used to customize the handling of public key. This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. The key_cb option has been changed: {key_cb, atom()} -> {key_cb, key_cb()} Where: key_cb() :: atom() | {atom(), list()} The callback options, if specified, is made available to the callback module via the options passed to it under the key 'key_cb_private'. More details and some backgorund is available here[1]. [1]: http://erlang.org/pipermail/erlang-patches/2015-November/004800.html
2015-11-20ssh: testcases for starting daemon with given fdHans Nilsson
2015-10-20ssh: delete now obsolete test case group 'hardening_tests'Hans Nilsson
Thoose tests are already moved to other test suites. However, the init_per_group and end_per_group clauses were accidently left
2015-10-09ssh: added 'after' to receive stmts in test/Hans Nilsson