summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-10 05:04:33 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-10 05:04:33 +0000
commitaf493540045234678056ca045ea781ceadca3db1 (patch)
tree3aba7f37654278666ee240f063fc81f4e3851392
parentSimplify cmp_sort_key._cmp_key.__lt__(). (diff)
downloadportage-multirepo-af493540045234678056ca045ea781ceadca3db1.tar.gz
portage-multirepo-af493540045234678056ca045ea781ceadca3db1.tar.bz2
portage-multirepo-af493540045234678056ca045ea781ceadca3db1.zip
Fix incorrect slice inside _src_uri_validate() and add new test case.
svn path=/main/trunk/; revision=12818
-rw-r--r--pym/portage/dbapi/porttree.py4
-rw-r--r--pym/portage/tests/dep/test_src_uri.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index 57bdd998..8dcdf1b8 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -45,7 +45,7 @@ def _src_uri_validate(cpv, eapi, src_uri):
uri = None
_src_uri_validate(cpv, eapi, x)
continue
- if x[:-1] == "?":
+ if x[-1:] == "?":
if operator is not None:
raise portage.exception.InvalidDependString(
("getFetchMap(): '%s' SRC_URI arrow missing " + \
@@ -74,7 +74,7 @@ def _src_uri_validate(cpv, eapi, src_uri):
raise portage.exception.InvalidDependString(
("getFetchMap(): '%s' SRC_URI '/' character in " + \
"file name: '%s'") % (cpv, x))
- if x[-1] == "?":
+ if x[-1:] == "?":
raise portage.exception.InvalidDependString(
("getFetchMap(): '%s' SRC_URI arrow missing " + \
"right operand") % (cpv,))
diff --git a/pym/portage/tests/dep/test_src_uri.py b/pym/portage/tests/dep/test_src_uri.py
index e5329796..499d1e29 100644
--- a/pym/portage/tests/dep/test_src_uri.py
+++ b/pym/portage/tests/dep/test_src_uri.py
@@ -21,6 +21,7 @@ class SrcUri(TestCase):
( "2", "http://foo/bar blah.tbz2 ->" , False ),
( "2", "-> http://foo/bar blah.tbz2 )" , False ),
( "2", "http://foo/bar ->" , False ),
+ ( "2", "http://foo/bar -> foo? ( http://foo.com/foo )" , False ),
( "2", "foo? ( http://foo/bar -> ) blah.tbz2" , False ),
( "2", "http://foo/bar -> foo/blah.tbz2" , False ),
( "2", "http://foo.com/foo http://foo/bar -> blah.tbz2" , True ),