0.9.9.4:
[sbcl.git] / contrib / sb-bsd-sockets / tests.lisp
1 (defpackage "SB-BSD-SOCKETS-TEST"
2   (:use "CL" "SB-BSD-SOCKETS" "SB-RT"))
3
4 (in-package :sb-bsd-sockets-test)
5
6 ;;; a real address
7 (deftest make-inet-address
8   (equalp (make-inet-address "127.0.0.1")  #(127 0 0 1))
9   t)
10 ;;; and an address with bit 8 set on some octets
11 (deftest make-inet-address2
12   (equalp (make-inet-address "242.1.211.3")  #(242 1 211 3))
13   t)
14
15 (deftest get-protocol-by-name/tcp
16     (integerp (get-protocol-by-name "tcp"))
17   t)
18
19 (deftest get-protocol-by-name/udp
20   (integerp (get-protocol-by-name "udp"))
21   t)
22
23 (deftest get-protocol-by-name/error
24   (handler-case (get-protocol-by-name "nonexistent-protocol")
25     (unknown-protocol ()
26       t)
27     (:no-error ()
28       nil))
29   t)
30
31 (deftest make-inet-socket
32   ;; make a socket
33   (let ((s (make-instance 'inet-socket :type :stream :protocol (get-protocol-by-name "tcp"))))
34     (and (> (socket-file-descriptor s) 1) t))
35   t)
36
37 (deftest make-inet-socket-keyword
38     ;; make a socket
39     (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
40       (and (> (socket-file-descriptor s) 1) t))
41   t)
42
43 (deftest make-inet-socket-wrong
44     ;; fail to make a socket: check correct error return.  There's no nice
45     ;; way to check the condition stuff on its own, which is a shame
46     (handler-case
47         (make-instance 'inet-socket :type :stream :protocol (get-protocol-by-name "udp"))
48       ((or socket-type-not-supported-error protocol-not-supported-error) (c)
49         (declare (ignorable c)) t)
50       (:no-error nil))
51   t)
52
53 (deftest make-inet-socket-keyword-wrong
54     ;; same again with keywords
55     (handler-case
56         (make-instance 'inet-socket :type :stream :protocol :udp)
57       ((or protocol-not-supported-error socket-type-not-supported-error) (c)
58         (declare (ignorable c)) t)
59       (:no-error nil))
60   t)
61
62
63 (deftest non-block-socket
64   (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
65     (setf (non-blocking-mode s) t)
66     (non-blocking-mode s))
67   t)
68
69 (defun do-gc-portably ()
70   ;; cmucl on linux has generational gc with a keyword argument,
71   ;; sbcl GC function takes same arguments no matter what collector is in
72   ;; use
73   #+(or sbcl gencgc) (SB-EXT:gc :full t)
74   ;; other platforms have full gc or nothing
75   #-(or sbcl gencgc) (sb-ext:gc))
76
77 (deftest inet-socket-bind
78   (let ((s (make-instance 'inet-socket :type :stream :protocol (get-protocol-by-name "tcp"))))
79     ;; Given the functions we've got so far, if you can think of a
80     ;; better way to make sure the bind succeeded than trying it
81     ;; twice, let me know
82     ;; 1974 has no special significance, unless you're the same age as me
83     (do-gc-portably) ;gc should clear out any old sockets bound to this port
84     (socket-bind s (make-inet-address "127.0.0.1") 1974)
85     (handler-case
86         (let ((s2 (make-instance 'inet-socket :type :stream :protocol (get-protocol-by-name "tcp"))))
87           (socket-bind s2 (make-inet-address "127.0.0.1") 1974)
88           nil)
89       (address-in-use-error () t)))
90   t)
91
92 (deftest simple-sockopt-test
93   ;; test we can set SO_REUSEADDR on a socket and retrieve it, and in
94   ;; the process that all the weird macros in sockopt happened right.
95   (let ((s (make-instance 'inet-socket :type :stream :protocol (get-protocol-by-name "tcp"))))
96     (setf (sockopt-reuse-address s) t)
97     (sockopt-reuse-address s))
98   t)
99
100 (defun read-buf-nonblock (buffer stream)
101   "Like READ-SEQUENCE, but returns early if the full quantity of data isn't there to be read.  Blocks if no input at all"
102   (let ((eof (gensym)))
103     (do ((i 0 (1+ i))
104          (c (read-char stream nil eof)
105             (read-char-no-hang stream nil eof)))
106         ((or (>= i (length buffer)) (not c) (eq c eof)) i)
107       (setf (elt buffer i) c))))
108
109 #+internet-available
110 (deftest name-service-return-type
111   (vectorp (host-ent-address (get-host-by-address #(127 0 0 1))))
112   t)
113
114 ;;; these require that the echo services are turned on in inetd
115 #+internet-available
116 (deftest simple-tcp-client
117     (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp))
118           (data (make-string 200)))
119       (socket-connect s #(127 0 0 1) 7)
120       (let ((stream (socket-make-stream s :input t :output t :buffering :none)))
121         (format stream "here is some text")
122         (let ((data (subseq data 0 (read-buf-nonblock data stream))))
123           (format t "~&Got ~S back from TCP echo server~%" data)
124           (> (length data) 0))))
125   t)
126
127 #+internet-available
128 (deftest sockaddr-return-type
129   (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
130     (unwind-protect
131          (progn
132            (socket-connect s #(127 0 0 1) 7)
133            (multiple-value-bind (host port) (socket-peername s)
134              (and (vectorp host)
135                   (numberp port))))
136       (socket-close s)))
137   t)
138
139 #+internet-available
140 (deftest simple-udp-client
141   (let ((s (make-instance 'inet-socket :type :datagram :protocol (get-protocol-by-name "udp")))
142         (data (make-string 200)))
143     (format t "Socket type is ~A~%" (sockopt-type s))
144     (socket-connect s #(127 0 0 1) 7)
145     (let ((stream (socket-make-stream s :input t :output t :buffering :none)))
146       (format stream "here is some text")
147       (let ((data (subseq data 0 (read-buf-nonblock data stream))))
148         (format t "~&Got ~S back from UDP echo server~%" data)
149         (> (length data) 0))))
150   t)
151
152 ;;; A fairly rudimentary test that connects to the syslog socket and
153 ;;; sends a message.  Priority 7 is kern.debug; you'll probably want
154 ;;; to look at /etc/syslog.conf or local equivalent to find out where
155 ;;; the message ended up
156
157 (deftest simple-local-client
158     (progn
159       ;; SunOS (Solaris) and Darwin systems don't have a socket at
160       ;; /dev/log.  We might also be building in a chroot or
161       ;; something, so don't fail this test just because the file is
162       ;; unavailable, or if it's a symlink to some weird character
163       ;; device.
164       (when (and (probe-file "/dev/log")
165                  (sb-posix:s-issock
166                   (sb-posix::stat-mode (sb-posix:stat "/dev/log"))))
167         (let ((s (make-instance 'local-socket :type :datagram)))
168           (format t "Connecting ~A... " s)
169           (finish-output)
170           (handler-case
171               (socket-connect s "/dev/log")
172             (sb-bsd-sockets::socket-error ()
173               (setq s (make-instance 'local-socket :type :stream))
174               (format t "failed~%Retrying with ~A... " s)
175               (finish-output)
176               (socket-connect s "/dev/log")))
177           (format t "ok.~%")
178           (let ((stream (socket-make-stream s :input t :output t :buffering :none)))
179             (format stream
180                     "<7>bsd-sockets: Don't panic.  We're testing local-domain client code; this message can safely be ignored"))))
181       t)
182   t)
183
184
185 ;;; these require that the internet (or bits of it, at least) is available
186
187 #+internet-available
188 (deftest get-host-by-name
189   (equalp (car (host-ent-addresses (get-host-by-name "a.root-servers.net")))
190           #(198 41 0 4))
191   t)
192
193 #+internet-available
194 (deftest get-host-by-address
195     (host-ent-name (get-host-by-address #(198 41 0 4)))
196   "a.root-servers.net")
197
198 (deftest get-host-by-name-wrong
199   (handler-case
200    (get-host-by-name "foo.tninkpad.telent.net.")
201    (NAME-SERVICE-ERROR () t)
202    (:no-error nil))
203   t)
204
205 (defun http-stream (host port request)
206   (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
207     (socket-connect
208      s (car (host-ent-addresses (get-host-by-name host))) port)
209     (let ((stream (socket-make-stream s :input t :output t :buffering :none)))
210       (format stream "~A HTTP/1.0~%~%" request))
211     s))
212
213 #+internet-available
214 (deftest simple-http-client-1
215     (handler-case
216         (let ((s (http-stream "ww.telent.net" 80 "HEAD /")))
217           (let ((data (make-string 200)))
218             (setf data (subseq data 0
219                                (read-buf-nonblock data
220                                                   (socket-make-stream s))))
221             (princ data)
222             (> (length data) 0)))
223       (network-unreachable-error () 'network-unreachable))
224   t)
225
226
227 #+internet-available
228 (deftest sockopt-receive-buffer
229     ;; on Linux x86, the receive buffer size appears to be doubled in the
230     ;; kernel: we set a size of x and then getsockopt() returns 2x.
231     ;; This is why we compare with >= instead of =
232     (handler-case
233         (let ((s (http-stream "ww.telent.net" 80 "HEAD /")))
234           (setf (sockopt-receive-buffer s) 1975)
235           (let ((data (make-string 200)))
236             (setf data (subseq data 0
237                                (read-buf-nonblock data
238                                                   (socket-make-stream s))))
239             (and (> (length data) 0)
240                  (>= (sockopt-receive-buffer s) 1975))))
241       (network-unreachable-error () 'network-unreachable))
242   t)
243
244 (deftest socket-open-p-true.1
245     (socket-open-p (make-instance 'inet-socket :type :stream :protocol :tcp))
246   t)
247 #+internet-available
248 (deftest socket-open-p-true.2
249     (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
250       (unwind-protect
251            (progn
252              (socket-connect s #(127 0 0 1) 7)
253              (socket-open-p s))
254         (socket-close s)))
255   t)
256 (deftest socket-open-p-false
257     (let ((s (make-instance 'inet-socket :type :stream :protocol :tcp)))
258       (socket-close s)
259       (socket-open-p s))
260   nil)
261
262 ;;; we don't have an automatic test for some of this yet.  There's no
263 ;;; simple way to run servers and have something automatically connect
264 ;;; to them as client, unless we spawn external programs.  Then we
265 ;;; have to start telling people what external programs they should
266 ;;; have installed.  Which, eventually, we will, but not just yet
267
268
269 ;;; to check with this: can display packets from multiple peers
270 ;;; peer address is shown correctly for each packet
271 ;;; packet length is correct
272 ;;; long (>500 byte) packets have the full length shown (doesn't work)
273
274 (defun udp-server (port)
275   (let ((s (make-instance 'inet-socket :type :datagram :protocol :udp)))
276     (socket-bind s #(0 0 0 0) port)
277     (loop
278      (multiple-value-bind (buf len address port) (socket-receive s nil 500)
279        (format t "Received ~A bytes from ~A:~A - ~A ~%"
280                len address port (subseq buf 0 (min 10 len)))))))
281
282