summaryrefslogtreecommitdiff
path: root/morphlib/remoteartifactcache_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/remoteartifactcache_tests.py')
-rw-r--r--morphlib/remoteartifactcache_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/morphlib/remoteartifactcache_tests.py b/morphlib/remoteartifactcache_tests.py
index 431731b9..dbb094a3 100644
--- a/morphlib/remoteartifactcache_tests.py
+++ b/morphlib/remoteartifactcache_tests.py
@@ -157,3 +157,8 @@ class RemoteArtifactCacheTests(unittest.TestCase):
self.runtime_artifact.source,
self.runtime_artifact.cache_key,
'non-existent-meta')
+
+ def test_escapes_pluses_in_request_urls(self):
+ returned_url = self.cache._request_url('gtk+')
+ correct_url = '%s/1.0/artifacts?filename=gtk%%2B' % self.server_url
+ self.assertEqual(returned_url, correct_url)