summaryrefslogtreecommitdiff
path: root/tests/test_debfile_multiarch.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_debfile_multiarch.py')
-rw-r--r--tests/test_debfile_multiarch.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/test_debfile_multiarch.py b/tests/test_debfile_multiarch.py
new file mode 100644
index 00000000..1b468a45
--- /dev/null
+++ b/tests/test_debfile_multiarch.py
@@ -0,0 +1,46 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2010 Michael Vogt <mvo@ubuntu.com>
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.
+"""Unit tests for verifying the correctness of DebPackage in apt.debfile."""
+import os
+import logging
+import unittest
+
+from test_all import get_library_dir
+import sys
+sys.path.insert(0, get_library_dir())
+import apt
+import apt_pkg
+import apt.debfile
+
+class TestDebfileMultiarch(unittest.TestCase):
+ """ test the multiarch debfile """
+
+ def test_multiarch_deb(self):
+ if apt_pkg.get_architectures() != ["amd64", "i386"]:
+ logging.warn("skipping test because running on a non-multiarch system")
+ return
+ deb = apt.debfile.DebPackage(
+ "./data/test_debs/multiarch-test1_i386.deb")
+ missing = deb.missing_deps
+ print missing
+ self.assertFalse("dpkg:i386" in missing)
+
+ def test_multiarch_conflicts(self):
+ cache = apt.Cache()
+ # WARNING: this assumes that lib3ds-1-3 is a non-multiarch lib
+ # use "lib3ds-1-3" as a test to see if non-multiach lib conflicts work
+ cache["lib3ds-1-3"].mark_install()
+ deb = apt.debfile.DebPackage(
+ "./data/test_debs/multiarch-test1_i386.deb", cache=cache)
+ # this deb should now not be installable
+ self.assertFalse(deb.check())
+
+
+if __name__ == "__main__":
+ unittest.main()