Skip to content

Commit a9f697c

Browse files
tests/session.scm (make-session): Improve
* tests/session.scm (make-session): Set the config to "/dev/null" when #f is used as the value for "#:config" to prevent the reading of default configuration files on older version of libssh (prior 0.9.) * modules/ssh/session.scm ("make-session, '#:config' set to '/dev/null'"): New test case.
1 parent 4d51a86 commit a9f697c

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

modules/ssh/session.scm

+12-9
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,18 @@ Return a new SSH session."
102102
(let ((libssh-minor-version (get-libssh-minor-version)))
103103
(if (>= libssh-minor-version 9)
104104
(session-set! session 'process-config? #f)
105-
(format-log 'rare
106-
'make-session
107-
(string-append
108-
"process-config? option is not available"
109-
" (using libssh 0.~a.)"
110-
" Falling back to the old Guile-SSH behavior "
111-
" (no config setting.)"
112-
" See <https://github.com/artyom-poptsov/guile-ssh/issues/38>.")
113-
libssh-minor-version))))
105+
(begin
106+
(format-log 'rare
107+
'make-session
108+
(string-append
109+
"process-config? option is not available"
110+
" (using libssh 0.~a.)"
111+
" Falling back to setting the config to"
112+
" '/dev/null' to prevent reading the default"
113+
" configuration files."
114+
" See <https://github.com/artyom-poptsov/guile-ssh/issues/38>.")
115+
libssh-minor-version)
116+
(%gssh-session-parse-config! session "/dev/null")))))
114117

115118
(session-set-if-specified! port)
116119
(session-set-if-specified! user)

tests/session.scm

+4
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@
222222
(make-session #:host "localhost"
223223
#:config %config))
224224

225+
(test-assert "make-session, '#:config' set to '/dev/null'"
226+
(make-session #:host "localhost"
227+
#:config "/dev/null"))
228+
225229
;; Setting '#:config' option to #f must set "process-config?" option to #f.
226230
(test-assert "make-session, '#:config' as a boolean value: #f"
227231
(make-session #:host "localhost"

0 commit comments

Comments
 (0)