foreman_discovery 23.0.0 → 23.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c06b773090a573270dd6c59f3f3ea9236a4a92aee4097904c7306b4190b71870
4
- data.tar.gz: 6aeb520a8f222918d58459f5afa95430ac490f3bde6066eafc030f550ea39109
3
+ metadata.gz: 2af9907694c24e71a07821c25a97af3353d334cc63557b801db69cacf85e47b8
4
+ data.tar.gz: e501ebae40fa529940a1f263a0f41e72eba10c77dad1abbc7e08fdfcff197b57
5
5
  SHA512:
6
- metadata.gz: 02a2a1a166d4412c82aaeadd5d1b8e200776d5680e97baccda80ffbc07f7013b84a44a512dcc4c77921dfc85e4c33c56f039213d58a05f81eaca9fad8687540e
7
- data.tar.gz: a2c342f5b8dfe0b74fd3694d2fe58b7ea64b68835d08d731c33cea5007c39a4b237e374fd725307c6e40af6074f78f3b4b29d118a5a8f7cc6e084c5ac7cc073f
6
+ metadata.gz: 5f125da984e0713a9a7e22af5eaa410e8908e248f7331b163c627b02c09564aab16edddc7883d049dc9b4b02501c56f09ec7a18116e816804fec59859a3c2ad3
7
+ data.tar.gz: c5affa967bc8af1a68236561dec3f9c5c893a16293cd0a35a1c632180bd0313b9f37a9bdace4912f4af7cc8775870163a03be664ab5a0e19e57babbb11ac482f
@@ -218,7 +218,7 @@ module Api
218
218
  :message => error_message
219
219
  }
220
220
  else
221
- process_success _("Discovered hosts are rebooting now")
221
+ process_success :success_msg => _("Discovered hosts are rebooting now")
222
222
  end
223
223
  end
224
224
 
@@ -83,7 +83,8 @@ class DiscoveredHostsController < ::ApplicationController
83
83
  ::ForemanDiscovery::HostConverter.set_build_clean_facts(host)
84
84
  ::ForemanDiscovery::HostConverter.unused_ip_for_host(host)
85
85
  if host.save
86
- success_options = { :success_redirect => host_path(host), :redirect_xhr => request.xhr? }
86
+ host_path = Setting['host_details_ui'] ? host_details_page_path(host) : host_path(host)
87
+ success_options = { :success_redirect => host_path, :redirect_xhr => request.xhr? }
87
88
  success_options[:success_msg] = success_message if success_message
88
89
  process_success success_options
89
90
  else
data/lib/discovery.rake CHANGED
@@ -19,7 +19,8 @@ end
19
19
 
20
20
  load 'tasks/jenkins.rake'
21
21
  if Rake::Task.task_defined?(:'jenkins:unit')
22
- Rake::Task["jenkins:unit"].enhance do
22
+ # The "unit" tests also include system tests
23
+ Rake::Task["jenkins:unit"].enhance(['webpack:compile']) do
23
24
  Rake::Task['test:discovery'].invoke
24
25
  end
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "23.0.0"
2
+ VERSION = "23.0.2"
3
3
  end
@@ -101,7 +101,7 @@ class DiscoveredHostsControllerTest < ActionController::TestCase
101
101
 
102
102
  managed_host = Host.find(host.id)
103
103
  assert managed_host.build
104
- assert_redirected_to host_url(managed_host)
104
+ assert_redirected_to host_details_page_path(managed_host)
105
105
  assert_equal hostgroup.id, managed_host.hostgroup_id
106
106
  assert_match(/Successfully/, flash[:success])
107
107
  end
@@ -3,12 +3,6 @@ require_relative '../test_plugin_helper'
3
3
  class DiscoveryRulesControllerTest < ActionController::TestCase
4
4
  setup :initialize_host
5
5
 
6
- test "should add a link to navigation" do
7
- get :index, params: {}, session: set_session_user
8
- assert_response :success
9
- assert response.body =~ /\/discovery_rules/
10
- end
11
-
12
6
  test "reader role should get index" do
13
7
  get :index, params: {}, session: set_session_user_default_reader
14
8
  assert_response :success
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class ManagedExtensionsTest < ActiveSupport::TestCase
4
+ def test_discovery_rules_is_in_menu
5
+ menu = UserMenu.new.generate
6
+ assert_includes(menu, { name: 'Discovery Rules', url: '/discovery_rules' })
7
+ end
8
+ end
@@ -271,7 +271,8 @@ class HostDiscoveredTest < ActiveSupport::TestCase
271
271
  @facts["productname"] = "Dishwasher DW400"
272
272
  host2 = discover_host_from_facts(@facts)
273
273
  assert_equal 'mace41f13cc3658', host2.name
274
- assert_equal 'Dishwasher DW400', host2.facts["productname"]
274
+ # Bypass fact cache by using it as a method
275
+ assert_equal 'Dishwasher DW400', host2.facts('productname')['productname']
275
276
  assert_equal '10.35.27.2', host2.ip
276
277
  assert_equal 1, Host::Discovered.where(:name => 'mace41f13cc3658').count
277
278
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_discovery
3
3
  version: !ruby/object:Gem::Version
4
- version: 23.0.0
4
+ version: 23.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aditi Puntambekar
@@ -76,7 +76,7 @@ authors:
76
76
  autorequire:
77
77
  bindir: bin
78
78
  cert_chain: []
79
- date: 2023-11-22 00:00:00.000000000 Z
79
+ date: 2024-03-05 00:00:00.000000000 Z
80
80
  dependencies: []
81
81
  description: MaaS Discovery Plugin engine for Foreman
82
82
  email: gsutclif@redhat.com
@@ -295,6 +295,7 @@ files:
295
295
  - test/functional/discovery_rules_controller_test.rb
296
296
  - test/functional/foreman_discovery/concerns/hosts_controller_extensions_test.rb
297
297
  - test/integration/discovered_hosts_test.rb
298
+ - test/integration/menu_test.rb
298
299
  - test/migrations/20221102075151_migrate_discovery_hostname_and_fact_column_to_array_test.rb
299
300
  - test/migrations/20221102075151_migrate_discovery_hostname_and_fact_column_to_array_test.rb.orig
300
301
  - test/static_fixtures/redhat_kexec.erb
@@ -380,6 +381,7 @@ test_files:
380
381
  - test/functional/discovered_hosts_controller_test.rb
381
382
  - test/functional/discovery_rules_controller_test.rb
382
383
  - test/integration/discovered_hosts_test.rb
384
+ - test/integration/menu_test.rb
383
385
  - test/unit/ui_notifications/destroy_host_test.rb
384
386
  - test/unit/ui_notifications/new_host_test.rb
385
387
  - test/unit/discovered_mailer_test.rb