-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathtest_github_create_release.py
115 lines (89 loc) · 3.63 KB
/
test_github_create_release.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import os
import uuid
import pytest
from planemo import git
from planemo.github_util import (
add_dir_contents_to_repo,
assert_new_version,
changelog_in_repo,
get_or_create_repository,
)
from planemo.io import temp_directory
from .test_utils import (
test_context,
)
def test_changelog_in_repo():
CHANGELOG = """
# Changelog
## [0.2]
### Changed
- Turn the AmpliconRemoval variant FILTER into an AmpliconBias INFO flag
## [0.1]
- Initial version of COVID-19: variation analysis on ARTIC PE data workflow
"""
EXPECTED_FRAGMENT = """## [0.2]
### Changed
- Turn the AmpliconRemoval variant FILTER into an AmpliconBias INFO flag
"""
with temp_directory() as test_dir:
with open(os.path.join(test_dir, "CHANGELOG.md"), 'w') as changelog:
changelog.write(CHANGELOG)
assert changelog_in_repo(test_dir) == EXPECTED_FRAGMENT
def test_get_or_create_repo_with_existing_repo():
ctx = test_context()
ctx._global_config = {"github": {"access_token": 'ABCDEFG'}}
repository_path = get_or_create_repository(ctx, owner='galaxyproject', repo='planemo', dry_run=False)
assert os.path.exists(os.path.join(repository_path, 'README.rst'))
def test_get_or_create_repo_with_new_repo():
ctx = test_context()
ctx._global_config = {"github": {"access_token": 'ABCDEFG'}}
with pytest.raises(RuntimeError) as excinfo:
# Token isn't valid, so this errors out while running gh create
get_or_create_repository(ctx, owner=str(uuid.uuid4()), repo='some-repo', dry_run=False)
assert "Problem executing commands" in str(excinfo.value)
assert "repo create -y" in str(excinfo.value)
def test_add_dir_contents_to_repo():
ctx = test_context()
ctx._global_config = {"github": {"access_token": 'ABCDEFG'}}
with temp_directory() as test_dir, temp_directory() as repo_dir:
with open(os.path.join(test_dir, 'Readme.md'), 'w') as readme:
readme.write('#Very important!')
git.init(ctx, repo_path=repo_dir)
with pytest.raises(RuntimeError) as excinfo:
# Can't push without remote
add_dir_contents_to_repo(
ctx,
from_dir=test_dir,
target_dir="workflows/my-cool-workflow",
target_repository_path=repo_dir,
version=1.0,
notes='The big release!',
dry_run=False
)
assert "Problem executing commands git push" in str(excinfo.value)
def test_add_dir_contents_to_repo_dry_run():
ctx = test_context()
ctx._global_config = {"github": {"access_token": 'ABCDEFG'}}
with temp_directory() as test_dir, temp_directory() as repo_dir:
with open(os.path.join(test_dir, 'Readme.md'), 'w') as readme:
readme.write('#Very important!')
git.init(ctx, repo_path=repo_dir)
add_dir_contents_to_repo(
ctx,
from_dir=test_dir,
target_dir="workflows/my-cool-workflow",
target_repository_path=repo_dir,
version=1.0,
notes='The big release!',
dry_run=True
)
def test_git_ls_remote():
ctx = test_context()
tags_and_commits = git.ls_remote(ctx, 'https://github.com/galaxyproject/galaxy')
assert 'refs/heads/release_20.09' in tags_and_commits
def test_assert_is_new_version_raises_exception():
with pytest.raises(Exception) as excinfo:
assert_new_version(None, version='v20.05', owner='galaxyproject', repo='galaxy')
assert "Please change the version" in str(excinfo)
def test_assert_is_new_version():
assert_new_version(None, version='v20.06', owner='galaxyproject', repo='galaxy')