# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# 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
import unittest
from duplicity import dup_time
from duplicity import file_naming
from duplicity import log
from duplicity import globals
from . import UnitTestCase
[docs]class Test36(UnitTestCase):
[docs] def test_base36(self):
"""Test conversion to/from base 36"""
numlist = [0, 1, 10, 1313, 34233, 872338, 2342889,
134242234, 1204684368, 34972382455]
for n in numlist:
b = file_naming.to_base36(n)
assert file_naming.from_base36(b) == n, (b, n)
[docs]class FileNamingBase:
"""Holds file naming test functions, for use in subclasses"""
[docs] def test_basic(self):
"""Check get/parse cycle"""
dup_time.setprevtime(10)
dup_time.setcurtime(20)
file_naming.prepare_regex(force=True)
filename = file_naming.get("inc", volume_number=23)
log.Info(u"Inc filename: " + filename)
pr = file_naming.parse(filename)
assert pr and pr.type == "inc", pr
assert pr.start_time == 10
assert pr.end_time == 20
assert pr.volume_number == 23
assert not pr.partial
filename = file_naming.get("full-sig")
log.Info(u"Full sig filename: " + filename)
pr = file_naming.parse(filename)
assert pr.type == "full-sig"
assert pr.time == 20
assert not pr.partial
filename = file_naming.get("new-sig")
pr = file_naming.parse(filename)
assert pr.type == "new-sig"
assert pr.start_time == 10
assert pr.end_time == 20
assert not pr.partial
[docs] def test_suffix(self):
"""Test suffix (encrypt/compressed) encoding and generation"""
file_naming.prepare_regex(force=True)
filename = file_naming.get("inc", manifest=1, gzipped=1)
pr = file_naming.parse(filename)
assert pr and pr.compressed == 1
assert pr.manifest
filename2 = file_naming.get("full", volume_number=23, encrypted=1)
pr = file_naming.parse(filename2)
assert pr and pr.encrypted == 1
assert pr.volume_number == 23
[docs] def test_more(self):
"""More file_parsing tests"""
file_naming.prepare_regex(force=True)
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "dns.h112bi.h14rg0.st.g")
assert pr, pr
assert pr.type == "new-sig"
assert pr.end_time == 1029826800
if not globals.short_filenames:
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "duplicity-new-signatures.2002-08-18T00:04:30-07:00.to.2002-08-20T00:00:00-07:00.sigtar.gpg")
assert pr, pr
assert pr.type == "new-sig"
assert pr.end_time == 1029826800
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "dfs.h5dixs.st.g")
assert pr, pr
assert pr.type == "full-sig"
assert pr.time == 1036954144, repr(pr.time)
[docs] def test_partial(self):
"""Test addition of partial flag"""
file_naming.prepare_regex(force=True)
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "dns.h112bi.h14rg0.st.p.g")
assert pr, pr
assert pr.partial
assert pr.type == "new-sig"
assert pr.end_time == 1029826800
if not globals.short_filenames:
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "duplicity-new-signatures.2002-08-18T00:04:30-07:00.to.2002-08-20T00:00:00-07:00.sigtar.part.gpg")
assert pr, pr
assert pr.partial
assert pr.type == "new-sig"
assert pr.end_time == 1029826800
pr = file_naming.parse(globals.file_prefix + globals.file_prefix_signature + "dfs.h5dixs.st.p.g")
assert pr, pr
assert pr.partial
assert pr.type == "full-sig"
assert pr.time == 1036954144, repr(pr.time)
[docs]class FileNamingLong(UnitTestCase, FileNamingBase):
"""Test long filename parsing and generation"""
[docs] def setUp(self):
super(FileNamingLong, self).setUp()
self.set_global('short_filenames', 0)
[docs]class FileNamingShort(UnitTestCase, FileNamingBase):
"""Test short filename parsing and generation"""
[docs] def setUp(self):
super(FileNamingShort, self).setUp()
self.set_global('short_filenames', 1)
[docs]class FileNamingPrefixes(UnitTestCase, FileNamingBase):
"""Test filename parsing and generation with prefixes"""
[docs] def setUp(self):
super(FileNamingPrefixes, self).setUp()
self.set_global('file_prefix', "global-")
self.set_global('file_prefix_manifest', "mani-")
self.set_global('file_prefix_signature', "sign-")
self.set_global('file_prefix_archive', "arch-")
if __name__ == "__main__":
unittest.main()