Skip to content

Commit 2e5ac98

Browse files
committed
State action in special pkg removal report msgs
Customers have been confused when seeing the messages, not knowing what should they do.
1 parent 52054d3 commit 2e5ac98

File tree

2 files changed

+52
-46
lines changed

2 files changed

+52
-46
lines changed

convert2rhel/actions/pre_ponr_changes/handle_packages.py

+16-8
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,21 @@ def run(self):
146146
# shows which packages were not removed, if false, all packages were removed
147147
pkgs_not_removed = sorted(frozenset(pkghandler.get_pkg_nevras(all_pkgs)).difference(pkgs_removed))
148148
if pkgs_not_removed:
149-
message = "The following packages were not removed: %s" % ", ".join(pkgs_not_removed)
149+
message = "The following packages cannot be removed: %s" % ", ".join(pkgs_not_removed)
150150
logger.warning(message)
151151
self.add_message(
152152
level="WARNING",
153153
id="SPECIAL_PACKAGES_NOT_REMOVED",
154-
title="Special packages not removed",
155-
description="Special packages which could not be removed",
156-
diagnosis=message,
154+
title="Some packages cannot be removed",
155+
description=message,
156+
diagnosis=(
157+
"The packages match a pre-defined list of packages that are to be removed during the"
158+
" conversion. This list includes packages that are known to cause a conversion failure."
159+
),
160+
remediations=(
161+
"We do a conversion dry-run (yum transaction validation) later on as part of the pre-conversion"
162+
" analysis. If the dry-run fails, try removing the packages listed above manually."
163+
),
157164
)
158165

159166
if pkgs_removed:
@@ -162,12 +169,13 @@ def run(self):
162169
self.add_message(
163170
level="INFO",
164171
id="SPECIAL_PACKAGES_REMOVED",
165-
title="Special packages to be removed",
166-
description=(
172+
title="Packages to be removed",
173+
description=message,
174+
diagnosis=(
167175
"We have identified installed packages that match a pre-defined list of packages that are"
168-
" to be removed during the conversion"
176+
" known to cause a conversion failure."
169177
),
170-
diagnosis=message,
178+
remediations=("Check that the system runs correctly without the packages after the conversion."),
171179
)
172180

173181
super(RemoveSpecialPackages, self).run()

convert2rhel/unit_tests/actions/pre_ponr_changes/handle_packages_test.py

+36-38
Original file line numberDiff line numberDiff line change
@@ -166,20 +166,19 @@ def test_run_no_packages_to_remove(self, monkeypatch, remove_special_packages_in
166166
def test_run_all_removed(self, monkeypatch, remove_special_packages_instance):
167167
pkgs_to_remove = [get_centos_logos_pkg_object()]
168168
pkgs_removed = ["centos-logos-70.0.6-3.el7.centos.noarch"]
169-
expected = set(
170-
(
171-
actions.ActionMessage(
172-
level="INFO",
173-
id="SPECIAL_PACKAGES_REMOVED",
174-
title="Special packages to be removed",
175-
description="We have identified installed packages that match a pre-defined list of packages that are"
176-
" to be removed during the conversion",
177-
diagnosis="The following packages will be removed during the conversion: centos-logos-70.0.6-3.el7.centos.noarch",
178-
remediations=None,
179-
variables={},
180-
),
169+
expected = {
170+
actions.ActionMessage(
171+
level="INFO",
172+
id="SPECIAL_PACKAGES_REMOVED",
173+
title="Packages to be removed",
174+
description="The following packages will be removed during the conversion:"
175+
" centos-logos-70.0.6-3.el7.centos.noarch",
176+
diagnosis="We have identified installed packages that match a pre-defined list of packages that"
177+
" are known to cause a conversion failure.",
178+
remediations="Check that the system runs correctly without the packages after the conversion.",
179+
variables={},
181180
)
182-
)
181+
}
183182
monkeypatch.setattr(
184183
pkghandler, "get_packages_to_remove", GetPackagesToRemoveMocked(return_value=pkgs_to_remove)
185184
)
@@ -199,31 +198,30 @@ def test_run_all_removed(self, monkeypatch, remove_special_packages_instance):
199198
@centos8
200199
def test_run_packages_not_removed(self, pretend_os, monkeypatch, remove_special_packages_instance):
201200
pkgs_removed = ["kernel-core"]
202-
expected = set(
203-
(
204-
actions.ActionMessage(
205-
level="WARNING",
206-
id="SPECIAL_PACKAGES_NOT_REMOVED",
207-
title="Special packages not removed",
208-
description="Special packages which could not be removed",
209-
diagnosis="The following packages were not removed: gpg-pubkey-1.0.0-1.x86_64, pkg1-None-None.None, pkg2-None-None.None",
210-
remediations=None,
211-
variables={},
212-
),
213-
actions.ActionMessage(
214-
level="INFO",
215-
id="SPECIAL_PACKAGES_REMOVED",
216-
title="Special packages to be removed",
217-
description=(
218-
"We have identified installed packages that match a pre-defined list of packages that are"
219-
" to be removed during the conversion"
220-
),
221-
diagnosis="The following packages will be removed during the conversion: kernel-core",
222-
remediations=None,
223-
variables={},
224-
),
225-
)
226-
)
201+
expected = {
202+
actions.ActionMessage(
203+
level="WARNING",
204+
id="SPECIAL_PACKAGES_NOT_REMOVED",
205+
title="Some packages cannot be removed",
206+
description="The following packages cannot be removed: gpg-pubkey-1.0.0-1.x86_64, pkg1-None-None.None,"
207+
" pkg2-None-None.None",
208+
diagnosis="The packages match a pre-defined list of packages that are to be removed during the"
209+
" conversion. This list includes packages that are known to cause a conversion failure.",
210+
remediations="We do a conversion dry-run (yum transaction validation) later on as part of the"
211+
" pre-conversion analysis. If the dry-run fails, try removing the packages listed above manually.",
212+
variables={},
213+
),
214+
actions.ActionMessage(
215+
level="INFO",
216+
id="SPECIAL_PACKAGES_REMOVED",
217+
title="Packages to be removed",
218+
description="The following packages will be removed during the conversion: kernel-core",
219+
diagnosis="We have identified installed packages that match a pre-defined list of packages that"
220+
" are known to cause a conversion failure.",
221+
remediations="Check that the system runs correctly without the packages after the conversion.",
222+
variables={},
223+
),
224+
}
227225
monkeypatch.setattr(
228226
pkghandler, "get_packages_to_remove", GetPackagesToRemoveMocked(pkg_selection="fingerprints")
229227
)

0 commit comments

Comments
 (0)