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
|
import os
import sys
from nose.tools import assert_raises
from paste.cgiapp import CGIApplication, CGIError
from paste.fixture import *
data_dir = os.path.join(os.path.dirname(__file__), 'cgiapp_data')
# these CGI scripts can't work on Windows or Jython
if sys.platform != 'win32' and not sys.platform.startswith('java'):
# Ensure the CGI scripts are called with the same python interpreter. Put a
# symlink to the interpreter executable into the path...
def setup_module():
global oldpath, pyexelink
oldpath = os.environ.get('PATH', None)
os.environ['PATH'] = data_dir + os.path.pathsep + oldpath
pyexelink = os.path.join(data_dir, "python")
try:
os.unlink(pyexelink)
except OSError:
pass
os.symlink(sys.executable, pyexelink)
# ... and clean up again.
def teardown_module():
global oldpath, pyexelink
os.unlink(pyexelink)
if oldpath is not None:
os.environ['PATH'] = oldpath
else:
del os.environ['PATH']
def test_ok():
app = TestApp(CGIApplication({}, script='ok.cgi', path=[data_dir]))
res = app.get('')
assert res.header('content-type') == 'text/html; charset=UTF-8'
assert res.full_status == '200 Okay'
assert 'This is the body' in res
def test_form():
app = TestApp(CGIApplication({}, script='form.cgi', path=[data_dir]))
res = app.post('', params={'name': b'joe'},
upload_files=[('up', 'file.txt', b'x'*10000)])
assert 'file.txt' in res
assert 'joe' in res
assert 'x'*10000 in res
def test_error():
app = TestApp(CGIApplication({}, script='error.cgi', path=[data_dir]))
assert_raises(CGIError, app.get, '', status=500)
def test_stderr():
app = TestApp(CGIApplication({}, script='stderr.cgi', path=[data_dir]))
res = app.get('', expect_errors=True)
assert res.status == 500
assert 'error' in res
assert b'some data' in res.errors
|