summaryrefslogtreecommitdiffstats
path: root/pym/portage
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2011-01-28 13:59:41 +0100
committerZac Medico <zmedico@gentoo.org>2011-02-02 15:14:17 -0800
commitb39cdee820626968d10bcfa3aeef7d313cf23736 (patch)
treeec7de379f0383546a58f3ef66475c5b7d0267f9d /pym/portage
parent0fdab6a15edaaac4cd5ead86ea2e92f2a34967b0 (diff)
downloadportage-b39cdee820626968d10bcfa3aeef7d313cf23736.tar.gz
portage-b39cdee820626968d10bcfa3aeef7d313cf23736.tar.bz2
portage-b39cdee820626968d10bcfa3aeef7d313cf23736.zip
Show use conditionals in old style dep chains
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/tests/resolver/test_old_dep_chain_display.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/pym/portage/tests/resolver/test_old_dep_chain_display.py b/pym/portage/tests/resolver/test_old_dep_chain_display.py
new file mode 100644
index 000000000..57f1ff184
--- /dev/null
+++ b/pym/portage/tests/resolver/test_old_dep_chain_display.py
@@ -0,0 +1,33 @@
+# Copyright 2010-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import ResolverPlayground, ResolverPlaygroundTestCase
+
+class OldDepChainDisplayTestCase(TestCase):
+
+ def testOldDepChainDisplay(self):
+ ebuilds = {
+ "dev-libs/A-1": { "DEPEND": "foo? ( dev-libs/B[-bar] )", "IUSE": "+foo", "EAPI": "2" },
+ "dev-libs/A-2": { "DEPEND": "foo? ( dev-libs/C )", "IUSE": "+foo", "EAPI": "1" },
+ "dev-libs/B-1": { "IUSE": "bar", "DEPEND": "!bar? ( dev-libs/D[-baz] )", "EAPI": "2" },
+ "dev-libs/C-1": { "KEYWORDS": "~x86" },
+ "dev-libs/D-1": { "IUSE": "+baz", "EAPI": "1" },
+ }
+
+ test_cases = (
+ ResolverPlaygroundTestCase(
+ ["=dev-libs/A-1"],
+ success = False),
+ ResolverPlaygroundTestCase(
+ ["=dev-libs/A-2"],
+ success = False),
+ )
+
+ playground = ResolverPlayground(ebuilds=ebuilds)
+ try:
+ for test_case in test_cases:
+ playground.run_TestCase(test_case)
+ self.assertEqual(test_case.test_success, True, test_case.fail_msg)
+ finally:
+ playground.cleanup()