1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

Fire events on issue changes (#3818)

* Fire events on issue changes

* API includes if suggestion has autofix
This commit is contained in:
Mike Degatano
2022-08-25 05:42:31 -04:00
committed by GitHub
parent ffa524d3a4
commit d5f9fcfdc7
8 changed files with 244 additions and 25 deletions

View File

@@ -130,3 +130,30 @@ async def test_api_resolution_check_run(coresys: CoreSys, api_client):
await api_client.post(f"/resolution/check/{free_space.slug}/run")
assert free_space.run_check.called
async def test_api_resolution_suggestions_for_issue(coresys: CoreSys, api_client):
"""Test getting suggestions that fix an issue."""
coresys.resolution.issues = corrupt_repo = Issue(
IssueType.CORRUPT_REPOSITORY, ContextType.STORE, "repo_1"
)
resp = await api_client.get(f"/resolution/issue/{corrupt_repo.uuid}/suggestions")
result = await resp.json()
assert result["data"]["suggestions"] == []
coresys.resolution.suggestions = execute_reset = Suggestion(
SuggestionType.EXECUTE_RESET, ContextType.STORE, "repo_1"
)
coresys.resolution.suggestions = execute_remove = Suggestion(
SuggestionType.EXECUTE_REMOVE, ContextType.STORE, "repo_1"
)
resp = await api_client.get(f"/resolution/issue/{corrupt_repo.uuid}/suggestions")
result = await resp.json()
assert result["data"]["suggestions"][0]["uuid"] == execute_reset.uuid
assert result["data"]["suggestions"][0]["auto"] is True
assert result["data"]["suggestions"][1]["uuid"] == execute_remove.uuid
assert result["data"]["suggestions"][1]["auto"] is False