summaryrefslogtreecommitdiff
path: root/test/lisp/net/network-stream-tests.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2016-02-08 14:35:07 +1100
committerLars Ingebrigtsen <larsi@gnus.org>2016-02-08 15:37:41 +1100
commitd7e22381769efa0472bb6bf49e7d06387c6e4fc7 (patch)
tree52d514440e1133f864d26a151d687bf4abddf4d1 /test/lisp/net/network-stream-tests.el
parent92acfb90c68981544e6074d5779d7859c4fea487 (diff)
downloademacs-d7e22381769efa0472bb6bf49e7d06387c6e4fc7.tar.gz
Add more network tests
* test/lisp/net/network-stream-tests.el (echo-server-nowait): New test.
Diffstat (limited to 'test/lisp/net/network-stream-tests.el')
-rw-r--r--test/lisp/net/network-stream-tests.el33
1 files changed, 28 insertions, 5 deletions
diff --git a/test/lisp/net/network-stream-tests.el b/test/lisp/net/network-stream-tests.el
index 3e0821a8bd5..f52a69e05d6 100644
--- a/test/lisp/net/network-stream-tests.el
+++ b/test/lisp/net/network-stream-tests.el
@@ -75,7 +75,7 @@
:filter 'server-process-filter
:host host))
-(defun server-sentinel (proc msg)
+(defun server-sentinel (_proc _msg)
)
(defun server-process-filter (proc string)
@@ -95,7 +95,7 @@
))))
(ert-deftest echo-server-with-dns ()
- (let* ((server (make-server "mouse"))
+ (let* ((server (make-server (system-name)))
(port (aref (process-contact server :local) 4))
(proc (make-network-process :name "foo"
:buffer (generate-new-buffer "*foo*")
@@ -104,7 +104,8 @@
(with-current-buffer "*foo*"
(process-send-string proc "echo foo")
(sleep-for 0.1)
- (should (equal (buffer-string) "foo\n")))))
+ (should (equal (buffer-string) "foo\n")))
+ (delete-process server)))
(ert-deftest echo-server-with-localhost ()
(let* ((server (make-server 'local))
@@ -116,7 +117,8 @@
(with-current-buffer "*foo*"
(process-send-string proc "echo foo")
(sleep-for 0.1)
- (should (equal (buffer-string) "foo\n")))))
+ (should (equal (buffer-string) "foo\n")))
+ (delete-process server)))
(ert-deftest echo-server-with-ip ()
(let* ((server (make-server 'local))
@@ -128,6 +130,27 @@
(with-current-buffer "*foo*"
(process-send-string proc "echo foo")
(sleep-for 0.1)
- (should (equal (buffer-string) "foo\n")))))
+ (should (equal (buffer-string) "foo\n")))
+ (delete-process server)))
+
+(ert-deftest echo-server-nowait ()
+ (let* ((server (make-server 'local))
+ (port (aref (process-contact server :local) 4))
+ (proc (make-network-process :name "foo"
+ :buffer (generate-new-buffer "*foo*")
+ :host "localhost"
+ :nowait t
+ :service port)))
+ (should (eq (process-status proc) 'connect))
+ (should (null (ignore-errors
+ (process-send-string proc "echo bar")
+ t)))
+ (while (eq (process-status proc) 'connect)
+ (sit-for 0.1))
+ (with-current-buffer "*foo*"
+ (process-send-string proc "echo foo")
+ (sleep-for 0.1)
+ (should (equal (buffer-string) "foo\n")))
+ (delete-process server)))
;;; network-stream-tests.el ends here