foreman_rh_cloud 2.0.5 → 2.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -0
  3. data/app/controllers/foreman_inventory_upload/accounts_controller.rb +4 -6
  4. data/app/controllers/foreman_inventory_upload/tasks_controller.rb +25 -0
  5. data/app/controllers/foreman_inventory_upload/uploads_controller.rb +22 -3
  6. data/app/controllers/foreman_rh_cloud/react_controller.rb +11 -0
  7. data/app/controllers/insights_cloud/settings_controller.rb +24 -0
  8. data/app/controllers/insights_cloud/tasks_controller.rb +7 -0
  9. data/app/helpers/foreman_inventory_upload_host_helper.rb +20 -0
  10. data/app/models/insights_facet.rb +7 -0
  11. data/app/models/insights_hit.rb +6 -0
  12. data/app/models/inventory_sync/inventory_status.rb +30 -0
  13. data/app/models/setting/rh_cloud.rb +4 -1
  14. data/app/overrides/hosts_list.rb +13 -0
  15. data/app/views/foreman_rh_cloud/react/insights_cloud.html.erb +6 -0
  16. data/app/views/foreman_rh_cloud/react/inventory_upload.html.erb +1 -0
  17. data/app/views/{foreman_inventory_upload/layouts/react.html.erb → layouts/foreman_rh_cloud/application.html.erb} +2 -2
  18. data/config/routes.rb +14 -1
  19. data/db/migrate/20191215104806_create_insights_hits.foreman_inventory_upload.rb +14 -0
  20. data/db/migrate/20191216062008_create_insights_facets.foreman_inventory_upload.rb +7 -0
  21. data/db/migrate/20200727111529_add_uuid_column_to_insights_facets.foreman_rh_cloud.rb +5 -0
  22. data/lib/foreman_inventory_upload.rb +4 -0
  23. data/lib/foreman_inventory_upload/async/async_helpers.rb +13 -0
  24. data/lib/foreman_inventory_upload/async/shell_process.rb +9 -1
  25. data/lib/foreman_inventory_upload/async/upload_report_job.rb +30 -2
  26. data/lib/foreman_inventory_upload/generators/fact_helpers.rb +56 -0
  27. data/lib/foreman_inventory_upload/generators/json_stream.rb +10 -0
  28. data/lib/foreman_inventory_upload/generators/queries.rb +6 -0
  29. data/lib/foreman_inventory_upload/generators/slice.rb +54 -22
  30. data/lib/foreman_inventory_upload/notifications/manifest_import_success_notification_override.rb +19 -0
  31. data/lib/foreman_inventory_upload/scripts/uploader.sh.erb +1 -1
  32. data/lib/foreman_rh_cloud.rb +13 -0
  33. data/lib/foreman_rh_cloud/engine.rb +34 -5
  34. data/lib/foreman_rh_cloud/version.rb +1 -1
  35. data/lib/insights_cloud.rb +15 -0
  36. data/lib/insights_cloud/async/insights_full_sync.rb +103 -0
  37. data/lib/insights_cloud/async/insights_scheduled_sync.rb +23 -0
  38. data/lib/inventory_sync/async/host_result.rb +50 -0
  39. data/lib/inventory_sync/async/inventory_full_sync.rb +99 -0
  40. data/test/controllers/insights_sync/settings_controller_test.rb +30 -0
  41. data/test/factories/insights_factories.rb +31 -0
  42. data/test/jobs/insights_full_sync_test.rb +94 -0
  43. data/test/jobs/inventory_full_sync_test.rb +91 -0
  44. data/test/unit/archived_report_generator_test.rb +1 -0
  45. data/test/unit/fact_helpers_test.rb +29 -0
  46. data/test/unit/insights_facet_test.rb +16 -0
  47. data/test/unit/slice_generator_test.rb +252 -25
  48. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +14 -2
  49. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +13 -10
  50. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +6 -3
  51. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +10 -0
  52. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js +11 -1
  53. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +10 -1
  54. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/EmptyResults.js +15 -0
  55. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/EmptyResults.test.js +13 -0
  56. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/__snapshots__/EmptyResults.test.js.snap +18 -0
  57. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/emptyResults.scss +7 -0
  58. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/index.js +1 -0
  59. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +1 -4
  60. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +1 -0
  61. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js +8 -1
  62. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js +12 -0
  63. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +1 -1
  64. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js +13 -0
  65. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +12 -8
  66. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +2 -3
  67. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListActions.test.js.snap +21 -2
  68. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +11 -0
  69. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +3 -0
  70. data/webpack/ForemanInventoryUpload/Components/AccountList/index.js +2 -0
  71. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.js +6 -6
  72. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js +4 -1
  73. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcher.test.js.snap +9 -9
  74. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/autoUploadSwitcher.scss +1 -1
  75. data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardActions.js +4 -3
  76. data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardSelectors.js +1 -1
  77. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +2 -3
  78. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +1 -1
  79. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +3 -2
  80. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/FullScreenModal.js +5 -1
  81. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/__snapshots__/FullScreenModal.test.js.snap +1 -0
  82. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/fullScreenModal.scss +15 -13
  83. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.fixtures.js +1 -0
  84. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.js +29 -0
  85. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherActions.js +30 -0
  86. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherConstants.js +3 -0
  87. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcher.test.js +14 -0
  88. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcherActions.test.js +14 -0
  89. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcher.test.js.snap +38 -0
  90. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcherActions.test.js.snap +14 -0
  91. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/hostObfuscationSwitcher.scss +0 -0
  92. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/index.js +20 -0
  93. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/ClearButton.js +26 -0
  94. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/index.js +1 -0
  95. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.fixtures.js +2 -0
  96. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js +39 -0
  97. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterActions.js +16 -0
  98. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterConstants.js +3 -0
  99. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterReducer.js +36 -0
  100. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterSelectors.js +7 -0
  101. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilter.test.js +14 -0
  102. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterActions.test.js +14 -0
  103. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterReducer.test.js +35 -0
  104. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterSelectors.test.js +21 -0
  105. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilter.test.js.snap +25 -0
  106. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterActions.test.js.snap +17 -0
  107. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterReducer.test.js.snap +25 -0
  108. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterSelectors.test.js.snap +9 -0
  109. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/integration.test.js.snap +37 -0
  110. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/integration.test.js +18 -0
  111. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/index.js +17 -0
  112. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss +28 -0
  113. data/webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js +15 -0
  114. data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/InventorySettings.test.js +13 -0
  115. data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/__snapshots__/InventorySettings.test.js.snap +13 -0
  116. data/webpack/ForemanInventoryUpload/Components/InventorySettings/index.js +1 -0
  117. data/webpack/ForemanInventoryUpload/Components/InventorySettings/inventorySettings.scss +15 -0
  118. data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js +25 -6
  119. data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap +33 -5
  120. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/DocsButton.js +18 -0
  121. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/DocsButton.test.js +12 -0
  122. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/__snapshots__/DocsButton.test.js.snap +21 -0
  123. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/index.js +1 -0
  124. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/HistoryButton.js +19 -0
  125. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/HistoryButton.test.js +12 -0
  126. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/__snapshots__/HistoryButton.test.js.snap +22 -0
  127. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/index.js +1 -0
  128. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/PageDescription.js +24 -0
  129. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/PageDescription.test.js +11 -0
  130. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/__snapshots__/PageDescription.test.js.snap +17 -0
  131. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/index.js +1 -0
  132. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButton.js +52 -0
  133. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonActions.js +59 -0
  134. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonConstants.js +3 -0
  135. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonReducer.js +36 -0
  136. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonSelectors.js +13 -0
  137. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButton.test.js +13 -0
  138. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonActions.test.js +13 -0
  139. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonFixtures.js +9 -0
  140. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonReducer.test.js +33 -0
  141. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonSelectors.test.js +36 -0
  142. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButton.test.js.snap +26 -0
  143. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonActions.test.js.snap +36 -0
  144. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonReducer.test.js.snap +25 -0
  145. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonSelectors.test.js.snap +18 -0
  146. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/Modal.js +63 -0
  147. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/Toast.js +41 -0
  148. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/modal.scss +20 -0
  149. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/index.js +22 -0
  150. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/ToolbarButtons.js +15 -0
  151. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/ToolbarButtons.test.js +12 -0
  152. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/__snapshots__/ToolbarButtons.test.js.snap +11 -0
  153. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/index.js +1 -0
  154. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/toolbarButtons.scss +12 -0
  155. data/webpack/ForemanInventoryUpload/Components/PageHeader/pageHeader.scss +3 -0
  156. data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +9 -0
  157. data/webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js +17 -0
  158. data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +16 -8
  159. data/webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js +6 -4
  160. data/webpack/ForemanInventoryUpload/SubscriptionsPageExtension/SubscriptionsPageExtensionActions.js +34 -0
  161. data/webpack/ForemanInventoryUpload/__tests__/ForemanInventoryHelpers.test.js +10 -0
  162. data/webpack/ForemanInventoryUpload/{ForemanInventoryUpload.test.js → __tests__/ForemanInventoryUpload.test.js} +1 -1
  163. data/webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryHelpers.test.js.snap +5 -0
  164. data/webpack/ForemanInventoryUpload/{__snapshots__ → __tests__/__snapshots__}/ForemanInventoryUpload.test.js.snap +0 -0
  165. data/webpack/ForemanRhCloudHelpers.js +6 -0
  166. data/webpack/ForemanRhCloudPages.js +7 -0
  167. data/webpack/ForemanRhCloudReducers.js +10 -0
  168. data/webpack/ForemanRhCloudSelectors.js +5 -0
  169. data/webpack/ForemanRhCloudTestHelpers.js +15 -0
  170. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettings.js +33 -0
  171. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsActions.js +60 -0
  172. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsConstants.js +10 -0
  173. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsReducer.js +28 -0
  174. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsSelectors.js +6 -0
  175. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettings.test.js +18 -0
  176. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsActions.test.js +46 -0
  177. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsReducer.test.js +56 -0
  178. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsSelectors.test.js +21 -0
  179. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettings.test.js.snap +15 -0
  180. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsActions.test.js.snap +31 -0
  181. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsReducer.test.js.snap +33 -0
  182. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsSelectors.test.js.snap +9 -0
  183. data/webpack/InsightsCloudSync/Components/InsightsSettings/index.js +21 -0
  184. data/webpack/InsightsCloudSync/Components/InsightsSettings/insightsSettings.scss +16 -0
  185. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.fixtures.js +1 -0
  186. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.js +45 -0
  187. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/InsightsSyncSwitcher.test.js +17 -0
  188. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/__snapshots__/InsightsSyncSwitcher.test.js.snap +38 -0
  189. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/index.js +1 -0
  190. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/insightsSyncSwitcher.scss +3 -0
  191. data/webpack/InsightsCloudSync/InsightsCloudSync.js +59 -0
  192. data/webpack/InsightsCloudSync/InsightsCloudSync.test.js +16 -0
  193. data/webpack/InsightsCloudSync/InsightsCloudSyncActions.js +23 -0
  194. data/webpack/InsightsCloudSync/InsightsCloudSyncConstants.js +6 -0
  195. data/webpack/InsightsCloudSync/InsightsCloudSyncHelpers.js +3 -0
  196. data/webpack/InsightsCloudSync/InsightsCloudSyncReducers.js +8 -0
  197. data/webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap +67 -0
  198. data/webpack/InsightsCloudSync/__tests__/InsightsCloudSyncHelpers.test.js +9 -0
  199. data/webpack/InsightsCloudSync/__tests__/__snapshots__/InsightsCloudSyncHelpers.test.js.snap +3 -0
  200. data/webpack/InsightsCloudSync/index.js +18 -0
  201. data/webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js +1 -0
  202. data/webpack/__mocks__/foremanReact/constants.js +5 -0
  203. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +8 -0
  204. data/webpack/__tests__/ForemanRhCloudHelpers.test.js +11 -0
  205. data/webpack/__tests__/ForemanRhCloudSelectors.test.js +22 -0
  206. data/webpack/__tests__/ForemanRhCloudTestHelpers.test.js +20 -0
  207. data/webpack/__tests__/__snapshots__/ForemanRhCloudHelpers.test.js.snap +3 -0
  208. data/webpack/__tests__/__snapshots__/ForemanRhCloudSelectors.test.js.snap +24 -0
  209. data/webpack/__tests__/__snapshots__/ForemanRhCloudTestHelpers.test.js.snap +36 -0
  210. data/webpack/index.js +3 -6
  211. data/webpack/subscriptions_extension_index.js +8 -0
  212. metadata +166 -7
  213. data/app/controllers/foreman_inventory_upload/react_controller.rb +0 -7
  214. data/webpack/ForemanInventoryUpload/ForemanInventoryUploadSelectors.js +0 -4
@@ -0,0 +1,99 @@
1
+ require 'rest-client'
2
+
3
+ module InventorySync
4
+ module Async
5
+ class InventoryFullSync < ::ApplicationJob
6
+ def perform(organization)
7
+ @organization = organization
8
+ @subscribed_hosts_ids = Set.new(
9
+ ForemanInventoryUpload::Generators::Queries.for_slice(
10
+ Host.unscoped.where(organization: organization)
11
+ ).pluck(:id)
12
+ )
13
+ @host_statuses = {
14
+ sync: 0,
15
+ disconnect: 0,
16
+ }
17
+
18
+ InventorySync::InventoryStatus.transaction do
19
+ InventorySync::InventoryStatus.where(host_id: @subscribed_hosts_ids).delete_all
20
+ page = 1
21
+ loop do
22
+ api_response = query_inventory(page)
23
+ results = HostResult.new(api_response)
24
+ logger.debug("Downloading cloud inventory data: #{results.percentage}%")
25
+ update_hosts_status(results.status_hashes, results.touched)
26
+ @host_statuses[:sync] += results.touched.size
27
+ page += 1
28
+ break if results.last?
29
+ end
30
+ add_missing_hosts_statuses(@subscribed_hosts_ids)
31
+ @host_statuses[:disconnect] += @subscribed_hosts_ids.size
32
+ end
33
+
34
+ logger.debug("Synced hosts amount: #{@host_statuses[:sync]}")
35
+ logger.debug("Disconnected hosts amount: #{@host_statuses[:disconnect]}")
36
+
37
+ @host_statuses
38
+ end
39
+
40
+ def rh_credentials
41
+ @rh_credentials ||= query_refresh_token
42
+ end
43
+
44
+ private
45
+
46
+ def update_hosts_status(status_hashes, touched)
47
+ InventorySync::InventoryStatus.create(status_hashes)
48
+ @subscribed_hosts_ids.subtract(touched)
49
+ end
50
+
51
+ def add_missing_hosts_statuses(hosts_ids)
52
+ InventorySync::InventoryStatus.create(
53
+ hosts_ids.map do |host_id|
54
+ {
55
+ host_id: host_id,
56
+ status: InventorySync::InventoryStatus::DISCONNECT,
57
+ reported_at: DateTime.current,
58
+ }
59
+ end
60
+ )
61
+ end
62
+
63
+ def query_inventory(page = 1)
64
+ hosts_inventory_response = RestClient::Request.execute(
65
+ method: :get,
66
+ url: ForemanInventoryUpload.inventory_export_url,
67
+ verify_ssl: ForemanRhCloud.verify_ssl_method,
68
+ headers: {
69
+ Authorization: "Bearer #{rh_credentials}",
70
+ params: {
71
+ per_page: 100,
72
+ page: page,
73
+ },
74
+ }
75
+ )
76
+
77
+ JSON.parse(hosts_inventory_response)
78
+ end
79
+
80
+ def query_refresh_token
81
+ token_response = RestClient::Request.execute(
82
+ method: :post,
83
+ url: ForemanRhCloud.authentication_url,
84
+ verify_ssl: ForemanRhCloud.verify_ssl_method,
85
+ payload: {
86
+ grant_type: 'refresh_token',
87
+ client_id: 'rhsm-api',
88
+ refresh_token: Setting[:rh_cloud_token],
89
+ }
90
+ )
91
+
92
+ JSON.parse(token_response)['access_token']
93
+ rescue RestClient::ExceptionWithResponse => e
94
+ Foreman::Logging.exception('Unable to authenticate using rh_cloud_token setting', e)
95
+ raise ::Foreman::WrappedException.new(e, N_('Unable to authenticate using rh_cloud_token setting'))
96
+ end
97
+ end
98
+ end
99
+ end
@@ -0,0 +1,30 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class SettingsControllerTest < ActionController::TestCase
4
+ tests InsightsCloud::SettingsController
5
+
6
+ test 'should return allow_auto_insights_sync setting' do
7
+ FactoryBot.create(:setting, :name => 'allow_auto_insights_sync', :settings_type => "boolean", :category => "Setting::RhCloud", :default => false, :value => false)
8
+
9
+ assert_equal false, Setting[:allow_auto_insights_sync]
10
+
11
+ get :show, session: set_session_user
12
+
13
+ assert_response :success
14
+ actual = JSON.parse(response.body)
15
+ assert_equal false, actual['insightsSyncEnabled']
16
+ end
17
+
18
+ test 'should update allow_auto_insights_sync setting' do
19
+ FactoryBot.create(:setting, :name => 'allow_auto_insights_sync', :settings_type => "boolean", :category => "Setting::RhCloud", :default => false, :value => false)
20
+
21
+ assert_equal false, Setting[:allow_auto_insights_sync]
22
+
23
+ patch :update, params: { insightsSyncEnabled: true }, session: set_session_user
24
+
25
+ assert_response :success
26
+ actual = JSON.parse(response.body)
27
+ assert_equal true, actual['insightsSyncEnabled']
28
+ assert_equal true, Setting[:allow_auto_insights_sync]
29
+ end
30
+ end
@@ -0,0 +1,31 @@
1
+ FactoryBot.define do
2
+ factory :insights_facet do
3
+ # sequence(:uuid) { |n| "uuid-#{n}" }
4
+
5
+ trait :with_hits do
6
+ hits do
7
+ Array.new(1) { association(:insights_hit, host_id: host_id) }
8
+ end
9
+ end
10
+ end
11
+
12
+ factory :insights_hit do
13
+ last_seen { DateTime.yesterday }
14
+ sequence(:title) { |n| "hit title #{n}" }
15
+ sequence(:solution_url) { |n| "http://example.com/solutions/#{n}" }
16
+ total_risk { 1 }
17
+ likelihood { 2 }
18
+ publish_date { DateTime.now }
19
+ sequence(:results_url) { |n| "http://example.com/results/#{n}" }
20
+ end
21
+ end
22
+
23
+ FactoryBot.modify do
24
+ factory :host do
25
+ trait :with_insights_hits do
26
+ after(:create) do |host, _evaluator|
27
+ host.insights = FactoryBot.create(:insights_facet, :with_hits, host_id: host.id)
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,94 @@
1
+ require 'test_helper'
2
+
3
+ class InsightsFullSyncTest < ActiveJob::TestCase
4
+ setup do
5
+ @host1 = FactoryBot.create(:host, :managed, name: 'host1')
6
+ @host2 = FactoryBot.create(:host, :managed, name: 'host2')
7
+
8
+ hits_json = <<-HITS_JSON
9
+ [
10
+ {
11
+ "hostname": "#{@host1.name}",
12
+ "rhel_version": "7.5",
13
+ "uuid": "accdf444-5628-451d-bf3e-cf909ad72756",
14
+ "last_seen": "2019-11-22T08:41:42.447244Z",
15
+ "title": "New Ansible Engine packages are inaccessible when dedicated Ansible repo is not enabled",
16
+ "solution_url": "",
17
+ "total_risk": 2,
18
+ "likelihood": 2,
19
+ "publish_date": "2018-04-16T10:03:16Z",
20
+ "results_url": "https://cloud.redhat.com/insights/overview/stability/ansible_deprecated_repo%7CANSIBLE_DEPRECATED_REPO/accdf444-5628-451d-bf3e-cf909ad72756/"
21
+ },
22
+ {
23
+ "hostname": "#{@host1.name}",
24
+ "rhel_version": "7.5",
25
+ "uuid": "accdf444-5628-451d-bf3e-cf909ad72756",
26
+ "last_seen": "2019-11-22T08:41:42.447244Z",
27
+ "title": "CPU vulnerable to side-channel attacks using Microarchitectural Data Sampling (CVE-2018-12130, CVE-2018-12126, CVE-2018-12127, CVE-2019-11091)",
28
+ "solution_url": "https://access.redhat.com/node/4134081",
29
+ "total_risk": 2,
30
+ "likelihood": 2,
31
+ "publish_date": "2019-05-14T17:00:00Z",
32
+ "results_url": "https://cloud.redhat.com/insights/overview/security/CVE_2018_12130_cpu_kernel%7CCVE_2018_12130_CPU_KERNEL_NEED_UPDATE/accdf444-5628-451d-bf3e-cf909ad72756/"
33
+ },
34
+ {
35
+ "hostname": "#{@host2.name}",
36
+ "rhel_version": "7.5",
37
+ "uuid": "accdf444-5628-451d-bf3e-cf909ad72757",
38
+ "last_seen": "2019-11-22T08:41:42.447244Z",
39
+ "title": "CPU vulnerable to side-channel attacks using L1 Terminal Fault (CVE-2018-3620)",
40
+ "solution_url": "https://access.redhat.com/node/3560291",
41
+ "total_risk": 2,
42
+ "likelihood": 2,
43
+ "publish_date": "2018-08-14T17:00:00Z",
44
+ "results_url": "https://cloud.redhat.com/insights/overview/security/CVE_2018_3620_cpu_kernel%7CCVE_2018_3620_CPU_KERNEL_NEED_UPDATE/accdf444-5628-451d-bf3e-cf909ad72756/"
45
+ }
46
+ ]
47
+ HITS_JSON
48
+ @hits = JSON.parse(hits_json)
49
+ end
50
+
51
+ test 'Hits data is replaced with data from cloud' do
52
+ InsightsCloud::Async::InsightsFullSync.any_instance.expects(:query_insights_hits).returns(@hits)
53
+
54
+ InsightsCloud::Async::InsightsFullSync.perform_now()
55
+
56
+ @host1.reload
57
+ @host2.reload
58
+
59
+ assert_equal 2, @host1.insights.hits.count
60
+ assert_equal 1, @host2.insights.hits.count
61
+ assert_equal 'accdf444-5628-451d-bf3e-cf909ad72756', @host1.insights.uuid
62
+ assert_equal 'accdf444-5628-451d-bf3e-cf909ad72757', @host2.insights.uuid
63
+ end
64
+
65
+ test 'Hits ignoring non-existent hosts' do
66
+ hits_json = <<-HITS_JSON
67
+ [
68
+ {
69
+ "hostname": "#{@host1.name}_non_existent",
70
+ "rhel_version": "7.5",
71
+ "uuid": "accdf444-5628-451d-bf3e-cf909ad72756",
72
+ "last_seen": "2019-11-22T08:41:42.447244Z",
73
+ "title": "New Ansible Engine packages are inaccessible when dedicated Ansible repo is not enabled",
74
+ "solution_url": "",
75
+ "total_risk": 2,
76
+ "likelihood": 2,
77
+ "publish_date": "2018-04-16T10:03:16Z",
78
+ "results_url": "https://cloud.redhat.com/insights/overview/stability/ansible_deprecated_repo%7CANSIBLE_DEPRECATED_REPO/accdf444-5628-451d-bf3e-cf909ad72756/"
79
+ }
80
+ ]
81
+ HITS_JSON
82
+ hits = JSON.parse(hits_json)
83
+
84
+ InsightsCloud::Async::InsightsFullSync.any_instance.expects(:query_insights_hits).returns(hits)
85
+
86
+ InsightsCloud::Async::InsightsFullSync.perform_now()
87
+
88
+ @host1.reload
89
+ @host2.reload
90
+
91
+ assert_nil @host1.insights
92
+ assert_nil @host2.insights
93
+ end
94
+ end
@@ -0,0 +1,91 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class InventoryFullSyncTest < ActiveJob::TestCase
4
+ setup do
5
+ @host1 = FactoryBot.create(:host, :managed, name: 'host1')
6
+
7
+ User.current = User.find_by(login: 'secret_admin')
8
+
9
+ env = FactoryBot.create(:katello_k_t_environment)
10
+ cv = env.content_views << FactoryBot.create(:katello_content_view, organization: env.organization)
11
+
12
+ # this host would pass our plugin queries, so it could be uploaded to the cloud.
13
+ @host2 = FactoryBot.create(
14
+ :host,
15
+ :with_subscription,
16
+ :with_content,
17
+ content_view: cv.first,
18
+ lifecycle_environment: env,
19
+ organization: env.organization
20
+ )
21
+
22
+ @host2.subscription_facet.pools << FactoryBot.create(:katello_pool, account_number: '1234', cp_id: 1)
23
+
24
+ ForemanInventoryUpload::Generators::Queries.instance_variable_set(:@fact_names, nil)
25
+
26
+ inventory_json = <<-INVENTORY_JSON
27
+ {
28
+ "total": 3,
29
+ "count": 3,
30
+ "page": 1,
31
+ "per_page": 50,
32
+ "results": [{"fqdn": "#{@host1.fqdn}"}]
33
+ }
34
+ INVENTORY_JSON
35
+ @inventory = JSON.parse(inventory_json)
36
+ end
37
+
38
+ def interesting_facts
39
+ [
40
+ 'dmi::system::uuid',
41
+ 'virt::uuid',
42
+ 'cpu::cpu(s)',
43
+ 'cpu::cpu_socket(s)',
44
+ 'cpu::core(s)_per_socket',
45
+ 'memory::memtotal',
46
+ 'dmi::bios::vendor',
47
+ 'dmi::bios::version',
48
+ 'dmi::bios::relase_date',
49
+ 'uname::release',
50
+ 'lscpu::flags',
51
+ 'distribution::name',
52
+ 'distribution::version',
53
+ 'distribution::id',
54
+ 'virt::is_guest',
55
+ 'dmi::system::manufacturer',
56
+ 'dmi::system::product_name',
57
+ 'dmi::chassis::asset_tag',
58
+ 'insights_client::obfuscate_hostname_enabled',
59
+ 'insights_client::hostname',
60
+ ]
61
+ end
62
+
63
+ def fact_names
64
+ @fact_names ||= Hash[
65
+ interesting_facts.map do |fact|
66
+ [fact, FactoryBot.create(:fact_name, name: fact, type: 'Katello::RhsmFactName')]
67
+ end
68
+ ]
69
+ end
70
+
71
+ test 'Host status should be SYNC for inventory hosts' do
72
+ InventorySync::Async::InventoryFullSync.any_instance.expects(:query_inventory).returns(@inventory)
73
+
74
+ InventorySync::Async::InventoryFullSync.perform_now(@host1.organization)
75
+
76
+ @host1.reload
77
+
78
+ assert_equal InventorySync::InventoryStatus::SYNC, InventorySync::InventoryStatus.where(host_id: @host1.id).first.status
79
+ end
80
+
81
+ test 'Host status should be DISCONNECT for hosts that are not returned from cloud' do
82
+ InventorySync::Async::InventoryFullSync.any_instance.expects(:query_inventory).returns(@inventory)
83
+ FactoryBot.create(:fact_value, fact_name: fact_names['virt::uuid'], value: '1234', host: @host2)
84
+
85
+ InventorySync::Async::InventoryFullSync.perform_now(@host2.organization)
86
+
87
+ @host2.reload
88
+
89
+ assert_equal InventorySync::InventoryStatus::DISCONNECT, InventorySync::InventoryStatus.where(host_id: @host2.id).first.status
90
+ end
91
+ end
@@ -49,6 +49,7 @@ class ArchivedReportGeneratorTest < ActiveSupport::TestCase
49
49
  test_org = FactoryBot.create(:organization)
50
50
 
51
51
  ForemanInventoryUpload::Generators::Queries.expects(:for_org).with(test_org.id).returns(batches)
52
+ ForemanInventoryUpload::Generators::Slice.any_instance.stubs(:golden_ticket?).returns(false)
52
53
  Dir.mktmpdir do |tmpdir|
53
54
  target = File.join(tmpdir, 'test.tar.gz')
54
55
  generator = ForemanInventoryUpload::Generators::ArchivedReport.new(target, Logger.new(STDOUT))
@@ -0,0 +1,29 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class FactHelpersTest < ActiveSupport::TestCase
4
+ class FactsHelpersTestStub
5
+ include ForemanInventoryUpload::Generators::FactHelpers
6
+ end
7
+
8
+ setup do
9
+ @instance = FactsHelpersTestStub.new
10
+
11
+ @org = FactoryBot.create(:organization)
12
+ end
13
+
14
+ test 'golden_ticket uses golden_ticket method when defined' do
15
+ @org.expects(:golden_ticket?).returns(true)
16
+
17
+ actual = @instance.golden_ticket?(@org)
18
+
19
+ assert actual
20
+ end
21
+
22
+ test 'golden_ticket uses content_access_mode method when golden_ticket not defined' do
23
+ @org.expects(:content_access_mode).returns('org_environment')
24
+
25
+ actual = @instance.golden_ticket?(@org)
26
+
27
+ assert actual
28
+ end
29
+ end
@@ -0,0 +1,16 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class InsightsFacetTest < ActiveSupport::TestCase
4
+ setup do
5
+ @host = FactoryBot.create(:host, :with_insights_hits)
6
+ end
7
+
8
+ test 'host with hits can be deleted' do
9
+ assert_equal 1, @host.insights.hits.count
10
+
11
+ host_id = @host.id
12
+ @host.destroy
13
+ actual_host = Host.find_by_id(host_id)
14
+ assert_nil actual_host
15
+ end
16
+ end
@@ -16,7 +16,7 @@ class ReportGeneratorTest < ActiveSupport::TestCase
16
16
  organization: env.organization
17
17
  )
18
18
 
19
- @host.subscription_facet.pools << FactoryBot.create(:katello_pool, account_number: '1234', cp_id: 1)
19
+ @host.organization.pools << FactoryBot.create(:katello_pool, account_number: '1234', cp_id: 1)
20
20
 
21
21
  ForemanInventoryUpload::Generators::Queries.instance_variable_set(:@fact_names, nil)
22
22
  end
@@ -37,6 +37,12 @@ class ReportGeneratorTest < ActiveSupport::TestCase
37
37
  'distribution::name',
38
38
  'distribution::version',
39
39
  'distribution::id',
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',
40
46
  ]
41
47
  end
42
48
 
@@ -50,23 +56,99 @@ class ReportGeneratorTest < ActiveSupport::TestCase
50
56
 
51
57
  test 'generates a report for a single host' do
52
58
  batch = Host.where(id: @host.id).in_batches.first
53
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
59
+ generator = create_generator(batch)
54
60
 
55
61
  json_str = generator.render
56
62
  actual = JSON.parse(json_str.join("\n"))
57
63
 
58
64
  assert_equal 'slice_123', actual['report_slice_id']
59
65
  assert_not_nil(actual_host = actual['hosts'].first)
60
- assert_equal @host.name, actual_host['display_name']
66
+ assert_nil actual_host['ip_addresses']
67
+ assert_nil actual_host['mac_addresses']
61
68
  assert_equal @host.fqdn, actual_host['fqdn']
62
69
  assert_equal '1234', actual_host['account']
63
70
  assert_equal 1, generator.hosts_count
64
71
  end
65
72
 
73
+ test 'generates ip_address and mac_address fields' do
74
+ @host.interfaces << FactoryBot.build(:nic_managed)
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 @host.interfaces.where.not(ip: nil).first.ip, actual_host['ip_addresses'].first
84
+ assert_equal @host.interfaces.where.not(mac: nil).first.mac, actual_host['mac_addresses'].first
85
+ assert_equal @host.fqdn, actual_host['fqdn']
86
+ assert_equal '1234', actual_host['account']
87
+ assert_equal 1, generator.hosts_count
88
+ end
89
+
90
+ test 'obfuscates fqdn when instructed by insights-client' do
91
+ FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::obfuscate_hostname_enabled'], value: 'true', host: @host)
92
+ FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::hostname'], value: 'obfuscated_name', host: @host)
93
+
94
+ batch = Host.where(id: @host.id).in_batches.first
95
+ generator = create_generator(batch)
96
+
97
+ json_str = generator.render
98
+ actual = JSON.parse(json_str.join("\n"))
99
+
100
+ assert_equal 'slice_123', actual['report_slice_id']
101
+ assert_not_nil(actual_host = actual['hosts'].first)
102
+ assert_equal 'obfuscated_name', actual_host['fqdn']
103
+ assert_equal '1234', actual_host['account']
104
+ assert_not_nil(actual_facts = actual_host['facts'].first['facts'])
105
+ assert_equal true, actual_facts['is_hostname_obfuscated']
106
+ assert_equal 1, generator.hosts_count
107
+ end
108
+
109
+ test 'obfuscates fqdn when setting set' do
110
+ FactoryBot.create(:setting, :name => 'obfuscate_inventory_hostnames', :value => true)
111
+
112
+ batch = Host.where(id: @host.id).in_batches.first
113
+ generator = create_generator(batch)
114
+
115
+ json_str = generator.render
116
+ actual = JSON.parse(json_str.join("\n"))
117
+
118
+ obfuscated_fqdn = Digest::SHA1.hexdigest(@host.fqdn) + '.example.com'
119
+
120
+ assert_equal 'slice_123', actual['report_slice_id']
121
+ assert_not_nil(actual_host = actual['hosts'].first)
122
+ assert_equal obfuscated_fqdn, actual_host['fqdn']
123
+ assert_equal '1234', actual_host['account']
124
+ assert_not_nil(actual_facts = actual_host['facts'].first['facts'])
125
+ assert_equal true, actual_facts['is_hostname_obfuscated']
126
+ assert_equal 1, generator.hosts_count
127
+ end
128
+
129
+ test 'does not obfuscate fqdn when insights-client sets to false' do
130
+ FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::obfuscate_hostname_enabled'], value: 'false', host: @host)
131
+ FactoryBot.create(:fact_value, fact_name: fact_names['insights_client::hostname'], value: 'obfuscated_name', host: @host)
132
+
133
+ batch = Host.where(id: @host.id).in_batches.first
134
+ generator = create_generator(batch)
135
+
136
+ json_str = generator.render
137
+ actual = JSON.parse(json_str.join("\n"))
138
+
139
+ assert_equal 'slice_123', actual['report_slice_id']
140
+ assert_not_nil(actual_host = actual['hosts'].first)
141
+ assert_equal @host.fqdn, actual_host['fqdn']
142
+ assert_equal '1234', actual_host['account']
143
+ assert_not_nil(actual_facts = actual_host['facts'].first['facts'])
144
+ assert_equal false, actual_facts['is_hostname_obfuscated']
145
+ assert_equal 1, generator.hosts_count
146
+ end
147
+
66
148
  test 'generates a report with satellite facts' do
67
149
  Foreman.expects(:instance_id).twice.returns('satellite-id')
68
150
  batch = Host.where(id: @host.id).in_batches.first
69
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice-123')
151
+ generator = create_generator(batch)
70
152
 
71
153
  json_str = generator.render
72
154
  actual = JSON.parse(json_str.join("\n"))
@@ -77,13 +159,14 @@ class ReportGeneratorTest < ActiveSupport::TestCase
77
159
  assert_equal 'satellite-id', satellite_facts['satellite_instance_id']
78
160
  assert_equal @host.organization_id, satellite_facts['organization_id']
79
161
 
80
- instance_id_tag = actual['hosts'].first['tags'].find { |tag| tag['namespace'] == 'satellite' && tag['key'] == 'satellite_instance_id' }
81
- assert_not_nil instance_id_tag
82
- assert_equal 'satellite-id', instance_id_tag['value']
162
+ actual_host = actual['hosts'].first
163
+ assert_tag('satellite-id', actual_host, 'satellite_instance_id')
164
+ assert_tag(@host.organization_id.to_s, actual_host, 'organization_id')
165
+ assert_tag(@host.content_view.name, actual_host, 'content_view')
166
+ assert_tag(@host.location.name, actual_host, 'location')
167
+ assert_tag(@host.organization.name, actual_host, 'organization')
83
168
 
84
- org_id_tag = actual['hosts'].first['tags'].find { |tag| tag['namespace'] == 'satellite' && tag['key'] == 'organization_id' }
85
- assert_not_nil org_id_tag
86
- assert_equal @host.organization_id.to_s, org_id_tag['value']
169
+ assert_equal false, satellite_facts['is_hostname_obfuscated']
87
170
 
88
171
  version = satellite_facts['satellite_version']
89
172
  if defined?(ForemanThemeSatellite)
@@ -107,14 +190,13 @@ class ReportGeneratorTest < ActiveSupport::TestCase
107
190
  @host.save!
108
191
 
109
192
  batch = Host.where(id: @host.id).in_batches.first
110
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
193
+ generator = create_generator(batch)
111
194
 
112
195
  json_str = generator.render
113
196
  actual = JSON.parse(json_str.join("\n"))
114
197
 
115
198
  assert_equal 'slice_123', actual['report_slice_id']
116
199
  assert_not_nil(actual_host = actual['hosts'].first)
117
- assert_equal @host.name, actual_host['display_name']
118
200
  assert_equal @host.fqdn, actual_host['fqdn']
119
201
  assert_not_nil(host_facts = actual_host['facts']&.first)
120
202
  assert_equal 'satellite', host_facts['namespace']
@@ -126,23 +208,40 @@ class ReportGeneratorTest < ActiveSupport::TestCase
126
208
  test 'generates a report with system purpose' do
127
209
  @host.subscription_facet.purpose_usage = 'test_usage'
128
210
  @host.subscription_facet.purpose_role = 'test_role'
211
+ @host.subscription_facet.service_level = 'test_sla'
129
212
  @host.subscription_facet.save!
130
213
 
131
214
  batch = Host.where(id: @host.id).in_batches.first
132
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
215
+ generator = create_generator(batch)
133
216
 
134
217
  json_str = generator.render
135
218
  actual = JSON.parse(json_str.join("\n"))
136
219
 
137
220
  assert_equal 'slice_123', actual['report_slice_id']
138
221
  assert_not_nil(actual_host = actual['hosts'].first)
139
- assert_equal @host.name, actual_host['display_name']
140
222
  assert_equal @host.fqdn, actual_host['fqdn']
141
223
  assert_not_nil(host_facts = actual_host['facts']&.first)
142
224
  assert_equal 'satellite', host_facts['namespace']
143
225
  assert_not_nil(fact_values = host_facts['facts'])
144
226
  assert_equal 'test_usage', fact_values['system_purpose_usage']
145
227
  assert_equal 'test_role', fact_values['system_purpose_role']
228
+ assert_equal 'test_sla', fact_values['system_purpose_sla']
229
+ end
230
+
231
+ test 'generates a report for a golden ticket' do
232
+ batch = Host.where(id: @host.id).in_batches.first
233
+ generator = create_generator(batch) do |generator|
234
+ generator.stubs(:golden_ticket?).returns(true)
235
+ end
236
+
237
+ json_str = generator.render
238
+ actual = JSON.parse(json_str.join("\n"))
239
+
240
+ assert_equal 'slice_123', actual['report_slice_id']
241
+ assert_not_nil(actual_host = actual['hosts'].first)
242
+ assert_equal @host.fqdn, actual_host['fqdn']
243
+ assert_equal '1234', actual_host['account']
244
+ assert_equal 1, generator.hosts_count
146
245
  end
147
246
 
148
247
  test 'skips hosts without subscription' do
@@ -153,14 +252,13 @@ class ReportGeneratorTest < ActiveSupport::TestCase
153
252
 
154
253
  # make a_host last
155
254
  batch = Host.where(id: [@host.id, a_host.id]).order(:name).in_batches.first
156
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
255
+ generator = create_generator(batch)
157
256
 
158
257
  json_str = generator.render
159
258
  actual = JSON.parse(json_str.join("\n"))
160
259
 
161
260
  assert_equal 'slice_123', actual['report_slice_id']
162
261
  assert_not_nil(actual_host = actual['hosts'].first)
163
- assert_equal @host.name, actual_host['display_name']
164
262
  assert_equal @host.fqdn, actual_host['fqdn']
165
263
  assert_equal '1234', actual_host['account']
166
264
  assert_equal 1, generator.hosts_count
@@ -170,7 +268,7 @@ class ReportGeneratorTest < ActiveSupport::TestCase
170
268
  FactoryBot.create(:fact_value, fact_name: fact_names['memory::memtotal'], value: '1', host: @host)
171
269
 
172
270
  batch = Host.where(id: @host.id).in_batches.first
173
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
271
+ generator = create_generator(batch)
174
272
 
175
273
  json_str = generator.render
176
274
  actual = JSON.parse(json_str.join("\n"))
@@ -182,15 +280,21 @@ class ReportGeneratorTest < ActiveSupport::TestCase
182
280
  end
183
281
 
184
282
  test 'reports an account for hosts with multiple pools' do
185
- first_pool = @host.subscription_facet.pools.first
283
+ first_pool = @host.organization.pools.first
186
284
  second_pool = FactoryBot.create(:katello_pool, account_number: nil, cp_id: 2)
187
- @host.subscription_facet.pools = []
188
- @host.subscription_facet.save!
189
- @host.subscription_facet.pools << first_pool
190
- @host.subscription_facet.pools << second_pool
285
+ new_org = FactoryBot.create(:organization, pools: [first_pool, second_pool])
191
286
 
192
- batch = Host.where(id: @host.id).in_batches.first
193
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
287
+ another_host = FactoryBot.create(
288
+ :host,
289
+ :with_subscription,
290
+ :with_content,
291
+ content_view: @host.content_view,
292
+ lifecycle_environment: @host.lifecycle_environment,
293
+ organization: new_org
294
+ )
295
+
296
+ batch = Host.where(id: another_host.id).in_batches.first
297
+ generator = create_generator(batch)
194
298
 
195
299
  json_str = generator.render
196
300
  actual = JSON.parse(json_str.join("\n"))
@@ -207,7 +311,7 @@ class ReportGeneratorTest < ActiveSupport::TestCase
207
311
  FactoryBot.create(:fact_value, fact_name: fact_names['distribution::id'], value: 'TestId', host: @host)
208
312
 
209
313
  batch = Host.where(id: @host.id).in_batches.first
210
- generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], 'slice_123')
314
+ generator = create_generator(batch)
211
315
 
212
316
  json_str = generator.render
213
317
  actual = JSON.parse(json_str.join("\n"))
@@ -217,4 +321,127 @@ class ReportGeneratorTest < ActiveSupport::TestCase
217
321
  assert_not_nil(actual_profile = actual_host['system_profile'])
218
322
  assert_equal 'Red Hat Test Linux 7.1 (TestId)', actual_profile['os_release']
219
323
  end
324
+
325
+ test 'sets infrastructure_type to "virtual" based on virt.is_guest fact' do
326
+ FactoryBot.create(:fact_value, fact_name: fact_names['virt::is_guest'], value: true, host: @host)
327
+
328
+ batch = Host.where(id: @host.id).in_batches.first
329
+ generator = create_generator(batch)
330
+
331
+ json_str = generator.render
332
+ actual = JSON.parse(json_str.join("\n"))
333
+
334
+ assert_equal 'slice_123', actual['report_slice_id']
335
+ assert_not_nil(actual_host = actual['hosts'].first)
336
+ assert_not_nil(actual_profile = actual_host['system_profile'])
337
+ assert_equal 'virtual', actual_profile['infrastructure_type']
338
+ end
339
+
340
+ test 'sets infrastructure_type to "physical" based on virt.is_guest fact' do
341
+ FactoryBot.create(:fact_value, fact_name: fact_names['virt::is_guest'], value: false, host: @host)
342
+
343
+ batch = Host.where(id: @host.id).in_batches.first
344
+ generator = create_generator(batch)
345
+
346
+ json_str = generator.render
347
+ actual = JSON.parse(json_str.join("\n"))
348
+
349
+ assert_equal 'slice_123', actual['report_slice_id']
350
+ assert_not_nil(actual_host = actual['hosts'].first)
351
+ assert_not_nil(actual_profile = actual_host['system_profile'])
352
+ assert_equal 'physical', actual_profile['infrastructure_type']
353
+ end
354
+
355
+ test 'Identifies Amazon cloud provider' do
356
+ FactoryBot.create(:fact_value, fact_name: fact_names['dmi::bios::version'], value: 'Test Amazon version', host: @host)
357
+
358
+ batch = Host.where(id: @host.id).in_batches.first
359
+ generator = create_generator(batch)
360
+
361
+ json_str = generator.render
362
+ actual = JSON.parse(json_str.join("\n"))
363
+
364
+ assert_equal 'slice_123', actual['report_slice_id']
365
+ assert_not_nil(actual_host = actual['hosts'].first)
366
+ assert_not_nil(actual_profile = actual_host['system_profile'])
367
+ assert_equal 'aws', actual_profile['cloud_provider']
368
+ end
369
+
370
+ test 'Identifies Google cloud provider' do
371
+ FactoryBot.create(:fact_value, fact_name: fact_names['dmi::bios::version'], value: 'Test Google version', host: @host)
372
+
373
+ batch = Host.where(id: @host.id).in_batches.first
374
+ generator = create_generator(batch)
375
+
376
+ json_str = generator.render
377
+ actual = JSON.parse(json_str.join("\n"))
378
+
379
+ assert_equal 'slice_123', actual['report_slice_id']
380
+ assert_not_nil(actual_host = actual['hosts'].first)
381
+ assert_not_nil(actual_profile = actual_host['system_profile'])
382
+ assert_equal 'google', actual_profile['cloud_provider']
383
+ end
384
+
385
+ test 'Identifies Azure cloud provider' do
386
+ FactoryBot.create(:fact_value, fact_name: fact_names['dmi::chassis::asset_tag'], value: '7783-7084-3265-9085-8269-3286-77', host: @host)
387
+
388
+ batch = Host.where(id: @host.id).in_batches.first
389
+ generator = create_generator(batch)
390
+
391
+ json_str = generator.render
392
+ actual = JSON.parse(json_str.join("\n"))
393
+
394
+ assert_equal 'slice_123', actual['report_slice_id']
395
+ assert_not_nil(actual_host = actual['hosts'].first)
396
+ assert_not_nil(actual_profile = actual_host['system_profile'])
397
+ assert_equal 'azure', actual_profile['cloud_provider']
398
+ end
399
+
400
+ test 'Identifies Alibaba cloud provider via manufacturer' do
401
+ FactoryBot.create(:fact_value, fact_name: fact_names['dmi::system::manufacturer'], value: 'Test Alibaba Cloud version', host: @host)
402
+
403
+ batch = Host.where(id: @host.id).in_batches.first
404
+ generator = create_generator(batch)
405
+
406
+ json_str = generator.render
407
+ actual = JSON.parse(json_str.join("\n"))
408
+
409
+ assert_equal 'slice_123', actual['report_slice_id']
410
+ assert_not_nil(actual_host = actual['hosts'].first)
411
+ assert_not_nil(actual_profile = actual_host['system_profile'])
412
+ assert_equal 'alibaba', actual_profile['cloud_provider']
413
+ end
414
+
415
+ test 'Identifies Alibaba cloud provider via product name' do
416
+ FactoryBot.create(:fact_value, fact_name: fact_names['dmi::system::product_name'], value: 'Test Alibaba Cloud ECS product', host: @host)
417
+
418
+ batch = Host.where(id: @host.id).in_batches.first
419
+ generator = create_generator(batch)
420
+
421
+ json_str = generator.render
422
+ actual = JSON.parse(json_str.join("\n"))
423
+
424
+ assert_equal 'slice_123', actual['report_slice_id']
425
+ assert_not_nil(actual_host = actual['hosts'].first)
426
+ assert_not_nil(actual_profile = actual_host['system_profile'])
427
+ assert_equal 'alibaba', actual_profile['cloud_provider']
428
+ end
429
+
430
+ private
431
+
432
+ def create_generator(batch, name = 'slice_123')
433
+ generator = ForemanInventoryUpload::Generators::Slice.new(batch, [], name)
434
+ if block_given?
435
+ yield(generator)
436
+ else
437
+ generator.stubs(:golden_ticket?).returns(false)
438
+ end
439
+ generator
440
+ end
441
+
442
+ def assert_tag(expected_value, host, tag_id)
443
+ actual_tag = host['tags'].find { |tag| tag['namespace'] == 'satellite' && tag['key'] == tag_id }
444
+ assert_not_nil actual_tag
445
+ assert_equal expected_value, actual_tag['value']
446
+ end
220
447
  end