##// END OF EJS Templates
remove another py2 only test
remove another py2 only test

File last commit:

r22457:9e0c0aad
r22962:c05c1799
Show More
test_path.py
496 lines | 15.9 KiB | text/x-python | PythonLexer
Brian Granger
Added tests for the new get_ipython_dir and get_security_dir ...
r1617 # encoding: utf-8
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 """Tests for IPython.utils.path.py"""
Brian Granger
Added tests for the new get_ipython_dir and get_security_dir ...
r1617
MinRK
test ensure_dir_exists
r16489 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
Robert Kern
BUG: Allow %magic argument filenames with spaces to be specified with quotes under win32.
r4688
Thomas Kluyver
Update tests for IPython.utils.path
r13407 import errno
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 import os
import shutil
import sys
import tempfile
Thomas Kluyver
Update tests for IPython.utils.path
r13407 import warnings
David Wolever
py3 doesn't have nested, py2.6 doesn't have multiple context managers
r11653 from contextlib import contextmanager
Jorgen Stenarson
added test for genutils.popkey
r1751
Thomas Kluyver
Properly mock winreg functions for test...
r18050 try: # Python 3.3+
from unittest.mock import patch
except ImportError:
from mock import patch
Jorgen Stenarson
Fixing pep-8 conformance issues
r1801 from os.path import join, abspath, split
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843
MinRK
skip test_not_writable_ipdir if I can't create a non-writable dir...
r17996 from nose import SkipTest
Jorgen Stenarson
Remove bare asserts by switching to use nose.tools.assert_* functions to check test conditions.
r1802 import nose.tools as nt
Brian Granger
Added tests for the new get_ipython_dir and get_security_dir ...
r1617
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 from nose import with_setup
Brian Granger
Added tests for the new get_ipython_dir and get_security_dir ...
r1617
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 import IPython
Min RK
update dependency imports...
r21253 from IPython import paths
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 from IPython.testing import decorators as dec
Thomas Kluyver
Use onlyif_unicode_paths in utils tests
r12166 from IPython.testing.decorators import (skip_if_not_win32, skip_win32,
onlyif_unicode_paths,)
Thomas Kluyver
Add AssertPrints context manager to check output from tests.
r4901 from IPython.testing.tools import make_tempfile, AssertPrints
Thomas Kluyver
Remove unused imports in IPython.utils
r11127 from IPython.utils import path
Thomas Kluyver
Various Python 3 fixes in IPython.utils
r4764 from IPython.utils import py3compat
Takafumi Arakaki
Move globlist and its test under utils.path
r8014 from IPython.utils.tempdir import TemporaryDirectory
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843
# Platform-dependent imports
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750 try:
Thomas Kluyver
Update imports for Python 3...
r13354 import winreg as wreg # Py 3
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750 except ImportError:
Thomas Kluyver
Update imports for Python 3...
r13354 try:
import _winreg as wreg # Py 2
except ImportError:
#Fake _winreg module on none windows platforms
import types
wr_name = "winreg" if py3compat.PY3 else "_winreg"
sys.modules[wr_name] = types.ModuleType(wr_name)
try:
import winreg as wreg
except ImportError:
import _winreg as wreg
#Add entries that needs to be stubbed by the testing code
(wreg.OpenKey, wreg.QueryValueEx,) = (None, None)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Various Python 3 fixes in IPython.utils
r4764 try:
reload
except NameError: # Python 3
from imp import reload
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 #-----------------------------------------------------------------------------
# Globals
#-----------------------------------------------------------------------------
env = os.environ
TMP_TEST_DIR = tempfile.mkdtemp()
HOME_TEST_DIR = join(TMP_TEST_DIR, "home_test_dir")
Jorgen Stenarson
Some white space fixing, and comments
r1804 #
# Setup/teardown functions/decorators
Jorgen Stenarson
Moved skip decorator to testing and created similar ones for OSX and linux, create delete testdirs in module setup/teardown
r1803 #
def setup():
Jorgen Stenarson
Add doc strings to all functions
r1805 """Setup testenvironment for the module:
Bernardo B. Marques
remove all trailling spaces
r4872
Jorgen Stenarson
Add doc strings to all functions
r1805 - Adds dummy home dir tree
"""
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 # Do not mask exceptions here. In particular, catching WindowsError is a
# problem because that exception is only defined on Windows...
Thomas Kluyver
Move tests for IPython.paths
r21041 os.makedirs(os.path.join(HOME_TEST_DIR, 'ipython'))
Jorgen Stenarson
Moved skip decorator to testing and created similar ones for OSX and linux, create delete testdirs in module setup/teardown
r1803
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Jorgen Stenarson
Moved skip decorator to testing and created similar ones for OSX and linux, create delete testdirs in module setup/teardown
r1803 def teardown():
Jorgen Stenarson
Add doc strings to all functions
r1805 """Teardown testenvironment for the module:
Bernardo B. Marques
remove all trailling spaces
r4872
Jorgen Stenarson
Add doc strings to all functions
r1805 - Remove dummy home dir tree
"""
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 # Note: we remove the parent test dir, which is the root of all test
# subdirs we may have created. Use shutil instead of os.removedirs, so
# that non-empty directories are all recursively removed.
shutil.rmtree(TMP_TEST_DIR)
Jorgen Stenarson
Moved skip decorator to testing and created similar ones for OSX and linux, create delete testdirs in module setup/teardown
r1803
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750 def setup_environment():
Bernardo B. Marques
remove all trailling spaces
r4872 """Setup testenvironment for some functions that are tested
Jorgen Stenarson
Add doc strings to all functions
r1805 in this module. In particular this functions stores attributes
and other things that we need to stub in some test functions.
Bernardo B. Marques
remove all trailling spaces
r4872 This needs to be done on a function level and not module level because
Jorgen Stenarson
Add doc strings to all functions
r1805 each testfunction needs a pristine environment.
"""
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750 global oldstuff, platformstuff
MinRK
don't use XDG path on OS X...
r7086 oldstuff = (env.copy(), os.name, sys.platform, path.get_home_dir, IPython.__file__, os.getcwd())
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750
def teardown_environment():
MinRK
docstring typo
r11500 """Restore things that were remembered by the setup_environment function
Jorgen Stenarson
Add doc strings to all functions
r1805 """
MinRK
don't use XDG path on OS X...
r7086 (oldenv, os.name, sys.platform, path.get_home_dir, IPython.__file__, old_wd) = oldstuff
Robert Kern
BUG: Allow %magic argument filenames with spaces to be specified with quotes under win32.
r4688 os.chdir(old_wd)
MinRK
use tempdir if no usable ipython_dir is found...
r4475 reload(path)
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Fix tests in utils
r13373 for key in list(env):
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750 if key not in oldenv:
del env[key]
env.update(oldenv)
if hasattr(sys, 'frozen'):
del sys.frozen
Jorgen Stenarson
Add doc strings to all functions
r1805 # Build decorator that uses the setup_environment/setup_environment
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 with_environment = with_setup(setup_environment, teardown_environment)
Jorgen Stenarson
Changed tests to use decorator to setup, teardown environment
r1750
Jorgen Stenarson
skipping windows specific tests of get_home_dir on other platforms
r1820 @skip_if_not_win32
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 @with_environment
Jorgen Stenarson
Fix for py2exe when using uncompressed lib/
r1745 def test_get_home_dir_1():
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746 """Testcase for py2exe logic, un-compressed lib
"""
MinRK
update tests for frozen dists
r11502 unfrozen = path.get_home_dir()
Jorgen Stenarson
Some reformatting of code
r1796 sys.frozen = True
Bernardo B. Marques
remove all trailling spaces
r4872
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746 #fake filename for IPython.__init__
Jorgen Stenarson
Fixed errors in testcases specific to py2exe after Fernando's patch
r1855 IPython.__file__ = abspath(join(HOME_TEST_DIR, "Lib/IPython/__init__.py"))
Bernardo B. Marques
remove all trailling spaces
r4872
bgranger
Fixing broken tests on win32....
r2513 home_dir = path.get_home_dir()
MinRK
update tests for frozen dists
r11502 nt.assert_equal(home_dir, unfrozen)
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Jorgen Stenarson
Test for presence before deleting keys from os.environ. Mark two tests...
r1812 @skip_if_not_win32
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 @with_environment
Jorgen Stenarson
Removing simple test cases for get_home_dir and get_ipython_dir
r1800 def test_get_home_dir_2():
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746 """Testcase for py2exe logic, compressed lib
"""
MinRK
update tests for frozen dists
r11502 unfrozen = path.get_home_dir()
Jorgen Stenarson
Fixing pep-8 conformance issues
r1801 sys.frozen = True
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746 #fake filename for IPython.__init__
Jorgen Stenarson
Fixed errors in testcases specific to py2exe after Fernando's patch
r1855 IPython.__file__ = abspath(join(HOME_TEST_DIR, "Library.zip/IPython/__init__.py")).lower()
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow IPython to run without writable home dir...
r5384 home_dir = path.get_home_dir(True)
MinRK
update tests for frozen dists
r11502 nt.assert_equal(home_dir, unfrozen)
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 @with_environment
Jorgen Stenarson
Removing simple test cases for get_home_dir and get_ipython_dir
r1800 def test_get_home_dir_3():
MinRK
defer to stdlib for path.get_home_dir()...
r5383 """get_home_dir() uses $HOME if set"""
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 env["HOME"] = HOME_TEST_DIR
MinRK
allow IPython to run without writable home dir...
r5384 home_dir = path.get_home_dir(True)
MinRK
get_home_dir expands symlinks, adjust test accordingly
r6123 # get_home_dir expands symlinks
nt.assert_equal(home_dir, os.path.realpath(env["HOME"]))
Jorgen Stenarson
Fix for py2exe when using uncompressed lib/
r1745
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 @with_environment
Jorgen Stenarson
Removing simple test cases for get_home_dir and get_ipython_dir
r1800 def test_get_home_dir_4():
MinRK
defer to stdlib for path.get_home_dir()...
r5383 """get_home_dir() still works if $HOME is not set"""
Bernardo B. Marques
remove all trailling spaces
r4872
Jorgen Stenarson
Test for presence before deleting keys from os.environ. Mark two tests...
r1812 if 'HOME' in env: del env['HOME']
MinRK
don't check writability in test for get_home_dir when HOME is undefined...
r7669 # this should still succeed, but we don't care what the answer is
home = path.get_home_dir(False)
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436 @with_environment
Jorgen Stenarson
Removing simple test cases for get_home_dir and get_ipython_dir
r1800 def test_get_home_dir_5():
MinRK
defer to stdlib for path.get_home_dir()...
r5383 """raise HomeDirError if $HOME is specified, but not a writable dir"""
env['HOME'] = abspath(HOME_TEST_DIR+'garbage')
MinRK
restore My Documents fallback for get_home_dir on Windows
r5385 # set os.name = posix, to prevent My Documents fallback on Windows
os.name = 'posix'
MinRK
allow IPython to run without writable home dir...
r5384 nt.assert_raises(path.HomeDirError, path.get_home_dir, True)
Fernando Perez
Make last-ditch attempt to find $HOME when environment is broken....
r3373
bgranger
Fixing broken tests on win32....
r2513 # Should we stub wreg fully so we can run the test on all platforms?
@skip_if_not_win32
@with_environment
def test_get_home_dir_8():
"""Using registry hack for 'My Documents', os=='nt'
Bernardo B. Marques
remove all trailling spaces
r4872
bgranger
Fixing broken tests on win32....
r2513 HOMESHARE, HOMEDRIVE, HOMEPATH, USERPROFILE and others are missing.
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746 """
Jorgen Stenarson
Some reformatting of code
r1796 os.name = 'nt'
Fernando Perez
Various fixes for test_genutils under win32, now all tests pass.
r2447 # Remove from stub environment all keys that may be set
for key in ['HOME', 'HOMESHARE', 'HOMEDRIVE', 'HOMEPATH', 'USERPROFILE']:
env.pop(key, None)
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746
Thomas Kluyver
Properly mock winreg functions for test...
r18050 class key:
def Close(self):
pass
Jorgen Stenarson
Added tests test_get_home_dir_3-test_get_home_dir_9...
r1746
Thomas Kluyver
Properly mock winreg functions for test...
r18050 with patch.object(wreg, 'OpenKey', return_value=key()), \
patch.object(wreg, 'QueryValueEx', return_value=[abspath(HOME_TEST_DIR)]):
home_dir = path.get_home_dir()
Fernando Perez
Fixes for Jorgen's branch in tests to genutils....
r1843 nt.assert_equal(home_dir, abspath(HOME_TEST_DIR))
Jorgen Stenarson
Fix for py2exe when using uncompressed lib/
r1745
MinRK
Merge branch 'tilde-expand-fix'...
r3896 @with_environment
MinRK
don't use XDG path on OS X...
r7086 def test_get_xdg_dir_0():
"""test_get_xdg_dir_0, check xdg_dir"""
MinRK
use XDG_CONFIG_HOME if available...
r3347 reload(path)
MinRK
use tempdir if no usable ipython_dir is found...
r4475 path._writable_dir = lambda path: True
MinRK
use XDG_CONFIG_HOME if available...
r3347 path.get_home_dir = lambda : 'somewhere'
os.name = "posix"
MinRK
don't use XDG path on OS X...
r7086 sys.platform = "linux2"
MinRK
use XDG_CONFIG_HOME if available...
r3347 env.pop('IPYTHON_DIR', None)
env.pop('IPYTHONDIR', None)
env.pop('XDG_CONFIG_HOME', None)
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
use XDG_CONFIG_HOME if available...
r3347 nt.assert_equal(path.get_xdg_dir(), os.path.join('somewhere', '.config'))
@with_environment
def test_get_xdg_dir_1():
"""test_get_xdg_dir_1, check nonexistant xdg_dir"""
reload(path)
path.get_home_dir = lambda : HOME_TEST_DIR
os.name = "posix"
MinRK
don't use XDG path on OS X...
r7086 sys.platform = "linux2"
MinRK
use XDG_CONFIG_HOME if available...
r3347 env.pop('IPYTHON_DIR', None)
env.pop('IPYTHONDIR', None)
env.pop('XDG_CONFIG_HOME', None)
nt.assert_equal(path.get_xdg_dir(), None)
@with_environment
def test_get_xdg_dir_2():
"""test_get_xdg_dir_2, check xdg_dir default to ~/.config"""
reload(path)
path.get_home_dir = lambda : HOME_TEST_DIR
os.name = "posix"
MinRK
don't use XDG path on OS X...
r7086 sys.platform = "linux2"
MinRK
use XDG_CONFIG_HOME if available...
r3347 env.pop('IPYTHON_DIR', None)
env.pop('IPYTHONDIR', None)
env.pop('XDG_CONFIG_HOME', None)
cfgdir=os.path.join(path.get_home_dir(), '.config')
MinRK
don't use XDG path on OS X...
r7086 if not os.path.exists(cfgdir):
os.makedirs(cfgdir)
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
use XDG_CONFIG_HOME if available...
r3347 nt.assert_equal(path.get_xdg_dir(), cfgdir)
Fernando Perez
Added small test for function that didn't have one. Little cleanups.
r1969
MinRK
don't use XDG path on OS X...
r7086 @with_environment
def test_get_xdg_dir_3():
"""test_get_xdg_dir_3, check xdg_dir not used on OS X"""
reload(path)
path.get_home_dir = lambda : HOME_TEST_DIR
os.name = "posix"
sys.platform = "darwin"
env.pop('IPYTHON_DIR', None)
env.pop('IPYTHONDIR', None)
env.pop('XDG_CONFIG_HOME', None)
cfgdir=os.path.join(path.get_home_dir(), '.config')
if not os.path.exists(cfgdir):
os.makedirs(cfgdir)
nt.assert_equal(path.get_xdg_dir(), None)
Fernando Perez
Added small test for function that didn't have one. Little cleanups.
r1969 def test_filefind():
"""Various tests for filefind"""
f = tempfile.NamedTemporaryFile()
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505 # print 'fname:',f.name
Min RK
update dependency imports...
r21253 alt_dirs = paths.get_ipython_dir()
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505 t = path.filefind(f.name, alt_dirs)
# print 'found:',t
Fernando Perez
Improve pylab support, find profiles in IPython's own directory....
r2357
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 @dec.skip_if_not_win32
def test_get_long_path_name_win32():
Jonathan Frederic
FIX test_get_long_path_name_win32 for Win7...
r12083 with TemporaryDirectory() as tmpdir:
Jonathan Frederic
Small fixes to make test work.
r12085
watercrossing
Modifies test_get_long_path_name_winr32() to fix #4629
r13753 # Make a long path. Expands the path of tmpdir prematurely as it may already have a long
# path component, so ensure we include the long form of it
watercrossing
Modifies test_get_long_path_name_winr32() to fix #4629 on ipython/ipython.
r13741 long_path = os.path.join(path.get_long_path_name(tmpdir), u'this is my long path name')
Jonathan Frederic
Small fixes to make test work.
r12085 os.makedirs(long_path)
Jonathan Frederic
FIX test_get_long_path_name_win32 for Win7...
r12083
Jonathan Frederic
Small fixes to make test work.
r12085 # Test to see if the short path evaluates correctly.
short_path = os.path.join(tmpdir, u'THISIS~1')
evaluated_path = path.get_long_path_name(short_path)
nt.assert_equal(evaluated_path.lower(), long_path.lower())
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 @dec.skip_win32
def test_get_long_path_name():
Brian Granger
Fixed broken test in :mod:`IPython.utils.tests.test_path`.
r2505 p = path.get_long_path_name('/usr/local')
Bradley M. Froehle
s/nt.assert_equals/nt.assert_equal/
r7875 nt.assert_equal(p,'/usr/local')
Fernando Perez
Added new Tee class, that works much like Unix's 'tee' command....
r2436
MinRK
Skip writable_dir test on Windows...
r4483 @dec.skip_win32 # can't create not-user-writable dir on win
MinRK
use tempdir if no usable ipython_dir is found...
r4475 @with_environment
def test_not_writable_ipdir():
tmpdir = tempfile.mkdtemp()
os.name = "posix"
env.pop('IPYTHON_DIR', None)
env.pop('IPYTHONDIR', None)
env.pop('XDG_CONFIG_HOME', None)
env['HOME'] = tmpdir
ipdir = os.path.join(tmpdir, '.ipython')
Jeroen Demeyer
gh-7044: set TMPDIR to workingdir in tests
r19240 os.mkdir(ipdir, 0o555)
MinRK
skip test_not_writable_ipdir if I can't create a non-writable dir...
r17996 try:
Jeroen Demeyer
gh-7044: set TMPDIR to workingdir in tests
r19240 open(os.path.join(ipdir, "_foo_"), 'w').close()
except IOError:
MinRK
skip test_not_writable_ipdir if I can't create a non-writable dir...
r17996 pass
else:
Jeroen Demeyer
gh-7044: set TMPDIR to workingdir in tests
r19240 # I can still write to an unwritable dir,
MinRK
skip test_not_writable_ipdir if I can't create a non-writable dir...
r17996 # assume I'm root and skip the test
Jeroen Demeyer
Change exception message
r19285 raise SkipTest("I can't create directories that I can't write to")
Thomas Kluyver
Update IPython.utils.path to use stdlib warnings module.
r4902 with AssertPrints('is not a writable location', channel='stderr'):
Min RK
update dependency imports...
r21253 ipdir = paths.get_ipython_dir()
MinRK
use tempdir if no usable ipython_dir is found...
r4475 env.pop('IPYTHON_DIR', None)
Robert Kern
BUG: Allow %magic argument filenames with spaces to be specified with quotes under win32.
r4688
@with_environment
def test_get_py_filename():
os.chdir(TMP_TEST_DIR)
Antony Lee
Finish getting rid of unquote_filename......
r22457 with make_tempfile('foo.py'):
nt.assert_equal(path.get_py_filename('foo.py'), 'foo.py')
nt.assert_equal(path.get_py_filename('foo'), 'foo.py')
with make_tempfile('foo'):
nt.assert_equal(path.get_py_filename('foo'), 'foo')
nt.assert_raises(IOError, path.get_py_filename, 'foo.py')
nt.assert_raises(IOError, path.get_py_filename, 'foo')
nt.assert_raises(IOError, path.get_py_filename, 'foo.py')
true_fn = 'foo with spaces.py'
with make_tempfile(true_fn):
nt.assert_equal(path.get_py_filename('foo with spaces'), true_fn)
nt.assert_equal(path.get_py_filename('foo with spaces.py'), true_fn)
nt.assert_raises(IOError, path.get_py_filename, '"foo with spaces.py"')
nt.assert_raises(IOError, path.get_py_filename, "'foo with spaces.py'")
Thomas Kluyver
Use onlyif_unicode_paths in utils tests
r12166
@onlyif_unicode_paths
Fix for #875 Unicode Encoding Error
r6152 def test_unicode_in_filename():
Thomas Kluyver
Add description of test.
r6164 """When a file doesn't exist, the exception raised should be safe to call
str() on - i.e. in Python 2 it must only have ASCII characters.
https://github.com/ipython/ipython/issues/875
"""
Fix for #875 Unicode Encoding Error
r6152 try:
# these calls should not throw unicode encode exceptions
path.get_py_filename(u'fooéè.py', force_win32=False)
except IOError as ex:
str(ex)
Takafumi Arakaki
Move globlist and its test under utils.path
r8014
Takafumi Arakaki
Windows aware tests for shellglob
r8638 class TestShellGlob(object):
Takafumi Arakaki
Move globlist and its test under utils.path
r8014
Takafumi Arakaki
Windows aware tests for shellglob
r8638 @classmethod
def setUpClass(cls):
Thomas Kluyver
Fix tests in utils
r13373 cls.filenames_start_with_a = ['a0', 'a1', 'a2']
cls.filenames_end_with_b = ['0b', '1b', '2b']
Takafumi Arakaki
Windows aware tests for shellglob
r8638 cls.filenames = cls.filenames_start_with_a + cls.filenames_end_with_b
cls.tempdir = TemporaryDirectory()
td = cls.tempdir.name
Takafumi Arakaki
Move globlist and its test under utils.path
r8014
Takafumi Arakaki
Windows aware tests for shellglob
r8638 with cls.in_tempdir():
Takafumi Arakaki
Move globlist and its test under utils.path
r8014 # Create empty files
Takafumi Arakaki
Windows aware tests for shellglob
r8638 for fname in cls.filenames:
Takafumi Arakaki
Move globlist and its test under utils.path
r8014 open(os.path.join(td, fname), 'w').close()
Takafumi Arakaki
Windows aware tests for shellglob
r8638 @classmethod
def tearDownClass(cls):
cls.tempdir.cleanup()
@classmethod
@contextmanager
def in_tempdir(cls):
Thomas Kluyver
Python 3 compatibility for os.getcwdu()
r13447 save = py3compat.getcwd()
Takafumi Arakaki
Wrap yield of @contextmanager with try-finally block
r8640 try:
os.chdir(cls.tempdir.name)
yield
finally:
os.chdir(save)
Takafumi Arakaki
Windows aware tests for shellglob
r8638
def check_match(self, patterns, matches):
with self.in_tempdir():
# glob returns unordered list. that's why sorted is required.
nt.assert_equals(sorted(path.shellglob(patterns)),
sorted(matches))
def common_cases(self):
return [
(['*'], self.filenames),
(['a*'], self.filenames_start_with_a),
(['*c'], ['*c']),
(['*', 'a*', '*b', '*c'], self.filenames
+ self.filenames_start_with_a
+ self.filenames_end_with_b
+ ['*c']),
(['a[012]'], self.filenames_start_with_a),
]
@skip_win32
def test_match_posix(self):
for (patterns, matches) in self.common_cases() + [
([r'\*'], ['*']),
([r'a\*', 'a*'], ['a*'] + self.filenames_start_with_a),
([r'a\[012]'], ['a[012]']),
]:
yield (self.check_match, patterns, matches)
@skip_if_not_win32
def test_match_windows(self):
for (patterns, matches) in self.common_cases() + [
# In windows, backslash is interpreted as path
# separator. Therefore, you can't escape glob
# using it.
([r'a\*', 'a*'], [r'a\*'] + self.filenames_start_with_a),
([r'a\[012]'], [r'a\[012]']),
]:
yield (self.check_match, patterns, matches)
Takafumi Arakaki
Unescape failed glob patterns in shellglob
r8119
def test_unescape_glob():
nt.assert_equals(path.unescape_glob(r'\*\[\!\]\?'), '*[!]?')
Takafumi Arakaki
Fix unescape_glob: support escaping "\"
r8122 nt.assert_equals(path.unescape_glob(r'\\*'), r'\*')
nt.assert_equals(path.unescape_glob(r'\\\*'), r'\*')
nt.assert_equals(path.unescape_glob(r'\\a'), r'\a')
nt.assert_equals(path.unescape_glob(r'\a'), r'\a')
David Wolever
Add link_or_copy to IPython.utils.path
r11647
MinRK
test ensure_dir_exists
r16489 def test_ensure_dir_exists():
with TemporaryDirectory() as td:
John Kirkham
Revert "IPython/utils/tests/test_path.py: Decode UTF-8 paths before passing them to `os.path` functions. Required for running `docker build`s of `jupyter/notebook` containers."...
r21734 d = os.path.join(td, u'∂ir')
MinRK
test ensure_dir_exists
r16489 path.ensure_dir_exists(d) # create it
John Kirkham
Revert "IPython/utils/tests/test_path.py: Only use `encode` for system functions that cannot handle unicode."...
r21733 assert os.path.isdir(d)
MinRK
test ensure_dir_exists
r16489 path.ensure_dir_exists(d) # no-op
John Kirkham
Revert "IPython/utils/tests/test_path.py: Decode UTF-8 paths before passing them to `os.path` functions. Required for running `docker build`s of `jupyter/notebook` containers."...
r21734 f = os.path.join(td, u'Æ’ile')
John Kirkham
Revert "IPython/utils/tests/test_path.py: Only use `encode` for system functions that cannot handle unicode."...
r21733 open(f, 'w').close() # touch
MinRK
test ensure_dir_exists
r16489 with nt.assert_raises(IOError):
path.ensure_dir_exists(f)
David Wolever
Add link_or_copy to IPython.utils.path
r11647 class TestLinkOrCopy(object):
def setUp(self):
self.tempdir = TemporaryDirectory()
self.src = self.dst("src")
with open(self.src, "w") as f:
f.write("Hello, world!")
def tearDown(self):
self.tempdir.cleanup()
def dst(self, *args):
return os.path.join(self.tempdir.name, *args)
def assert_inode_not_equal(self, a, b):
nt.assert_not_equals(os.stat(a).st_ino, os.stat(b).st_ino,
"%r and %r do reference the same indoes" %(a, b))
def assert_inode_equal(self, a, b):
nt.assert_equals(os.stat(a).st_ino, os.stat(b).st_ino,
"%r and %r do not reference the same indoes" %(a, b))
David Wolever
Fix a couple typos
r11650 def assert_content_equal(self, a, b):
David Wolever
py3 doesn't have nested, py2.6 doesn't have multiple context managers
r11653 with open(a) as a_f:
with open(b) as b_f:
nt.assert_equals(a_f.read(), b_f.read())
David Wolever
Add link_or_copy to IPython.utils.path
r11647
@skip_win32
def test_link_successful(self):
dst = self.dst("target")
path.link_or_copy(self.src, dst)
self.assert_inode_equal(self.src, dst)
@skip_win32
def test_link_into_dir(self):
dst = self.dst("some_dir")
os.mkdir(dst)
path.link_or_copy(self.src, dst)
expected_dst = self.dst("some_dir", os.path.basename(self.src))
self.assert_inode_equal(self.src, expected_dst)
@skip_win32
def test_target_exists(self):
dst = self.dst("target")
open(dst, "w").close()
path.link_or_copy(self.src, dst)
self.assert_inode_equal(self.src, dst)
@skip_win32
def test_no_link(self):
real_link = os.link
try:
del os.link
dst = self.dst("target")
path.link_or_copy(self.src, dst)
David Wolever
Fix a couple typos
r11650 self.assert_content_equal(self.src, dst)
David Wolever
Add link_or_copy to IPython.utils.path
r11647 self.assert_inode_not_equal(self.src, dst)
finally:
os.link = real_link
@skip_if_not_win32
def test_windows(self):
dst = self.dst("target")
path.link_or_copy(self.src, dst)
David Wolever
Fix a couple typos
r11650 self.assert_content_equal(self.src, dst)
Thomas Kluyver
Don't link file again if it's already a correct hard link...
r20038
def test_link_twice(self):
# Linking the same file twice shouldn't leave duplicates around.
# See https://github.com/ipython/ipython/issues/6450
dst = self.dst('target')
path.link_or_copy(self.src, dst)
path.link_or_copy(self.src, dst)
self.assert_inode_equal(self.src, dst)
nt.assert_equal(sorted(os.listdir(self.tempdir.name)), ['src', 'target'])