From cc83e06efff71b81ca5a3ac6df65775971181295 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 7 Mar 2016 18:52:36 -0800 Subject: tox.ini: Measure test coverage --- tests/urlparser_data/not_found/__init__.py | 1 + tests/urlparser_data/not_found/recur/__init__.py | 9 +++++++++ tests/urlparser_data/not_found/recur/isfound.txt | 1 + tests/urlparser_data/not_found/simple/__init__.py | 3 +++ tests/urlparser_data/not_found/simple/found.txt | 1 + tests/urlparser_data/not_found/user/__init__.py | 12 ++++++++++++ tests/urlparser_data/not_found/user/list.py | 8 ++++++++ 7 files changed, 35 insertions(+) create mode 100644 tests/urlparser_data/not_found/__init__.py create mode 100644 tests/urlparser_data/not_found/recur/__init__.py create mode 100644 tests/urlparser_data/not_found/recur/isfound.txt create mode 100644 tests/urlparser_data/not_found/simple/__init__.py create mode 100644 tests/urlparser_data/not_found/simple/found.txt create mode 100644 tests/urlparser_data/not_found/user/__init__.py create mode 100644 tests/urlparser_data/not_found/user/list.py (limited to 'tests/urlparser_data/not_found') diff --git a/tests/urlparser_data/not_found/__init__.py b/tests/urlparser_data/not_found/__init__.py new file mode 100644 index 0000000..792d600 --- /dev/null +++ b/tests/urlparser_data/not_found/__init__.py @@ -0,0 +1 @@ +# diff --git a/tests/urlparser_data/not_found/recur/__init__.py b/tests/urlparser_data/not_found/recur/__init__.py new file mode 100644 index 0000000..48205a5 --- /dev/null +++ b/tests/urlparser_data/not_found/recur/__init__.py @@ -0,0 +1,9 @@ +def not_found_hook(environ, start_response): + urlparser = environ['paste.urlparser.not_found_parser'] + path = environ.get('PATH_INFO', '') + if not path: + return urlparser.not_found(environ, start_response) + # Strip off leading _'s + path = '/' + path.lstrip('/').lstrip('_') + environ['PATH_INFO'] = path + return urlparser(environ, start_response) diff --git a/tests/urlparser_data/not_found/recur/isfound.txt b/tests/urlparser_data/not_found/recur/isfound.txt new file mode 100644 index 0000000..c8b8fab --- /dev/null +++ b/tests/urlparser_data/not_found/recur/isfound.txt @@ -0,0 +1 @@ +is found diff --git a/tests/urlparser_data/not_found/simple/__init__.py b/tests/urlparser_data/not_found/simple/__init__.py new file mode 100644 index 0000000..7186daa --- /dev/null +++ b/tests/urlparser_data/not_found/simple/__init__.py @@ -0,0 +1,3 @@ +def not_found_hook(environ, start_response): + start_response('200 OK', [('Content-type', 'text/plain')]) + return [b'not found'] diff --git a/tests/urlparser_data/not_found/simple/found.txt b/tests/urlparser_data/not_found/simple/found.txt new file mode 100644 index 0000000..c8b8fab --- /dev/null +++ b/tests/urlparser_data/not_found/simple/found.txt @@ -0,0 +1 @@ +is found diff --git a/tests/urlparser_data/not_found/user/__init__.py b/tests/urlparser_data/not_found/user/__init__.py new file mode 100644 index 0000000..4126c04 --- /dev/null +++ b/tests/urlparser_data/not_found/user/__init__.py @@ -0,0 +1,12 @@ +from paste import request + +def not_found_hook(environ, start_response): + urlparser = environ['paste.urlparser.not_found_parser'] + first, rest = request.path_info_split(environ.get('PATH_INFO', '')) + if not first: + # No username + return + environ['app.user'] = first + environ['SCRIPT_NAME'] += '/' + first + environ['PATH_INFO'] = rest + return urlparser(environ, start_response) diff --git a/tests/urlparser_data/not_found/user/list.py b/tests/urlparser_data/not_found/user/list.py new file mode 100644 index 0000000..fd7482f --- /dev/null +++ b/tests/urlparser_data/not_found/user/list.py @@ -0,0 +1,8 @@ +import six + +def application(environ, start_response): + start_response('200 OK', [('Content-type', 'text/plain')]) + body = 'user: %s' % environ.get('app.user') + if six.PY3: + body = body.encode('ascii') + return [body] -- cgit v1.2.1