foreman_rh_cloud 0.9.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/foreman_inventory_upload/accounts_controller.rb +2 -6
- data/app/controllers/foreman_rh_cloud/react_controller.rb +8 -0
- data/app/models/setting/rh_cloud.rb +5 -9
- data/app/views/foreman_rh_cloud/react/inventory_upload.html.erb +1 -0
- data/app/views/{foreman_inventory_upload/layouts/react.html.erb → layouts/foreman_rh_cloud/application.html.erb} +2 -2
- data/config/routes.rb +4 -1
- data/lib/foreman_inventory_upload/async/queue_for_upload_job.rb +10 -5
- data/lib/foreman_inventory_upload/generators/fact_helpers.rb +43 -0
- data/lib/foreman_inventory_upload/generators/queries.rb +5 -0
- data/lib/foreman_inventory_upload/generators/slice.rb +2 -1
- data/lib/foreman_inventory_upload/scripts/uploader.sh.erb +1 -0
- data/lib/foreman_rh_cloud/engine.rb +17 -5
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/test/unit/slice_generator_test.rb +132 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +6 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +13 -10
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +3 -2
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +10 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/EmptyResults.js +15 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/EmptyResults.test.js +13 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/__snapshots__/EmptyResults.test.js.snap +18 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/emptyResults.scss +7 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +1 -4
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js +12 -0
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +7 -8
- data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +2 -3
- data/webpack/ForemanInventoryUpload/Components/AccountList/index.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js +4 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardActions.js +4 -3
- data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardSelectors.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +2 -3
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +3 -2
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/ClearButton.js +26 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/index.js +1 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.fixtures.js +2 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js +39 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterActions.js +16 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterConstants.js +3 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterReducer.js +36 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterSelectors.js +7 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilter.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterActions.test.js +14 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterReducer.test.js +35 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterSelectors.test.js +21 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilter.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterActions.test.js.snap +17 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterReducer.test.js.snap +25 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterSelectors.test.js.snap +9 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/integration.test.js.snap +31 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/integration.test.js +18 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/index.js +17 -0
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss +28 -0
- data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js +12 -3
- data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap +11 -2
- data/webpack/ForemanInventoryUpload/Components/PageHeader/pageHeader.scss +3 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +3 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js +4 -0
- data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +16 -8
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js +4 -4
- data/webpack/ForemanInventoryUpload/__tests__/ForemanInventoryHelpers.test.js +11 -0
- data/webpack/ForemanInventoryUpload/{ForemanInventoryUpload.test.js → __tests__/ForemanInventoryUpload.test.js} +1 -1
- data/webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryHelpers.test.js.snap +3 -0
- data/webpack/ForemanInventoryUpload/{__snapshots__ → __tests__/__snapshots__}/ForemanInventoryUpload.test.js.snap +0 -0
- data/webpack/ForemanRhCloudHelpers.js +6 -0
- data/webpack/ForemanRhCloudReducers.js +8 -0
- data/webpack/ForemanRhCloudSelectors.js +3 -0
- data/webpack/ForemanRhCloudTestHelpers.js +5 -0
- data/webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js +1 -0
- data/webpack/__tests__/ForemanRhCloudHelpers.test.js +11 -0
- data/webpack/__tests__/ForemanRhCloudSelectors.test.js +17 -0
- data/webpack/__tests__/ForemanRhCloudTestHelpers.test.js +10 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudHelpers.test.js.snap +3 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudSelectors.test.js.snap +15 -0
- data/webpack/__tests__/__snapshots__/ForemanRhCloudTestHelpers.test.js.snap +11 -0
- data/webpack/index.js +1 -1
- metadata +81 -13
- data/app/controllers/foreman_inventory_upload/react_controller.rb +0 -7
- data/test/unit/slice_generator_test.rb.orig +0 -280
- data/webpack/ForemanInventoryUpload/ForemanInventoryUploadSelectors.js +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf631b63f0110a4a5d39aa664905fef695e8b402d458fe20704db84880bdf33f
|
4
|
+
data.tar.gz: ac49f7073bf0e2828964587434f84275029ca0aef285f963d00ddc7e569b8197
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d9015a4931ab563c5d56cc38c1ea9ba54df04ebf9305f4077d5b88284b84b78da02f9dfed267192a8ce7ed49e98bf4b89e884eda8eae08a68fe8699771a9f69
|
7
|
+
data.tar.gz: 45a135ff52da1cedacb37b84a70b3f73347d741e62beb95a96e0fed7cf022928649ca470b6d9242c9bfe55b790e28f2fb734f76fa0524f6548351fcc81d7b580
|
@@ -1,12 +1,8 @@
|
|
1
1
|
module ForemanInventoryUpload
|
2
2
|
class AccountsController < ::ApplicationController
|
3
|
-
# override default "welcome screen behavior, since we don't have a model"
|
4
|
-
def welcome
|
5
|
-
true
|
6
|
-
end
|
7
|
-
|
8
3
|
def index
|
9
|
-
|
4
|
+
organizations = User.current.my_organizations
|
5
|
+
labels = organizations.pluck(:id, :name)
|
10
6
|
|
11
7
|
accounts = Hash[
|
12
8
|
labels.map do |id, label|
|
@@ -1,15 +1,11 @@
|
|
1
1
|
class Setting::RhCloud < Setting
|
2
|
-
def self.
|
2
|
+
def self.default_settings
|
3
3
|
return unless ActiveRecord::Base.connection.table_exists?('settings')
|
4
4
|
return unless super
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
].each { |s| create! s.update(:category => 'Setting::RhCloud')}
|
10
|
-
end
|
11
|
-
|
12
|
-
true
|
5
|
+
[
|
6
|
+
set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), true),
|
7
|
+
set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false),
|
8
|
+
]
|
13
9
|
end
|
14
10
|
|
15
11
|
def self.humanized_category
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= mount_react_component("ForemanInventoryUpload", '#ForemanRhCloudReactRoot') %>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
<%= notifications %>
|
11
11
|
<div id="organization-id" data-id="<%= Organization.current.id if Organization.current %>" ></div>
|
12
12
|
<div id="user-id" data-id="<%= User.current.id if User.current %>" ></div>
|
13
|
-
<div id="
|
13
|
+
<div id="ForemanRhCloudReactRoot"></div>
|
14
|
+
<%= yield %>
|
14
15
|
<% end %>
|
15
16
|
<%= render file: "layouts/base" %>
|
16
|
-
<%= mount_react_component('ForemanInventoryUpload', '#ForemanInventoryUploadReactRoot') %>
|
data/config/routes.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
Rails.application.routes.draw do
|
2
2
|
namespace :foreman_inventory_upload do
|
3
|
-
get 'index', to: 'react#index'
|
4
3
|
get ':organization_id/reports/last', to: 'reports#last', constraints: { organization_id: %r{[^\/]+} }
|
5
4
|
post ':organization_id/reports', to: 'reports#generate', constraints: { organization_id: %r{[^\/]+} }
|
6
5
|
get ':organization_id/uploads/last', to: 'uploads#last', constraints: { organization_id: %r{[^\/]+} }
|
@@ -8,4 +7,8 @@ Rails.application.routes.draw do
|
|
8
7
|
get 'accounts', to: 'accounts#index'
|
9
8
|
post 'auto_upload', to: 'uploads#auto_upload'
|
10
9
|
end
|
10
|
+
|
11
|
+
namespace :foreman_rh_cloud do
|
12
|
+
get 'inventory_upload', to: 'react#inventory_upload'
|
13
|
+
end
|
11
14
|
end
|
@@ -30,11 +30,16 @@ module ForemanInventoryUpload
|
|
30
30
|
def ensure_output_script
|
31
31
|
return if File.exist?(script_file)
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
33
|
+
script_source = File.join(ForemanRhCloud::Engine.root, 'lib/foreman_inventory_upload/scripts/uploader.sh.erb')
|
34
|
+
|
35
|
+
template_src = Foreman::Renderer::Source::String.new(content: File.read(script_source))
|
36
|
+
scope = Foreman::Renderer::Scope::Base.new(
|
37
|
+
source: template_src,
|
38
|
+
variables: {
|
39
|
+
upload_url: ForemanInventoryUpload.upload_url,
|
40
|
+
}
|
41
|
+
)
|
42
|
+
script_source = Foreman::Renderer.render(template_src, scope)
|
38
43
|
File.write(script_file, script_source)
|
39
44
|
FileUtils.chmod('+x', script_file)
|
40
45
|
end
|
@@ -3,6 +3,11 @@ module ForemanInventoryUpload
|
|
3
3
|
module FactHelpers
|
4
4
|
extend ActiveSupport::Concern
|
5
5
|
|
6
|
+
CLOUD_AMAZON = 'aws'
|
7
|
+
CLOUD_GOOGLE = 'google'
|
8
|
+
CLOUD_AZURE = 'azure'
|
9
|
+
CLOUD_ALIBABA = 'alibaba'
|
10
|
+
|
6
11
|
def fact_value(host, fact_name)
|
7
12
|
value_record = host.fact_values.find do |fact_value|
|
8
13
|
fact_value.fact_name_id == ForemanInventoryUpload::Generators::Queries.fact_names[fact_name]
|
@@ -26,6 +31,44 @@ module ForemanInventoryUpload
|
|
26
31
|
@organization_golden_tickets ||= {}
|
27
32
|
@organization_golden_tickets[organization.id] ||= result
|
28
33
|
end
|
34
|
+
|
35
|
+
def cloud_provider(host)
|
36
|
+
bios_version = fact_value(host, 'dmi::bios::version')
|
37
|
+
|
38
|
+
if bios_version
|
39
|
+
return CLOUD_AMAZON if bios_version.downcase['amazon']
|
40
|
+
return CLOUD_GOOGLE if bios_version.downcase['google']
|
41
|
+
end
|
42
|
+
|
43
|
+
chassis_asset_tag = fact_value(host, 'dmi::chassis::asset_tag')
|
44
|
+
return CLOUD_AZURE if chassis_asset_tag && chassis_asset_tag['7783-7084-3265-9085-8269-3286-77']
|
45
|
+
|
46
|
+
system_manufacturer = fact_value(host, 'dmi::system::manufacturer')
|
47
|
+
return CLOUD_ALIBABA if system_manufacturer && system_manufacturer.downcase['alibaba cloud']
|
48
|
+
|
49
|
+
product_name = fact_value(host, 'dmi::system::product_name')
|
50
|
+
return CLOUD_ALIBABA if product_name && product_name.downcase['alibaba cloud ecs']
|
51
|
+
|
52
|
+
nil
|
53
|
+
end
|
54
|
+
|
55
|
+
def obfuscate_hostname?(host)
|
56
|
+
insights_client_setting = fact_value(host, 'insights_client::obfuscate_hostname_enabled')
|
57
|
+
insights_client_setting = ActiveModel::Type::Boolean.new.cast(insights_client_setting)
|
58
|
+
return insights_client_setting unless insights_client_setting.nil?
|
59
|
+
|
60
|
+
Setting[:obfuscate_inventory_hostnames]
|
61
|
+
end
|
62
|
+
|
63
|
+
def fqdn(host)
|
64
|
+
return host.fqdn unless obfuscate_hostname?(host)
|
65
|
+
|
66
|
+
fact_value(host, 'insights_client::hostname') || obfuscate_fqdn(host.fqdn)
|
67
|
+
end
|
68
|
+
|
69
|
+
def obfuscate_fqdn(fqdn)
|
70
|
+
Base64.urlsafe_encode64(Digest::SHA1.digest(fqdn), padding: false)
|
71
|
+
end
|
29
72
|
end
|
30
73
|
end
|
31
74
|
end
|
@@ -20,6 +20,11 @@ module ForemanInventoryUpload
|
|
20
20
|
'distribution::version',
|
21
21
|
'distribution::id',
|
22
22
|
'virt::is_guest',
|
23
|
+
'dmi::system::manufacturer',
|
24
|
+
'dmi::system::product_name',
|
25
|
+
'dmi::chassis::asset_tag',
|
26
|
+
'insights_client::obfuscate_hostname_enabled',
|
27
|
+
'insights_client::hostname',
|
23
28
|
]).pluck(:name, :id)
|
24
29
|
]
|
25
30
|
end
|
@@ -39,7 +39,7 @@ module ForemanInventoryUpload
|
|
39
39
|
|
40
40
|
def report_host(host)
|
41
41
|
@stream.object do
|
42
|
-
@stream.simple_field('fqdn', host
|
42
|
+
@stream.simple_field('fqdn', fqdn(host))
|
43
43
|
@stream.simple_field('account', account_id(host.organization).to_s)
|
44
44
|
@stream.simple_field('subscription_manager_id', host.subscription_facet&.uuid)
|
45
45
|
@stream.simple_field('satellite_id', host.subscription_facet&.uuid)
|
@@ -126,6 +126,7 @@ module ForemanInventoryUpload
|
|
126
126
|
'infrastructure_type',
|
127
127
|
ActiveModel::Type::Boolean.new.cast(fact_value(host, 'virt::is_guest')) ? 'virtual' : 'physical'
|
128
128
|
)
|
129
|
+
@stream.simple_field('cloud_provider', cloud_provider(host))
|
129
130
|
unless (installed_products = host.subscription_facet&.installed_products).empty?
|
130
131
|
@stream.array_field('installed_products') do
|
131
132
|
@stream.raw(installed_products.map do |product|
|
@@ -26,19 +26,31 @@ module ForemanRhCloud
|
|
26
26
|
|
27
27
|
initializer 'foreman_rh_cloud.register_plugin', :before => :finisher_hook do |_app|
|
28
28
|
Foreman::Plugin.register :foreman_rh_cloud do
|
29
|
-
requires_foreman '
|
29
|
+
requires_foreman '~> 1.24.0'
|
30
30
|
|
31
31
|
# Add permissions
|
32
32
|
security_block :foreman_rh_cloud do
|
33
|
-
permission
|
33
|
+
permission(:generate_foreman_rh_cloud, :'foreman_inventory_upload/reports' => [:generate])
|
34
|
+
permission(:view_foreman_rh_cloud,
|
35
|
+
'foreman_inventory_upload/accounts': [:index],
|
36
|
+
'foreman_inventory_upload/reports': [:last],
|
37
|
+
'foreman_inventory_upload/uploads': [:auto_upload, :download_file, :last],
|
38
|
+
'foreman_rh_cloud/react': [:inventory_upload]
|
39
|
+
)
|
34
40
|
end
|
35
41
|
|
36
|
-
|
37
|
-
|
42
|
+
plugin_permissions = [:view_foreman_rh_cloud, :generate_foreman_rh_cloud]
|
43
|
+
|
44
|
+
role 'ForemanRhCloud', plugin_permissions, 'Role granting permissions to view the hosts inventory,
|
45
|
+
generate a report, upload it to the cloud and download it locally'
|
46
|
+
|
47
|
+
add_permissions_to_default_roles Role::ORG_ADMIN => plugin_permissions,
|
48
|
+
Role::MANAGER => plugin_permissions,
|
49
|
+
Role::SYSTEM_ADMIN => plugin_permissions
|
38
50
|
|
39
51
|
# Adding a sub menu after hosts menu
|
40
52
|
sub_menu :top_menu, :foreman_rh_cloud, :caption => N_('RH Cloud'), :icon => 'fa fa-cloud-upload' do
|
41
|
-
menu :top_menu, :level1, :caption => N_('Inventory Upload'), :url_hash => { controller: :'
|
53
|
+
menu :top_menu, :level1, :caption => N_('Inventory Upload'), :url_hash => { controller: :'foreman_rh_cloud/react', :action => :inventory_upload}
|
42
54
|
end
|
43
55
|
end
|
44
56
|
end
|
@@ -38,6 +38,11 @@ class ReportGeneratorTest < ActiveSupport::TestCase
|
|
38
38
|
'distribution::version',
|
39
39
|
'distribution::id',
|
40
40
|
'virt::is_guest',
|
41
|
+
'dmi::system::manufacturer',
|
42
|
+
'dmi::system::product_name',
|
43
|
+
'dmi::chassis::asset_tag',
|
44
|
+
'insights_client::obfuscate_hostname_enabled',
|
45
|
+
'insights_client::hostname',
|
41
46
|
]
|
42
47
|
end
|
43
48
|
|
@@ -63,6 +68,58 @@ class ReportGeneratorTest < ActiveSupport::TestCase
|
|
63
68
|
assert_equal 1, generator.hosts_count
|
64
69
|
end
|
65
70
|
|
71
|
+
test 'obfuscates fqdn when instructed by insights-client' do
|
72
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::obfuscate_hostname_enabled'], value: 'true', host: @host)
|
73
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::hostname'], value: 'obfuscated_name', host: @host)
|
74
|
+
|
75
|
+
batch = Host.where(id: @host.id).in_batches.first
|
76
|
+
generator = create_generator(batch)
|
77
|
+
|
78
|
+
json_str = generator.render
|
79
|
+
actual = JSON.parse(json_str.join("\n"))
|
80
|
+
|
81
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
82
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
83
|
+
assert_equal 'obfuscated_name', actual_host['fqdn']
|
84
|
+
assert_equal '1234', actual_host['account']
|
85
|
+
assert_equal 1, generator.hosts_count
|
86
|
+
end
|
87
|
+
|
88
|
+
test 'obfuscates fqdn when setting set' do
|
89
|
+
FactoryBot.create(:setting, :name => 'obfuscate_inventory_hostnames', :value => true)
|
90
|
+
|
91
|
+
batch = Host.where(id: @host.id).in_batches.first
|
92
|
+
generator = create_generator(batch)
|
93
|
+
|
94
|
+
json_str = generator.render
|
95
|
+
actual = JSON.parse(json_str.join("\n"))
|
96
|
+
|
97
|
+
obfuscated_fqdn = Base64.urlsafe_encode64(Digest::SHA1.digest(@host.fqdn), padding: false)
|
98
|
+
|
99
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
100
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
101
|
+
assert_equal obfuscated_fqdn, actual_host['fqdn']
|
102
|
+
assert_equal '1234', actual_host['account']
|
103
|
+
assert_equal 1, generator.hosts_count
|
104
|
+
end
|
105
|
+
|
106
|
+
test 'does not obfuscate fqdn when insights-client sets to false' do
|
107
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::obfuscate_hostname_enabled'], value: 'false', host: @host)
|
108
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::hostname'], value: 'obfuscated_name', host: @host)
|
109
|
+
|
110
|
+
batch = Host.where(id: @host.id).in_batches.first
|
111
|
+
generator = create_generator(batch)
|
112
|
+
|
113
|
+
json_str = generator.render
|
114
|
+
actual = JSON.parse(json_str.join("\n"))
|
115
|
+
|
116
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
117
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
118
|
+
assert_equal @host.fqdn, actual_host['fqdn']
|
119
|
+
assert_equal '1234', actual_host['account']
|
120
|
+
assert_equal 1, generator.hosts_count
|
121
|
+
end
|
122
|
+
|
66
123
|
test 'generates a report with satellite facts' do
|
67
124
|
Foreman.expects(:instance_id).twice.returns('satellite-id')
|
68
125
|
batch = Host.where(id: @host.id).in_batches.first
|
@@ -260,6 +317,81 @@ class ReportGeneratorTest < ActiveSupport::TestCase
|
|
260
317
|
assert_equal 'physical', actual_profile['infrastructure_type']
|
261
318
|
end
|
262
319
|
|
320
|
+
test 'Identifies Amazon cloud provider' do
|
321
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['dmi::bios::version'], value: 'Test Amazon version', host: @host)
|
322
|
+
|
323
|
+
batch = Host.where(id: @host.id).in_batches.first
|
324
|
+
generator = create_generator(batch)
|
325
|
+
|
326
|
+
json_str = generator.render
|
327
|
+
actual = JSON.parse(json_str.join("\n"))
|
328
|
+
|
329
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
330
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
331
|
+
assert_not_nil(actual_profile = actual_host['system_profile'])
|
332
|
+
assert_equal 'aws', actual_profile['cloud_provider']
|
333
|
+
end
|
334
|
+
|
335
|
+
test 'Identifies Google cloud provider' do
|
336
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['dmi::bios::version'], value: 'Test Google version', host: @host)
|
337
|
+
|
338
|
+
batch = Host.where(id: @host.id).in_batches.first
|
339
|
+
generator = create_generator(batch)
|
340
|
+
|
341
|
+
json_str = generator.render
|
342
|
+
actual = JSON.parse(json_str.join("\n"))
|
343
|
+
|
344
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
345
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
346
|
+
assert_not_nil(actual_profile = actual_host['system_profile'])
|
347
|
+
assert_equal 'google', actual_profile['cloud_provider']
|
348
|
+
end
|
349
|
+
|
350
|
+
test 'Identifies Azure cloud provider' do
|
351
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['dmi::chassis::asset_tag'], value: '7783-7084-3265-9085-8269-3286-77', host: @host)
|
352
|
+
|
353
|
+
batch = Host.where(id: @host.id).in_batches.first
|
354
|
+
generator = create_generator(batch)
|
355
|
+
|
356
|
+
json_str = generator.render
|
357
|
+
actual = JSON.parse(json_str.join("\n"))
|
358
|
+
|
359
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
360
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
361
|
+
assert_not_nil(actual_profile = actual_host['system_profile'])
|
362
|
+
assert_equal 'azure', actual_profile['cloud_provider']
|
363
|
+
end
|
364
|
+
|
365
|
+
test 'Identifies Alibaba cloud provider via manufacturer' do
|
366
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['dmi::system::manufacturer'], value: 'Test Alibaba Cloud version', host: @host)
|
367
|
+
|
368
|
+
batch = Host.where(id: @host.id).in_batches.first
|
369
|
+
generator = create_generator(batch)
|
370
|
+
|
371
|
+
json_str = generator.render
|
372
|
+
actual = JSON.parse(json_str.join("\n"))
|
373
|
+
|
374
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
375
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
376
|
+
assert_not_nil(actual_profile = actual_host['system_profile'])
|
377
|
+
assert_equal 'alibaba', actual_profile['cloud_provider']
|
378
|
+
end
|
379
|
+
|
380
|
+
test 'Identifies Alibaba cloud provider via product name' do
|
381
|
+
FactoryBot.create(:fact_value, fact_name: fact_names['dmi::system::product_name'], value: 'Test Alibaba Cloud ECS product', host: @host)
|
382
|
+
|
383
|
+
batch = Host.where(id: @host.id).in_batches.first
|
384
|
+
generator = create_generator(batch)
|
385
|
+
|
386
|
+
json_str = generator.render
|
387
|
+
actual = JSON.parse(json_str.join("\n"))
|
388
|
+
|
389
|
+
assert_equal 'slice_123', actual['report_slice_id']
|
390
|
+
assert_not_nil(actual_host = actual['hosts'].first)
|
391
|
+
assert_not_nil(actual_profile = actual_host['system_profile'])
|
392
|
+
assert_equal 'alibaba', actual_profile['cloud_provider']
|
393
|
+
end
|
394
|
+
|
263
395
|
private
|
264
396
|
|
265
397
|
def create_generator(batch, name = 'slice_123')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { noop } from 'patternfly-react';
|
2
2
|
|
3
|
-
export const
|
3
|
+
export const accounts = {
|
4
4
|
Account1: {
|
5
5
|
label: 'test_org1',
|
6
6
|
upload_report_status: 'running',
|
@@ -18,7 +18,9 @@ export const API_SUCCESS_RESPONSE = {
|
|
18
18
|
},
|
19
19
|
};
|
20
20
|
|
21
|
-
export const
|
21
|
+
export const accountIDs = Object.keys(accounts);
|
22
|
+
|
23
|
+
export const API_SUCCESS_RESPONSE = accounts;
|
22
24
|
|
23
25
|
export const pollingProcessID = 0;
|
24
26
|
|
@@ -30,6 +32,8 @@ export const processStatusName = 'upload_report_status';
|
|
30
32
|
|
31
33
|
export const autoUploadEnabled = true;
|
32
34
|
|
35
|
+
export const filterTerm = 'some_filter';
|
36
|
+
|
33
37
|
export const props = {
|
34
38
|
accounts,
|
35
39
|
fetchAccountsStatus: noop,
|
@@ -4,6 +4,8 @@ import PropTypes from 'prop-types';
|
|
4
4
|
import ListItem from './Components/ListItem';
|
5
5
|
import EmptyState from './Components/EmptyState';
|
6
6
|
import ErrorState from './Components/ErrorState';
|
7
|
+
import EmptyResults from './Components/EmptyResults';
|
8
|
+
import { filterAccounts } from './AccountListHelper';
|
7
9
|
import './accountList.scss';
|
8
10
|
|
9
11
|
class AccountList extends Component {
|
@@ -20,8 +22,9 @@ class AccountList extends Component {
|
|
20
22
|
}
|
21
23
|
|
22
24
|
render() {
|
23
|
-
const { accounts, error } = this.props;
|
25
|
+
const { accounts, error, filterTerm } = this.props;
|
24
26
|
const accountIds = Object.keys(accounts);
|
27
|
+
const filteredAccountIds = filterAccounts(accounts, accountIds, filterTerm);
|
25
28
|
|
26
29
|
if (error) {
|
27
30
|
return <ErrorState error={error} />;
|
@@ -30,16 +33,14 @@ class AccountList extends Component {
|
|
30
33
|
if (accountIds.length === 0) {
|
31
34
|
return <EmptyState />;
|
32
35
|
}
|
33
|
-
|
36
|
+
|
37
|
+
if (filteredAccountIds.length === 0) {
|
38
|
+
return <EmptyResults />;
|
39
|
+
}
|
40
|
+
|
41
|
+
const items = filteredAccountIds.map((accountID, index) => {
|
34
42
|
const account = accounts[accountID];
|
35
|
-
return
|
36
|
-
<ListItem
|
37
|
-
key={index}
|
38
|
-
accountID={accountID}
|
39
|
-
account={account}
|
40
|
-
initExpanded={index === 0}
|
41
|
-
/>
|
42
|
-
);
|
43
|
+
return <ListItem key={index} accountID={accountID} account={account} />;
|
43
44
|
});
|
44
45
|
return <ListView className="account_list">{items}</ListView>;
|
45
46
|
}
|
@@ -56,6 +57,7 @@ AccountList.propTypes = {
|
|
56
57
|
}),
|
57
58
|
accounts: PropTypes.object,
|
58
59
|
error: PropTypes.string,
|
60
|
+
filterTerm: PropTypes.string,
|
59
61
|
};
|
60
62
|
|
61
63
|
AccountList.defaultProps = {
|
@@ -69,6 +71,7 @@ AccountList.defaultProps = {
|
|
69
71
|
},
|
70
72
|
accounts: {},
|
71
73
|
error: '',
|
74
|
+
filterTerm: null,
|
72
75
|
};
|
73
76
|
|
74
77
|
export default AccountList;
|