foreman_puppet 6.3.0 → 6.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman_puppet/extensions/api_v2_registration_controller_extensions.rb +21 -0
  3. data/app/models/concerns/foreman_puppet/extensions/host_common.rb +1 -2
  4. data/lib/foreman_puppet/engine.rb +1 -0
  5. data/lib/foreman_puppet/version.rb +1 -1
  6. data/locale/en/foreman_puppet.edit.po +0 -1146
  7. data/test/models/foreman_puppet/host_test.rb +12 -0
  8. data/test/models/foreman_puppet/hostgroup_test.rb +12 -0
  9. data/webpack/src/foreman_class_edit.js +2 -2
  10. data/webpack/src/foreman_puppet_host_form.js +1 -1
  11. data/webpack/src/foreman_puppet_host_form.test.js +3 -4
  12. metadata +63 -99
  13. data/locale/ca/foreman_puppet.edit.po +0 -1150
  14. data/locale/ca/foreman_puppet.po.time_stamp +0 -0
  15. data/locale/cs_CZ/foreman_puppet.edit.po +0 -1155
  16. data/locale/cs_CZ/foreman_puppet.po.time_stamp +0 -0
  17. data/locale/de/foreman_puppet.edit.po +0 -1177
  18. data/locale/de/foreman_puppet.po.time_stamp +0 -0
  19. data/locale/en/foreman_puppet.po.time_stamp +0 -0
  20. data/locale/en_GB/foreman_puppet.edit.po +0 -1152
  21. data/locale/en_GB/foreman_puppet.po.time_stamp +0 -0
  22. data/locale/es/foreman_puppet.edit.po +0 -1161
  23. data/locale/es/foreman_puppet.po.time_stamp +0 -0
  24. data/locale/fr/foreman_puppet.edit.po +0 -1170
  25. data/locale/fr/foreman_puppet.po.time_stamp +0 -0
  26. data/locale/gl/foreman_puppet.edit.po +0 -1150
  27. data/locale/gl/foreman_puppet.po.time_stamp +0 -0
  28. data/locale/it/foreman_puppet.edit.po +0 -1155
  29. data/locale/it/foreman_puppet.po.time_stamp +0 -0
  30. data/locale/ja/foreman_puppet.edit.po +0 -1162
  31. data/locale/ja/foreman_puppet.po.time_stamp +0 -0
  32. data/locale/ka/foreman_puppet.edit.po +0 -1160
  33. data/locale/ka/foreman_puppet.po.time_stamp +0 -0
  34. data/locale/ko/foreman_puppet.edit.po +0 -1151
  35. data/locale/ko/foreman_puppet.po.time_stamp +0 -0
  36. data/locale/nl_NL/foreman_puppet.edit.po +0 -1155
  37. data/locale/nl_NL/foreman_puppet.po.time_stamp +0 -0
  38. data/locale/pl/foreman_puppet.edit.po +0 -1154
  39. data/locale/pl/foreman_puppet.po.time_stamp +0 -0
  40. data/locale/pt_BR/foreman_puppet.edit.po +0 -1159
  41. data/locale/pt_BR/foreman_puppet.po.time_stamp +0 -0
  42. data/locale/ru/foreman_puppet.edit.po +0 -1159
  43. data/locale/ru/foreman_puppet.po.time_stamp +0 -0
  44. data/locale/sv_SE/foreman_puppet.edit.po +0 -1154
  45. data/locale/sv_SE/foreman_puppet.po.time_stamp +0 -0
  46. data/locale/zh_CN/foreman_puppet.edit.po +0 -1163
  47. data/locale/zh_CN/foreman_puppet.po.time_stamp +0 -0
  48. data/locale/zh_TW/foreman_puppet.edit.po +0 -1153
  49. data/locale/zh_TW/foreman_puppet.po.time_stamp +0 -0
@@ -325,5 +325,17 @@ module ForemanPuppet
325
325
  h.save!
326
326
  assert_empty h.puppet.config_groups
327
327
  end
328
+
329
+ test 'assign a puppet class to host without puppet facet' do
330
+ puppet_class = FactoryBot.create(:puppetclass)
331
+ host = FactoryBot.create(:host)
332
+ # This would raise the following exception
333
+ # NoMethodError: undefined method `<<' for #<ActiveRecord::Relation []>
334
+ host.puppetclasses << puppet_class
335
+
336
+ assert_not_nil host.puppet
337
+ assert_includes host.puppet.puppetclasses, puppet_class
338
+ assert_includes host.puppetclasses, puppet_class
339
+ end
328
340
  end
329
341
  end
@@ -10,5 +10,17 @@ module ForemanPuppet
10
10
  assert_equal 1, hostgroups.count
11
11
  assert_equal hostgroups.pluck(:id).sort, hostgroups.map(&:id).sort
12
12
  end
13
+
14
+ test 'assign a puppet class to hostgroup without puppet facet' do
15
+ puppet_class = FactoryBot.create(:puppetclass)
16
+ hostgroup = FactoryBot.create(:hostgroup)
17
+ # This would raise the following exception
18
+ # NoMethodError: undefined method `<<' for #<ActiveRecord::Relation []>
19
+ hostgroup.puppetclasses << puppet_class
20
+
21
+ assert_not_nil hostgroup.puppet
22
+ assert_includes hostgroup.puppet.puppetclasses, puppet_class
23
+ assert_includes hostgroup.puppetclasses, puppet_class
24
+ end
13
25
  end
14
26
  end
@@ -154,7 +154,7 @@ export function addConfigGroup(item) {
154
154
  .addClass('selected-marker')
155
155
  .hide();
156
156
 
157
- const puppetclassIds = $.parseJSON($(item).attr('data-puppetclass-ids'));
157
+ const puppetclassIds = JSON.parse($(item).attr('data-puppetclass-ids'));
158
158
  const inheritedIds = _getInheritedIds();
159
159
 
160
160
  $.each(puppetclassIds, (index, puppetclassId) => {
@@ -182,7 +182,7 @@ export function removeConfigGroup(item) {
182
182
  .tooltip('hide');
183
183
  $(`#selected_config_group_${id}`).remove();
184
184
 
185
- const puppetclassIds = $.parseJSON($(item).attr('data-puppetclass-ids'));
185
+ const puppetclassIds = JSON.parse($(item).attr('data-puppetclass-ids'));
186
186
  const inheritedIds = _getInheritedIds();
187
187
 
188
188
  $.each(puppetclassIds, (index, puppetclassId) => {
@@ -110,7 +110,7 @@ export function checkForUnavailablePuppetclasses() {
110
110
  ${warningMessage}
111
111
  </span>`;
112
112
 
113
- if (unavailableClasses.size() > 0) {
113
+ if (unavailableClasses.length > 0) {
114
114
  if (puppetEncTab.find('#puppetclasses_unavailable_warning').length <= 0) {
115
115
  tab.prepend('<span class="pficon pficon-warning-triangle-o"></span> ');
116
116
  puppetEncTab.prepend(warning);
@@ -37,7 +37,7 @@ describe('checkForUnavailablePuppetclasses', () => {
37
37
  );
38
38
 
39
39
  checkForUnavailablePuppetclasses();
40
- expect($('#puppetclasses_unavailable_warning').size()).toBe(1);
40
+ expect($('#puppetclasses_unavailable_warning').length).toBe(1);
41
41
  });
42
42
 
43
43
  it('does not add a warning if no unavailable classes are found', () => {
@@ -48,8 +48,7 @@ describe('checkForUnavailablePuppetclasses', () => {
48
48
  expect(
49
49
  $('#hostgroup .help-block')
50
50
  .first()
51
- .children()
52
- .size()
51
+ .children().length
53
52
  ).toBe(0);
54
53
  });
55
54
 
@@ -59,7 +58,7 @@ describe('checkForUnavailablePuppetclasses', () => {
59
58
  );
60
59
  checkForUnavailablePuppetclasses();
61
60
  setTimeout(() => {
62
- expect($('a .pficon').size()).toBe(1);
61
+ expect($('a .pficon').length).toBe(1);
63
62
  }, 100);
64
63
  });
65
64
  });
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.3.0
4
+ version: 6.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondřej Ezr
8
8
  - Shira Maximov
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-03-25 00:00:00.000000000 Z
12
+ date: 2024-08-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Allow assigning Puppet environments and classes to the Foreman Hosts.
15
15
  email:
@@ -47,6 +47,7 @@ files:
47
47
  - app/controllers/concerns/foreman_puppet/extensions/api_smart_proxies_controller.rb
48
48
  - app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb
49
49
  - app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb
50
+ - app/controllers/concerns/foreman_puppet/extensions/api_v2_registration_controller_extensions.rb
50
51
  - app/controllers/concerns/foreman_puppet/extensions/hostgroups_controller_extensions.rb
51
52
  - app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb
52
53
  - app/controllers/concerns/foreman_puppet/extensions/operatingsystems_controller.rb
@@ -238,83 +239,46 @@ files:
238
239
  - locale/Makefile
239
240
  - locale/action_names.rb
240
241
  - locale/ca/LC_MESSAGES/foreman_puppet.mo
241
- - locale/ca/foreman_puppet.edit.po
242
242
  - locale/ca/foreman_puppet.po
243
- - locale/ca/foreman_puppet.po.time_stamp
244
243
  - locale/cs_CZ/LC_MESSAGES/foreman_puppet.mo
245
- - locale/cs_CZ/foreman_puppet.edit.po
246
244
  - locale/cs_CZ/foreman_puppet.po
247
- - locale/cs_CZ/foreman_puppet.po.time_stamp
248
245
  - locale/de/LC_MESSAGES/foreman_puppet.mo
249
- - locale/de/foreman_puppet.edit.po
250
246
  - locale/de/foreman_puppet.po
251
- - locale/de/foreman_puppet.po.time_stamp
252
247
  - locale/en/LC_MESSAGES/foreman_puppet.mo
253
248
  - locale/en/foreman_puppet.edit.po
254
249
  - locale/en/foreman_puppet.po
255
- - locale/en/foreman_puppet.po.time_stamp
256
250
  - locale/en_GB/LC_MESSAGES/foreman_puppet.mo
257
- - locale/en_GB/foreman_puppet.edit.po
258
251
  - locale/en_GB/foreman_puppet.po
259
- - locale/en_GB/foreman_puppet.po.time_stamp
260
252
  - locale/es/LC_MESSAGES/foreman_puppet.mo
261
- - locale/es/foreman_puppet.edit.po
262
253
  - locale/es/foreman_puppet.po
263
- - locale/es/foreman_puppet.po.time_stamp
264
254
  - locale/foreman_puppet.pot
265
255
  - locale/fr/LC_MESSAGES/foreman_puppet.mo
266
- - locale/fr/foreman_puppet.edit.po
267
256
  - locale/fr/foreman_puppet.po
268
- - locale/fr/foreman_puppet.po.time_stamp
269
257
  - locale/gemspec.rb
270
258
  - locale/gl/LC_MESSAGES/foreman_puppet.mo
271
- - locale/gl/foreman_puppet.edit.po
272
259
  - locale/gl/foreman_puppet.po
273
- - locale/gl/foreman_puppet.po.time_stamp
274
260
  - locale/it/LC_MESSAGES/foreman_puppet.mo
275
- - locale/it/foreman_puppet.edit.po
276
261
  - locale/it/foreman_puppet.po
277
- - locale/it/foreman_puppet.po.time_stamp
278
262
  - locale/ja/LC_MESSAGES/foreman_puppet.mo
279
- - locale/ja/foreman_puppet.edit.po
280
263
  - locale/ja/foreman_puppet.po
281
- - locale/ja/foreman_puppet.po.time_stamp
282
264
  - locale/ka/LC_MESSAGES/foreman_puppet.mo
283
- - locale/ka/foreman_puppet.edit.po
284
265
  - locale/ka/foreman_puppet.po
285
- - locale/ka/foreman_puppet.po.time_stamp
286
266
  - locale/ko/LC_MESSAGES/foreman_puppet.mo
287
- - locale/ko/foreman_puppet.edit.po
288
267
  - locale/ko/foreman_puppet.po
289
- - locale/ko/foreman_puppet.po.time_stamp
290
268
  - locale/nl_NL/LC_MESSAGES/foreman_puppet.mo
291
- - locale/nl_NL/foreman_puppet.edit.po
292
269
  - locale/nl_NL/foreman_puppet.po
293
- - locale/nl_NL/foreman_puppet.po.time_stamp
294
270
  - locale/pl/LC_MESSAGES/foreman_puppet.mo
295
- - locale/pl/foreman_puppet.edit.po
296
271
  - locale/pl/foreman_puppet.po
297
- - locale/pl/foreman_puppet.po.time_stamp
298
272
  - locale/pt_BR/LC_MESSAGES/foreman_puppet.mo
299
- - locale/pt_BR/foreman_puppet.edit.po
300
273
  - locale/pt_BR/foreman_puppet.po
301
- - locale/pt_BR/foreman_puppet.po.time_stamp
302
274
  - locale/ru/LC_MESSAGES/foreman_puppet.mo
303
- - locale/ru/foreman_puppet.edit.po
304
275
  - locale/ru/foreman_puppet.po
305
- - locale/ru/foreman_puppet.po.time_stamp
306
276
  - locale/sv_SE/LC_MESSAGES/foreman_puppet.mo
307
- - locale/sv_SE/foreman_puppet.edit.po
308
277
  - locale/sv_SE/foreman_puppet.po
309
- - locale/sv_SE/foreman_puppet.po.time_stamp
310
278
  - locale/zh_CN/LC_MESSAGES/foreman_puppet.mo
311
- - locale/zh_CN/foreman_puppet.edit.po
312
279
  - locale/zh_CN/foreman_puppet.po
313
- - locale/zh_CN/foreman_puppet.po.time_stamp
314
280
  - locale/zh_TW/LC_MESSAGES/foreman_puppet.mo
315
- - locale/zh_TW/foreman_puppet.edit.po
316
281
  - locale/zh_TW/foreman_puppet.po
317
- - locale/zh_TW/foreman_puppet.po.time_stamp
318
282
  - package.json
319
283
  - test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb
320
284
  - test/controllers/foreman_puppet/api/v2/environments_controller_test.rb
@@ -426,7 +390,7 @@ homepage: https://github.com/theforeman/foreman_puppet
426
390
  licenses:
427
391
  - GPL-3.0
428
392
  metadata: {}
429
- post_install_message:
393
+ post_install_message:
430
394
  rdoc_options: []
431
395
  require_paths:
432
396
  - lib
@@ -444,76 +408,76 @@ required_rubygems_version: !ruby/object:Gem::Requirement
444
408
  - !ruby/object:Gem::Version
445
409
  version: '0'
446
410
  requirements: []
447
- rubygems_version: 3.1.6
448
- signing_key:
411
+ rubygems_version: 3.1.2
412
+ signing_key:
449
413
  specification_version: 4
450
414
  summary: Add Puppet features to Foreman
451
415
  test_files:
452
- - test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb
453
- - test/controllers/foreman_puppet/api/v2/host_classes_controller_test.rb
454
- - test/controllers/foreman_puppet/api/v2/hostgroup_classes_controller_test.rb
455
- - test/controllers/foreman_puppet/api/v2/hostgroups_controller_test.rb
456
- - test/controllers/foreman_puppet/api/v2/lookups_common_controller_test.rb
457
- - test/controllers/foreman_puppet/api/v2/provisioning_templates_controller_test.rb
458
- - test/controllers/foreman_puppet/api/v2/puppetclasses_controller_test.rb
459
- - test/controllers/foreman_puppet/api/v2/smart_proxies_controller_test.rb
460
- - test/controllers/foreman_puppet/api/v2/template_combinations_controller_test.rb
461
- - test/controllers/foreman_puppet/api/v2/environments_controller_test.rb
462
- - test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb
463
- - test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb
464
- - test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb
465
- - test/controllers/foreman_puppet/config_groups_controller_test.rb
466
- - test/controllers/foreman_puppet/hostgroups_controller_test.rb
467
- - test/controllers/foreman_puppet/puppet_smart_proxies_controller_test.rb
468
- - test/controllers/foreman_puppet/puppetclass_lookup_keys_controller_test.rb
469
- - test/controllers/foreman_puppet/puppetclasses_controller_test.rb
470
- - test/controllers/foreman_puppet/environments_controller_test.rb
471
- - test/controllers/foreman_puppet/hosts_controller_test.rb
472
- - test/controllers/provisioning_templates_controller_test.rb
473
- - test/factories/foreman_puppet_factories.rb
474
- - test/factories/host_puppet_enhancements.rb
475
- - test/factories/proxy_puppet_enhancements.rb
476
- - test/graphql/mutations/hosts/create_mutation_test.rb
477
- - test/graphql/queries/environments_query_test.rb
478
- - test/graphql/queries/host_puppet_query_test.rb
479
- - test/graphql/queries/hostgroup_puppet_query_test.rb
480
- - test/graphql/queries/location_query_test.rb
481
- - test/graphql/queries/organization_query_test.rb
482
- - test/graphql/queries/puppetclasses_query_test.rb
483
- - test/graphql/queries/environment_query_test.rb
484
- - test/graphql/queries/puppetclass_query_test.rb
416
+ - test/unit/foreman_puppet_test.rb
417
+ - test/unit/foreman_puppet/global_id_test.rb
418
+ - test/unit/foreman_puppet/puppet_class_importer_test.rb
419
+ - test/unit/foreman_puppet/template_rendering_test.rb
420
+ - test/unit/foreman_puppet/access_permissions_test.rb
421
+ - test/helpers/foreman_puppet/puppetclass_lookup_keys_helper_test.rb
485
422
  - test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb
486
423
  - test/helpers/foreman_puppet/puppetclasses_helper_test.rb
487
- - test/helpers/foreman_puppet/puppetclass_lookup_keys_helper_test.rb
488
424
  - test/integration/foreman_puppet/dashboard_js_test.rb
489
- - test/integration/foreman_puppet/environment_js_test.rb
490
- - test/integration/foreman_puppet/hostgroup_js_test.rb
491
- - test/integration/foreman_puppet/puppetclass_js_test.rb
492
425
  - test/integration/foreman_puppet/host_js_test.rb
426
+ - test/integration/foreman_puppet/hostgroup_js_test.rb
493
427
  - test/integration/foreman_puppet/smartclass_parameter_js_test.rb
494
- - test/models/foreman_puppet/config_group_class_test.rb
428
+ - test/integration/foreman_puppet/puppetclass_js_test.rb
429
+ - test/integration/foreman_puppet/environment_js_test.rb
430
+ - test/factories/foreman_puppet_factories.rb
431
+ - test/factories/host_puppet_enhancements.rb
432
+ - test/factories/proxy_puppet_enhancements.rb
433
+ - test/integration_puppet_helper.rb
495
434
  - test/models/foreman_puppet/config_group_test.rb
496
- - test/models/foreman_puppet/environment_test.rb
497
- - test/models/foreman_puppet/host_config_group_test.rb
498
- - test/models/foreman_puppet/hostgroup_puppet_facet_test.rb
499
- - test/models/foreman_puppet/hostgroup_test.rb
500
- - test/models/foreman_puppet/lookup_value_test.rb
501
- - test/models/foreman_puppet/puppetclass_lookup_key_test.rb
502
435
  - test/models/foreman_puppet/report_test.rb
503
- - test/models/foreman_puppet/smart_proxy_test.rb
436
+ - test/models/foreman_puppet/host_puppet_facet_test.rb
437
+ - test/models/foreman_puppet/host_test.rb
504
438
  - test/models/foreman_puppet/user_test.rb
505
439
  - test/models/foreman_puppet/provisioning_template_test.rb
440
+ - test/models/foreman_puppet/host_config_group_test.rb
441
+ - test/models/foreman_puppet/lookup_value_test.rb
442
+ - test/models/foreman_puppet/hostgroup_test.rb
443
+ - test/models/foreman_puppet/hostgroup_puppet_facet_test.rb
444
+ - test/models/foreman_puppet/puppetclass_lookup_key_test.rb
445
+ - test/models/foreman_puppet/environment_test.rb
506
446
  - test/models/foreman_puppet/puppetclass_test.rb
507
- - test/models/foreman_puppet/host_puppet_facet_test.rb
508
- - test/models/foreman_puppet/host_test.rb
509
- - test/services/foreman_puppet/host_info_providers/config_groups_info_test.rb
510
- - test/services/foreman_puppet/host_info_providers/puppet_info_test.rb
447
+ - test/models/foreman_puppet/config_group_class_test.rb
448
+ - test/models/foreman_puppet/smart_proxy_test.rb
449
+ - test/graphql/queries/hostgroup_puppet_query_test.rb
450
+ - test/graphql/queries/puppetclass_query_test.rb
451
+ - test/graphql/queries/location_query_test.rb
452
+ - test/graphql/queries/organization_query_test.rb
453
+ - test/graphql/queries/puppetclasses_query_test.rb
454
+ - test/graphql/queries/environment_query_test.rb
455
+ - test/graphql/queries/environments_query_test.rb
456
+ - test/graphql/queries/host_puppet_query_test.rb
457
+ - test/graphql/mutations/hosts/create_mutation_test.rb
458
+ - test/test_puppet_helper.rb
459
+ - test/controllers/provisioning_templates_controller_test.rb
460
+ - test/controllers/foreman_puppet/hostgroups_controller_test.rb
461
+ - test/controllers/foreman_puppet/puppetclass_lookup_keys_controller_test.rb
462
+ - test/controllers/foreman_puppet/environments_controller_test.rb
463
+ - test/controllers/foreman_puppet/puppet_smart_proxies_controller_test.rb
464
+ - test/controllers/foreman_puppet/hosts_controller_test.rb
465
+ - test/controllers/foreman_puppet/api/v2/template_combinations_controller_test.rb
466
+ - test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb
467
+ - test/controllers/foreman_puppet/api/v2/host_classes_controller_test.rb
468
+ - test/controllers/foreman_puppet/api/v2/hostgroups_controller_test.rb
469
+ - test/controllers/foreman_puppet/api/v2/lookups_common_controller_test.rb
470
+ - test/controllers/foreman_puppet/api/v2/environments_controller_test.rb
471
+ - test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb
472
+ - test/controllers/foreman_puppet/api/v2/hostgroup_classes_controller_test.rb
473
+ - test/controllers/foreman_puppet/api/v2/puppetclasses_controller_test.rb
474
+ - test/controllers/foreman_puppet/api/v2/smart_proxies_controller_test.rb
475
+ - test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb
476
+ - test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb
477
+ - test/controllers/foreman_puppet/api/v2/provisioning_templates_controller_test.rb
478
+ - test/controllers/foreman_puppet/puppetclasses_controller_test.rb
479
+ - test/controllers/foreman_puppet/config_groups_controller_test.rb
511
480
  - test/services/foreman_puppet/input_type/puppet_parameter_input_test.rb
512
481
  - test/services/foreman_puppet/host_counter_test.rb
513
- - test/unit/foreman_puppet/access_permissions_test.rb
514
- - test/unit/foreman_puppet/puppet_class_importer_test.rb
515
- - test/unit/foreman_puppet/template_rendering_test.rb
516
- - test/unit/foreman_puppet/global_id_test.rb
517
- - test/unit/foreman_puppet_test.rb
518
- - test/test_puppet_helper.rb
519
- - test/integration_puppet_helper.rb
482
+ - test/services/foreman_puppet/host_info_providers/config_groups_info_test.rb
483
+ - test/services/foreman_puppet/host_info_providers/puppet_info_test.rb