mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
137 lines
3.0 KiB
Tcl
137 lines
3.0 KiB
Tcl
#
|
|
# \brief Test for using the lwIP TCP/IP stack
|
|
# \author Norman Feske
|
|
# \date 2011-05-22
|
|
#
|
|
# This test case executes a small HTTP server on Genode running on qemu. When
|
|
# the HTTP server is up, a HTTP request to the server is performed using
|
|
# 'lynx'. The response is validated against a known pattern.
|
|
#
|
|
# The test uses qemu's "-net user" option, redirecting Genode's port 80 to the
|
|
# host's port 5555. Consequently, it cannot be executed on non-qemu test
|
|
# environments (i.e., the test won't work with the Linux version of Genode).
|
|
#
|
|
# Please make sure to include a nic driver in your build configuration. E.g.,
|
|
# on the x86 platform, you may enable the 'linux_drivers' repository.
|
|
#
|
|
|
|
#
|
|
# TODO: Add support for Linux via user-level networking (using the
|
|
# tun/tap proxy driver at os/src/drivers/nic/linux)
|
|
#
|
|
if {[have_spec linux]} {
|
|
puts "Run script does not support Linux."; exit 0 }
|
|
|
|
#
|
|
# XXX: Currently, we have no NIC driver for 64-bit
|
|
#
|
|
if {[have_spec 64bit]} {
|
|
puts "Run script does not support 64-bit platforms."; exit 0 }
|
|
|
|
requires_installation_of lynx
|
|
|
|
#
|
|
# Build
|
|
#
|
|
|
|
build {
|
|
core init
|
|
drivers/pci drivers/timer drivers/nic
|
|
test/lwip/http_srv
|
|
}
|
|
|
|
create_boot_directory
|
|
|
|
#
|
|
# Generate config
|
|
#
|
|
|
|
set config {
|
|
<config verbose="yes">
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="SIGNAL"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="512K"/>
|
|
<provides> <service name="Timer"/> </provides>
|
|
</start>
|
|
<start name="nic_drv">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides> <service name="Nic"/> </provides>
|
|
</start>
|
|
<start name="test-lwip_httpsrv">
|
|
<resource name="RAM" quantum="2M"/>
|
|
</start> }
|
|
|
|
append_if [have_spec pci] config {
|
|
<start name="pci_drv">
|
|
<resource name="RAM" quantum="512K"/>
|
|
<provides> <service name="PCI"/> </provides>
|
|
</start> }
|
|
|
|
append config {
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core init timer
|
|
nic_drv
|
|
ld.lib.so libc.lib.so libc_log.lib.so lwip.lib.so test-lwip_httpsrv
|
|
}
|
|
|
|
# platform-specific modules
|
|
lappend_if [have_spec pci] boot_modules pci_drv
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
#
|
|
# Execute test case
|
|
#
|
|
|
|
# qemu config
|
|
append qemu_args " -m 128 -nographic "
|
|
|
|
append_if [have_spec x86] qemu_args " -net nic,model=e1000 "
|
|
append_if [have_spec lan9118] qemu_args " -net nic,model=lan9118 "
|
|
|
|
append qemu_args " -net user -redir tcp:5555::80 "
|
|
|
|
run_genode_until {.*Start the server loop \.\.\..*} 30
|
|
|
|
set uri "http://localhost:5555/"
|
|
|
|
puts "http server is up, try to query website $uri"
|
|
|
|
set website [exec lynx -dump $uri]
|
|
|
|
puts "response:\n$website"
|
|
|
|
if {![regexp {Welcome to our lwIP HTTP server!} $website dummy]} {
|
|
puts stderr "Query returned unexpected website"
|
|
exit 2;
|
|
}
|
|
|
|
puts "test succeeded"
|
|
|
|
# vi: set ft=tcl :
|