Improved handling of role_version in repo_url_to_role_name

This commit is contained in:
Will Thames 2014-08-14 20:48:25 +10:00 committed by Michael DeHaan
parent 1803976a40
commit 4803e923ff
2 changed files with 4 additions and 1 deletions

View file

@ -356,6 +356,8 @@ def repo_url_to_role_name(repo_url):
trailing_path = repo_url.split('/')[-1]
if trailing_path.endswith('.git'):
trailing_path = trailing_path[:-4]
if ',' in trailing_path:
trailing_path = trailing_path.split(',')[0]
return trailing_path
def json_loads(data):

View file

@ -780,6 +780,7 @@ class TestUtils(unittest.TestCase):
def test_repo_url_to_role_name(self):
tests = [("http://git.example.com/repos/repo.git", "repo"),
("ssh://git@git.example.com:repos/role-name", "role-name")]
("ssh://git@git.example.com:repos/role-name", "role-name"),
("ssh://git@git.example.com:repos/role-name,v0.1", "role-name")]
for (url, result) in tests:
self.assertEqual(ansible.utils.repo_url_to_role_name(url), result)