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
|
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4; encoding:utf-8 -*-
#
# Copyright 2002 Ben Escoto
# Copyright 2007 Kenneth Loafman
# Copyright 2014 Aaron Whitehouse
#
# 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 os
import unittest
from testing import _runtest_dir
from . import (
CmdError,
FunctionalTestCase,
)
class VerifyTest(FunctionalTestCase):
"""
Test verify using duplicity binary
"""
def test_verify(self):
"""Test that verify (without --compare-data) works in the basic case"""
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=[],
)
def test_verify_changed_source_file(self):
"""Test verify (without --compare-data) gives no error if a source file is changed"""
# This test was made to pass in fixing Bug #1354880
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
# Edit source file
with open(f"{_runtest_dir}/testfiles/various_file_types/executable", "r+") as f:
f.write("This changes a source file.")
# Test verify for the file
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=[],
)
def test_verify_changed_source_file_adjust_mtime(self):
"""Test verify (without --compare-data) gives no error if a source file is changed and the mtime is changed
(changing anything about the source files shouldn't matter)"""
# Get the atime and mtime of the file
file_info = os.stat(f"{_runtest_dir}/testfiles/various_file_types/executable")
# Set the atime and mtime of the file to the time that we collected, as on some systems
# the times from a stat call don't match what a utime will set.
os.utime(
f"{_runtest_dir}/testfiles/various_file_types/executable",
(file_info.st_atime, file_info.st_mtime),
)
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
# Edit source file
with open(f"{_runtest_dir}/testfiles/various_file_types/executable", "r+") as f:
f.write("This changes a source file.")
# Set the atime and mtime for the file back to what it was prior to the edit
os.utime(
f"{_runtest_dir}/testfiles/various_file_types/executable",
(file_info.st_atime, file_info.st_mtime),
)
# Test verify for the file
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=[],
)
def test_verify_compare_data(self):
"""Test that verify works in the basic case when the --compare-data option is used"""
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
# Test verify for the file with --compare-data
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=["--compare-data"],
)
def test_verify_compare_data_changed_source_file(self):
"""Test verify with --compare-data gives an error if a source file is changed"""
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
# Edit source file
with open(f"{_runtest_dir}/testfiles/various_file_types/executable", "r+") as f:
f.write("This changes a source file.")
# Test verify for edited file fails with --compare-data
try:
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=["--compare-data"],
)
except CmdError as e:
self.assertEqual(e.exit_status, 1, str(e))
else:
self.fail("Expected CmdError not thrown")
def test_verify_compare_data_changed_source_file_adjust_mtime(self):
"""Test verify with --compare-data gives an error if a source file is changed, even if the mtime is changed"""
# Get the atime and mtime of the file
file_info = os.stat(f"{_runtest_dir}/testfiles/various_file_types/executable")
# Set the atime and mtime of the file to the time that we collected, as on some systems
# the times from a stat call don't match what a utime will set
os.utime(
f"{_runtest_dir}/testfiles/various_file_types/executable",
(file_info.st_atime, file_info.st_mtime),
)
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
# Edit source file
with open(f"{_runtest_dir}/testfiles/various_file_types/executable", "r+") as f:
f.write("This changes a source file.")
# Set the atime and mtime for the file back to what it was prior to the edit
os.utime(
f"{_runtest_dir}/testfiles/various_file_types/executable",
(file_info.st_atime, file_info.st_mtime),
)
# Test verify for edited file fails with --compare-data
try:
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=["--compare-data"],
)
except CmdError as e:
self.assertEqual(e.exit_status, 1, str(e))
else:
self.fail("Expected CmdError not thrown")
def test_verify_corrupt_archive(self):
"""Test verify (without --compare-data) gives an error if the archive is corrupted"""
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
output_files = os.listdir(f"{_runtest_dir}/testfiles/output")
archives = [elem for elem in output_files if "vol" in elem]
for archive in archives:
# Edit source file
with open(f"{_runtest_dir}/testfiles/output/{archive}", "r+") as f:
f.write("This writes text into each archive file to corrupt it.")
# Test verify for the file
try:
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=[],
)
except CmdError as e:
# Should return a 21 error code for "hash mismatch"
self.assertEqual(e.exit_status, 21, str(e))
else:
self.fail("Expected Hash Mismatch Error not thrown")
def test_verify_corrupt_archive_compare_data(self):
"""Test verify with --compare-data gives an error if the archive is corrupted"""
self.backup("full", f"{_runtest_dir}/testfiles/various_file_types", options=[])
output_files = os.listdir(f"{_runtest_dir}/testfiles/output")
archives = [elem for elem in output_files if "vol" in elem]
for archive in archives:
# Edit source file
with open(f"{_runtest_dir}/testfiles/output/{archive}", "r+") as f:
f.write("This writes text into each archive file to corrupt it.")
# Test verify for the file
try:
self.verify(
f"{_runtest_dir}/testfiles/various_file_types/executable",
file_to_verify="executable",
options=["--compare-data"],
)
except CmdError as e:
# Should return a 21 error code for "hash mismatch"
self.assertEqual(e.exit_status, 21, str(e))
else:
self.fail("Expected Hash Mismatch Error not thrown")
if __name__ == "__main__":
unittest.main()
|