|
30 | 30 | from bloom.commands.git.patch import import_cmd
|
31 | 31 | from bloom.commands.git.patch import remove_cmd
|
32 | 32 |
|
| 33 | +from bloom.generators.debian.generator import sanitize_package_name |
| 34 | + |
33 | 35 |
|
34 | 36 | def create_upstream_repository(packages, directory=None):
|
35 | 37 | upstream_dir = 'upstream_repo_groovy'
|
@@ -115,8 +117,9 @@ def _test_unary_package_repository(release_dir, version, directory=None):
|
115 | 117 | "no patches/release/groovy/foo branch"
|
116 | 118 | # was the release tag created?
|
117 | 119 | ret, out, err = user('git tag', return_io=True)
|
118 |
| - assert out.count('release/groovy/foo/' + version + '-0') == 1, \ |
119 |
| - "no release tag created" |
| 120 | + expected = 'release/groovy/foo/' + version + '-0' |
| 121 | + assert out.count(expected) == 1, \ |
| 122 | + "no release tag created, expected: '{0}'".format(expected) |
120 | 123 |
|
121 | 124 | ###
|
122 | 125 | ### Make patch
|
@@ -189,7 +192,7 @@ def test_multi_package_repository(directory=None):
|
189 | 192 | """
|
190 | 193 | directory = directory if directory is not None else os.getcwd()
|
191 | 194 | # Setup
|
192 |
| - pkgs = ['foo', 'bar', 'baz'] |
| 195 | + pkgs = ['foo', 'bar_ros', 'baz'] |
193 | 196 | upstream_dir = create_upstream_repository(pkgs, directory)
|
194 | 197 | upstream_url = 'file://' + upstream_dir
|
195 | 198 | release_url = create_release_repo(
|
@@ -289,17 +292,19 @@ def test_multi_package_repository(directory=None):
|
289 | 292 | ret, out, err = user('git tag', return_io=True)
|
290 | 293 | for pkg in pkgs:
|
291 | 294 | for distro in ['oneiric', 'precise', 'quantal']:
|
| 295 | + pkg_san = sanitize_package_name(pkg) |
292 | 296 | # Does the debian/distro/pkg branch exist?
|
293 | 297 | assert branch_exists('debian/groovy/' + distro + '/' + pkg), \
|
294 |
| - "no release/" + pkg + " branch" |
| 298 | + "no debian/groovy/" + pkg + " branch" |
295 | 299 | # Does the patches/debian/distro/pkg branch exist?
|
296 | 300 | patches_branch = 'patches/debian/groovy/' + distro + '/' + pkg
|
297 | 301 | assert branch_exists(patches_branch), \
|
298 |
| - "no patches/release/" + pkg + " branch" |
| 302 | + "no " + patches_branch + " branch" |
299 | 303 | # Did the debian tag get created?
|
300 |
| - tag = 'debian/ros-groovy-' + pkg + '_0.1.0-0_' + distro |
| 304 | + tag = 'debian/ros-groovy-' + pkg_san + '_0.1.0-0_' + distro |
301 | 305 | assert out.count(tag) == 1, \
|
302 |
| - "no release tag created for '" + pkg + "': `" + out + "`" |
| 306 | + "no '" + tag + "'' tag created for '" + pkg + "': `\n" + \ |
| 307 | + out + "\n`" |
303 | 308 | # Is there a package.xml in the top level?
|
304 | 309 | with inbranch('debian/groovy/' + distro + '/' + pkg):
|
305 | 310 | assert os.path.exists('package.xml'), "release branch invalid"
|
|
0 commit comments