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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
;; -*- mode: common-lisp; package: net.aserve.test -*-
;;
;; t-webactions.cl
;;
;; copyright (c) 1986-2000 Franz Inc, Berkeley, CA
;;
;; This code is free software; you can redistribute it and/or
;; modify it under the terms of the version 2.1 of
;; the GNU Lesser General Public License as published by
;; the Free Software Foundation;
;;
;; This code 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
;; Lesser General Public License for more details.
;;
;; Version 2.1 of the GNU Lesser General Public License is in the file
;; license-lgpl.txt that was distributed with this file.
;; If it is not present, you can access it from
;; http://www.gnu.org/copyleft/lesser.txt (until superseded by a newer
;; version) or write to the Free Software Foundation, Inc., 59 Temple Place,
;; Suite 330, Boston, MA 02111-1307 USA
;;
;;
;; $Id: t-webactions.cl,v 1.2 2004-04-26 18:18:38 kevinrosenberg Exp $
;; Description:
;; test webactions in aserve
;;- This code in this file obeys the Lisp Coding Standard found in
;;- http://www.franz.com/~jkf/coding_standards.html
;;-
#+allegro
(eval-when (compile load eval)
(require :tester))
;;; Get Kevin Rosenberg's port of Franz tester at
;;; http://files.b9.com/ptester/
#-allegro
(eval-when (:compile-toplevel :load-toplevel :execute)
(asdf:oos 'asdf:load-op :ptester)
(rename-package (find-package :ptester) :ptester '(:util.test)))
(defpackage :net.aserve.testwa
(:use :common-lisp :acl-compat.excl :net.html.generator :net.aserve
:net.aserve.client
:util.test)
)
(in-package :net.aserve.testwa)
(defvar *x-ssl*)
(defvar *test-dir* (directory-namestring *load-pathname*))
(defun test-webactions ()
;; run the allegroserve tests three ways:
;; 1. normally
; 2. through an allegroserve proxy to test the proxy
;; 3. through ssl (if ssl module present)
;;
;; tests are run on a variety of threads, so we have to
;; account for those other thread errors separately.
(setq util.test::*test-errors* 0
util.test::*test-successes* 0
util.test::*test-unexpected-failures* 0)
(with-tests (:name "aserve")
(let* ((*wserver* *wserver*)
(port (start-aserve-running)))
(format t "server started on port ~d~%" port)
(unwind-protect
(flet ((do-tests ()
(sitea-tests port)
))
(format t "~%~%===== test direct ~%~%")
(do-tests)
))
; cleanup forms:
(stop-aserve-running)))
(if* (or (> util.test::*test-errors* 0)
(> util.test::*test-successes* 0)
(> util.test::*test-unexpected-failures* 0))
then (format t "~%Test information from other threads:~%")
(format t "Errors: ~d~%" util.test::*test-errors*)
(format t "Successes: ~d~%~%" util.test::*test-successes*)
(format t "Unexpected failures: ~d~%"
util.test::*test-unexpected-failures*)))
(defun x-do-http-request (uri &rest args)
;; add a proxy arg
(apply #'do-http-request uri :ssl *x-ssl* args))
(defmacro values2 (form)
;; return the second value
(let ((v1 (gensym))
(v2 (gensym)))
`(multiple-value-bind (,v1 ,v2) ,form
(declare (ignore ,v1))
,v2)))
(defun start-aserve-running (&optional ssl)
;; start aserve, return the port on which we've started aserve
(let ((wserver (start :port nil :server :new :ssl ssl))); let the system pick a port
(setq *wserver* wserver)
(unpublish :all t) ; flush anything published
(setq *x-ssl* ssl)
(socket::local-port (net.aserve::wserver-socket wserver))
))
(defun stop-aserve-running ()
(shutdown))
;;--------- the tests ------------
(defvar *sitea-vara* nil)
(defun sitea-tests (port)
; load in project
(let ((prefix-local (format nil "http://localhost:~a" port)))
(load (concatenate 'string *test-dir* "sitea/project.cl"))
; test a sample symbolic page
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/pagea" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode))
; test a non existant one
(test 404 (values2 (x-do-http-request (format nil "~a/sitea/notthere"
prefix-local))))
;; test extended maps... with multiple actions firing
(setq *sitea-vara* nil)
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/action" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode)
(test '(:foo :foo :foo) *sitea-vara* :test #'equal))
;; test redir to previous page preceeded by one push
(setq *sitea-vara* nil)
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/redirtry" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode)
(test '(:foo :foo :foo :foo) *sitea-vara* :test #'equal))
;; test an action returning a clp name
;; it's not clear we should support this. it does seem more
;; regular to allow it... but then we can't as easy detect
;; mistyped symbolic page names returned by action functions
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/action2" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode))
;; test an action returning a symbolic page name which then
;; points at a clp file
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/action3" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode))
;; bogus sym page name returned by action
(test 404 (values2 (x-do-http-request (format nil "~a/sitea/action4"
prefix-local))))
;; test with prefix
; smallest prefix
(setq *sitea-vara* nil)
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/act" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode)
(test '(:foo) *sitea-vara* :test #'equal))
; bigger suffix
(setq *sitea-vara* nil)
(multiple-value-bind (data retcode)
(x-do-http-request (format nil "~a/sitea/act234234/asd/asd/ad" prefix-local))
(test "test
" data :test #'equal)
(test 200 retcode)
(test '(:foo) *sitea-vara* :test #'equal))
;; verify that the fil prefix works too
(setq *sitea-vara* nil)
(multiple-value-bind (data retcode headers)
(x-do-http-request (format nil "~a/sitea/filesss/act234234/asd/asd/ad" prefix-local))
(test "the second test file: file2
" data :test #'equal)
(test 200 retcode)
(test "text/html" (cdr (assoc :content-type headers))
:test #'equal)
(test '(:foo :foo) *sitea-vara* :test #'equal))
; check to see if we can change the content-type of a
; single file
(multiple-value-bind (data retcode headers)
(x-do-http-request (format nil "~a/sitea/testctype" prefix-local))
(test "This is a plain text file
" data :test #'equal)
(test 200 retcode)
(test "text/plain" (cdr (assoc :content-type headers))
:test #'equal))
))
(defun action-sitea-pushit (req ent)
(declare (ignore req ent))
(push :foo *sitea-vara*)
:continue
)
(defun action-retname-two (req ent)
;; return actual name to run
(declare (ignore req ent))
"file1.clp")
(defun action-retname-three (req ent)
;; return another symbolic page name
(declare (ignore req ent))
"pagea")
(defun action-retname-four (req ent)
;; return a bogus symbolic page name
(declare (ignore req ent))
"thisdoesntexist")
(test-webactions)
|