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
|
#!/usr/bin/python
# Copyright (C) 2018 Jelmer Vernooij
# This file is a part of debmutate.
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
__all__ = [
"TestCase",
"TestCaseInTempDir",
]
import os
import tempfile
import unittest
class TestCase(unittest.TestCase):
def overrideEnv(self, key, value):
oldvalue = os.environ.get(key)
def restore():
if oldvalue is None:
del os.environ[key]
else:
os.environ[key] = value
self.addCleanup(restore)
os.environ[key] = value
class TestCaseInTempDir(TestCase):
def setUp(self):
td = tempfile.TemporaryDirectory(prefix="debmutate")
self.test_dir = td.name
self.addCleanup(td.cleanup)
cwd = os.getcwd()
self.addCleanup(os.chdir, cwd)
os.chdir(self.test_dir)
def build_tree_contents(self, entries):
for entry in entries:
if entry[0].endswith("/"):
os.mkdir(entry[0])
else:
with open(entry[0], "w") as f:
f.write(entry[1])
def assertFileEqual(self, expected_content, path, strip_trailing_whitespace=False):
with open(path) as f:
content = f.read()
if strip_trailing_whitespace:
content = content.rstrip()
expected_content = expected_content.rstrip()
self.assertEqual(expected_content, content)
def test_suite():
names = [
"changelog",
"control",
"copyright",
"deb822",
"debcargo",
"debhelper",
"debmutate",
"lintian_overrides",
"patch",
"reformatting",
"vcs",
"versions",
"watch",
"_rules",
]
module_names = [__name__ + ".test_" + name for name in names]
loader = unittest.TestLoader()
return loader.loadTestsFromNames(module_names)
|