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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4; encoding:utf-8 -*-
#
# Copyright 2002 Ben Escoto
# Copyright 2007 Kenneth Loafman
#
# This file is part of duplicity.
#
# Duplicity is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# Duplicity is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with duplicity; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import io
import platform
import unittest
from duplicity import diffdir
from duplicity import patchdir
from duplicity import selection
from duplicity.path import * # pylint: disable=unused-wildcard-import,redefined-builtin
from testing import _runtest_dir
from . import UnitTestCase
class PatchingTest(UnitTestCase):
"""Test patching"""
def setUp(self):
super().setUp()
self.unpack_testfiles()
def copyfileobj(self, infp, outfp):
"""Copy in fileobj to out, closing afterwards"""
blocksize = 32 * 1024
while True:
buf = infp.read(blocksize)
if not buf:
break
outfp.write(buf)
assert not infp.close()
assert not outfp.close()
def test_total(self):
"""Test cycle on dirx"""
self.total_sequence(
[
f"{_runtest_dir}/testfiles/dir1",
f"{_runtest_dir}/testfiles/dir2",
f"{_runtest_dir}/testfiles/dir3",
]
)
def get_sel(self, path):
"""Get selection iter over the given directory"""
return selection.Select(path).set_iter()
def total_sequence(self, filelist):
"""Test signatures, diffing, and patching on directory list"""
assert len(filelist) >= 2
sig = Path(f"{_runtest_dir}/testfiles/output/sig.tar")
new_sig = Path(f"{_runtest_dir}/testfiles/output/new-sig.tar")
diffs = []
seq_path = Path(f"{_runtest_dir}/testfiles/output/sequence")
new_path, old_path = None, None # set below in for loop
# Write initial full backup to diff.tar
# import pytest; pytest.set_trace()
for i, dirname in enumerate(filelist, start=1):
diff = Path(f"{_runtest_dir}/testfiles/output/diff{i}.tar")
old_path, new_path = new_path, Path(dirname)
if old_path:
deltablock = diffdir.DirDelta_WriteSig(self.get_sel(new_path), [sig.open("rb")], new_sig.open("wb"))
else:
deltablock = diffdir.DirFull_WriteSig(self.get_sel(new_path), new_sig.open("wb"))
new_sig.rename(sig)
diffdir.write_block_iter(deltablock, diff)
diffs.append(diff)
assert not os.system(f"rm -fr {_runtest_dir}/testfiles/output/sequence")
tarfiles = [patchdir.TarFile_FromFileobjs(iter([diff.open("rb")])) for diff in diffs]
rop_iter = patchdir.tarfiles2rop_iter(tarfiles)
patchdir.Write_ROPaths(
seq_path,
rop_iter,
)
# print "#########", seq_path, new_path
assert seq_path.compare_recursive(new_path, verbose=1)
def test_block_tar(self):
"""Test building block tar from a number of files"""
def get_fileobjs():
"""Return iterator yielding open fileobjs of tar files"""
for i in range(1, 4):
p = Path(f"{_runtest_dir}/testfiles/blocktartest/test{i}.tar")
fp = p.open("rb")
yield fp
fp.close()
tf = patchdir.TarFile_FromFileobjs(get_fileobjs())
namelist = []
for tarinfo in tf:
namelist.append(tarinfo.name)
for i in range(1, 6):
assert f"tmp/{int(i)}" in namelist, namelist
def test_doubledot_hole(self):
"""Test for the .. bug that lets tar overwrite parent dir"""
def make_bad_tar(filename):
"""Write attack dup_tarfile to filename"""
tf = dup_tarfile.TarFile(name=filename, mode="w")
# file object will be empty, and tarinfo will have path
# "snapshot/../warning-security-error"
assert not os.system(f"cat /dev/null > {_runtest_dir}/testfiles/output/file")
path = Path(f"{_runtest_dir}/testfiles/output/file")
path.index = (b"diff", b"..", b"warning-security-error")
ti = path.get_tarinfo()
fp = io.StringIO("")
tf.addfile(ti, fp)
tf.close()
make_bad_tar(f"{_runtest_dir}/testfiles/output/bad.tar")
os.mkdir(f"{_runtest_dir}/testfiles/output/temp")
tarfiles = [patchdir.TarFile_FromFileobjs(iter([open(f"{_runtest_dir}/testfiles/output/bad.tar", "rb")]))]
rop_iter = patchdir.tarfiles2rop_iter(tarfiles)
self.assertRaises(
patchdir.PatchDirException,
patchdir.Write_ROPaths,
Path(f"{_runtest_dir}/testfiles/output/temp"),
rop_iter,
)
assert not Path(f"{_runtest_dir}/testfiles/output/warning-security-error").exists()
class index(object):
"""Used below to test the iter collation"""
def __init__(self, index):
self.index = index
class CollateItersTest(UnitTestCase):
def setUp(self):
super().setUp()
self.unpack_testfiles()
def test_collate(self):
"""Test collate_iters function"""
indicies = [index(i) for i in [0, 1, 2, 3]]
helper = lambda i: indicies[i]
makeiter1 = lambda: iter(indicies)
makeiter2 = lambda: map(helper, [0, 1, 3])
makeiter3 = lambda: map(helper, [1, 2])
outiter = patchdir.collate_iters([makeiter1(), makeiter2()])
assert Iter.equal(
outiter,
iter(
[
(indicies[0], indicies[0]),
(indicies[1], indicies[1]),
(indicies[2], None),
(indicies[3], indicies[3]),
]
),
)
assert Iter.equal(
patchdir.collate_iters([makeiter1(), makeiter2(), makeiter3()]),
iter(
[
(indicies[0], indicies[0], None),
(indicies[1], indicies[1], indicies[1]),
(indicies[2], None, indicies[2]),
(indicies[3], indicies[3], None),
]
),
1,
)
assert Iter.equal(
patchdir.collate_iters([makeiter1(), iter([])]),
iter([(i, None) for i in indicies]),
)
assert Iter.equal(
[(i, None) for i in indicies],
patchdir.collate_iters([makeiter1(), iter([])]),
)
class TestInnerFuncs(UnitTestCase):
"""Test some other functions involved in patching"""
def setUp(self):
super().setUp()
self.unpack_testfiles()
self.check_output()
def check_output(self):
"""Make {0}/testfiles/output exists"""
out = Path(f"{_runtest_dir}/testfiles/output")
if not (out.exists() and out.isdir()):
out.mkdir()
self.out = out
def snapshot(self):
"""Make a snapshot ROPath, permissions 0o600"""
ss = self.out.append("snapshot")
fout = ss.open("wb")
fout.write(b"hello, world!")
assert not fout.close()
ss.chmod(0o600)
ss.difftype = "snapshot"
return ss
def get_delta(self, old_buf, new_buf):
"""Return delta buffer from old to new"""
sig = librsync.SigGenerator()
sig.update(old_buf)
sig = sig.getsig()
deltafile = librsync.DeltaFile(sig, io.BytesIO(new_buf))
deltabuf = deltafile.read()
assert not deltafile.close()
return deltabuf
def delta1(self):
"""Make a delta ROPath, permissions 0o640"""
delta1 = self.out.append("delta1")
fout = delta1.open("wb")
fout.write(self.get_delta(b"hello, world!", b"aonseuth aosetnuhaonsuhtansoetuhaoe"))
assert not fout.close()
delta1.chmod(0o640)
delta1.difftype = "diff"
return delta1
def delta2(self):
"""Make another delta ROPath, permissions 0o644"""
delta2 = self.out.append("delta1")
fout = delta2.open("wb")
fout.write(
self.get_delta(
b"aonseuth aosetnuhaonsuhtansoetuhaoe",
b"3499 34957839485792357 458348573",
)
)
assert not fout.close()
delta2.chmod(0o644)
delta2.difftype = "diff"
return delta2
def deleted(self):
"""Make a deleted ROPath"""
deleted = self.out.append("deleted")
assert not deleted.exists()
deleted.difftype = "deleted"
return deleted
def test_normalize(self):
"""Test normalizing a sequence of diffs"""
ss = self.snapshot()
d1 = self.delta1()
d2 = self.delta2()
de = self.deleted()
seq1 = [ss, d1, d2]
seq2 = [ss, d1, d2, de]
seq3 = [de, ss, d1, d2]
seq4 = [de, ss, d1, d2, ss]
seq5 = [de, ss, d1, d2, ss, d1, d2]
def try_seq(input_seq, correct_output_seq):
normed = patchdir.normalize_ps(input_seq)
assert normed == correct_output_seq, (normed, correct_output_seq)
try_seq(seq1, seq1)
try_seq(seq2, [de])
try_seq(seq3, seq1)
try_seq(seq4, [ss])
try_seq(seq5, seq1)
# TODO: fix test_patch_seq2ropath for macOS, maybe others.
# Fails under pytest, and pydevd
# ----------
# def testseq(seq, perms, buf):
# result = patchdir.patch_seq2ropath(seq)
# > assert result.getperms() == perms, (result.getperms(), perms)
# E AssertionError: ('501:0 600', '501:20 600')
# E assert '501:0 600' == '501:20 600'
# E - 501:0 600
# E + 501:20 600
@unittest.skipUnless(platform.platform().startswith("Linux"), "Skip on non-Linux systems")
def test_patch_seq2ropath(self):
"""Test patching sequence"""
def testseq(seq, perms, buf):
result = patchdir.patch_seq2ropath(seq)
assert result.getperms() == perms, (result.getperms(), perms)
fout = result.open("rb")
contents = fout.read()
assert not fout.close()
assert contents == buf, (contents, buf)
ids = f"{int(os.getuid())}:{int(os.getgid())}"
testseq([self.snapshot()], f"{ids} 600", b"hello, world!")
testseq(
[self.snapshot(), self.delta1()],
f"{ids} 640",
b"aonseuth aosetnuhaonsuhtansoetuhaoe",
)
testseq(
[self.snapshot(), self.delta1(), self.delta2()],
f"{ids} 644",
b"3499 34957839485792357 458348573",
)
if __name__ == "__main__":
unittest.main()
|