Skip to content

Commit

Permalink
Handle exception when making testing-farm request (#655)
Browse files Browse the repository at this point in the history
* Handle exception when making testing-farm request

We also add an exception that checks the exception is really thrown if a
compose is determined that doesn't exist.
  • Loading branch information
kwk committed Aug 21, 2024
1 parent e488fdf commit d41216d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 11 deletions.
28 changes: 17 additions & 11 deletions snapshot_manager/snapshot_manager/snapshot_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,17 +368,23 @@ def check_todays_builds(self) -> None:
self.github.flip_test_label(issue, chroot, in_testing)
else:
logging.info(f"Starting tests for chroot {chroot}")
request = tf.TestingFarmRequest.make(
chroot=chroot,
config=self.config,
issue=issue,
copr_build_ids=current_copr_build_ids,
)
logging.info(
f"testing-farm request ID for {chroot}: {request.request_id}"
)
requests[chroot] = request
self.github.flip_test_label(issue, chroot, in_testing)
try:
request = tf.TestingFarmRequest.make(
chroot=chroot,
config=self.config,
issue=issue,
copr_build_ids=current_copr_build_ids,
)
except Exception as ex:
logging.warning(
f"testing-farm request for {chroot} failed with: {ex}"
)
else:
logging.info(
f"testing-farm request ID for {chroot}: {request.request_id}"
)
requests[chroot] = request
self.github.flip_test_label(issue, chroot, in_testing)

# Create or update a comment for testing-farm results display
if len(failed_test_cases) > 0:
Expand Down
21 changes: 21 additions & 0 deletions snapshot_manager/tests/testing_farm_util_test.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,32 @@
""" Tests for build_status """

import datetime

import tests.base_test as base_test

import snapshot_manager.github_util as github_util
import snapshot_manager.testing_farm_util as tf


class TestTestingFarmUtil(base_test.TestBase):
def test_make_with_missing_compose(self):
cfg = self.config
cfg.datetime = datetime.datetime(year=2024, month=2, day=27)
self.assertEqual("20240227", cfg.yyyymmdd)
gh = github_util.GithubClient(config=cfg)

issue = gh.get_todays_github_issue(
strategy="big-merge", github_repo="fedora-llvm-team/llvm-snapshots"
)

with self.assertRaises(SystemError):
tf.TestingFarmRequest.make(
chroot="fedora-900-x86_64",
config=self.config,
issue=issue,
copr_build_ids=[1, 2, 3],
)

def test_fetch_failed_test_cases_from_file(self):
request_id = "1f25b0df-71f1-4a13-a4b8-c066f6f5f116"
chroot = "fedora-39-x86_64"
Expand Down

0 comments on commit d41216d

Please sign in to comment.