2016-05-29 19:02:39 +00:00
|
|
|
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2009-06-07 14:26:46 +00:00
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
import os
|
|
|
|
import time
|
2011-01-05 10:11:21 +00:00
|
|
|
import tempfile
|
|
|
|
import shutil
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
from pytest import raises
|
2011-01-11 10:59:53 +00:00
|
|
|
from hscommon.path import Path
|
2011-01-05 10:11:21 +00:00
|
|
|
from hscommon.testutil import eq_
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2017-10-09 00:32:58 +00:00
|
|
|
from ..fs import File
|
2016-05-29 19:02:39 +00:00
|
|
|
from ..directories import Directories, DirectoryState, AlreadyThereError, InvalidPathError
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2009-10-23 12:56:52 +00:00
|
|
|
def create_fake_fs(rootpath):
|
2011-01-05 10:11:21 +00:00
|
|
|
# We have it as a separate function because other units are using it.
|
2013-11-16 17:06:16 +00:00
|
|
|
rootpath = rootpath['fs']
|
|
|
|
rootpath.mkdir()
|
|
|
|
rootpath['dir1'].mkdir()
|
|
|
|
rootpath['dir2'].mkdir()
|
|
|
|
rootpath['dir3'].mkdir()
|
|
|
|
fp = rootpath['file1.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('1')
|
|
|
|
fp.close()
|
2013-11-16 17:06:16 +00:00
|
|
|
fp = rootpath['file2.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('12')
|
|
|
|
fp.close()
|
2013-11-16 17:06:16 +00:00
|
|
|
fp = rootpath['file3.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('123')
|
|
|
|
fp.close()
|
2013-11-16 17:06:16 +00:00
|
|
|
fp = rootpath['dir1']['file1.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('1')
|
|
|
|
fp.close()
|
2013-11-16 17:06:16 +00:00
|
|
|
fp = rootpath['dir2']['file2.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('12')
|
|
|
|
fp.close()
|
2013-11-16 17:06:16 +00:00
|
|
|
fp = rootpath['dir3']['file3.test'].open('w')
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.write('123')
|
|
|
|
fp.close()
|
|
|
|
return rootpath
|
|
|
|
|
2016-05-29 19:02:39 +00:00
|
|
|
testpath = None
|
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def setup_module(module):
|
|
|
|
# In this unit, we have tests depending on two directory structure. One with only one file in it
|
|
|
|
# and another with a more complex structure.
|
|
|
|
testpath = Path(tempfile.mkdtemp())
|
|
|
|
module.testpath = testpath
|
2013-11-16 17:06:16 +00:00
|
|
|
rootpath = testpath['onefile']
|
|
|
|
rootpath.mkdir()
|
|
|
|
fp = rootpath['test.txt'].open('w')
|
2011-01-05 10:11:21 +00:00
|
|
|
fp.write('test_data')
|
|
|
|
fp.close()
|
|
|
|
create_fake_fs(testpath)
|
|
|
|
|
|
|
|
def teardown_module(module):
|
|
|
|
shutil.rmtree(str(module.testpath))
|
|
|
|
|
|
|
|
def test_empty():
|
|
|
|
d = Directories()
|
|
|
|
eq_(len(d), 0)
|
|
|
|
assert 'foobar' not in d
|
|
|
|
|
|
|
|
def test_add_path():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['onefile']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2016-05-29 19:02:39 +00:00
|
|
|
eq_(1, len(d))
|
2011-01-05 10:11:21 +00:00
|
|
|
assert p in d
|
2013-11-16 17:06:16 +00:00
|
|
|
assert (p['foobar']) in d
|
|
|
|
assert p.parent() not in d
|
|
|
|
p = testpath['fs']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2016-05-29 19:02:39 +00:00
|
|
|
eq_(2, len(d))
|
2011-01-05 10:11:21 +00:00
|
|
|
assert p in d
|
|
|
|
|
|
|
|
def test_AddPath_when_path_is_already_there():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['onefile']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
|
|
|
with raises(AlreadyThereError):
|
2009-06-01 09:55:11 +00:00
|
|
|
d.add_path(p)
|
2011-01-05 10:11:21 +00:00
|
|
|
with raises(AlreadyThereError):
|
2013-11-16 17:06:16 +00:00
|
|
|
d.add_path(p['foobar'])
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(1, len(d))
|
|
|
|
|
|
|
|
def test_add_path_containing_paths_already_there():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
d.add_path(testpath['onefile'])
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(1, len(d))
|
|
|
|
d.add_path(testpath)
|
|
|
|
eq_(len(d), 1)
|
|
|
|
eq_(d[0], testpath)
|
|
|
|
|
|
|
|
def test_AddPath_non_latin(tmpdir):
|
2016-05-29 19:02:39 +00:00
|
|
|
p = Path(str(tmpdir))
|
|
|
|
to_add = p['unicode\u201a']
|
|
|
|
os.mkdir(str(to_add))
|
|
|
|
d = Directories()
|
|
|
|
try:
|
|
|
|
d.add_path(to_add)
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
assert False
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_del():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
d.add_path(testpath['onefile'])
|
2011-01-05 10:11:21 +00:00
|
|
|
try:
|
2009-06-01 09:55:11 +00:00
|
|
|
del d[1]
|
2011-01-05 10:11:21 +00:00
|
|
|
assert False
|
|
|
|
except IndexError:
|
|
|
|
pass
|
2013-11-16 17:06:16 +00:00
|
|
|
d.add_path(testpath['fs'])
|
2011-01-05 10:11:21 +00:00
|
|
|
del d[1]
|
|
|
|
eq_(1, len(d))
|
|
|
|
|
|
|
|
def test_states():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['onefile']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2016-05-29 19:02:39 +00:00
|
|
|
eq_(DirectoryState.Normal, d.get_state(p))
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(p, DirectoryState.Reference)
|
2016-05-29 19:02:39 +00:00
|
|
|
eq_(DirectoryState.Reference, d.get_state(p))
|
|
|
|
eq_(DirectoryState.Reference, d.get_state(p['dir1']))
|
|
|
|
eq_(1, len(d.states))
|
|
|
|
eq_(p, list(d.states.keys())[0])
|
|
|
|
eq_(DirectoryState.Reference, d.states[p])
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_get_state_with_path_not_there():
|
2011-04-12 11:22:29 +00:00
|
|
|
# When the path's not there, just return DirectoryState.Normal
|
2011-01-05 10:11:21 +00:00
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
d.add_path(testpath['onefile'])
|
2011-04-12 11:22:29 +00:00
|
|
|
eq_(d.get_state(testpath), DirectoryState.Normal)
|
2011-01-05 10:11:21 +00:00
|
|
|
|
2014-03-15 21:31:33 +00:00
|
|
|
def test_states_overwritten_when_larger_directory_eat_smaller_ones():
|
|
|
|
# ref #248
|
|
|
|
# When setting the state of a folder, we overwrite previously set states for subfolders.
|
2011-01-05 10:11:21 +00:00
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['onefile']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(p, DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(testpath)
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(testpath, DirectoryState.Reference)
|
2014-03-15 21:31:33 +00:00
|
|
|
eq_(d.get_state(p), DirectoryState.Reference)
|
|
|
|
eq_(d.get_state(p['dir1']), DirectoryState.Reference)
|
|
|
|
eq_(d.get_state(testpath), DirectoryState.Reference)
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_get_files():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['fs']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2013-11-16 17:06:16 +00:00
|
|
|
d.set_state(p['dir1'], DirectoryState.Reference)
|
|
|
|
d.set_state(p['dir2'], DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
files = list(d.get_files())
|
|
|
|
eq_(5, len(files))
|
|
|
|
for f in files:
|
2013-11-16 17:06:16 +00:00
|
|
|
if f.path.parent() == p['dir1']:
|
2011-01-05 10:11:21 +00:00
|
|
|
assert f.is_ref
|
|
|
|
else:
|
|
|
|
assert not f.is_ref
|
|
|
|
|
2017-10-09 00:32:58 +00:00
|
|
|
def test_get_files_with_folders():
|
|
|
|
# When fileclasses handle folders, return them and stop recursing!
|
|
|
|
class FakeFile(File):
|
|
|
|
@classmethod
|
|
|
|
def can_handle(cls, path):
|
|
|
|
return True
|
|
|
|
|
|
|
|
d = Directories()
|
|
|
|
p = testpath['fs']
|
|
|
|
d.add_path(p)
|
|
|
|
files = list(d.get_files(fileclasses=[FakeFile]))
|
|
|
|
# We have the 3 root files and the 3 root dirs
|
|
|
|
eq_(6, len(files))
|
|
|
|
|
2011-04-12 11:22:29 +00:00
|
|
|
def test_get_folders():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['fs']
|
2011-04-12 11:22:29 +00:00
|
|
|
d.add_path(p)
|
2013-11-16 17:06:16 +00:00
|
|
|
d.set_state(p['dir1'], DirectoryState.Reference)
|
|
|
|
d.set_state(p['dir2'], DirectoryState.Excluded)
|
2011-04-12 11:22:29 +00:00
|
|
|
folders = list(d.get_folders())
|
|
|
|
eq_(len(folders), 3)
|
|
|
|
ref = [f for f in folders if f.is_ref]
|
|
|
|
not_ref = [f for f in folders if not f.is_ref]
|
|
|
|
eq_(len(ref), 1)
|
2013-11-16 17:06:16 +00:00
|
|
|
eq_(ref[0].path, p['dir1'])
|
2011-04-12 11:22:29 +00:00
|
|
|
eq_(len(not_ref), 2)
|
|
|
|
eq_(ref[0].size, 1)
|
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_get_files_with_inherited_exclusion():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['onefile']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(p, DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_([], list(d.get_files()))
|
|
|
|
|
|
|
|
def test_save_and_load(tmpdir):
|
|
|
|
d1 = Directories()
|
|
|
|
d2 = Directories()
|
|
|
|
p1 = Path(str(tmpdir.join('p1')))
|
2013-11-16 17:06:16 +00:00
|
|
|
p1.mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
p2 = Path(str(tmpdir.join('p2')))
|
2013-11-16 17:06:16 +00:00
|
|
|
p2.mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
d1.add_path(p1)
|
|
|
|
d1.add_path(p2)
|
2011-04-12 11:22:29 +00:00
|
|
|
d1.set_state(p1, DirectoryState.Reference)
|
2013-11-16 17:06:16 +00:00
|
|
|
d1.set_state(p1['dir1'], DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
tmpxml = str(tmpdir.join('directories_testunit.xml'))
|
|
|
|
d1.save_to_file(tmpxml)
|
|
|
|
d2.load_from_file(tmpxml)
|
|
|
|
eq_(2, len(d2))
|
2016-05-29 19:02:39 +00:00
|
|
|
eq_(DirectoryState.Reference, d2.get_state(p1))
|
|
|
|
eq_(DirectoryState.Excluded, d2.get_state(p1['dir1']))
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_invalid_path():
|
|
|
|
d = Directories()
|
|
|
|
p = Path('does_not_exist')
|
|
|
|
with raises(InvalidPathError):
|
2009-06-01 09:55:11 +00:00
|
|
|
d.add_path(p)
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(0, len(d))
|
|
|
|
|
|
|
|
def test_set_state_on_invalid_path():
|
|
|
|
d = Directories()
|
|
|
|
try:
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(Path('foobar',), DirectoryState.Normal)
|
2011-01-05 10:11:21 +00:00
|
|
|
except LookupError:
|
|
|
|
assert False
|
|
|
|
|
|
|
|
def test_load_from_file_with_invalid_path(tmpdir):
|
|
|
|
#This test simulates a load from file resulting in a
|
|
|
|
#InvalidPath raise. Other directories must be loaded.
|
|
|
|
d1 = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
d1.add_path(testpath['onefile'])
|
2011-01-05 10:11:21 +00:00
|
|
|
#Will raise InvalidPath upon loading
|
|
|
|
p = Path(str(tmpdir.join('toremove')))
|
2013-11-16 17:06:16 +00:00
|
|
|
p.mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
d1.add_path(p)
|
2013-11-16 17:06:16 +00:00
|
|
|
p.rmdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
tmpxml = str(tmpdir.join('directories_testunit.xml'))
|
|
|
|
d1.save_to_file(tmpxml)
|
|
|
|
d2 = Directories()
|
|
|
|
d2.load_from_file(tmpxml)
|
|
|
|
eq_(1, len(d2))
|
|
|
|
|
|
|
|
def test_unicode_save(tmpdir):
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p1 = Path(str(tmpdir))['hello\xe9']
|
|
|
|
p1.mkdir()
|
|
|
|
p1['foo\xe9'].mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p1)
|
2013-11-16 17:06:16 +00:00
|
|
|
d.set_state(p1['foo\xe9'], DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
tmpxml = str(tmpdir.join('directories_testunit.xml'))
|
|
|
|
try:
|
|
|
|
d.save_to_file(tmpxml)
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
assert False
|
|
|
|
|
|
|
|
def test_get_files_refreshes_its_directories():
|
|
|
|
d = Directories()
|
2013-11-16 17:06:16 +00:00
|
|
|
p = testpath['fs']
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
|
|
|
files = d.get_files()
|
|
|
|
eq_(6, len(list(files)))
|
|
|
|
time.sleep(1)
|
2013-11-16 17:06:16 +00:00
|
|
|
os.remove(str(p['dir1']['file1.test']))
|
2011-01-05 10:11:21 +00:00
|
|
|
files = d.get_files()
|
|
|
|
eq_(5, len(list(files)))
|
|
|
|
|
|
|
|
def test_get_files_does_not_choke_on_non_existing_directories(tmpdir):
|
|
|
|
d = Directories()
|
|
|
|
p = Path(str(tmpdir))
|
|
|
|
d.add_path(p)
|
2013-11-16 17:06:16 +00:00
|
|
|
p.rmtree()
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_([], list(d.get_files()))
|
|
|
|
|
|
|
|
def test_get_state_returns_excluded_by_default_for_hidden_directories(tmpdir):
|
|
|
|
d = Directories()
|
|
|
|
p = Path(str(tmpdir))
|
2013-11-16 17:06:16 +00:00
|
|
|
hidden_dir_path = p['.foo']
|
|
|
|
p['.foo'].mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2011-04-12 11:22:29 +00:00
|
|
|
eq_(d.get_state(hidden_dir_path), DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
# But it can be overriden
|
2011-04-12 11:22:29 +00:00
|
|
|
d.set_state(hidden_dir_path, DirectoryState.Normal)
|
|
|
|
eq_(d.get_state(hidden_dir_path), DirectoryState.Normal)
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_default_path_state_override(tmpdir):
|
|
|
|
# It's possible for a subclass to override the default state of a path
|
|
|
|
class MyDirectories(Directories):
|
|
|
|
def _default_state_for_path(self, path):
|
|
|
|
if 'foobar' in path:
|
2011-04-12 11:22:29 +00:00
|
|
|
return DirectoryState.Excluded
|
2016-05-29 19:02:39 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
d = MyDirectories()
|
|
|
|
p1 = Path(str(tmpdir))
|
2013-11-16 17:06:16 +00:00
|
|
|
p1['foobar'].mkdir()
|
|
|
|
p1['foobar/somefile'].open('w').close()
|
|
|
|
p1['foobaz'].mkdir()
|
|
|
|
p1['foobaz/somefile'].open('w').close()
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p1)
|
2013-11-16 17:06:16 +00:00
|
|
|
eq_(d.get_state(p1['foobaz']), DirectoryState.Normal)
|
|
|
|
eq_(d.get_state(p1['foobar']), DirectoryState.Excluded)
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(len(list(d.get_files())), 1) # only the 'foobaz' file is there
|
|
|
|
# However, the default state can be changed
|
2013-11-16 17:06:16 +00:00
|
|
|
d.set_state(p1['foobar'], DirectoryState.Normal)
|
|
|
|
eq_(d.get_state(p1['foobar']), DirectoryState.Normal)
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(len(list(d.get_files())), 2)
|
|
|
|
|