File: 128-ValidMethod-common.py

package info (click to toggle)
cherokee 1.0.8-5%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 18,240 kB
  • ctags: 11,897
  • sloc: ansic: 60,631; python: 26,496; sh: 10,929; makefile: 2,759; php: 765; xml: 61; perl: 32; sed: 16
file content (32 lines) | stat: -rw-r--r-- 1,068 bytes parent folder | download
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
from base import *

DIR   = "common_valid_methods1"
MAGIC = "Report bugs to http://bugs.cherokee-project.com"

CONF = """
vserver!1!rule!1280!match = directory
vserver!1!rule!1280!match!directory = /%s
vserver!1!rule!1280!handler = common
"""

class Test (TestBase):
    def __init__ (self):
        TestBase.__init__ (self, __file__)
        self.name = "Common: Valid methods, Post"

        self.request           = "POST /%s/?arg=1 HTTP/1.0\r\n" %(DIR) +\
                                 "Content-type: application/x-www-form-urlencoded\r\n" +\
                                 "Content-length: %d\r\n" % (len(MAGIC)+4)
        self.post              = "var="+MAGIC
        self.expected_error    = 200
        self.expected_content  = "Post: "+MAGIC
        self.conf              = CONF % (DIR)

    def Prepare (self, www):
        d = self.Mkdir (www, DIR)
        f = self.WriteFile (d, "test_index.php", 0444,
                            "<?php echo 'Post: '.$_POST['var']; ?>")

    def Precondition (self):
        return os.path.exists (look_for_php())