summaryrefslogtreecommitdiff
path: root/morphlib/localrepocache_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-05-03 14:05:57 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-05-04 14:24:07 +0100
commitc2767ba11c3df7da52bcdca8979afbced644a428 (patch)
treeb954c87552e87779dd89f57f9d325a40e6421601 /morphlib/localrepocache_tests.py
parent56210f0bf302edb1db3e54cd79e0b29493ecc885 (diff)
downloadmorph-c2767ba11c3df7da52bcdca8979afbced644a428.tar.gz
Update LocalRepoCache tests to use repo aliases instead of baseurls
Diffstat (limited to 'morphlib/localrepocache_tests.py')
-rw-r--r--morphlib/localrepocache_tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/morphlib/localrepocache_tests.py b/morphlib/localrepocache_tests.py
index 76c21316..dfa92518 100644
--- a/morphlib/localrepocache_tests.py
+++ b/morphlib/localrepocache_tests.py
@@ -23,9 +23,9 @@ import morphlib
class LocalRepoCacheTests(unittest.TestCase):
def setUp(self):
- baseurls = ['git://example.com/']
+ aliases = ['upstream=git://example.com/%s=example.com:%s.git']
bundle_base_url = 'http://lorry.example.com/bundles/'
- self.reponame = 'reponame'
+ self.reponame = 'upstream:reponame'
self.repourl = 'git://example.com/reponame'
escaped_url = 'git___example_com_reponame'
self.bundle_url = '%s%s.bndl' % (bundle_base_url, escaped_url)
@@ -36,7 +36,7 @@ class LocalRepoCacheTests(unittest.TestCase):
self.fetched = []
self.removed = []
self.lrc = morphlib.localrepocache.LocalRepoCache(self.cachedir,
- baseurls,
+ aliases,
bundle_base_url)
self.lrc._git = self.fake_git
self.lrc._exists = self.fake_exists
@@ -77,13 +77,13 @@ class LocalRepoCacheTests(unittest.TestCase):
self.cache.add(path)
return True
- def test_has_not_got_relative_repo_initially(self):
+ def test_has_not_got_shortened_repo_initially(self):
self.assertFalse(self.lrc.has_repo(self.reponame))
def test_has_not_got_absolute_repo_initially(self):
self.assertFalse(self.lrc.has_repo(self.repourl))
- def test_caches_relative_repository_on_request(self):
+ def test_caches_shortened_repository_on_request(self):
self.lrc.cache_repo(self.reponame)
self.assertTrue(self.lrc.has_repo(self.reponame))
self.assertTrue(self.lrc.has_repo(self.repourl))
@@ -122,7 +122,7 @@ class LocalRepoCacheTests(unittest.TestCase):
self.assertEqual(self.removed, [self.cache_path + '.bundle'])
self.assertEqual(self.remotes['origin']['url'], self.repourl)
- def test_gets_cached_relative_repo(self):
+ def test_gets_cached_shortened_repo(self):
self.lrc.cache_repo(self.reponame)
cached = self.lrc.get_repo(self.reponame)
self.assertTrue(cached is not None)