chickadee » server-test

server-test

Description

Utilities to help testing servers

Author

Mario Domenech Goulart

Repository

https://github.com/mario-goulart/server-test

Parameters

test-server-port

test-server-port #!optional integerparameter

The port to access the test server. The default value is 8080.

connect-procedure

connect-procedure #!optional procedureparameter

The procedure to be used to check if the server is ready to accept requests. Default is tcp-connect from unit tcp.

standby-time

standby-time #!optional integerparameter

Time in seconds to wait for the server to start serving after it has started accepting connections. This parameter was introduced in version 0.4.

max-attempts-to-connect

max-attempts-to-connect #!optional integerparameter

Maximum number of attempts to connect to the server before assuming that it failed to start. This parameter was introduced in version 0.4.

time-between-attempts-to-connect

time-between-attempts-to-connect #!optional integerparameter

Time in seconds to wait between to consecutive attempts to connect to the server. This parameter was introduced in version 0.4.

Procedures

High level interface

with-test-server
with-test-server server-thunk tests-thunkprocedure

Start the server by executing server-thunk, run the tests (tests-thunk) and stop the server.

Here's a usage example with the awful, test and http-client eggs:

The awful application to be tested:

(use awful)

(define-page "/foo"
  (lambda ()
    "foo")
  no-template: #t)

The test program:

(use server-test awful http-client test)

;; The awful application to be tested
(awful-apps (list "foo.scm"))

(with-test-server
 (lambda ()
   (awful-start
    (lambda ()
      (load-apps (awful-apps)))))
 (lambda ()   
   (test "foo"
         (with-input-from-request "http://localhost:8080/foo"
                                  #f
                                  read-string))))

Low level interface

start-test-server
start-test-server thunkprocedure

Start the test server and returns its pid. thunk is the procedure which actually runs the server.

stop-test-server
stop-server pidprocedure

Stops the server whose pid is the given pid.

License

Copyright (c) 2012-2018 Mario Domenech Goulart
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

Neither the name of the author nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.

Version history

version 0.6
version 0.5
version 0.4
version 0.3
version 0.2
version 0.1

Contents »