@@ -166,20 +166,19 @@ def test_run_no_packages_to_remove(self, monkeypatch, remove_special_packages_in
166
166
def test_run_all_removed (self , monkeypatch , remove_special_packages_instance ):
167
167
pkgs_to_remove = [get_centos_logos_pkg_object ()]
168
168
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 = {},
181
180
)
182
- )
181
+ }
183
182
monkeypatch .setattr (
184
183
pkghandler , "get_packages_to_remove" , GetPackagesToRemoveMocked (return_value = pkgs_to_remove )
185
184
)
@@ -199,31 +198,30 @@ def test_run_all_removed(self, monkeypatch, remove_special_packages_instance):
199
198
@centos8
200
199
def test_run_packages_not_removed (self , pretend_os , monkeypatch , remove_special_packages_instance ):
201
200
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
+ }
227
225
monkeypatch .setattr (
228
226
pkghandler , "get_packages_to_remove" , GetPackagesToRemoveMocked (pkg_selection = "fingerprints" )
229
227
)
0 commit comments