33 lines
656 B
Python
33 lines
656 B
Python
|
|
||
|
import re
|
||
|
from nose.tools import assert_regex, assert_not_regex
|
||
|
|
||
|
from notebook.base.handlers import path_regex
|
||
|
|
||
|
# build regexps that tornado uses:
|
||
|
path_pat = re.compile('^' + '/x%s' % path_regex + '$')
|
||
|
|
||
|
def test_path_regex():
|
||
|
for path in (
|
||
|
'/x',
|
||
|
'/x/',
|
||
|
'/x/foo',
|
||
|
'/x/foo.ipynb',
|
||
|
'/x/foo/bar',
|
||
|
'/x/foo/bar.txt',
|
||
|
):
|
||
|
assert_regex(path, path_pat)
|
||
|
|
||
|
def test_path_regex_bad():
|
||
|
for path in (
|
||
|
'/xfoo',
|
||
|
'/xfoo/',
|
||
|
'/xfoo/bar',
|
||
|
'/xfoo/bar/',
|
||
|
'/x/foo/bar/',
|
||
|
'/x//foo',
|
||
|
'/y',
|
||
|
'/y/x/foo',
|
||
|
):
|
||
|
assert_not_regex(path, path_pat)
|