-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix/remove-giturlparse' of https://github.com/philipsd6…
…/gilt into philipsd6-fix/remove-giturlparse
- Loading branch information
Showing
3 changed files
with
226 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,6 @@ install_requires = | |
click | ||
colorama | ||
fasteners | ||
git-url-parse | ||
PyYAML | ||
sh | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,14 +34,14 @@ def test_config(gilt_config_file): | |
gilt_root = os.path.basename(config.BASE_WORKING_DIR) | ||
|
||
r = result[0] | ||
assert "https://github.com/retr0h/ansible-etcd.git" == r.git | ||
assert "master" == r.version | ||
assert "retr0h.ansible-etcd" == r.name | ||
assert (gilt_root, "clone", "retr0h.ansible-etcd") == os_split(r.src)[-3:] | ||
assert (gilt_root, "lock", "retr0h.ansible-etcd") == os_split(r.lock_file)[ | ||
-3: | ||
] | ||
assert ("roles", "retr0h.ansible-etcd", "") == os_split(r.dst)[-3:] | ||
assert 'https://github.com/retr0h/ansible-etcd.git' == r.git | ||
assert 'master' == r.version | ||
assert 'retr0h.ansible-etcd' == r.name | ||
assert (gilt_root, 'clone', 'github.com', | ||
'retr0h.ansible-etcd') == os_split(r.src)[-4:] | ||
assert (gilt_root, 'lock', 'github.com', | ||
'retr0h.ansible-etcd') == os_split(r.lock_file)[-4:] | ||
assert ('roles', 'retr0h.ansible-etcd', '') == os_split(r.dst)[-3:] | ||
assert [] == r.files | ||
|
||
r = result[1] | ||
|
@@ -52,9 +52,174 @@ def test_config(gilt_config_file): | |
assert r.dst is None | ||
|
||
f = r.files[0] | ||
x = (gilt_root, "clone", "lorin.openstack-ansible-modules", "*_manage") | ||
assert x == os_split(f.src)[-4:] | ||
assert ("library", "") == os_split(f.dst)[-2:] | ||
x = (gilt_root, 'clone', 'github.com', | ||
'lorin.openstack-ansible-modules', '*_manage') | ||
assert x == os_split(f.src)[-5:] | ||
assert ('library', '') == os_split(f.dst)[-2:] | ||
|
||
|
||
gilt_repos = [ | ||
( | ||
"example.com:/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"example.com:owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"example.com:repo.git", | ||
{"name": "repo", "owner": "", "hostname": "example.com"}, | ||
), | ||
( | ||
"git+https://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"git+ssh://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"git+ssh://[email protected]/~philip.sd6/test.repo.git", | ||
{ | ||
"name": "test.repo", | ||
"owner": "philip.sd6", | ||
"hostname": "git.example.com", | ||
}, | ||
), | ||
( | ||
"git://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://example.com/owner/repo", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://example.com/repo", | ||
{"name": "repo", "owner": "", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://example.com:29418/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://[email protected]/user/repo", | ||
{"name": "repo", "owner": "user", "hostname": "example.com"}, | ||
), | ||
( | ||
"http://[email protected]:29418/user/repo", | ||
{"name": "repo", "owner": "user", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://example.com/git/scm/project/my-sample.repo.git", | ||
{ | ||
"name": "my-sample.repo", | ||
"owner": "project", | ||
"hostname": "example.com", | ||
}, | ||
), | ||
( | ||
"https://example.com/git/scm/~philip.sd6/my-sample.repo.git", | ||
{ | ||
"name": "my-sample.repo", | ||
"owner": "philip.sd6", | ||
"hostname": "example.com", | ||
}, | ||
), | ||
( | ||
"https://example.com/owner/repo", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://example.com/repo", | ||
{"name": "repo", "owner": "", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://example.com:29418/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://github.com/sphinx-doc/sphinx.git", | ||
{"name": "sphinx", "owner": "sphinx-doc", "hostname": "github.com"}, | ||
), | ||
( | ||
"https://github.com/tterranigma/Stouts.openvpn", | ||
{ | ||
"name": "Stouts.openvpn", | ||
"owner": "tterranigma", | ||
"hostname": "github.com", | ||
}, | ||
), | ||
( | ||
"https://github.com/tterranigma/Stouts.openvpn.git", | ||
{ | ||
"name": "Stouts.openvpn", | ||
"owner": "tterranigma", | ||
"hostname": "github.com", | ||
}, | ||
), | ||
( | ||
"https://[email protected]/user/repo", | ||
{"name": "repo", "owner": "user", "hostname": "example.com"}, | ||
), | ||
( | ||
"https://[email protected]:29418/user/repo", | ||
{"name": "repo", "owner": "user", "hostname": "example.com"}, | ||
), | ||
( | ||
"rsync://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"ssh://example.com/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"ssh://example.com:29418/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"ssh://[email protected]/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"ssh://[email protected]:29418/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"[email protected]:/owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"[email protected]:owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "example.com"}, | ||
), | ||
( | ||
"[email protected]:repo.git", | ||
{"name": "repo", "owner": "", "hostname": "example.com"}, | ||
), | ||
( | ||
"[email protected]:owner/repo.git", | ||
{"name": "repo", "owner": "owner", "hostname": "foo-example.com"}, | ||
), | ||
] | ||
|
||
|
||
@pytest.mark.parametrize('uri,expected', gilt_repos) | ||
def test_config_repo(uri, expected): | ||
parsedrepo = config._parse_repo_uri(uri) | ||
assert parsedrepo.hostname == expected['hostname'] | ||
assert parsedrepo.owner == expected['owner'] | ||
assert parsedrepo.name == expected['name'] | ||
|
||
|
||
@pytest.fixture() | ||
|