File size: 5,465 Bytes
859a779 |
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 |
#
# Test that both unicode and bytes path names work
#
import os
import shutil
import unittest
import apt_inst
import apt_pkg
import testcommon
class TestPath(testcommon.TestCase):
dir_unicode = u'data/tmp'
dir_bytes = b'data/tmp'
file_unicode = u'data/tmp/python-apt-test'
file_bytes = b'data/tmp/python-apt-test'
def setUp(self):
testcommon.TestCase.setUp(self)
if os.path.exists(self.dir_bytes):
shutil.rmtree(self.dir_bytes)
os.mkdir(self.dir_bytes)
def tearDown(self):
apt_pkg.config["dir"] = "/"
shutil.rmtree(self.dir_bytes)
def test_acquire(self):
apt_pkg.AcquireFile(apt_pkg.Acquire(), "http://example.com",
destdir=self.file_bytes, destfile=self.file_bytes)
apt_pkg.AcquireFile(apt_pkg.Acquire(),
"http://example.com",
destdir=self.file_unicode,
destfile=self.file_unicode)
def test_acquire_hashes(self):
hs = apt_pkg.HashString("d41d8cd98f00b204e9800998ecf8427e")
hsl = apt_pkg.HashStringList()
hsl.append(hs)
apt_pkg.AcquireFile(apt_pkg.Acquire(),
"http://example.com",
hash=hsl,
destdir=self.file_unicode,
destfile=self.file_unicode)
apt_pkg.AcquireFile(apt_pkg.Acquire(),
"http://example.com",
hash=str(hs),
destdir=self.file_unicode,
destfile=self.file_unicode)
self.assertRaises(TypeError, apt_pkg.AcquireFile, apt_pkg.Acquire(),
"http://example.com",
hash=hs,
destdir=self.file_unicode,
destfile=self.file_unicode)
def test_ararchive(self):
archive = apt_inst.ArArchive(u"data/test_debs/data-tar-xz.deb")
apt_inst.ArArchive(b"data/test_debs/data-tar-xz.deb")
archive.extract(u"debian-binary", u"data/tmp")
archive.extract(b"debian-binary", b"data/tmp")
archive.extractall(u"data/tmp")
archive.extractall(b"data/tmp")
self.assertEqual(archive.extractdata(u"debian-binary"), b"2.0\n")
self.assertEqual(archive.extractdata(b"debian-binary"), b"2.0\n")
self.assertTrue(archive.getmember(u"debian-binary"))
self.assertTrue(archive.getmember(b"debian-binary"))
self.assertTrue(u"debian-binary" in archive)
self.assertTrue(b"debian-binary" in archive)
self.assertTrue(archive[b"debian-binary"])
self.assertTrue(archive[u"debian-binary"])
tar = archive.gettar(u"control.tar.xz", "xz")
tar = archive.gettar(b"control.tar.xz", "xz")
tar.extractall(self.dir_unicode)
tar.extractall(self.dir_bytes)
self.assertRaises(LookupError, tar.extractdata, u"Do-not-exist")
self.assertRaises(LookupError, tar.extractdata, b"Do-not-exist")
tar.extractdata(b"control")
tar.extractdata(u"control")
apt_inst.TarFile(os.path.join(self.dir_unicode, u"control.tar.xz"))
apt_inst.TarFile(os.path.join(self.dir_bytes, b"control.tar.xz"))
def test_configuration(self):
with open(self.file_unicode, 'w') as config:
config.write("Hello { World 1; };")
apt_pkg.read_config_file(apt_pkg.config, self.file_bytes)
apt_pkg.read_config_file(apt_pkg.config, self.file_unicode)
apt_pkg.read_config_file_isc(apt_pkg.config, self.file_bytes)
apt_pkg.read_config_file_isc(apt_pkg.config, self.file_unicode)
apt_pkg.read_config_dir(apt_pkg.config, self.dir_unicode)
apt_pkg.read_config_dir(apt_pkg.config, b"/etc/apt/apt.conf.d")
def test_index_file(self):
apt_pkg.config["dir"] = "data/test_debs"
slist = apt_pkg.SourceList()
slist.read_main_list()
for meta in slist.list:
for index in meta.index_files:
index.archive_uri(self.file_bytes)
index.archive_uri(self.file_unicode)
def test_lock(self):
apt_pkg.get_lock(self.file_unicode, True)
apt_pkg.get_lock(self.file_bytes, True)
with apt_pkg.FileLock(self.file_unicode):
pass
with apt_pkg.FileLock(self.file_bytes):
pass
def test_policy(self):
apt_pkg.config["dir"] = "data/test_debs"
cache = apt_pkg.Cache(None)
policy = apt_pkg.Policy(cache)
file_unicode = os.path.join(self.dir_unicode, u"test.prefs")
file_bytes = os.path.join(self.dir_bytes, b"test.prefs")
self.assertTrue(policy.read_pinfile(file_unicode))
self.assertTrue(policy.read_pinfile(file_bytes))
self.assertTrue(policy.read_pindir(self.dir_unicode))
self.assertTrue(policy.read_pindir(self.dir_bytes))
def test_tag(self):
with open(self.file_bytes, "w") as tag:
tag.write("Key: value\n")
tag1 = apt_pkg.TagFile(self.file_unicode)
tag2 = apt_pkg.TagFile(self.file_bytes)
self.assertEqual(next(tag1)["Key"], "value")
self.assertEqual(next(tag2)["Key"], "value")
self.assertRaises(StopIteration, next, tag1)
self.assertRaises(StopIteration, next, tag2)
if __name__ == '__main__':
unittest.main()
|