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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
# 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/.
from datetime import datetime
from textwrap import dedent
from time import mktime
import pytest
from mozunit import main
from taskgraph.util.taskcluster import get_artifact_url, get_index_url, get_task_url
from gecko_taskgraph.util.backstop import (
BACKSTOP_INDEX,
BACKSTOP_PUSH_INTERVAL,
BACKSTOP_TIME_INTERVAL,
is_backstop,
)
LAST_BACKSTOP_PUSHID = 1
LAST_BACKSTOP_PUSHDATE = mktime(datetime.now().timetuple())
DEFAULT_RESPONSES = {
"index": {
"status": 200,
"json": {"taskId": LAST_BACKSTOP_PUSHID},
},
"artifact": {
"status": 200,
"body": dedent(
f"""
pushdate: {LAST_BACKSTOP_PUSHDATE}
pushlog_id: "{LAST_BACKSTOP_PUSHID}"
"""
),
},
"status": {
"status": 200,
"json": {"status": {"state": "complete"}},
},
}
@pytest.fixture
def params():
return {
"branch": "integration/autoland",
"head_repository": "https://hg.mozilla.org/integration/autoland",
"head_rev": "abcdef",
"project": "autoland",
"pushdate": LAST_BACKSTOP_PUSHDATE + 1,
"pushlog_id": f"{LAST_BACKSTOP_PUSHID + 1}",
"target_tasks_method": "default",
}
@pytest.mark.parametrize(
"response_args,extra_params,expected",
(
pytest.param(
{
"index": {"status": 404},
},
{"pushlog_id": "1"},
True,
id="no previous backstop",
),
pytest.param(
{
"index": DEFAULT_RESPONSES["index"],
"status": DEFAULT_RESPONSES["status"],
"artifact": {"status": 404},
},
{"pushlog_id": 1},
False,
id="previous backstop not finished",
),
pytest.param(
DEFAULT_RESPONSES,
{
"pushlog_id": f"{LAST_BACKSTOP_PUSHID + BACKSTOP_PUSH_INTERVAL - 1}",
"pushdate": LAST_BACKSTOP_PUSHDATE + (BACKSTOP_TIME_INTERVAL * 60) - 1,
},
False,
id="not a backstop",
),
pytest.param(
{},
{
"target_tasks_method": "nothing",
},
False,
id="dontbuild",
),
pytest.param(
DEFAULT_RESPONSES,
{
"pushlog_id": f"{LAST_BACKSTOP_PUSHID + BACKSTOP_PUSH_INTERVAL}",
},
True,
id="interval",
),
pytest.param(
DEFAULT_RESPONSES,
{
"pushlog_id": f"{LAST_BACKSTOP_PUSHID + BACKSTOP_PUSH_INTERVAL + 1}",
},
True,
id="greater than interval",
),
pytest.param(
DEFAULT_RESPONSES,
{
"pushdate": LAST_BACKSTOP_PUSHDATE + (BACKSTOP_TIME_INTERVAL * 60),
},
True,
id="time elapsed",
),
pytest.param(
{},
{
"project": "try",
"pushlog_id": f"{BACKSTOP_PUSH_INTERVAL}",
},
False,
id="try not a backstop",
),
pytest.param(
{},
{
"project": "mozilla-central",
},
True,
id="release branches always a backstop",
),
pytest.param(
{
"index": DEFAULT_RESPONSES["index"],
"status": {
"status": 200,
"json": {"status": {"state": "failed"}},
},
},
{},
True,
id="last backstop failed",
),
),
)
def test_is_backstop(
monkeypatch,
responses,
params,
response_args,
extra_params,
expected,
):
root_url = "https://taskcluster.example.com"
monkeypatch.delenv("TASKCLUSTER_PROXY_URL", raising=False)
monkeypatch.setenv("TASKCLUSTER_ROOT_URL", root_url)
urls = {
"index": get_index_url(
BACKSTOP_INDEX.format(
**{"trust-domain": "gecko", "project": params["project"]}
)
),
"artifact": get_artifact_url(LAST_BACKSTOP_PUSHID, "public%2Fparameters.yml"),
"status": get_task_url(LAST_BACKSTOP_PUSHID) + "/status",
}
for key in ("index", "status", "artifact"):
if key in response_args:
responses.add(responses.GET, urls[key], **response_args[key])
params.update(extra_params)
assert is_backstop(params) is expected
if __name__ == "__main__":
main()
|