test/builder: check log fetching
For each compose, mock also the "compose/<id>/logs" API endpoint and just return some string. Add a feature to be able to control the http status of the route though, so we can simulate failures during log fetching.
This commit is contained in:
parent
e81ac2d946
commit
7cc225716c
1 changed files with 59 additions and 0 deletions
|
|
@ -29,6 +29,7 @@ class MockComposer:
|
||||||
self.errors = []
|
self.errors = []
|
||||||
self.build_id = 1
|
self.build_id = 1
|
||||||
self.status = "success"
|
self.status = "success"
|
||||||
|
self.routes = {}
|
||||||
|
|
||||||
def httpretty_regsiter(self):
|
def httpretty_regsiter(self):
|
||||||
httpretty.register_uri(
|
httpretty.register_uri(
|
||||||
|
|
@ -68,6 +69,9 @@ class MockComposer:
|
||||||
"request": js,
|
"request": js,
|
||||||
"result": compose,
|
"result": compose,
|
||||||
"status": self.status,
|
"status": self.status,
|
||||||
|
"routes": {
|
||||||
|
"logs": 200
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
httpretty.register_uri(
|
httpretty.register_uri(
|
||||||
|
|
@ -76,6 +80,12 @@ class MockComposer:
|
||||||
body=self.compose_status
|
body=self.compose_status
|
||||||
)
|
)
|
||||||
|
|
||||||
|
httpretty.register_uri(
|
||||||
|
httpretty.GET,
|
||||||
|
urllib.parse.urljoin(self.url, "compose/" + compose_id + "/logs"),
|
||||||
|
body=self.compose_logs
|
||||||
|
)
|
||||||
|
|
||||||
return [201, response_headers, json.dumps(compose)]
|
return [201, response_headers, json.dumps(compose)]
|
||||||
|
|
||||||
def compose_status(self, _request, uri, response_headers):
|
def compose_status(self, _request, uri, response_headers):
|
||||||
|
|
@ -94,6 +104,23 @@ class MockComposer:
|
||||||
}
|
}
|
||||||
return [200, response_headers, json.dumps(result)]
|
return [200, response_headers, json.dumps(result)]
|
||||||
|
|
||||||
|
def compose_logs(self, _request, uri, response_headers):
|
||||||
|
route = self.routes.get("logs")
|
||||||
|
if route and route["status"] != 200:
|
||||||
|
return [route["status"], response_headers, "Internal error"]
|
||||||
|
|
||||||
|
target = os.path.basename(os.path.dirname(uri))
|
||||||
|
compose = self.composes.get(target)
|
||||||
|
if not compose:
|
||||||
|
return [400, response_headers, f"Unknown compose: {target}"]
|
||||||
|
|
||||||
|
ireqs = compose["request"]["image_requests"]
|
||||||
|
result = {
|
||||||
|
"image_logs": [
|
||||||
|
{"osbuild": "log log log"} for _ in ireqs
|
||||||
|
]
|
||||||
|
}
|
||||||
|
return [200, response_headers, json.dumps(result)]
|
||||||
|
|
||||||
class UploadTracker:
|
class UploadTracker:
|
||||||
"""Mock koji file uploading and keep track of uploaded files
|
"""Mock koji file uploading and keep track of uploaded files
|
||||||
|
|
@ -448,7 +475,11 @@ class TestBuilderPlugin(PluginTest):
|
||||||
have = [r["baseurl"] for r in ir["repositories"]]
|
have = [r["baseurl"] for r in ir["repositories"]]
|
||||||
self.assertEqual(have, repos)
|
self.assertEqual(have, repos)
|
||||||
|
|
||||||
|
# check uploads: logs, compose request
|
||||||
|
for arch in arches:
|
||||||
|
self.uploads.assert_upload(f"{arch}-image_type.log.json")
|
||||||
self.uploads.assert_upload("compose-request.json")
|
self.uploads.assert_upload("compose-request.json")
|
||||||
|
|
||||||
build_id = res["koji"]["build"]
|
build_id = res["koji"]["build"]
|
||||||
# build should have been tagged
|
# build should have been tagged
|
||||||
self.assertIn(build_id, session.host.tags)
|
self.assertIn(build_id, session.host.tags)
|
||||||
|
|
@ -475,9 +506,37 @@ class TestBuilderPlugin(PluginTest):
|
||||||
handler.handler(*args)
|
handler.handler(*args)
|
||||||
|
|
||||||
self.uploads.assert_upload("compose-request.json")
|
self.uploads.assert_upload("compose-request.json")
|
||||||
|
self.uploads.assert_upload("x86_64-image_type.log.json")
|
||||||
# build must not have been tagged
|
# build must not have been tagged
|
||||||
self.assertEqual(len(session.host.tags), 0)
|
self.assertEqual(len(session.host.tags), 0)
|
||||||
|
|
||||||
|
@httpretty.activate
|
||||||
|
def test_compose_no_logs(self):
|
||||||
|
# Simulate fetching the logs fails, a non-fatal issue
|
||||||
|
session = self.mock_session()
|
||||||
|
handler = self.make_handler(session=session)
|
||||||
|
|
||||||
|
url = self.plugin.DEFAULT_COMPOSER_URL
|
||||||
|
composer = MockComposer(url)
|
||||||
|
composer.httpretty_regsiter()
|
||||||
|
|
||||||
|
args = ["name", "version", "distro",
|
||||||
|
["image_type"],
|
||||||
|
"fedora-candidate",
|
||||||
|
composer.architectures,
|
||||||
|
{}]
|
||||||
|
|
||||||
|
composer.routes["logs"] = {
|
||||||
|
"status": 500
|
||||||
|
}
|
||||||
|
|
||||||
|
res = handler.handler(*args)
|
||||||
|
assert res, "invalid compose result"
|
||||||
|
|
||||||
|
self.uploads.assert_upload("compose-request.json")
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
self.uploads.assert_upload("x86_64-image_type.log.json")
|
||||||
|
|
||||||
@httpretty.activate
|
@httpretty.activate
|
||||||
def test_cli_compose_success(self):
|
def test_cli_compose_success(self):
|
||||||
# Check the basic usage of the plugin as a stand-alone client
|
# Check the basic usage of the plugin as a stand-alone client
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue