1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/usr/bin/env python3
'''
t5_cp.py - this file is part of S3QL.
Copyright © 2008 Nikolaus Rath <Nikolaus@rath.org>
This work can be distributed under the terms of the GNU GPLv3.
'''
if __name__ == '__main__':
import pytest
import sys
sys.exit(pytest.main([__file__] + sys.argv[1:]))
from common import populate_dir, skip_without_rsync
import os.path
import shutil
import subprocess
from subprocess import check_output, CalledProcessError
import t4_fuse
import tempfile
import pytest
class TestCp(t4_fuse.TestFuse):
def test(self):
skip_without_rsync()
self.mkfs()
self.mount()
self.tst_cp()
self.umount()
self.fsck()
def tst_cp(self):
tempdir = tempfile.mkdtemp(prefix='s3ql-cp-')
try:
populate_dir(tempdir)
# Rsync
subprocess.check_call(['rsync', '-aHAX', tempdir + '/',
os.path.join(self.mnt_dir, 'orig') + '/'])
# copy
subprocess.check_call(self.s3ql_cmd_argv('s3qlcp') +
[ '--quiet', os.path.join(self.mnt_dir, 'orig'),
os.path.join(self.mnt_dir, 'copy')])
# compare
try:
out = check_output(['rsync', '-anciHAX', '--delete', tempdir + '/',
os.path.join(self.mnt_dir, 'copy') + '/'],
universal_newlines=True, stderr=subprocess.STDOUT)
except CalledProcessError as exc:
pytest.fail('rsync failed with ' + exc.output)
if out:
pytest.fail('Copy not equal to original, rsync says:\n' + out)
finally:
shutil.rmtree(tempdir)
|