unit/test/test_php_application.py

712 lines
22 KiB
Python
Raw Normal View History

import os
import re
import shutil
import time
from subprocess import call
2020-05-15 03:20:56 +00:00
2020-10-07 22:18:43 +00:00
import pytest
from unit.applications.lang.php import TestApplicationPHP
from unit.option import option
2018-05-22 17:20:14 +00:00
2019-03-28 15:43:13 +00:00
class TestPHPApplication(TestApplicationPHP):
prerequisites = {'modules': {'php': 'all'}}
2018-05-22 17:20:14 +00:00
def before_disable_functions(self):
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert re.search(r'time: \d+', body), 'disable_functions before time'
assert re.search(r'exec: \/\w+', body), 'disable_functions before exec'
def set_opcache(self, app, val):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{"admin": {"opcache.enable": val, "opcache.enable_cli": val}},
2020-09-16 20:31:15 +00:00
'applications/' + app + '/options',
)
opcache = self.get()['headers']['X-OPcache']
if not opcache or opcache == '-1':
2020-09-16 20:31:15 +00:00
pytest.skip('opcache is not supported')
2020-09-16 20:31:15 +00:00
assert opcache == val, 'opcache value'
2018-05-22 17:20:14 +00:00
def test_php_application_variables(self):
self.load('variables')
body = 'Test body string.'
2019-03-26 20:38:30 +00:00
resp = self.post(
headers={
'Host': 'localhost',
'Content-Type': 'text/html',
'Custom-Header': 'blah',
'Connection': 'close',
},
body=body,
2020-09-16 20:31:15 +00:00
url='/index.php/blah?var=val',
2019-03-26 20:38:30 +00:00
)
2018-05-22 17:20:14 +00:00
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status'
2018-05-22 17:20:14 +00:00
headers = resp['headers']
header_server = headers.pop('Server')
2020-09-16 20:31:15 +00:00
assert re.search(r'Unit/[\d\.]+', header_server), 'server header'
assert (
headers.pop('Server-Software') == header_server
), 'server software header'
2018-05-22 17:20:14 +00:00
date = headers.pop('Date')
2020-09-16 20:31:15 +00:00
assert date[-4:] == ' GMT', 'date header timezone'
assert (
abs(self.date_to_sec_epoch(date) - self.sec_epoch()) < 5
), 'date header'
2018-05-22 17:20:14 +00:00
if 'X-Powered-By' in headers:
headers.pop('X-Powered-By')
headers.pop('Content-type')
2020-09-16 20:31:15 +00:00
assert headers == {
'Connection': 'close',
'Content-Length': str(len(body)),
'Request-Method': 'POST',
'Path-Info': '/blah',
'Request-Uri': '/index.php/blah?var=val',
'Http-Host': 'localhost',
'Server-Protocol': 'HTTP/1.1',
'Custom-Header': 'blah',
}, 'headers'
assert resp['body'] == body, 'body'
2018-05-22 17:20:14 +00:00
2018-12-24 17:35:18 +00:00
def test_php_application_query_string(self):
self.load('query_string')
resp = self.get(url='/?var1=val1&var2=val2')
2020-09-16 20:31:15 +00:00
assert (
resp['headers']['Query-String'] == 'var1=val1&var2=val2'
), 'query string'
2018-12-24 17:35:18 +00:00
def test_php_application_query_string_empty(self):
self.load('query_string')
resp = self.get(url='/?')
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'query string empty status'
assert resp['headers']['Query-String'] == '', 'query string empty'
2018-12-24 17:35:18 +00:00
def test_php_application_fastcgi_finish_request(self, temp_dir):
self.load('fastcgi_finish_request')
assert self.get()['body'] == '0123'
with open(temp_dir + '/unit.pid', 'r') as f:
pid = f.read().rstrip()
call(['kill', '-s', 'USR1', pid])
with open(temp_dir + '/unit.log', 'r', errors='ignore') as f:
errs = re.findall(r'Error in fastcgi_finish_request', f.read())
assert len(errs) == 0, 'no error'
def test_php_application_fastcgi_finish_request_2(self, temp_dir):
self.load('fastcgi_finish_request')
resp = self.get(url='/?skip')
assert resp['status'] == 200
assert resp['body'] == ''
with open(temp_dir + '/unit.pid', 'r') as f:
pid = f.read().rstrip()
call(['kill', '-s', 'USR1', pid])
with open(temp_dir + '/unit.log', 'r', errors='ignore') as f:
errs = re.findall(r'Error in fastcgi_finish_request', f.read())
assert len(errs) == 0, 'no error'
2018-12-24 17:35:18 +00:00
def test_php_application_query_string_absent(self):
self.load('query_string')
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'query string absent status'
assert resp['headers']['Query-String'] == '', 'query string absent'
2018-12-24 17:35:18 +00:00
2018-05-22 17:20:14 +00:00
def test_php_application_phpinfo(self):
self.load('phpinfo')
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status'
assert resp['body'] != '', 'body not empty'
2018-05-22 17:20:14 +00:00
def test_php_application_header_status(self):
self.load('header')
2020-09-16 20:31:15 +00:00
assert (
self.get(
headers={
'Host': 'localhost',
'Connection': 'close',
'X-Header': 'HTTP/1.1 404 Not Found',
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'status'
2020-09-16 20:31:15 +00:00
assert (
self.get(
headers={
'Host': 'localhost',
'Connection': 'close',
'X-Header': 'http/1.1 404 Not Found',
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'status case insensitive'
2020-09-16 20:31:15 +00:00
assert (
self.get(
headers={
'Host': 'localhost',
'Connection': 'close',
'X-Header': 'HTTP/ 404 Not Found',
}
2020-09-16 20:31:15 +00:00
)['status']
== 404
), 'status version empty'
2018-05-22 17:20:14 +00:00
def test_php_application_404(self):
self.load('404')
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 404, '404 status'
assert re.search(
r'<title>404 Not Found</title>', resp['body']
), '404 body'
2018-05-22 17:20:14 +00:00
def test_php_application_keepalive_body(self):
self.load('mirror')
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'init'
2019-04-09 17:59:35 +00:00
2020-04-14 01:35:04 +00:00
body = '0123456789' * 500
2019-03-26 20:38:30 +00:00
(resp, sock) = self.post(
headers={
'Host': 'localhost',
'Connection': 'keep-alive',
'Content-Type': 'text/html',
},
start=True,
2020-04-14 01:35:04 +00:00
body=body,
2019-04-09 17:59:35 +00:00
read_timeout=1,
2019-03-26 20:38:30 +00:00
)
2018-05-22 17:20:14 +00:00
2020-09-16 20:31:15 +00:00
assert resp['body'] == body, 'keep-alive 1'
2018-05-22 17:20:14 +00:00
2020-04-14 01:35:04 +00:00
body = '0123456789'
2019-03-26 20:38:30 +00:00
resp = self.post(
headers={
'Host': 'localhost',
'Connection': 'close',
'Content-Type': 'text/html',
},
sock=sock,
2020-04-14 01:35:04 +00:00
body=body,
2019-03-26 20:38:30 +00:00
)
2018-05-22 17:20:14 +00:00
2020-09-16 20:31:15 +00:00
assert resp['body'] == body, 'keep-alive 2'
2018-05-22 17:20:14 +00:00
def test_php_application_conditional(self):
self.load('conditional')
2020-09-16 20:31:15 +00:00
assert re.search(r'True', self.get()['body']), 'conditional true'
assert re.search(r'False', self.post()['body']), 'conditional false'
2018-05-22 17:20:14 +00:00
def test_php_application_get_variables(self):
self.load('get_variables')
resp = self.get(url='/?var1=val1&var2=&var3')
2020-09-16 20:31:15 +00:00
assert resp['headers']['X-Var-1'] == 'val1', 'GET variables'
assert resp['headers']['X-Var-2'] == '', 'GET variables 2'
assert resp['headers']['X-Var-3'] == '', 'GET variables 3'
assert resp['headers']['X-Var-4'] == 'not set', 'GET variables 4'
2018-05-22 17:20:14 +00:00
def test_php_application_post_variables(self):
self.load('post_variables')
2019-03-26 20:38:30 +00:00
resp = self.post(
headers={
'Content-Type': 'application/x-www-form-urlencoded',
'Host': 'localhost',
'Connection': 'close',
},
body='var1=val1&var2=',
)
2020-09-16 20:31:15 +00:00
assert resp['headers']['X-Var-1'] == 'val1', 'POST variables'
assert resp['headers']['X-Var-2'] == '', 'POST variables 2'
assert resp['headers']['X-Var-3'] == 'not set', 'POST variables 3'
2018-05-22 17:20:14 +00:00
def test_php_application_cookies(self):
self.load('cookies')
2019-03-26 20:38:30 +00:00
resp = self.get(
headers={
'Cookie': 'var=val; var2=val2',
'Host': 'localhost',
'Connection': 'close',
}
)
2018-05-22 17:20:14 +00:00
2020-09-16 20:31:15 +00:00
assert resp['headers']['X-Cookie-1'] == 'val', 'cookie'
assert resp['headers']['X-Cookie-2'] == 'val2', 'cookie'
2018-05-22 17:20:14 +00:00
def test_php_application_ini_precision(self):
self.load('ini_precision')
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] != '4', 'ini value default'
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"file": "ini/php.ini"}, 'applications/ini_precision/options'
)
2020-09-16 20:31:15 +00:00
assert (
self.get()['headers']['X-File']
== option.test_dir + '/php/ini_precision/ini/php.ini'
), 'ini file'
assert self.get()['headers']['X-Precision'] == '4', 'ini value'
2020-09-16 20:31:15 +00:00
@pytest.mark.skip('not yet')
2018-07-11 16:35:46 +00:00
def test_php_application_ini_admin_user(self):
self.load('ini_precision')
2020-09-16 20:31:15 +00:00
assert 'error' in self.conf(
{"user": {"precision": "4"}, "admin": {"precision": "5"}},
'applications/ini_precision/options',
), 'ini admin user'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_admin(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"file": "php.ini", "admin": {"precision": "5"}},
'applications/ini_precision/options',
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '5', 'ini value admin'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_user(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"file": "php.ini", "user": {"precision": "5"}},
'applications/ini_precision/options',
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '5', 'ini value user'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_user_2(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"file": "ini/php.ini"}, 'applications/ini_precision/options'
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '4', 'ini user file'
2018-07-11 16:35:46 +00:00
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"precision": "5"}, 'applications/ini_precision/options/user'
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '5', 'ini value user'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_set_admin(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"precision": "5"}}, 'applications/ini_precision/options'
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert (
self.get(url='/?precision=6')['headers']['X-Precision'] == '5'
), 'ini set admin'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_set_user(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"user": {"precision": "5"}}, 'applications/ini_precision/options'
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert (
self.get(url='/?precision=6')['headers']['X-Precision'] == '6'
), 'ini set user'
2018-07-11 16:35:46 +00:00
def test_php_application_ini_repeat(self):
self.load('ini_precision')
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"user": {"precision": "5"}}, 'applications/ini_precision/options'
)
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '5', 'ini value'
2018-07-11 16:35:46 +00:00
2020-09-16 20:31:15 +00:00
assert self.get()['headers']['X-Precision'] == '5', 'ini value repeat'
2018-07-11 16:35:46 +00:00
def test_php_application_disable_functions_exec(self):
self.load('time_exec')
self.before_disable_functions()
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"disable_functions": "exec"}},
'applications/time_exec/options',
)
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert re.search(r'time: \d+', body), 'disable_functions time'
assert not re.search(r'exec: \/\w+', body), 'disable_functions exec'
def test_php_application_disable_functions_comma(self):
self.load('time_exec')
self.before_disable_functions()
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"disable_functions": "exec,time"}},
'applications/time_exec/options',
)
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert not re.search(
r'time: \d+', body
), 'disable_functions comma time'
assert not re.search(
r'exec: \/\w+', body
), 'disable_functions comma exec'
def test_php_application_auth(self):
self.load('auth')
resp = self.get()
assert resp['status'] == 200, 'status'
assert resp['headers']['X-Digest'] == 'not set', 'digest'
assert resp['headers']['X-User'] == 'not set', 'user'
assert resp['headers']['X-Password'] == 'not set', 'password'
resp = self.get(
headers={
'Host': 'localhost',
'Authorization': 'Basic dXNlcjpwYXNzd29yZA==',
'Connection': 'close',
}
)
assert resp['status'] == 200, 'basic status'
assert resp['headers']['X-Digest'] == 'not set', 'basic digest'
assert resp['headers']['X-User'] == 'user', 'basic user'
assert resp['headers']['X-Password'] == 'password', 'basic password'
resp = self.get(
headers={
'Host': 'localhost',
'Authorization': 'Digest username="blah", realm="", uri="/"',
'Connection': 'close',
}
)
assert resp['status'] == 200, 'digest status'
assert (
resp['headers']['X-Digest'] == 'username="blah", realm="", uri="/"'
), 'digest digest'
assert resp['headers']['X-User'] == 'not set', 'digest user'
assert resp['headers']['X-Password'] == 'not set', 'digest password'
def test_php_application_auth_invalid(self):
self.load('auth')
def check_auth(auth):
resp = self.get(headers={
'Host': 'localhost',
'Authorization': auth,
'Connection': 'close',
})
assert resp['status'] == 200, 'status'
assert resp['headers']['X-Digest'] == 'not set', 'Digest'
assert resp['headers']['X-User'] == 'not set', 'User'
assert resp['headers']['X-Password'] == 'not set', 'Password'
check_auth('Basic dXN%cjpwYXNzd29yZA==')
check_auth('Basic XNlcjpwYXNzd29yZA==')
check_auth('Basic DdXNlcjpwYXNzd29yZA==')
check_auth('Basic blah')
check_auth('Basic')
check_auth('Digest')
check_auth('blah')
def test_php_application_disable_functions_space(self):
self.load('time_exec')
self.before_disable_functions()
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"disable_functions": "exec time"}},
'applications/time_exec/options',
)
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert not re.search(
r'time: \d+', body
), 'disable_functions space time'
assert not re.search(
r'exec: \/\w+', body
), 'disable_functions space exec'
def test_php_application_disable_functions_user(self):
self.load('time_exec')
self.before_disable_functions()
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"user": {"disable_functions": "exec"}},
'applications/time_exec/options',
)
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert re.search(r'time: \d+', body), 'disable_functions user time'
assert not re.search(
r'exec: \/\w+', body
), 'disable_functions user exec'
def test_php_application_disable_functions_nonexistent(self):
self.load('time_exec')
self.before_disable_functions()
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"disable_functions": "blah"}},
'applications/time_exec/options',
)
body = self.get()['body']
2020-09-16 20:31:15 +00:00
assert re.search(
r'time: \d+', body
), 'disable_functions nonexistent time'
assert re.search(
r'exec: \/\w+', body
), 'disable_functions nonexistent exec'
def test_php_application_disable_classes(self):
self.load('date_time')
2020-09-16 20:31:15 +00:00
assert re.search(
r'012345', self.get()['body']
), 'disable_classes before'
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"admin": {"disable_classes": "DateTime"}},
'applications/date_time/options',
)
2020-09-16 20:31:15 +00:00
assert not re.search(
r'012345', self.get()['body']
), 'disable_classes before'
def test_php_application_disable_classes_user(self):
self.load('date_time')
2020-09-16 20:31:15 +00:00
assert re.search(
r'012345', self.get()['body']
), 'disable_classes before'
2019-03-26 20:38:30 +00:00
assert 'success' in self.conf(
2019-03-26 20:38:30 +00:00
{"user": {"disable_classes": "DateTime"}},
'applications/date_time/options',
)
2020-09-16 20:31:15 +00:00
assert not re.search(
r'012345', self.get()['body']
), 'disable_classes before'
2020-10-19 21:25:29 +00:00
def test_php_application_error_log(self, temp_dir):
self.load('error_log')
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'status'
time.sleep(1)
2020-09-16 20:31:15 +00:00
assert self.get()['status'] == 200, 'status 2'
pattern = r'\d{4}\/\d\d\/\d\d\s\d\d:.+\[notice\].+Error in application'
2020-09-16 20:31:15 +00:00
assert self.wait_for_record(pattern) is not None, 'errors print'
2020-10-19 21:25:29 +00:00
with open(temp_dir + '/unit.log', 'r', errors='ignore') as f:
errs = re.findall(pattern, f.read())
2020-09-16 20:31:15 +00:00
assert len(errs) == 2, 'error_log count'
date = errs[0].split('[')[0]
date2 = errs[1].split('[')[0]
2020-09-16 20:31:15 +00:00
assert date != date2, 'date diff'
def test_php_application_script(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "applications/script"}},
"applications": {
"script": {
"type": "php",
"processes": {"spare": 0},
"root": option.test_dir + "/php/script",
"script": "phpinfo.php",
}
},
}
), 'configure script'
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status'
assert resp['body'] != '', 'body not empty'
def test_php_application_index_default(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "applications/phpinfo"}},
"applications": {
"phpinfo": {
"type": "php",
"processes": {"spare": 0},
"root": option.test_dir + "/php/phpinfo",
}
},
}
), 'configure index default'
2020-01-23 11:57:15 +00:00
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status'
assert resp['body'] != '', 'body not empty'
2020-01-23 11:57:15 +00:00
2020-10-19 21:25:29 +00:00
def test_php_application_extension_check(self, temp_dir):
2020-01-23 11:57:15 +00:00
self.load('phpinfo')
2020-09-16 20:31:15 +00:00
assert self.get(url='/index.wrong')['status'] != 200, 'status'
2020-10-19 21:25:29 +00:00
new_root = temp_dir + "/php"
os.mkdir(new_root)
2020-09-16 20:31:15 +00:00
shutil.copy(option.test_dir + '/php/phpinfo/index.wrong', new_root)
assert 'success' in self.conf(
{
"listeners": {"*:7080": {"pass": "applications/phpinfo"}},
"applications": {
"phpinfo": {
"type": "php",
"processes": {"spare": 0},
"root": new_root,
"working_directory": new_root,
}
},
}
), 'configure new root'
resp = self.get()
2020-09-16 20:31:15 +00:00
assert str(resp['status']) + resp['body'] != '200', 'status new root'
def run_php_application_cwd_root_tests(self):
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'applications/cwd/working_directory'
)
2020-09-16 20:31:15 +00:00
script_cwd = option.test_dir + '/php/cwd'
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status ok'
assert resp['body'] == script_cwd, 'default cwd'
assert 'success' in self.conf(
'"' + option.test_dir + '"', 'applications/cwd/working_directory',
)
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status ok'
assert resp['body'] == script_cwd, 'wdir cwd'
resp = self.get(url='/?chdir=/')
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status ok'
assert resp['body'] == '/', 'cwd after chdir'
# cwd must be restored
resp = self.get()
2020-09-16 20:31:15 +00:00
assert resp['status'] == 200, 'status ok'
assert resp['body'] == script_cwd, 'cwd restored'
resp = self.get(url='/subdir/')
2020-09-16 20:31:15 +00:00
assert resp['body'] == script_cwd + '/subdir', 'cwd subdir'
def test_php_application_cwd_root(self):
self.load('cwd')
self.run_php_application_cwd_root_tests()
def test_php_application_cwd_opcache_disabled(self):
self.load('cwd')
self.set_opcache('cwd', '0')
self.run_php_application_cwd_root_tests()
def test_php_application_cwd_opcache_enabled(self):
self.load('cwd')
self.set_opcache('cwd', '1')
self.run_php_application_cwd_root_tests()
def run_php_application_cwd_script_tests(self):
self.load('cwd')
2020-09-16 20:31:15 +00:00
script_cwd = option.test_dir + '/php/cwd'
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf_delete(
'applications/cwd/working_directory'
)
2020-09-16 20:31:15 +00:00
assert 'success' in self.conf('"index.php"', 'applications/cwd/script')
2020-09-16 20:31:15 +00:00
assert self.get()['body'] == script_cwd, 'default cwd'
2020-09-16 20:31:15 +00:00
assert self.get(url='/?chdir=/')['body'] == '/', 'cwd after chdir'
# cwd must be restored
2020-09-16 20:31:15 +00:00
assert self.get()['body'] == script_cwd, 'cwd restored'
def test_php_application_cwd_script(self):
self.load('cwd')
self.run_php_application_cwd_script_tests()
def test_php_application_cwd_script_opcache_disabled(self):
self.load('cwd')
self.set_opcache('cwd', '0')
self.run_php_application_cwd_script_tests()
def test_php_application_cwd_script_opcache_enabled(self):
self.load('cwd')
self.set_opcache('cwd', '1')
self.run_php_application_cwd_script_tests()
def test_php_application_path_relative(self):
self.load('open')
2020-09-16 20:31:15 +00:00
assert self.get()['body'] == 'test', 'relative path'
2020-09-16 20:31:15 +00:00
assert (
self.get(url='/?chdir=/')['body'] != 'test'
), 'relative path w/ chdir'
2020-09-16 20:31:15 +00:00
assert self.get()['body'] == 'test', 'relative path 2'