@@ -173,20 +173,19 @@ def test_run_no_packages_to_remove(self, monkeypatch, remove_special_packages_in
173
173
def test_run_all_removed (self , monkeypatch , remove_special_packages_instance ):
174
174
pkgs_to_remove = [get_centos_logos_pkg_object ()]
175
175
pkgs_removed = ["centos-logos-70.0.6-3.el7.centos.noarch" ]
176
- expected = set (
177
- (
178
- actions .ActionMessage (
179
- level = "INFO" ,
180
- id = "SPECIAL_PACKAGES_REMOVED" ,
181
- title = "Special packages to be removed" ,
182
- description = "We have identified installed packages that match a pre-defined list of packages that are"
183
- " to be removed during the conversion" ,
184
- diagnosis = "The following packages will be removed during the conversion: centos-logos-70.0.6-3.el7.centos.noarch" ,
185
- remediations = None ,
186
- variables = {},
187
- ),
176
+ expected = {
177
+ actions .ActionMessage (
178
+ level = "INFO" ,
179
+ id = "SPECIAL_PACKAGES_REMOVED" ,
180
+ title = "Packages to be removed" ,
181
+ description = "The following packages will be removed during the conversion:"
182
+ " centos-logos-70.0.6-3.el7.centos.noarch" ,
183
+ diagnosis = "We have identified installed packages that match a pre-defined list of packages that"
184
+ " are known to cause a conversion failure." ,
185
+ remediations = "Check that the system runs correctly without the packages after the conversion." ,
186
+ variables = {},
188
187
)
189
- )
188
+ }
190
189
monkeypatch .setattr (
191
190
pkghandler , "get_packages_to_remove" , GetPackagesToRemoveMocked (return_value = pkgs_to_remove )
192
191
)
@@ -206,31 +205,30 @@ def test_run_all_removed(self, monkeypatch, remove_special_packages_instance):
206
205
@centos8
207
206
def test_run_packages_not_removed (self , pretend_os , monkeypatch , remove_special_packages_instance ):
208
207
pkgs_removed = ["kernel-core" ]
209
- expected = set (
210
- (
211
- actions .ActionMessage (
212
- level = "WARNING" ,
213
- id = "SPECIAL_PACKAGES_NOT_REMOVED" ,
214
- title = "Special packages not removed" ,
215
- description = "Special packages which could not be removed" ,
216
- diagnosis = "The following packages were not removed: gpg-pubkey-1.0.0-1.x86_64, pkg1-None-None.None, pkg2-None-None.None" ,
217
- remediations = None ,
218
- variables = {},
219
- ),
220
- actions .ActionMessage (
221
- level = "INFO" ,
222
- id = "SPECIAL_PACKAGES_REMOVED" ,
223
- title = "Special packages to be removed" ,
224
- description = (
225
- "We have identified installed packages that match a pre-defined list of packages that are"
226
- " to be removed during the conversion"
227
- ),
228
- diagnosis = "The following packages will be removed during the conversion: kernel-core" ,
229
- remediations = None ,
230
- variables = {},
231
- ),
232
- )
233
- )
208
+ expected = {
209
+ actions .ActionMessage (
210
+ level = "WARNING" ,
211
+ id = "SPECIAL_PACKAGES_NOT_REMOVED" ,
212
+ title = "Some packages cannot be removed" ,
213
+ description = "The packages in diagnosis match a pre-defined list of packages that are to be removed"
214
+ " during the conversion. This list includes packages that are known to cause a conversion failure." ,
215
+ diagnosis = "The following packages cannot be removed: gpg-pubkey-1.0.0-1.x86_64, pkg1-None-None.None,"
216
+ " pkg2-None-None.None" ,
217
+ remediations = "Remove the packages manually before running convert2rhel again:\n "
218
+ "yum remove -y gpg-pubkey-1.0.0-1.x86_64 pkg1-None-None.None pkg2-None-None.None" ,
219
+ variables = {},
220
+ ),
221
+ actions .ActionMessage (
222
+ level = "INFO" ,
223
+ id = "SPECIAL_PACKAGES_REMOVED" ,
224
+ title = "Packages to be removed" ,
225
+ description = "The following packages will be removed during the conversion: kernel-core" ,
226
+ diagnosis = "We have identified installed packages that match a pre-defined list of packages that"
227
+ " are known to cause a conversion failure." ,
228
+ remediations = "Check that the system runs correctly without the packages after the conversion." ,
229
+ variables = {},
230
+ ),
231
+ }
234
232
monkeypatch .setattr (pkghandler , "get_packages_to_remove" , GetPackagesToRemoveMocked (pkg_selection = "key_ids" ))
235
233
monkeypatch .setattr (
236
234
handle_packages ,
0 commit comments