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_
|
2020-12-29 04:35:30 +00:00
|
|
|
from hscommon.plat import ISWINDOWS
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2017-10-09 00:32:58 +00:00
|
|
|
from ..fs import File
|
2020-01-01 02:16:27 +00:00
|
|
|
from ..directories import (
|
|
|
|
Directories,
|
|
|
|
DirectoryState,
|
|
|
|
AlreadyThereError,
|
|
|
|
InvalidPathError,
|
|
|
|
)
|
2020-08-29 01:57:00 +00:00
|
|
|
from ..exclude import ExcludeList, ExcludeDict
|
2020-01-01 02:16:27 +00:00
|
|
|
|
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.
|
2020-01-01 02:16:27 +00:00
|
|
|
rootpath = rootpath["fs"]
|
2013-11-16 17:06:16 +00:00
|
|
|
rootpath.mkdir()
|
2020-01-01 02:16:27 +00:00
|
|
|
rootpath["dir1"].mkdir()
|
|
|
|
rootpath["dir2"].mkdir()
|
|
|
|
rootpath["dir3"].mkdir()
|
|
|
|
fp = rootpath["file1.test"].open("w")
|
|
|
|
fp.write("1")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["file2.test"].open("w")
|
|
|
|
fp.write("12")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["file3.test"].open("w")
|
|
|
|
fp.write("123")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["dir1"]["file1.test"].open("w")
|
|
|
|
fp.write("1")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["dir2"]["file2.test"].open("w")
|
|
|
|
fp.write("12")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["dir3"]["file3.test"].open("w")
|
|
|
|
fp.write("123")
|
2009-10-23 12:56:52 +00:00
|
|
|
fp.close()
|
|
|
|
return rootpath
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2016-05-29 19:02:39 +00:00
|
|
|
testpath = None
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
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
|
2020-01-01 02:16:27 +00:00
|
|
|
rootpath = testpath["onefile"]
|
2013-11-16 17:06:16 +00:00
|
|
|
rootpath.mkdir()
|
2020-01-01 02:16:27 +00:00
|
|
|
fp = rootpath["test.txt"].open("w")
|
|
|
|
fp.write("test_data")
|
2011-01-05 10:11:21 +00:00
|
|
|
fp.close()
|
|
|
|
create_fake_fs(testpath)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def teardown_module(module):
|
|
|
|
shutil.rmtree(str(module.testpath))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_empty():
|
|
|
|
d = Directories()
|
|
|
|
eq_(len(d), 0)
|
2020-01-01 02:16:27 +00:00
|
|
|
assert "foobar" not in d
|
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_add_path():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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
|
2020-01-01 02:16:27 +00:00
|
|
|
assert (p["foobar"]) in d
|
2013-11-16 17:06:16 +00:00
|
|
|
assert p.parent() not in d
|
2020-01-01 02:16:27 +00:00
|
|
|
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
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_AddPath_when_path_is_already_there():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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):
|
2020-01-01 02:16:27 +00:00
|
|
|
d.add_path(p["foobar"])
|
2011-01-05 10:11:21 +00:00
|
|
|
eq_(1, len(d))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_add_path_containing_paths_already_there():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_AddPath_non_latin(tmpdir):
|
2016-05-29 19:02:39 +00:00
|
|
|
p = Path(str(tmpdir))
|
2020-01-01 02:16:27 +00:00
|
|
|
to_add = p["unicode\u201a"]
|
2016-05-29 19:02:39 +00:00
|
|
|
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
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_del():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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
|
2020-01-01 02:16:27 +00:00
|
|
|
d.add_path(testpath["fs"])
|
2011-01-05 10:11:21 +00:00
|
|
|
del d[1]
|
|
|
|
eq_(1, len(d))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_states():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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))
|
2020-01-01 02:16:27 +00:00
|
|
|
eq_(DirectoryState.Reference, d.get_state(p["dir1"]))
|
2016-05-29 19:02:39 +00:00
|
|
|
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
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
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()
|
2020-01-01 02:16:27 +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
|
|
|
|
2020-01-01 02:16:27 +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()
|
2020-01-01 02:16:27 +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)
|
2020-01-01 02:16:27 +00:00
|
|
|
eq_(d.get_state(p["dir1"]), DirectoryState.Reference)
|
2014-03-15 21:31:33 +00:00
|
|
|
eq_(d.get_state(testpath), DirectoryState.Reference)
|
2011-01-05 10:11:21 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_get_files():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
p = testpath["fs"]
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p)
|
2020-01-01 02:16:27 +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:
|
2020-01-01 02:16:27 +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
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
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()
|
2020-01-01 02:16:27 +00:00
|
|
|
p = testpath["fs"]
|
2017-10-09 00:32:58 +00:00
|
|
|
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))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-04-12 11:22:29 +00:00
|
|
|
def test_get_folders():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
p = testpath["fs"]
|
2011-04-12 11:22:29 +00:00
|
|
|
d.add_path(p)
|
2020-01-01 02:16:27 +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)
|
2020-01-01 02:16:27 +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)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_get_files_with_inherited_exclusion():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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()))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_save_and_load(tmpdir):
|
|
|
|
d1 = Directories()
|
|
|
|
d2 = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
p1 = Path(str(tmpdir.join("p1")))
|
2013-11-16 17:06:16 +00:00
|
|
|
p1.mkdir()
|
2020-01-01 02:16:27 +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)
|
2020-01-01 02:16:27 +00:00
|
|
|
d1.set_state(p1["dir1"], DirectoryState.Excluded)
|
|
|
|
tmpxml = str(tmpdir.join("directories_testunit.xml"))
|
2011-01-05 10:11:21 +00:00
|
|
|
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))
|
2020-01-01 02:16:27 +00:00
|
|
|
eq_(DirectoryState.Excluded, d2.get_state(p1["dir1"]))
|
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
|
|
|
|
def test_invalid_path():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
p = Path("does_not_exist")
|
2011-01-05 10:11:21 +00:00
|
|
|
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))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_set_state_on_invalid_path():
|
|
|
|
d = Directories()
|
|
|
|
try:
|
2020-01-01 02:16:27 +00:00
|
|
|
d.set_state(Path("foobar",), DirectoryState.Normal)
|
2011-01-05 10:11:21 +00:00
|
|
|
except LookupError:
|
|
|
|
assert False
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_load_from_file_with_invalid_path(tmpdir):
|
2020-01-01 02:16:27 +00:00
|
|
|
# This test simulates a load from file resulting in a
|
|
|
|
# InvalidPath raise. Other directories must be loaded.
|
2011-01-05 10:11:21 +00:00
|
|
|
d1 = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
d1.add_path(testpath["onefile"])
|
|
|
|
# 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()
|
2020-01-01 02:16:27 +00:00
|
|
|
tmpxml = str(tmpdir.join("directories_testunit.xml"))
|
2011-01-05 10:11:21 +00:00
|
|
|
d1.save_to_file(tmpxml)
|
|
|
|
d2 = Directories()
|
|
|
|
d2.load_from_file(tmpxml)
|
|
|
|
eq_(1, len(d2))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_unicode_save(tmpdir):
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +00:00
|
|
|
p1 = Path(str(tmpdir))["hello\xe9"]
|
2013-11-16 17:06:16 +00:00
|
|
|
p1.mkdir()
|
2020-01-01 02:16:27 +00:00
|
|
|
p1["foo\xe9"].mkdir()
|
2011-01-05 10:11:21 +00:00
|
|
|
d.add_path(p1)
|
2020-01-01 02:16:27 +00:00
|
|
|
d.set_state(p1["foo\xe9"], DirectoryState.Excluded)
|
|
|
|
tmpxml = str(tmpdir.join("directories_testunit.xml"))
|
2011-01-05 10:11:21 +00:00
|
|
|
try:
|
|
|
|
d.save_to_file(tmpxml)
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
assert False
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_get_files_refreshes_its_directories():
|
|
|
|
d = Directories()
|
2020-01-01 02:16:27 +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)
|
2020-01-01 02:16:27 +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)))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
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()))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2011-01-05 10:11:21 +00:00
|
|
|
def test_get_state_returns_excluded_by_default_for_hidden_directories(tmpdir):
|
|
|
|
d = Directories()
|
|
|
|
p = Path(str(tmpdir))
|
2020-01-01 02:16:27 +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
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
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):
|
2020-08-29 01:57:00 +00:00
|
|
|
def _default_state_for_path(self, path):
|
2020-01-01 02:16:27 +00:00
|
|
|
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))
|
2020-01-01 02:16:27 +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)
|
2020-01-01 02:16:27 +00:00
|
|
|
eq_(d.get_state(p1["foobaz"]), DirectoryState.Normal)
|
|
|
|
eq_(d.get_state(p1["foobar"]), DirectoryState.Excluded)
|
|
|
|
eq_(len(list(d.get_files())), 1) # only the 'foobaz' file is there
|
2011-01-05 10:11:21 +00:00
|
|
|
# However, the default state can be changed
|
2020-01-01 02:16:27 +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)
|
2020-07-26 22:12:46 +00:00
|
|
|
|
|
|
|
|
2020-08-29 01:57:00 +00:00
|
|
|
class TestExcludeList():
|
|
|
|
def setup_method(self, method):
|
2020-09-01 21:02:58 +00:00
|
|
|
self.d = Directories(exclude_list=ExcludeList(union_regex=False))
|
2020-08-29 01:57:00 +00:00
|
|
|
|
|
|
|
def get_files_and_expect_num_result(self, num_result):
|
|
|
|
"""Calls get_files(), get the filenames only, print for debugging.
|
|
|
|
num_result is how many files are expected as a result."""
|
|
|
|
print(f"EXCLUDED REGEX: paths {self.d._exclude_list.compiled_paths} \
|
|
|
|
files: {self.d._exclude_list.compiled_files} all: {self.d._exclude_list.compiled}")
|
|
|
|
files = list(self.d.get_files())
|
|
|
|
files = [file.name for file in files]
|
|
|
|
print(f"FINAL FILES {files}")
|
|
|
|
eq_(len(files), num_result)
|
|
|
|
return files
|
|
|
|
|
|
|
|
def test_exclude_recycle_bin_by_default(self, tmpdir):
|
|
|
|
regex = r"^.*Recycle\.Bin$"
|
|
|
|
self.d._exclude_list.add(regex)
|
|
|
|
self.d._exclude_list.mark(regex)
|
|
|
|
p1 = Path(str(tmpdir))
|
|
|
|
p1["$Recycle.Bin"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["subdir"].mkdir()
|
|
|
|
self.d.add_path(p1)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]), DirectoryState.Excluded)
|
|
|
|
# By default, subdirs should be excluded too, but this can be overriden separately
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Excluded)
|
|
|
|
self.d.set_state(p1["$Recycle.Bin"]["subdir"], DirectoryState.Normal)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Normal)
|
|
|
|
|
|
|
|
def test_exclude_refined(self, tmpdir):
|
|
|
|
regex1 = r"^\$Recycle\.Bin$"
|
|
|
|
self.d._exclude_list.add(regex1)
|
|
|
|
self.d._exclude_list.mark(regex1)
|
|
|
|
p1 = Path(str(tmpdir))
|
|
|
|
p1["$Recycle.Bin"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["somefile.png"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["some_unwanted_file.jpg"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["subdir"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["subdir"]["somesubdirfile.png"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["subdir"]["unwanted_subdirfile.gif"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["subdar"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["subdar"]["somesubdarfile.jpeg"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["subdar"]["unwanted_subdarfile.png"].open("w").close()
|
|
|
|
self.d.add_path(p1["$Recycle.Bin"])
|
|
|
|
|
|
|
|
# Filter should set the default state to Excluded
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]), DirectoryState.Excluded)
|
|
|
|
# The subdir should inherit its parent state
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Excluded)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdar"]), DirectoryState.Excluded)
|
|
|
|
# Override a child path's state
|
|
|
|
self.d.set_state(p1["$Recycle.Bin"]["subdir"], DirectoryState.Normal)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Normal)
|
|
|
|
# Parent should keep its default state, and the other child too
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]), DirectoryState.Excluded)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdar"]), DirectoryState.Excluded)
|
|
|
|
# print(f"get_folders(): {[x for x in self.d.get_folders()]}")
|
|
|
|
|
|
|
|
# only the 2 files directly under the Normal directory
|
|
|
|
files = self.get_files_and_expect_num_result(2)
|
|
|
|
assert "somefile.png" not in files
|
|
|
|
assert "some_unwanted_file.jpg" not in files
|
|
|
|
assert "somesubdarfile.jpeg" not in files
|
|
|
|
assert "unwanted_subdarfile.png" not in files
|
|
|
|
assert "somesubdirfile.png" in files
|
|
|
|
assert "unwanted_subdirfile.gif" in files
|
|
|
|
# Overriding the parent should enable all children
|
|
|
|
self.d.set_state(p1["$Recycle.Bin"], DirectoryState.Normal)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdar"]), DirectoryState.Normal)
|
|
|
|
# all files there
|
|
|
|
files = self.get_files_and_expect_num_result(6)
|
|
|
|
assert "somefile.png" in files
|
|
|
|
assert "some_unwanted_file.jpg" in files
|
|
|
|
|
|
|
|
# This should still filter out files under directory, despite the Normal state
|
|
|
|
regex2 = r".*unwanted.*"
|
|
|
|
self.d._exclude_list.add(regex2)
|
|
|
|
self.d._exclude_list.mark(regex2)
|
|
|
|
files = self.get_files_and_expect_num_result(3)
|
|
|
|
assert "somefile.png" in files
|
|
|
|
assert "some_unwanted_file.jpg" not in files
|
|
|
|
assert "unwanted_subdirfile.gif" not in files
|
|
|
|
assert "unwanted_subdarfile.png" not in files
|
|
|
|
|
2020-12-29 04:35:30 +00:00
|
|
|
if ISWINDOWS:
|
|
|
|
regex3 = r".*Recycle\.Bin\\.*unwanted.*subdirfile.*"
|
|
|
|
else:
|
|
|
|
regex3 = r".*Recycle\.Bin\/.*unwanted.*subdirfile.*"
|
2020-08-29 01:57:00 +00:00
|
|
|
self.d._exclude_list.rename(regex2, regex3)
|
|
|
|
assert self.d._exclude_list.error(regex3) is None
|
|
|
|
# print(f"get_folders(): {[x for x in self.d.get_folders()]}")
|
|
|
|
# Directory shouldn't change its state here, unless explicitely done by user
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Normal)
|
|
|
|
files = self.get_files_and_expect_num_result(5)
|
|
|
|
assert "unwanted_subdirfile.gif" not in files
|
|
|
|
assert "unwanted_subdarfile.png" in files
|
|
|
|
|
|
|
|
# using end of line character should only filter the directory, or file ending with subdir
|
|
|
|
regex4 = r".*subdir$"
|
|
|
|
self.d._exclude_list.rename(regex3, regex4)
|
|
|
|
assert self.d._exclude_list.error(regex4) is None
|
|
|
|
p1["$Recycle.Bin"]["subdar"]["file_ending_with_subdir"].open("w").close()
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Excluded)
|
|
|
|
files = self.get_files_and_expect_num_result(4)
|
|
|
|
assert "file_ending_with_subdir" not in files
|
|
|
|
assert "somesubdarfile.jpeg" in files
|
|
|
|
assert "somesubdirfile.png" not in files
|
|
|
|
assert "unwanted_subdirfile.gif" not in files
|
|
|
|
self.d.set_state(p1["$Recycle.Bin"]["subdir"], DirectoryState.Normal)
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Normal)
|
|
|
|
# print(f"get_folders(): {[x for x in self.d.get_folders()]}")
|
|
|
|
files = self.get_files_and_expect_num_result(6)
|
|
|
|
assert "file_ending_with_subdir" not in files
|
|
|
|
assert "somesubdirfile.png" in files
|
|
|
|
assert "unwanted_subdirfile.gif" in files
|
|
|
|
|
|
|
|
regex5 = r".*subdir.*"
|
|
|
|
self.d._exclude_list.rename(regex4, regex5)
|
|
|
|
# Files containing substring should be filtered
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["subdir"]), DirectoryState.Normal)
|
|
|
|
# The path should not match, only the filename, the "subdir" in the directory name shouldn't matter
|
|
|
|
p1["$Recycle.Bin"]["subdir"]["file_which_shouldnt_match"].open("w").close()
|
|
|
|
files = self.get_files_and_expect_num_result(5)
|
|
|
|
assert "somesubdirfile.png" not in files
|
|
|
|
assert "unwanted_subdirfile.gif" not in files
|
|
|
|
assert "file_ending_with_subdir" not in files
|
|
|
|
assert "file_which_shouldnt_match" in files
|
|
|
|
|
|
|
|
def test_japanese_unicode(self, tmpdir):
|
|
|
|
p1 = Path(str(tmpdir))
|
|
|
|
p1["$Recycle.Bin"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["somerecycledfile.png"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["some_unwanted_file.jpg"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["subdir"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["subdir"]["過去白濁物語~]_カラー.jpg"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["思叫物語"].mkdir()
|
|
|
|
p1["$Recycle.Bin"]["思叫物語"]["なししろ会う前"].open("w").close()
|
|
|
|
p1["$Recycle.Bin"]["思叫物語"]["堂~ロ"].open("w").close()
|
|
|
|
self.d.add_path(p1["$Recycle.Bin"])
|
|
|
|
regex3 = r".*物語.*"
|
|
|
|
self.d._exclude_list.add(regex3)
|
|
|
|
self.d._exclude_list.mark(regex3)
|
|
|
|
# print(f"get_folders(): {[x for x in self.d.get_folders()]}")
|
|
|
|
eq_(self.d.get_state(p1["$Recycle.Bin"]["思叫物語"]), DirectoryState.Excluded)
|
|
|
|
files = self.get_files_and_expect_num_result(2)
|
|
|
|
assert "過去白濁物語~]_カラー.jpg" not in files
|
|
|
|
assert "なししろ会う前" not in files
|
|
|
|
assert "堂~ロ" not in files
|
|
|
|
# using end of line character should only filter that directory, not affecting its files
|
|
|
|
regex4 = r".*物語$"
|
|
|
|
self.d._exclude_list.rename(regex3, regex4)
|
|
|
|
assert self.d._exclude_list.error(regex4) is None
|
|
|
|
self.d.set_state(p1["$Recycle.Bin"]["思叫物語"], DirectoryState.Normal)
|
|
|
|
files = self.get_files_and_expect_num_result(5)
|
|
|
|
assert "過去白濁物語~]_カラー.jpg" in files
|
|
|
|
assert "なししろ会う前" in files
|
|
|
|
assert "堂~ロ" in files
|
|
|
|
|
|
|
|
def test_get_state_returns_excluded_for_hidden_directories_and_files(self, tmpdir):
|
|
|
|
# This regex only work for files, not paths
|
|
|
|
regex = r"^\..*$"
|
|
|
|
self.d._exclude_list.add(regex)
|
|
|
|
self.d._exclude_list.mark(regex)
|
|
|
|
p1 = Path(str(tmpdir))
|
|
|
|
p1["foobar"].mkdir()
|
|
|
|
p1["foobar"][".hidden_file.txt"].open("w").close()
|
|
|
|
p1["foobar"][".hidden_dir"].mkdir()
|
|
|
|
p1["foobar"][".hidden_dir"]["foobar.jpg"].open("w").close()
|
|
|
|
p1["foobar"][".hidden_dir"][".hidden_subfile.png"].open("w").close()
|
|
|
|
self.d.add_path(p1["foobar"])
|
|
|
|
# It should not inherit its parent's state originally
|
|
|
|
eq_(self.d.get_state(p1["foobar"][".hidden_dir"]), DirectoryState.Excluded)
|
|
|
|
self.d.set_state(p1["foobar"][".hidden_dir"], DirectoryState.Normal)
|
|
|
|
# The files should still be filtered
|
|
|
|
files = self.get_files_and_expect_num_result(1)
|
2020-12-29 04:35:30 +00:00
|
|
|
eq_(len(self.d._exclude_list.compiled_paths), 0)
|
|
|
|
eq_(len(self.d._exclude_list.compiled_files), 1)
|
2020-08-29 01:57:00 +00:00
|
|
|
assert ".hidden_file.txt" not in files
|
|
|
|
assert ".hidden_subfile.png" not in files
|
|
|
|
assert "foobar.jpg" in files
|
|
|
|
|
|
|
|
|
|
|
|
class TestExcludeDict(TestExcludeList):
|
|
|
|
def setup_method(self, method):
|
2020-09-01 21:02:58 +00:00
|
|
|
self.d = Directories(exclude_list=ExcludeDict(union_regex=False))
|
2020-08-29 01:57:00 +00:00
|
|
|
|
|
|
|
|
2020-09-01 21:02:58 +00:00
|
|
|
class TestExcludeListunion(TestExcludeList):
|
2020-08-29 01:57:00 +00:00
|
|
|
def setup_method(self, method):
|
2020-09-01 21:02:58 +00:00
|
|
|
self.d = Directories(exclude_list=ExcludeList(union_regex=True))
|
2020-08-29 01:57:00 +00:00
|
|
|
|
|
|
|
|
2020-09-01 21:02:58 +00:00
|
|
|
class TestExcludeDictunion(TestExcludeList):
|
2020-08-29 01:57:00 +00:00
|
|
|
def setup_method(self, method):
|
2020-09-01 21:02:58 +00:00
|
|
|
self.d = Directories(exclude_list=ExcludeDict(union_regex=True))
|