Source code for testing.unit.test_path

# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4; encoding:utf-8 -*-
#
# Copyright 2002 Ben Escoto <ben@emerose.org>
# Copyright 2007 Kenneth Loafman <kenneth@loafman.com>
#
# 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

from __future__ import print_function
from future import standard_library
standard_library.install_aliases()

import os
import unittest

from duplicity.path import *  # pylint: disable=unused-wildcard-import,redefined-builtin
from testing import _runtest_dir
from . import UnitTestCase


[docs]class PathTest(UnitTestCase): u"""Test basic path functions"""
[docs] def setUp(self): super(PathTest, self).setUp() self.unpack_testfiles()
[docs] def test_deltree(self): u"""Test deleting a tree""" assert not os.system(u"cp -pR {0}/testfiles/deltree {0}/testfiles/output".format(_runtest_dir).format(_runtest_dir)) # noqa p = Path(u"{0}/testfiles/output".format(_runtest_dir)) assert p.isdir() p.deltree() assert not p.type, p.type
[docs] @unittest.skipIf(os.path.exists(u"/.dockenv") or # Docker os.environ.get(u"USER", None) == u"buildd" or # Launchpad os.environ.get(u"NON_NATIVE", None) == u"true", # GitLab u"Skip on non-native environs") def test_compare(self): u"""Test directory comparisons""" assert not os.system(u"cp -pR {0}/testfiles/dir1/ {0}/testfiles/output".format(_runtest_dir)) assert Path(u"{0}/testfiles/dir1".format(_runtest_dir)).compare_recursive( Path(u"{0}/testfiles/output".format(_runtest_dir)), 1) assert not Path(u"{0}/testfiles/dir1".format(_runtest_dir)).compare_recursive( Path(u"{0}/testfiles/dir2".format(_runtest_dir)), 1)
[docs] def test_quote(self): u"""Test path quoting""" p = Path(u"hello") assert p.quote() == u'"hello"' assert p.quote(u"\\") == u'"\\\\"', p.quote(u"\\") assert p.quote(u"$HELLO") == u'"\\$HELLO"'
[docs] def test_unquote(self): u"""Test path unquoting""" p = Path(u"foo") # just to provide unquote function def t(s): u"""Run test on string s""" quoted_version = p.quote(s) unquoted = p.unquote(quoted_version) assert unquoted == s, (unquoted, s) t(u"\\") t(u"$HELLO") t(u" aoe aoe \\ \n`")
[docs] def test_canonical(self): u"""Test getting canonical version of path""" c = Path(u".").get_canonical() assert c == b".", c c = Path(u"//foo/bar/./").get_canonical() assert c == b"/foo/bar", c
[docs] def test_compare_verbose(self): u"""Run compare_verbose on a few files""" vft = Path(u"{0}/testfiles/various_file_types".format(_runtest_dir)) assert vft.compare_verbose(vft) reg_file = vft.append(u"regular_file") assert not vft.compare_verbose(reg_file) assert reg_file.compare_verbose(reg_file) file2 = vft.append(u"executable") assert not file2.compare_verbose(reg_file) assert file2.compare_verbose(file2)
if __name__ == u"__main__": unittest.main()