Mercurial > hg > buttercup
changeset 25:a54543838686
add test for source demunging
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 30 May 2011 21:11:19 -0700 |
parents | 88f3d83eb858 |
children | 8179c05d7692 |
files | buttercup/buttercup.py buttercup/checkout.py buttercup/source.py tests/doctest.txt |
diffstat | 4 files changed, 15 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/buttercup/buttercup.py Mon May 30 21:03:45 2011 -0700 +++ b/buttercup/buttercup.py Mon May 30 21:11:19 2011 -0700 @@ -31,3 +31,5 @@ for package in self.PACKAGES ]} sources['git'] = ['git://github.com/mozilla/toolbox.git'] + +
--- a/buttercup/checkout.py Mon May 30 21:03:45 2011 -0700 +++ b/buttercup/checkout.py Mon May 30 21:11:19 2011 -0700 @@ -12,6 +12,7 @@ import os import sys import subprocess +from buttercup import Buttercup from optparse import OptionParser HG='http://k0s.org/hg'
--- a/buttercup/source.py Mon May 30 21:03:45 2011 -0700 +++ b/buttercup/source.py Mon May 30 21:11:19 2011 -0700 @@ -58,7 +58,7 @@ __call__ = update -def VCS_sources(source_dict, **kwargs): +def sources(source_dict, **kwargs): retval = [] for repo_type, sources in source_dict.items(): if repo_type == 'hg':
--- a/tests/doctest.txt Mon May 30 21:03:45 2011 -0700 +++ b/tests/doctest.txt Mon May 30 21:11:19 2011 -0700 @@ -9,9 +9,18 @@ Test source resolution:: - >>> hgsource = source.HgSource('http://k0s.org/hg/pyloader') + >>> pyloader = 'http://k0s.org/hg/pyloader' + >>> hgsource = source.HgSource(pyloader) >>> hgsource.directory() == os.path.join(cwd, 'pyloader') True - >>> gitsource = source.GitSource('git://github.com/mozilla/toolbox.git') + >>> toolbox = 'git://github.com/mozilla/toolbox.git' + >>> gitsource = source.GitSource(toolbox) >>> gitsource.directory() == os.path.join(cwd, 'toolbox') True + +Test source resolution with a dictionary:: + + >>> source_dict = {'hg': [pyloader], 'git': [toolbox]} + >>> sources = source.sources(source_dict, srcdir='/tmp') + >>> sorted([i.directory() for i in sources]) + ['/tmp/pyloader', '/tmp/toolbox']