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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
|
# httpd.test - Copyright (c) 2015 Sean Woods
# -------------------------------------------------------------------------
source [file join \
[file dirname [file dirname [file join [pwd] [info script]]]] \
devtools testutilities.tcl]
testsNeedTcl 8.6 ;# tool requires 8.6
testsNeedTcltest 2
testsNeed TclOO 1
support {
use cmdline/cmdline.tcl cmdline
use fileutil/fileutil.tcl fileutil
use sha1/sha1.tcl sha1
use uri/uri.tcl uri
use ncgi/ncgi.tcl ncgi
use dns/ip.tcl ip
use nettool/nettool.tcl nettool
use coroutine/coroutine.tcl coroutine
use dicttool/dicttool.tcl dicttool
use cron/cron.tcl cron
use oodialect/oodialect.tcl oo::dialect
use oometa/oometa.tcl oo::meta
use tool/tool.tcl tool
}
testing {
useLocal httpd.tcl httpd
}
# -------------------------------------------------------------------------
namespace eval ::httpd {}
namespace eval ::httpd::test {}
###
# Minimal test harness for the .tests
# Not intended for public consumption
# (But if you find it handy, please steal!)
proc ::httpd::test::compare {actual correct} {
set result {}
set cbuf [split $correct \n]
set abuf [split $actual \n]
for {set i 0} {$i < [llength $cbuf]} {incr i} {
set cline [string trim [lindex $cbuf $i]]
set aline [string trim [lindex $abuf $i]]
if {![string match $cline $aline]} {
if {$cline ne $aline} {
append result "Line $i differs [list $aline] != [list $cline]" \n
}
}
}
if {[llength $result]} {
puts [list ACTUAL $actual]
puts [list CORRECT $correct]
}
return $result
}
proc ::httpd::test::send {port http headers body} {
set sock [socket localhost $port]
variable reply
set reply($sock) {}
chan configure $sock -translation {crlf crlf} -blocking 0 -buffering full -buffersize 4096
chan event $sock readable [list ::httpd::test::get_reply $sock]
puts $sock $http
if {[string length $body]} {
if {![dict exists $headers Content-Type]} {
dict set headers Content_Type text/plain
}
dict set headers Content-Length [string length $body]
}
foreach {f v} $headers {
puts $sock "${f}: $v"
}
if {[string length $body]} {
puts $sock {}
chan configure $sock -translation binary -blocking 0 -buffering full -buffersize 4096
puts -nonewline $sock $body
}
flush $sock
while {$reply($sock) eq {}} {
update
}
#vwait [namespace current]::reply($sock)
return $reply($sock)
}
proc ::httpd::test::get_reply {sock} {
variable buffer
set data [read $sock]
append buffer($sock) $data
if {[eof $sock]} {
chan event $sock readable {}
set [namespace current]::reply($sock) $buffer($sock)
unset buffer($sock)
}
}
tool::define ::httpd::server {
method log args {}
}
###
# Modify the reply class to return plain text
###
tool::define ::httpd::reply {
method HttpHeaders_Default {} {
return {Status {200 OK}
Content-Type {text/plain}
Connection close}
}
method reset {} {
my variable reply_body
my reply replace [my HttpHeaders_Default]
set reply_body {}
}
method error {code {msg {}} {errorInfo {}}} {
my http_info set HTTP_ERROR $code
my reset
my variable error_codes
set qheaders [my http_info dump]
if {![info exists error_codes($code)]} {
set errorstring "Unknown Error Code"
} else {
set errorstring $error_codes($code)
}
dict with qheaders {}
my reply replace {}
my reply set Status "$code $errorstring"
my reply set Content-Type text/plain
my puts "$code $errorstring"
}
}
tool::define ::test::content.echo {
method content {} {
my variable reply_body
set reply_body [my PostData [my request get Content-Length]]
#puts [list REPLY BODY WAS $reply_body]
}
}
tool::define ::test::content.file {
superclass ::httpd::content.file
method content {} {
my reset
set doc_root [my http_info get doc_root]
my variable reply_file
set reply_file [file join $doc_root pkgIndex.tcl]
}
}
tool::define ::test::content.time {
method content {} {
my variable reply_body
set reply_body [clock seconds]
}
}
tool::define ::test::content.error {
method content {} {
error {The programmer asked me to die this way}
}
}
tool::define ::httpd::test::reply {
superclass ::httpd::reply ::test::content.echo
}
###
# Build the server
###
set DIR [file dirname [file normalize [info script]]]
set ::DEMOROOT $DIR
::httpd::server create TESTAPP port 10001
TESTAPP add_uri / [list mixin ::test::content.echo]
TESTAPP add_uri /echo [list mixin ::test::content.echo]
TESTAPP add_uri /file [list mixin ::test::content.file doc_root $::DEMOROOT]
TESTAPP add_uri /time [list mixin ::test::content.time]
TESTAPP add_uri /error [list mixin ::test::content.error]
# Catch all
#TESTAPP add_uri * [list mixin httpd::content.echo]
test httpd-client-0001 {Do an echo request} {
set reply [::httpd::test::send 10001 {POST /echo HTTP/1.0} {} {THIS IS MY CODE}]
::httpd::test::compare $reply {HTTP/1.0 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
THIS IS MY CODE}
} {}
test httpd-client-0002 {Do another echo request} {
set reply [::httpd::test::send 10001 {POST /echo HTTP/1.0} {} {THOUGH THERE ARE MANY LIKE IT}]
::httpd::test::compare $reply {HTTP/1.0 200 OK
Content-Type: text/plain
Connection: close
Content-Length: 29
THOUGH THERE ARE MANY LIKE IT}
} {}
test httpd-client-0003 {Do another echo request} {
set reply [::httpd::test::send 10001 {POST /echo HTTP/1.0} {} {THIS ONE ALONE IS MINE}]
::httpd::test::compare $reply {HTTP/1.0 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
THIS ONE ALONE IS MINE}
} {}
test httpd-client-0004 {URL Generates Error} {
set reply [::httpd::test::send 10001 {POST /error HTTP/1.0} {} {THIS ONE ALONE IS MINE}]
::httpd::test::compare $reply {HTTP/1.0 500 Server Internal Error
Content-Type: text/plain
Connection: close
Content-Length: *
500 Server Internal Error}
} {}
set checkreply [subst {HTTP/1.0 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
[clock seconds]}]
test httpd-client-0005 {URL Different output with a different request} {
set reply [::httpd::test::send 10001 {POST /time HTTP/1.0} {} {THIS ONE ALONE IS MINE}]
::httpd::test::compare $reply $checkreply
} {}
set fin [open [file join $DEMOROOT pkgIndex.tcl] r]
set replyfile [read $fin]
close $fin
set checkreply "HTTP/1.0 200 OK
Content-Type: text/plain
Connection: close
Content-Length: [string length $replyfile]
$replyfile"
test httpd-client-0006 {Return a file} {
set reply [::httpd::test::send 10001 {GET /file HTTP/1.0} {} {}]
::httpd::test::compare $reply $checkreply
} {}
# -------------------------------------------------------------------------
namespace eval ::scgi {}
namespace eval ::scgi::test {}
###
# Minimal test harness for the .tests
# Not intended for public consumption
# (But if you find it handy, please steal!)
namespace eval ::scgi::test {}
proc ::scgi::encode_request {headers body info} {
variable server_block
dict set outdict CONTENT_LENGTH [string length $body]
set outdict [dict merge $outdict $server_block $info]
dict set outdict PWD [pwd]
foreach {key value} $headers {
switch $key {
SCRIPT_NAME -
REQUEST_METHOD -
REQUEST_URI {
dict set outdict $key $value
}
default {
dict set outdict HTTP_[string map {"-" "_"} [string toupper $key]] $value
}
}
}
set result {}
foreach {name value} $outdict {
append result $name \x00 $value \x00
}
return "[string length $result]:$result,"
}
proc ::scgi::test::send {port text} {
set sock [socket localhost $port]
variable reply
set reply($sock) {}
chan configure $sock -translation binary -blocking 0 -buffering full -buffersize 4096
chan event $sock readable [list ::scgi::test::get_reply $sock]
set headers {}
set body {}
set read_headers 1
foreach line [split $text \n] {
if {$read_headers} {
if { $line eq {} } {
set read_headers 0
} else {
append headers $line \n
}
} else {
append body $line \n
}
}
set block [::scgi::encode_request $headers $body {}]
puts -nonewline $sock $block
flush $sock
puts -nonewline $sock $body
flush $sock
while {$reply($sock) eq {}} {
update
}
#vwait [namespace current]::reply($sock)
return $reply($sock)
}
proc ::scgi::test::get_reply {sock} {
variable buffer
set data [read $sock]
append buffer($sock) $data
if {[eof $sock]} {
chan event $sock readable {}
set [namespace current]::reply($sock) $buffer($sock)
unset buffer($sock)
}
}
namespace eval ::scgi {
variable server_block {SCGI 1.0 SERVER_SOFTWARE {TclScgiServer/0.1}}
}
###
# Build the reply class
###
tool::class create ::scgi::test::reply {
superclass ::httpd::reply.scgi
method reset {} {
my variable reply_body
my reply replace [my HttpHeaders_Default]
set reply_body {}
}
}
TESTAPP destroy
###
# Build the server
###
tool::class create scgi::test::app {
superclass ::httpd::server.scgi
property reply_class ::scgi::test::reply
}
scgi::test::app create TESTAPP port 10001
TESTAPP add_uri / [list mixin ::test::content.echo]
TESTAPP add_uri /echo [list mixin ::test::content.echo]
TESTAPP add_uri /file [list mixin ::test::content.file doc_root $::DEMOROOT]
TESTAPP add_uri /time [list mixin ::test::content.time]
TESTAPP add_uri /error [list mixin ::test::content.error]
test scgi-client-0001 {Do an echo request} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /echo
THIS IS MY CODE}]
set checkreply {Status: 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
THIS IS MY CODE}
::httpd::test::compare $reply $checkreply
} {}
test scgi-client-0002 {Do another echo request} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /echo
THOUGH THERE ARE MANY LIKE IT}]
set checkreply {Status: 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
THOUGH THERE ARE MANY LIKE IT}
::httpd::test::compare $reply $checkreply
} {}
test scgi-client-0003 {Do another echo request} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /echo
THIS ONE ALONE IS MINE}]
set checkreply {Status: 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
THIS ONE ALONE IS MINE}
::httpd::test::compare $reply $checkreply
} {}
test scgi-client-0004 {URL Generates Error} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /error
THIS ONE ALONE IS MINE
}]
set checkreply {Status: 500 Server Internal Error
Content-Type: text/plain
Connection: close
Content-Length: *
500 Server Internal Error
}
::httpd::test::compare $reply $checkreply
} {}
set checkreply [subst {Status: 200 OK
Content-Type: text/plain
Connection: close
Content-Length: *
[clock seconds]}]
test scgi-client-0005 {URL Different output with a different request} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /time
THIS ONE ALONE IS MINE}]
::httpd::test::compare $reply $checkreply
} {}
set fin [open [file join $DEMOROOT pkgIndex.tcl] r]
set checkfile [read $fin]
close $fin
test scgi-client-0006 {Return a file} {
set reply [::scgi::test::send 10001 {REQUEST_METHOD POST
REQUEST_URI /file
}]
set checkreply "Status: 200 OK
Content-Type: text/plain
Connection: close
Content-Length: [string length $checkfile]
$checkfile"
::httpd::test::compare $reply $checkreply
} {}
# -------------------------------------------------------------------------
testsuiteCleanup
# Local variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|