From e22e165e4982053904b3606110d36aa3d757c2a5 Mon Sep 17 00:00:00 2001 From: Ben Brown Date: Tue, 10 Dec 2013 14:38:20 +0000 Subject: urllib: Convert URLs with non URL friendly characters into a valid format. --- morphlib/remoterepocache_tests.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'morphlib/remoterepocache_tests.py') diff --git a/morphlib/remoterepocache_tests.py b/morphlib/remoterepocache_tests.py index 5ef61f48..22c89bf9 100644 --- a/morphlib/remoterepocache_tests.py +++ b/morphlib/remoterepocache_tests.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012 Codethink Limited +# Copyright (C) 2012-2013 Codethink Limited # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,22 +17,23 @@ import json import unittest +import urllib import morphlib class RemoteRepoCacheTests(unittest.TestCase): def _resolve_ref_for_repo_url(self, repo_url, ref): - return self.sha1s[repo_url][ref] + return self.sha1s[urllib.unquote(repo_url)][ref] def _cat_file_for_repo_url(self, repo_url, sha1, filename): - return self.files[repo_url][sha1][filename] + return self.files[urllib.unquote(repo_url)][sha1][filename] def _ls_tree_for_repo_url(self, repo_url, sha1): return json.dumps({ 'repo': repo_url, 'ref': sha1, - 'tree': self.files[repo_url][sha1] + 'tree': self.files[urllib.unquote(repo_url)][sha1] }) def setUp(self): -- cgit v1.2.1