Skip to content

Commit

Permalink
tests: add current_status to Focal api_fix_plan
Browse files Browse the repository at this point in the history
Add missing field to the fix plan API return for the Focal test
  • Loading branch information
lucasmoura committed Jun 14, 2024
1 parent 41f26ac commit e7e07f1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion features/api_fix_plan.feature
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ Feature: Fix plan API endpoints
"affected_packages": [
"klibc"
],
"current_status": "fixed",
"description": "klibc vulnerabilities",
"error": null,
"expected_status": "fixed",
Expand Down Expand Up @@ -493,6 +494,7 @@ Feature: Fix plan API endpoints
"associated_launchpad_bugs": []
},
"affected_packages": [],
"current_status": "not-affected",
"description": "klibc vulnerabilities",
"error": null,
"expected_status": "not-affected",
Expand Down Expand Up @@ -573,7 +575,7 @@ Feature: Fix plan API endpoints
"affected_packages": [
"awl"
],
"current_status": "not-affected",
"current_status": "still-affected",
"description": "AWL vulnerability",
"error": null,
"expected_status": "fixed",
Expand Down Expand Up @@ -606,6 +608,7 @@ Feature: Fix plan API endpoints
"associated_launchpad_bugs": []
},
"affected_packages": [],
"current_status": "not-affected",
"description": "zlib vulnerability",
"error": null,
"expected_status": "not-affected",
Expand All @@ -631,6 +634,7 @@ Feature: Fix plan API endpoints
"affected_packages": [
"zlib"
],
"current_status": "still-affected",
"description": "zlib vulnerability",
"error": null,
"expected_status": "fixed",
Expand Down Expand Up @@ -665,6 +669,7 @@ Feature: Fix plan API endpoints
"affected_packages": [
"klibc"
],
"current_status": "fixed",
"description": "klibc vulnerabilities",
"error": null,
"expected_status": "fixed",
Expand Down Expand Up @@ -695,6 +700,7 @@ Feature: Fix plan API endpoints
"associated_launchpad_bugs": []
},
"affected_packages": [],
"current_status": "not-affected",
"description": "klibc vulnerabilities",
"error": null,
"expected_status": "not-affected",
Expand All @@ -721,6 +727,7 @@ Feature: Fix plan API endpoints
"affected_packages": [
"rsync"
],
"current_status": "still-affected",
"description": "rsync vulnerability",
"error": null,
"expected_status": "fixed",
Expand Down

0 comments on commit e7e07f1

Please sign in to comment.