Merge #385 Test and clean up pungi.linker
This commit is contained in:
commit
3a68a93532
127
pungi/linker.py
127
pungi/linker.py
@ -46,12 +46,10 @@ class LinkerThread(WorkerThread):
|
||||
|
||||
|
||||
class Linker(kobo.log.LoggingBase):
|
||||
def __init__(self, ignore_existing=False, always_copy=None, test=False, logger=None):
|
||||
def __init__(self, always_copy=None, test=False, logger=None):
|
||||
kobo.log.LoggingBase.__init__(self, logger=logger)
|
||||
self.ignore_existing = ignore_existing
|
||||
self.always_copy = always_copy or []
|
||||
self.test = test
|
||||
self._precache = {}
|
||||
self._inode_map = {}
|
||||
|
||||
def _is_same_type(self, path1, path2):
|
||||
@ -64,11 +62,10 @@ class Linker(kobo.log.LoggingBase):
|
||||
return True
|
||||
|
||||
def _is_same(self, path1, path2):
|
||||
if self.ignore_existing:
|
||||
return True
|
||||
if path1 == path2:
|
||||
return True
|
||||
if os.path.islink(path2) and not os.path.exists(path2):
|
||||
# Broken symlink
|
||||
return True
|
||||
if os.path.getsize(path1) != os.path.getsize(path2):
|
||||
return False
|
||||
@ -102,21 +99,6 @@ class Linker(kobo.log.LoggingBase):
|
||||
else:
|
||||
raise
|
||||
|
||||
def hardlink_on_dest(self, src, dst):
|
||||
if src == dst:
|
||||
return
|
||||
|
||||
if os.path.exists(src):
|
||||
st = os.stat(src)
|
||||
file_name = os.path.basename(src)
|
||||
precache_key = (file_name, int(st.st_mtime), st.st_size)
|
||||
if precache_key in self._precache:
|
||||
self.log_warning("HIT %s" % str(precache_key))
|
||||
cached_path = self._precache[precache_key]["path"]
|
||||
self.hardlink(cached_path, dst)
|
||||
return True
|
||||
return False
|
||||
|
||||
def hardlink(self, src, dst):
|
||||
if src == dst:
|
||||
return
|
||||
@ -187,44 +169,9 @@ class Linker(kobo.log.LoggingBase):
|
||||
# XXX:
|
||||
raise OSError(errno.EEXIST, "File exists")
|
||||
|
||||
def _put_into_cache(self, path):
|
||||
def get_stats(item):
|
||||
return [item[i] for i in ("st_dev", "st_ino", "st_mtime", "st_size")]
|
||||
|
||||
filename = os.path.basename(path)
|
||||
st = os.stat(path)
|
||||
item = {
|
||||
"st_dev": st.st_dev,
|
||||
"st_ino": st.st_ino,
|
||||
"st_mtime": int(st.st_mtime),
|
||||
"st_size": st.st_size,
|
||||
"path": path,
|
||||
}
|
||||
precache_key = (filename, int(st.st_mtime), st.st_size)
|
||||
if precache_key in self._precache:
|
||||
if get_stats(self._precache[precache_key]) != get_stats(item):
|
||||
# Files have same mtime and size but device
|
||||
# or/and inode is/are different.
|
||||
self.log_debug("Caching failed, files are different: %s, %s"
|
||||
% (path, self._precache[precache_key]["path"]))
|
||||
return False
|
||||
self._precache[precache_key] = item
|
||||
return True
|
||||
|
||||
def scan(self, path):
|
||||
"""Recursively scan a directory and populate the cache."""
|
||||
msg = "Scanning directory: %s" % path
|
||||
self.log_debug("[BEGIN] %s" % msg)
|
||||
for dirpath, _, filenames in os.walk(path):
|
||||
for filename in filenames:
|
||||
path = os.path.join(dirpath, filename)
|
||||
self._put_into_cache(path)
|
||||
self.log_debug("[DONE ] %s" % msg)
|
||||
|
||||
def _link_file(self, src, dst, link_type):
|
||||
if link_type == "hardlink":
|
||||
if not self.hardlink_on_dest(src, dst):
|
||||
self.hardlink(src, dst)
|
||||
self.hardlink(src, dst)
|
||||
elif link_type == "copy":
|
||||
self.copy(src, dst)
|
||||
elif link_type in ("symlink", "abspath-symlink"):
|
||||
@ -234,17 +181,16 @@ class Linker(kobo.log.LoggingBase):
|
||||
relative = link_type != "abspath-symlink"
|
||||
self.symlink(src, dst, relative)
|
||||
elif link_type == "hardlink-or-copy":
|
||||
if not self.hardlink_on_dest(src, dst):
|
||||
src_stat = os.stat(src)
|
||||
dst_stat = os.stat(os.path.dirname(dst))
|
||||
if src_stat.st_dev == dst_stat.st_dev:
|
||||
self.hardlink(src, dst)
|
||||
else:
|
||||
self.copy(src, dst)
|
||||
src_stat = os.stat(src)
|
||||
dst_stat = os.stat(os.path.dirname(dst))
|
||||
if src_stat.st_dev == dst_stat.st_dev:
|
||||
self.hardlink(src, dst)
|
||||
else:
|
||||
self.copy(src, dst)
|
||||
else:
|
||||
raise ValueError("Unknown link_type: %s" % link_type)
|
||||
|
||||
def link(self, src, dst, link_type="hardlink-or-copy", scan=True):
|
||||
def link(self, src, dst, link_type="hardlink-or-copy"):
|
||||
"""Link directories recursively."""
|
||||
if os.path.isfile(src) or os.path.islink(src):
|
||||
self._link_file(src, dst, link_type)
|
||||
@ -262,56 +208,3 @@ class Linker(kobo.log.LoggingBase):
|
||||
src_path = os.path.join(src, i)
|
||||
dst_path = os.path.join(dst, i)
|
||||
self.link(src_path, dst_path, link_type)
|
||||
|
||||
return
|
||||
|
||||
if scan:
|
||||
self.scan(dst)
|
||||
|
||||
self.log_debug("Start linking")
|
||||
|
||||
src = os.path.abspath(src)
|
||||
for dirpath, dirnames, filenames in os.walk(src):
|
||||
rel_path = dirpath[len(src):].lstrip("/")
|
||||
dst_path = os.path.join(dst, rel_path)
|
||||
|
||||
# Dir check and creation
|
||||
if not os.path.isdir(dst_path):
|
||||
if os.path.exists(dst_path):
|
||||
# At destination there is a file with same name but
|
||||
# it is not a directory.
|
||||
self.log_error("Cannot create directory %s" % dst_path)
|
||||
dirnames = [] # noqa
|
||||
continue
|
||||
os.mkdir(dst_path)
|
||||
|
||||
# Process all files in directory
|
||||
for filename in filenames:
|
||||
path = os.path.join(dirpath, filename)
|
||||
st = os.stat(path)
|
||||
# Check cache
|
||||
# Same file already exists at a destination dir =>
|
||||
# Create the new file by hardlink to the cached one.
|
||||
precache_key = (filename, int(st.st_mtime), st.st_size)
|
||||
full_dst_path = os.path.join(dst_path, filename)
|
||||
if precache_key in self._precache:
|
||||
# Cache hit
|
||||
cached_path = self._precache[precache_key]["path"]
|
||||
self.log_debug("Cache HIT for %s [%s]" % (path, cached_path))
|
||||
if cached_path != full_dst_path:
|
||||
self.hardlink(cached_path, full_dst_path)
|
||||
else:
|
||||
self.log_debug("Files are same, skip hardlinking")
|
||||
continue
|
||||
# Cache miss
|
||||
# Copy the new file and put it to the cache.
|
||||
try:
|
||||
self.copy(path, full_dst_path)
|
||||
except Exception as ex:
|
||||
print(ex)
|
||||
print(path, open(path, "r").read())
|
||||
print(full_dst_path, open(full_dst_path, "r").read())
|
||||
print(os.stat(path))
|
||||
print(os.stat(full_dst_path))
|
||||
os.utime(full_dst_path, (st.st_atime, int(st.st_mtime)))
|
||||
self._put_into_cache(full_dst_path)
|
||||
|
348
tests/test_linker.py
Executable file
348
tests/test_linker.py
Executable file
@ -0,0 +1,348 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
import mock
|
||||
import errno
|
||||
try:
|
||||
import unittest2 as unittest
|
||||
except ImportError:
|
||||
import unittest
|
||||
import os
|
||||
import stat
|
||||
import sys
|
||||
|
||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
||||
|
||||
from pungi import linker
|
||||
from tests import helpers
|
||||
|
||||
|
||||
class TestLinkerBase(helpers.PungiTestCase):
|
||||
def setUp(self):
|
||||
super(TestLinkerBase, self).setUp()
|
||||
self.logger = mock.Mock()
|
||||
self.linker = linker.Linker(logger=self.logger)
|
||||
self.path_src = self.touch("file", "asdf")
|
||||
|
||||
def touch(self, path, contents=None):
|
||||
path = os.path.join(self.topdir, path)
|
||||
helpers.touch(path, contents)
|
||||
return path
|
||||
|
||||
def mkdir(self, path):
|
||||
path = os.path.join(self.topdir, path.lstrip("/"))
|
||||
try:
|
||||
os.makedirs(path)
|
||||
except OSError as ex:
|
||||
if ex.errno != errno.EEXIST:
|
||||
raise
|
||||
return path
|
||||
|
||||
def same_inode(self, path1, path2):
|
||||
st1 = os.stat(path1)
|
||||
st2 = os.stat(path2)
|
||||
return (st1.st_dev, st1.st_ino) == (st2.st_dev, st2.st_ino)
|
||||
|
||||
def same_content(self, path1, path2):
|
||||
if self.same_inode(path1, path2):
|
||||
return True
|
||||
data1 = open(path1, "r").read()
|
||||
data2 = open(path2, "r").read()
|
||||
return data1 == data2
|
||||
|
||||
def same_stat(self, path1, path2):
|
||||
st1 = os.stat(path1)
|
||||
st2 = os.stat(path2)
|
||||
|
||||
if not stat.S_ISDIR(st1.st_mode) and int(st1.st_mtime) != int(st2.st_mtime):
|
||||
return False
|
||||
if st1.st_size != st2.st_size:
|
||||
return False
|
||||
if st1.st_mode != st2.st_mode:
|
||||
return False
|
||||
return True
|
||||
|
||||
def assertSameStat(self, a, b):
|
||||
self.assertTrue(self.same_stat(a, b))
|
||||
|
||||
def assertSameFile(self, a, b):
|
||||
self.assertTrue(os.path.samefile(a, b))
|
||||
|
||||
def assertDifferentFile(self, a, b):
|
||||
self.assertFalse(os.path.samefile(a, b))
|
||||
|
||||
|
||||
class TestLinkerSymlink(TestLinkerBase):
|
||||
|
||||
def test_symlink(self):
|
||||
path_dst = os.path.join(self.topdir, "symlink")
|
||||
|
||||
# symlink 'symlink' -> 'file'
|
||||
self.linker.symlink(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.islink(path_dst))
|
||||
self.assertEqual(os.readlink(path_dst), "file")
|
||||
self.assertSameFile(self.path_src, path_dst)
|
||||
|
||||
# linking existing file must pass
|
||||
self.linker.symlink(self.path_src, path_dst)
|
||||
|
||||
# linking existing file with different target must fail
|
||||
self.assertRaises(OSError, self.linker.symlink, self.path_src, path_dst, relative=False)
|
||||
|
||||
def test_symlink_different_type(self):
|
||||
# try to symlink 'symlink' -> 'another-file' ('symlink' already exists
|
||||
# and points to 'file')
|
||||
path_dst = os.path.join(self.topdir, "symlink")
|
||||
os.symlink(self.path_src, path_dst)
|
||||
path_src = self.touch("another-file")
|
||||
self.assertRaises(OSError, self.linker.symlink, path_src, path_dst)
|
||||
|
||||
def test_relative_symlink(self):
|
||||
# symlink bar -> ../a
|
||||
dir_dst = os.path.join(self.topdir, "foo")
|
||||
os.makedirs(dir_dst)
|
||||
path_dst = os.path.join(dir_dst, "bar")
|
||||
self.linker.symlink(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.islink(path_dst))
|
||||
self.assertEqual(os.readlink(path_dst), "../file")
|
||||
self.assertSameFile(self.path_src, path_dst)
|
||||
|
||||
def test_symlink_to_symlink(self):
|
||||
path_dst = os.path.join(self.topdir, "symlink")
|
||||
path_dst2 = os.path.join(self.topdir, "symlink-to-symlink")
|
||||
|
||||
# symlink 'symlink' -> 'file'
|
||||
self.linker.symlink(self.path_src, path_dst, relative=True)
|
||||
self.linker.symlink(path_dst, path_dst2)
|
||||
|
||||
|
||||
class TestLinkerHardlink(TestLinkerBase):
|
||||
|
||||
def test_hardlink(self):
|
||||
path_dst = os.path.join(self.topdir, "hardlink")
|
||||
|
||||
# hardlink 'file' to 'hardlink'
|
||||
self.linker.hardlink(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.isfile(path_dst))
|
||||
self.assertSameFile(self.path_src, path_dst)
|
||||
|
||||
# hardlink 'file' to 'foo/hardlink'
|
||||
dir_dst = os.path.join(self.topdir, "foo")
|
||||
os.makedirs(dir_dst)
|
||||
path_dst = os.path.join(dir_dst, "hardlink")
|
||||
self.linker.hardlink(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.isfile(path_dst))
|
||||
self.assertSameFile(self.path_src, path_dst)
|
||||
|
||||
def test_hardlink_different_type(self):
|
||||
# try to hardlink a file to existing dst with incompatible type
|
||||
path_dst = os.path.join(self.topdir, "symlink")
|
||||
os.symlink(self.path_src, path_dst)
|
||||
self.assertRaises(OSError, self.linker.hardlink, self.path_src, path_dst)
|
||||
|
||||
|
||||
class TestLinkerCopy(TestLinkerBase):
|
||||
def test_copy(self):
|
||||
path_dst = os.path.join(self.topdir, "b")
|
||||
|
||||
# copy 'file' to 'b'
|
||||
self.linker.copy(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.isfile(path_dst))
|
||||
self.assertDifferentFile(self.path_src, path_dst)
|
||||
|
||||
def test_copy_to_existing_file_with_different_content(self):
|
||||
path_dst = os.path.join(self.topdir, "b")
|
||||
helpers.touch(path_dst, 'xxx')
|
||||
self.assertRaises(Exception, self.linker.copy, self.path_src, path_dst)
|
||||
|
||||
def test_copy_to_directory(self):
|
||||
dir_dst = os.path.join(self.topdir, "foo")
|
||||
os.makedirs(dir_dst)
|
||||
path_dst = os.path.join(dir_dst, "bar")
|
||||
self.linker.copy(self.path_src, path_dst)
|
||||
self.assertTrue(os.path.isfile(path_dst))
|
||||
self.assertDifferentFile(self.path_src, path_dst)
|
||||
|
||||
def test_copy_different_type(self):
|
||||
# try to copy a file to existing dst with incompatible type
|
||||
path_dst = os.path.join(self.topdir, "symlink")
|
||||
os.symlink(self.path_src, path_dst)
|
||||
self.assertRaises(OSError, self.linker.copy, self.path_src, path_dst)
|
||||
|
||||
|
||||
class TestLinkerLink(TestLinkerBase):
|
||||
def setUp(self):
|
||||
# This will create following structure as a source.
|
||||
#
|
||||
# + src/
|
||||
# + file1
|
||||
# + file2
|
||||
# + symlink2 (-> 'subdir')
|
||||
# + symlink3 (-> 'does-not-exist')
|
||||
# + hardlink1 (same file as 'file1')
|
||||
# + subdir/
|
||||
# + file3
|
||||
# + symlink1 (-> '../file1')
|
||||
#
|
||||
# The destination paths are are similar, but in dst/ top-level dir.
|
||||
super(TestLinkerLink, self).setUp()
|
||||
self.src_dir = self.mkdir("src")
|
||||
self.file1 = self.touch("src/file1", "file1")
|
||||
self.file2 = self.touch("src/file2", "file2")
|
||||
os.utime(self.file2, (-1, 2))
|
||||
self.file3 = self.touch("src/subdir/file3", "file3")
|
||||
os.utime(self.file3, (-1, 3))
|
||||
os.utime(os.path.dirname(self.file3), (-1, 31))
|
||||
self.symlink1 = os.path.join(self.topdir, "src/subdir/symlink1")
|
||||
os.symlink("../file1", self.symlink1)
|
||||
self.symlink2 = os.path.join(self.topdir, "src/symlink2")
|
||||
os.symlink("subdir", self.symlink2)
|
||||
self.symlink3 = os.path.join(self.topdir, "src/symlink3")
|
||||
os.symlink("does-not-exist", self.symlink3)
|
||||
self.hardlink1 = os.path.join(self.topdir, "src/hardlink1")
|
||||
os.link(self.file1, self.hardlink1)
|
||||
|
||||
self.dst_dir = os.path.join(self.topdir, "dst")
|
||||
self.dst_file1 = os.path.join(self.dst_dir, "file1")
|
||||
self.dst_file2 = os.path.join(self.dst_dir, "file2")
|
||||
self.dst_file3 = os.path.join(self.dst_dir, "subdir", "file3")
|
||||
self.dst_symlink1 = os.path.join(self.dst_dir, "subdir", "symlink1")
|
||||
self.dst_symlink2 = os.path.join(self.dst_dir, "symlink2")
|
||||
self.dst_symlink3 = os.path.join(self.dst_dir, "symlink3")
|
||||
self.dst_hardlink1 = os.path.join(self.dst_dir, "hardlink1")
|
||||
|
||||
def test_link_file(self):
|
||||
dst = os.path.join(self.topdir, "hardlink")
|
||||
self.linker.link(self.path_src, dst, link_type="hardlink")
|
||||
self.assertTrue(self.same_inode(self.path_src, dst))
|
||||
self.assertFalse(os.path.islink(dst))
|
||||
|
||||
def test_symlink_file(self):
|
||||
dst = os.path.join(self.topdir, "symlink")
|
||||
self.linker.link(self.path_src, dst, link_type="symlink")
|
||||
self.assertEqual(os.readlink(dst), "file")
|
||||
self.assertTrue(os.path.islink(dst))
|
||||
|
||||
def test_copy_file(self):
|
||||
dst = os.path.join(self.topdir, "copy")
|
||||
self.linker.link(self.path_src, dst, link_type="copy")
|
||||
self.assertFalse(os.path.islink(dst))
|
||||
self.assertFalse(self.same_inode(self.path_src, dst))
|
||||
self.assertTrue(self.same_content(self.path_src, dst))
|
||||
|
||||
def test_hardlink_or_copy_file(self):
|
||||
dst = os.path.join(self.topdir, "hardlink-or-copy")
|
||||
self.linker.link(self.path_src, dst, link_type="hardlink-or-copy")
|
||||
self.assertTrue(self.same_inode(self.path_src, dst))
|
||||
self.assertFalse(os.path.islink(dst))
|
||||
|
||||
def test_link_file_test_mode(self):
|
||||
self.linker = linker.Linker(logger=self.logger, test=True)
|
||||
|
||||
dst = os.path.join(self.topdir, "hardlink")
|
||||
self.linker.link(self.path_src, dst, link_type="hardlink")
|
||||
self.assertFalse(os.path.isdir(self.dst_dir))
|
||||
self.assertEqual(len(self.logger.mock_calls), 1)
|
||||
|
||||
def test_symlink_file_test_mode(self):
|
||||
self.linker = linker.Linker(logger=self.logger, test=True)
|
||||
dst = os.path.join(self.topdir, "symlink")
|
||||
self.linker.link(self.path_src, dst, link_type="symlink")
|
||||
self.assertFalse(os.path.isdir(self.dst_dir))
|
||||
self.assertEqual(len(self.logger.mock_calls), 1)
|
||||
|
||||
def test_copy_file_test_mode(self):
|
||||
self.linker = linker.Linker(logger=self.logger, test=True)
|
||||
dst = os.path.join(self.topdir, "copy")
|
||||
self.linker.link(self.path_src, dst, link_type="copy")
|
||||
self.assertFalse(os.path.isdir(self.dst_dir))
|
||||
self.assertEqual(len(self.logger.mock_calls), 1)
|
||||
|
||||
def test_hardlink_or_copy_file_test_mode(self):
|
||||
self.linker = linker.Linker(logger=self.logger, test=True)
|
||||
dst = os.path.join(self.topdir, "hardlink-or-copy")
|
||||
self.linker.link(self.path_src, dst, link_type="hardlink-or-copy")
|
||||
self.assertFalse(os.path.isdir(self.dst_dir))
|
||||
self.assertEqual(len(self.logger.mock_calls), 1)
|
||||
|
||||
def test_link_file_to_existing_destination(self):
|
||||
self.assertRaises(OSError, self.linker.link,
|
||||
self.file1, self.file2, link_type="hardlink")
|
||||
|
||||
def test_symlink_file_to_existing_destination(self):
|
||||
self.assertRaises(OSError, self.linker.link,
|
||||
self.file1, self.file2, link_type="symlink")
|
||||
|
||||
def test_copy_file_to_existing_destination(self):
|
||||
self.assertRaises(OSError, self.linker.link,
|
||||
self.file1, self.file2, link_type="copy")
|
||||
|
||||
def test_hardlink_or_copy_file_to_existing_destination(self):
|
||||
self.assertRaises(OSError, self.linker.link,
|
||||
self.file1, self.file2, link_type="hardlink-or-copy")
|
||||
|
||||
def test_link_dir_hardlink(self):
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="hardlink")
|
||||
self.assertTrue(os.path.isfile(self.dst_file1))
|
||||
self.assertTrue(self.same_inode(self.file1, self.dst_file1))
|
||||
self.assertTrue(self.same_inode(self.file3, self.dst_file3))
|
||||
self.assertSameStat(os.path.dirname(self.file3), os.path.dirname(self.dst_file3))
|
||||
|
||||
# always preserve symlinks
|
||||
self.assertEqual(os.readlink(self.dst_symlink1), "../file1")
|
||||
self.assertEqual(os.readlink(self.dst_symlink2), "subdir")
|
||||
self.assertEqual(os.readlink(self.dst_symlink3), "does-not-exist")
|
||||
|
||||
def test_link_dir_copy(self):
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="copy")
|
||||
self.assertTrue(os.path.isfile(self.dst_file1))
|
||||
self.assertFalse(self.same_inode(self.file1, self.dst_file1))
|
||||
self.assertFalse(self.same_inode(self.file3, self.dst_file3))
|
||||
self.assertSameStat(os.path.dirname(self.file3), os.path.dirname(self.dst_file3))
|
||||
|
||||
# always preserve symlinks
|
||||
self.assertEqual(os.readlink(self.dst_symlink1), "../file1")
|
||||
self.assertEqual(os.readlink(self.dst_symlink2), "subdir")
|
||||
self.assertEqual(os.readlink(self.dst_symlink3), "does-not-exist")
|
||||
|
||||
def test_link_dir_copy_test_mode(self):
|
||||
# turn test mode on
|
||||
self.linker = linker.Linker(logger=self.logger, test=True)
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="copy")
|
||||
|
||||
# dst_dir should not even exist
|
||||
self.assertFalse(os.path.isdir(self.dst_dir))
|
||||
|
||||
def test_link_dir_symlink(self):
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="symlink")
|
||||
self.assertTrue(os.path.isfile(self.dst_file1))
|
||||
self.assertTrue(os.path.islink(self.dst_file1))
|
||||
self.assertTrue(os.path.isdir(os.path.dirname(self.file3)))
|
||||
|
||||
# always preserve symlinks
|
||||
self.assertEqual(os.readlink(self.dst_symlink1), "../file1")
|
||||
self.assertEqual(os.readlink(self.dst_symlink2), "subdir")
|
||||
self.assertEqual(os.readlink(self.dst_symlink3), "does-not-exist")
|
||||
|
||||
def test_link_dir_abspath_symlink(self):
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="abspath-symlink")
|
||||
self.assertTrue(os.path.isfile(self.dst_file1))
|
||||
self.assertTrue(os.path.islink(self.dst_file1))
|
||||
self.assertEqual(os.readlink(self.dst_file1), self.file1)
|
||||
self.assertSameStat(os.path.dirname(self.file3), os.path.dirname(self.dst_file3))
|
||||
self.assertTrue(os.path.isdir(os.path.dirname(self.file3)))
|
||||
|
||||
# always preserve symlinks
|
||||
self.assertEqual(os.readlink(self.dst_symlink1), "../file1")
|
||||
self.assertEqual(os.readlink(self.dst_symlink2), "subdir")
|
||||
self.assertEqual(os.readlink(self.dst_symlink3), "does-not-exist")
|
||||
|
||||
def test_copy_preserve_hardlinks(self):
|
||||
self.assertTrue(self.same_inode(self.file1, self.hardlink1))
|
||||
self.linker.link(self.src_dir, self.dst_dir, link_type="copy")
|
||||
self.assertTrue(self.same_inode(self.dst_file1, self.dst_hardlink1))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Reference in New Issue
Block a user