from base import * MAGIC = "This is the magic string" CONF = """ vserver!default!directory!/cgi-bin1!handler = cgi vserver!default!directory!/cgi-bin1!priority = 150 """ class Test (TestBase): def __init__ (self): TestBase.__init__ (self) self.name = "CGI Execution" self.request = "GET /cgi-bin1/test HTTP/1.0\r\n" self.conf = CONF self.expected_error = 200 self.expected_content = MAGIC def Prepare (self, www): self.Mkdir (www, "cgi-bin1") self.WriteFile (www, "cgi-bin1/test", 0755, """#!/bin/sh echo "Content-Type: text/plain" echo echo "%s" """ % (MAGIC))