2014-01-02 21:56:43 +00:00
|
|
|
#!/usr/bin/env python
|
2013-12-31 22:33:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-12-31 23:15:25 +00:00
|
|
|
import os
|
2014-01-07 17:44:44 +00:00
|
|
|
import sys
|
2013-12-31 23:15:25 +00:00
|
|
|
|
2013-12-31 22:34:35 +00:00
|
|
|
import mock
|
2014-06-28 19:33:53 +00:00
|
|
|
import pytest
|
2013-12-31 22:33:32 +00:00
|
|
|
|
2014-01-11 13:09:19 +00:00
|
|
|
sys.path.append(os.path.join(os.getcwd(), 'bin'))
|
2013-12-31 22:34:35 +00:00
|
|
|
import autojump_utils
|
2014-01-07 17:44:44 +00:00
|
|
|
from autojump_utils import encode_local
|
2013-12-31 22:33:32 +00:00
|
|
|
from autojump_utils import first
|
2014-01-01 00:39:45 +00:00
|
|
|
from autojump_utils import get_tab_entry_info
|
2013-12-31 23:41:12 +00:00
|
|
|
from autojump_utils import has_uppercase
|
2013-12-31 23:15:25 +00:00
|
|
|
from autojump_utils import in_bash
|
2014-06-29 02:34:45 +00:00
|
|
|
from autojump_utils import is_python3
|
2013-12-31 22:33:32 +00:00
|
|
|
from autojump_utils import last
|
2013-12-31 22:34:35 +00:00
|
|
|
from autojump_utils import sanitize
|
|
|
|
from autojump_utils import second
|
|
|
|
from autojump_utils import surround_quotes
|
2013-12-31 22:33:32 +00:00
|
|
|
from autojump_utils import take
|
2014-01-07 17:44:44 +00:00
|
|
|
from autojump_utils import unico
|
2013-12-31 22:33:32 +00:00
|
|
|
|
|
|
|
|
2014-06-29 02:34:45 +00:00
|
|
|
if is_python3():
|
|
|
|
os.getcwdu = os.getcwd
|
2014-06-29 02:37:32 +00:00
|
|
|
xrange = range
|
2014-06-29 02:34:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def u(string):
|
|
|
|
"""
|
2014-06-29 03:16:06 +00:00
|
|
|
This is a unicode() wrapper since u'string' is a Python3 compiler error.
|
2014-06-29 02:34:45 +00:00
|
|
|
"""
|
|
|
|
if is_python3():
|
|
|
|
return string
|
|
|
|
return unicode(string, encoding='utf-8', errors='strict')
|
|
|
|
|
|
|
|
|
2014-06-28 19:33:53 +00:00
|
|
|
# strings
|
2014-06-29 03:16:06 +00:00
|
|
|
@pytest.mark.skipif(is_python3(), reason="Unicode sucks.")
|
2014-06-28 19:33:53 +00:00
|
|
|
@mock.patch.object(sys, 'getfilesystemencoding', return_value='ascii')
|
|
|
|
def test_encode_local_ascii(_):
|
2014-06-29 02:34:45 +00:00
|
|
|
assert encode_local(u('foo')) == b'foo'
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
2014-06-29 03:16:06 +00:00
|
|
|
@pytest.mark.skipif(is_python3(), reason="Unicode sucks.")
|
|
|
|
@pytest.mark.xfail(reason="disabled due to pytest bug: https://bitbucket.org/hpk42/pytest/issue/534/pytest-fails-to-catch-unicodedecodeerrors") # noqa
|
|
|
|
@mock.patch.object(sys, 'getfilesystemencoding', return_value='ascii')
|
|
|
|
def test_encode_local_ascii_fails(_):
|
2014-06-28 19:33:53 +00:00
|
|
|
with pytest.raises(UnicodeDecodeError):
|
2014-06-29 03:16:06 +00:00
|
|
|
encode_local(u('日本語'))
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
2014-06-29 03:16:06 +00:00
|
|
|
@pytest.mark.skipif(is_python3(), reason="Unicode sucks.")
|
2014-06-28 19:33:53 +00:00
|
|
|
@mock.patch.object(sys, 'getfilesystemencoding', return_value=None)
|
|
|
|
def test_encode_local_empty(_):
|
2014-06-29 02:34:45 +00:00
|
|
|
assert encode_local(b'foo') == u('foo')
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
2014-06-29 03:16:06 +00:00
|
|
|
@pytest.mark.skipif(is_python3(), reason="Unicode sucks.")
|
2014-06-28 19:33:53 +00:00
|
|
|
@mock.patch.object(sys, 'getfilesystemencoding', return_value='utf-8')
|
2014-06-29 03:16:06 +00:00
|
|
|
def test_encode_local_unicode(_):
|
2014-06-29 02:34:45 +00:00
|
|
|
assert encode_local(b'foo') == u('foo')
|
|
|
|
assert encode_local(u('foo')) == u('foo')
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_has_uppercase():
|
|
|
|
assert has_uppercase('Foo')
|
|
|
|
assert has_uppercase('foO')
|
|
|
|
assert not has_uppercase('foo')
|
|
|
|
assert not has_uppercase('')
|
|
|
|
|
|
|
|
|
|
|
|
@mock.patch.object(autojump_utils, 'in_bash', return_value=True)
|
|
|
|
def test_surround_quotes_in_bash(_):
|
|
|
|
assert surround_quotes('foo') == '"foo"'
|
|
|
|
|
|
|
|
|
|
|
|
@mock.patch.object(autojump_utils, 'in_bash', return_value=False)
|
|
|
|
def test_dont_surround_quotes_not_in_bash(_):
|
|
|
|
assert surround_quotes('foo') == 'foo'
|
|
|
|
|
|
|
|
|
|
|
|
def test_sanitize():
|
|
|
|
assert sanitize([]) == []
|
2014-06-29 02:34:45 +00:00
|
|
|
assert sanitize([r'/foo/bar/', r'/']) == [u('/foo/bar'), u('/')]
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
2014-06-29 03:16:06 +00:00
|
|
|
@pytest.mark.skipif(is_python3(), reason="Unicode sucks.")
|
2014-06-28 19:33:53 +00:00
|
|
|
def test_unico():
|
2014-06-29 02:34:45 +00:00
|
|
|
assert unico(str('blah')) == u('blah')
|
|
|
|
assert unico(str('日本語')) == u('日本語')
|
|
|
|
assert unico(u('でもおれは中国人だ。')) == u('でもおれは中国人だ。')
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
# iteration
|
|
|
|
def test_first():
|
|
|
|
assert first(xrange(5)) == 0
|
|
|
|
assert first([]) is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_second():
|
|
|
|
assert second(xrange(5)) == 1
|
|
|
|
assert second([]) is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_last():
|
|
|
|
assert last(xrange(4)) == 3
|
|
|
|
assert last([]) is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_take():
|
|
|
|
assert list(take(1, xrange(3))) == [0]
|
|
|
|
assert list(take(2, xrange(3))) == [0, 1]
|
|
|
|
assert list(take(4, xrange(3))) == [0, 1, 2]
|
|
|
|
assert list(take(10, [])) == []
|
|
|
|
|
|
|
|
|
|
|
|
# environment variables
|
|
|
|
def test_in_bash():
|
|
|
|
for path in ['/bin/bash', '/usr/bin/bash']:
|
|
|
|
os.environ['SHELL'] = path
|
|
|
|
assert in_bash()
|
|
|
|
|
|
|
|
for path in ['/bin/zsh', '/usr/bin/zsh']:
|
2013-12-31 23:15:25 +00:00
|
|
|
os.environ['SHELL'] = '/usr/bin/zsh'
|
2014-06-28 19:33:53 +00:00
|
|
|
assert not in_bash()
|
|
|
|
|
|
|
|
|
|
|
|
# helper functions
|
|
|
|
def test_get_needle():
|
|
|
|
assert get_tab_entry_info('foo__', '__') == ('foo', None, None)
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_index():
|
|
|
|
assert get_tab_entry_info('foo__2', '__') == ('foo', 2, None)
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_path():
|
|
|
|
assert get_tab_entry_info('foo__3__/foo/bar', '__') \
|
2014-08-10 02:59:41 +00:00
|
|
|
== ('foo', 3, '/foo/bar')
|
2014-06-28 19:33:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_none():
|
|
|
|
assert get_tab_entry_info('gibberish content', '__') == (None, None, None)
|