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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import pytest
from mozunit import main
from gecko_taskgraph.test.conftest import FakeParameters, FakeTransformConfig
from gecko_taskgraph.transforms import job # noqa: F401
from gecko_taskgraph.transforms.task import (
TREEHERDER_ROOT_URL,
get_treeherder_link,
get_treeherder_project,
)
@pytest.mark.parametrize(
"params,branch_map,expected_project",
[
pytest.param(
{
"head_ref": "refs/heads/main",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
},
{},
"test-project",
id="no_branch_map",
),
pytest.param(
{
"head_ref": "refs/heads/main",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
},
{"main": "firefox-main"},
"firefox-main",
id="branch_map_match",
),
pytest.param(
{
"head_ref": "refs/heads/develop",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
},
{"main": "firefox-main"},
"test-project",
id="branch_map_no_match",
),
pytest.param(
{
"head_ref": "refs/heads/main",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
},
{
"by-project": {
"test-project": {"main": "firefox-main"},
"default": {},
},
},
"firefox-main",
id="by-project-match",
),
pytest.param(
{
"head_ref": "refs/heads/develop",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
},
{
"by-project": {
"test-project": {"main": "firefox-main"},
"default": {},
},
},
"test-project",
id="by-project-no-match",
),
pytest.param(
{
"head_ref": "",
"project": "test-project",
"repository_type": "hg",
"tasks_for": "hg-push",
},
{"main": "firefox-main"},
"test-project",
id="empty_head_ref",
),
pytest.param(
{
"head_ref": "refs/heads/release",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-pull-request",
},
{"release": "mozilla-release"},
"test-project-pr",
id="pull_request",
),
],
)
def test_get_treeherder_project(params, branch_map, expected_project):
graph_config = {
"project-repo-param-prefix": "",
"treeherder": {"group-names": {}},
}
if branch_map:
graph_config["treeherder"]["branch-map"] = branch_map
config = FakeTransformConfig(
params=FakeParameters(params),
graph_config=graph_config,
)
project = get_treeherder_project(config)
assert project == expected_project
def test_get_treeherder_link():
branch = "main"
repo = "firefox-main"
graph_config = {
"project-repo-param-prefix": "",
"treeherder": {"group-names": {}, "branch-map": {branch: repo}},
}
params = {
"head_ref": f"refs/heads/{branch}",
"head_rev": "def456",
"project": "test-project",
"repository_type": "git",
"tasks_for": "github-push",
}
config = FakeTransformConfig(
params=FakeParameters(params),
graph_config=graph_config,
)
link = get_treeherder_link(config)
expected_link = f"{TREEHERDER_ROOT_URL}/#/jobs?repo={repo}&revision={params['head_rev']}&selectedTaskRun=<self>"
assert link == expected_link
if __name__ == "__main__":
main()
|