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
|
;;; shell.scm -- Remote shell tests.
;; Copyright (C) 2016, 2017 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;
;; This file is a part of Guile-SSH.
;;
;; Guile-SSH is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;;
;; Guile-SSH is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
(add-to-load-path (getenv "abs_top_srcdir"))
(use-modules (srfi srfi-64)
(ice-9 rdelim)
(ice-9 receive)
(srfi srfi-4)
(ssh session)
(ssh channel)
(ssh auth)
(ssh key)
(ssh log)
(ssh shell)
(ssh popen)
(ssh message)
(tests common))
(set-log-verbosity! 'functions)
(test-begin-with-log "shell")
;;;
;; Client executes "uname", server replies with success code 0.
(test-assert-with-log "rexec"
(run-client-test
;; Server
(lambda (server)
(start-server/exec server (const #t)))
;; Client
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(format-log/scm 'nolog "rexec" "session: ~a" session)
(receive (result exit-code)
(rexec session "ping")
(list result exit-code)))))))
(test-assert-with-log "which"
(run-client-test
(lambda (server)
(start-server/exec server (const #t)))
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(receive (result exit-code)
(which session "uname")
(and (zero? exit-code)
(string=? (car result) "which 'uname'"))))))))
(test-assert-with-log "pgrep"
(run-client-test
(lambda (server)
(start-server/exec server (const #t)))
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(receive (result exit-code)
(pgrep session "process-1")
(and (zero? exit-code)
(not (null? result))
(car result))))))))
(test-equal-with-log "pgrep, guile"
'(12345)
(run-client-test
(lambda (server)
(start-server/exec server
(lambda (session message channel)
(write-line "$1 = (12345)\n" channel))))
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(receive (result exit-code)
(pgrep session "process-2" #:use-guile? #t)
result))))))
(test-assert-with-log "command-available?"
(run-client-test
(lambda (server)
(start-server/exec server (const #t)))
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(command-available? session "guile"))))))
(test-assert-with-log "loadavg"
(run-client-test
(lambda (server)
(start-server/exec server (const #t)))
(lambda ()
(call-with-connected-session/shell
(lambda (session)
(equal? (loadavg session)
'("0.01" "0.05" "0.10" "4/1927" "242011")))))))
;;;
(define exit-status (test-runner-fail-count (test-runner-current)))
(test-end "shell")
(exit (= 0 exit-status))
;;; shell.scm ends here.
|