foreman_rh_cloud 1.0.6 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (244) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +33 -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/hits_controller.rb +17 -0
  8. data/app/controllers/insights_cloud/settings_controller.rb +24 -0
  9. data/app/controllers/insights_cloud/tasks_controller.rb +7 -0
  10. data/app/helpers/foreman_inventory_upload_host_helper.rb +20 -0
  11. data/app/models/concerns/rh_cloud_host.rb +12 -0
  12. data/app/models/insights_facet.rb +7 -0
  13. data/app/models/insights_hit.rb +6 -0
  14. data/app/models/inventory_sync/inventory_status.rb +30 -0
  15. data/app/models/setting/rh_cloud.rb +4 -1
  16. data/app/overrides/hosts_list.rb +13 -0
  17. data/app/views/foreman_rh_cloud/react/insights_cloud.html.erb +6 -0
  18. data/app/views/foreman_rh_cloud/react/inventory_upload.html.erb +1 -0
  19. data/app/views/hosts/_insights_tab.html.erb +15 -0
  20. data/app/views/{foreman_inventory_upload/layouts/react.html.erb → layouts/foreman_rh_cloud/application.html.erb} +2 -2
  21. data/config/routes.rb +15 -1
  22. data/db/migrate/20191215104806_create_insights_hits.foreman_inventory_upload.rb +14 -0
  23. data/db/migrate/20191216062008_create_insights_facets.foreman_inventory_upload.rb +7 -0
  24. data/db/migrate/20200727111529_add_uuid_column_to_insights_facets.foreman_rh_cloud.rb +5 -0
  25. data/lib/foreman_inventory_upload.rb +4 -0
  26. data/lib/foreman_inventory_upload/async/generate_report_job.rb +1 -1
  27. data/lib/foreman_inventory_upload/async/shell_process.rb +15 -9
  28. data/lib/foreman_inventory_upload/async/upload_report_job.rb +19 -1
  29. data/lib/foreman_inventory_upload/generators/fact_helpers.rb +43 -0
  30. data/lib/foreman_inventory_upload/generators/json_stream.rb +10 -0
  31. data/lib/foreman_inventory_upload/generators/metadata.rb +3 -0
  32. data/lib/foreman_inventory_upload/generators/queries.rb +7 -4
  33. data/lib/foreman_inventory_upload/generators/slice.rb +42 -14
  34. data/lib/foreman_inventory_upload/notifications/manifest_import_success_notification_override.rb +19 -0
  35. data/lib/foreman_rh_cloud.rb +13 -0
  36. data/lib/foreman_rh_cloud/engine.rb +44 -5
  37. data/lib/foreman_rh_cloud/version.rb +1 -1
  38. data/lib/insights_cloud.rb +15 -0
  39. data/lib/insights_cloud/async/insights_full_sync.rb +103 -0
  40. data/lib/insights_cloud/async/insights_scheduled_sync.rb +23 -0
  41. data/lib/inventory_sync/async/host_result.rb +50 -0
  42. data/lib/inventory_sync/async/inventory_full_sync.rb +99 -0
  43. data/lib/tasks/insights.rake +15 -0
  44. data/lib/tasks/{generator.rake → rh_cloud_inventory.rake} +7 -1
  45. data/package.json +3 -1
  46. data/test/controllers/insights_sync/settings_controller_test.rb +30 -0
  47. data/test/factories/insights_factories.rb +31 -0
  48. data/test/jobs/insights_full_sync_test.rb +94 -0
  49. data/test/jobs/inventory_full_sync_test.rb +91 -0
  50. data/test/jobs/upload_report_job_test.rb +34 -0
  51. data/test/unit/insights_facet_test.rb +16 -0
  52. data/test/unit/metadata_generator_test.rb +2 -0
  53. data/test/unit/slice_generator_test.rb +199 -9
  54. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.fixtures.js +14 -2
  55. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountList.js +13 -10
  56. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListActions.js +6 -3
  57. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListHelper.js +10 -0
  58. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListReducer.js +11 -1
  59. data/webpack/ForemanInventoryUpload/Components/AccountList/AccountListSelectors.js +10 -1
  60. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/EmptyResults.js +15 -0
  61. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/EmptyResults.test.js +13 -0
  62. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/__tests__/__snapshots__/EmptyResults.test.js.snap +18 -0
  63. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/emptyResults.scss +7 -0
  64. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/EmptyResults/index.js +1 -0
  65. data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/ListItem.js +1 -4
  66. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountList.test.js +1 -0
  67. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListActions.test.js +8 -1
  68. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListHelper.test.js +12 -0
  69. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListIntegration.test.js +1 -1
  70. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListReducer.test.js +13 -0
  71. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/AccountListSelectors.test.js +12 -8
  72. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountList.test.js.snap +2 -3
  73. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListActions.test.js.snap +21 -2
  74. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListReducer.test.js.snap +11 -0
  75. data/webpack/ForemanInventoryUpload/Components/AccountList/__tests__/__snapshots__/AccountListSelectors.test.js.snap +3 -0
  76. data/webpack/ForemanInventoryUpload/Components/AccountList/index.js +2 -0
  77. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcher.js +6 -6
  78. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/AutoUploadSwitcherActions.js +4 -1
  79. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/__tests__/__snapshots__/AutoUploadSwitcher.test.js.snap +9 -9
  80. data/webpack/ForemanInventoryUpload/Components/AutoUploadSwitcher/autoUploadSwitcher.scss +1 -1
  81. data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardActions.js +4 -3
  82. data/webpack/ForemanInventoryUpload/Components/Dashboard/DashboardSelectors.js +1 -1
  83. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardActions.test.js +2 -3
  84. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardIntegration.test.js +1 -1
  85. data/webpack/ForemanInventoryUpload/Components/Dashboard/__tests__/DashboardSelectors.test.js +3 -2
  86. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/FullScreenModal.js +5 -1
  87. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/__tests__/__snapshots__/FullScreenModal.test.js.snap +1 -0
  88. data/webpack/ForemanInventoryUpload/Components/FullScreenModal/fullScreenModal.scss +15 -13
  89. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.fixtures.js +1 -0
  90. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcher.js +29 -0
  91. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherActions.js +30 -0
  92. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/HostObfuscationSwitcherConstants.js +3 -0
  93. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcher.test.js +14 -0
  94. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/HostObfuscationSwitcherActions.test.js +14 -0
  95. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcher.test.js.snap +38 -0
  96. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/__tests__/__snapshots__/HostObfuscationSwitcherActions.test.js.snap +14 -0
  97. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/hostObfuscationSwitcher.scss +0 -0
  98. data/webpack/ForemanInventoryUpload/Components/HostObfuscationSwitcher/index.js +20 -0
  99. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/ClearButton.js +26 -0
  100. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/Components/ClearButton/index.js +1 -0
  101. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.fixtures.js +2 -0
  102. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js +39 -0
  103. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterActions.js +16 -0
  104. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterConstants.js +3 -0
  105. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterReducer.js +36 -0
  106. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilterSelectors.js +7 -0
  107. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilter.test.js +14 -0
  108. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterActions.test.js +14 -0
  109. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterReducer.test.js +35 -0
  110. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/InventoryFilterSelectors.test.js +21 -0
  111. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilter.test.js.snap +25 -0
  112. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterActions.test.js.snap +17 -0
  113. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterReducer.test.js.snap +25 -0
  114. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/InventoryFilterSelectors.test.js.snap +9 -0
  115. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/__snapshots__/integration.test.js.snap +40 -0
  116. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/__tests__/integration.test.js +18 -0
  117. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/index.js +17 -0
  118. data/webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss +28 -0
  119. data/webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js +15 -0
  120. data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/InventorySettings.test.js +13 -0
  121. data/webpack/ForemanInventoryUpload/Components/InventorySettings/__tests__/__snapshots__/InventorySettings.test.js.snap +13 -0
  122. data/webpack/ForemanInventoryUpload/Components/InventorySettings/index.js +1 -0
  123. data/webpack/ForemanInventoryUpload/Components/InventorySettings/inventorySettings.scss +15 -0
  124. data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.js +25 -6
  125. data/webpack/ForemanInventoryUpload/Components/PageHeader/__tests__/__snapshots__/PageHeader.test.js.snap +33 -5
  126. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/DocsButton.js +18 -0
  127. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/DocsButton.test.js +13 -0
  128. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/__tests__/__snapshots__/DocsButton.test.js.snap +21 -0
  129. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/DocsButton/index.js +1 -0
  130. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/HistoryButton.js +19 -0
  131. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/HistoryButton.test.js +14 -0
  132. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/__tests__/__snapshots__/HistoryButton.test.js.snap +22 -0
  133. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/HistoryButton/index.js +1 -0
  134. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/PageDescription.js +24 -0
  135. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/PageDescription.test.js +11 -0
  136. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/__tests__/__snapshots__/PageDescription.test.js.snap +17 -0
  137. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/PageDescription/index.js +1 -0
  138. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButton.js +52 -0
  139. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonActions.js +59 -0
  140. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonConstants.js +3 -0
  141. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonReducer.js +36 -0
  142. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButtonSelectors.js +13 -0
  143. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButton.test.js +13 -0
  144. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonActions.test.js +13 -0
  145. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonFixtures.js +9 -0
  146. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonReducer.test.js +33 -0
  147. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/SyncButtonSelectors.test.js +36 -0
  148. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButton.test.js.snap +26 -0
  149. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonActions.test.js.snap +36 -0
  150. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonReducer.test.js.snap +25 -0
  151. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButtonSelectors.test.js.snap +18 -0
  152. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/Modal.js +63 -0
  153. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/Toast.js +41 -0
  154. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/components/modal.scss +20 -0
  155. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/index.js +22 -0
  156. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/ToolbarButtons.js +15 -0
  157. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/ToolbarButtons.test.js +12 -0
  158. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/__tests__/__snapshots__/ToolbarButtons.test.js.snap +11 -0
  159. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/index.js +1 -0
  160. data/webpack/ForemanInventoryUpload/Components/PageHeader/components/ToolbarButtons/toolbarButtons.scss +12 -0
  161. data/webpack/ForemanInventoryUpload/Components/PageHeader/pageHeader.scss +3 -0
  162. data/webpack/ForemanInventoryUpload/Components/StatusChart/StatusChart.js +1 -1
  163. data/webpack/ForemanInventoryUpload/Components/StatusChart/__tests__/__snapshots__/StatusChart.test.js.snap +1 -1
  164. data/webpack/ForemanInventoryUpload/Components/TabContainer/tabContainer.scss +1 -1
  165. data/webpack/ForemanInventoryUpload/ForemanInventoryConstants.js +9 -0
  166. data/webpack/ForemanInventoryUpload/ForemanInventoryHelpers.js +12 -0
  167. data/webpack/ForemanInventoryUpload/ForemanInventoryUpload.js +16 -8
  168. data/webpack/ForemanInventoryUpload/ForemanInventoryUploadReducers.js +6 -4
  169. data/webpack/ForemanInventoryUpload/SubscriptionsPageExtension/SubscriptionsPageExtensionActions.js +34 -0
  170. data/webpack/ForemanInventoryUpload/__tests__/ForemanInventoryHelpers.test.js +12 -0
  171. data/webpack/ForemanInventoryUpload/{ForemanInventoryUpload.test.js → __tests__/ForemanInventoryUpload.test.js} +1 -1
  172. data/webpack/ForemanInventoryUpload/__tests__/__snapshots__/ForemanInventoryHelpers.test.js.snap +5 -0
  173. data/webpack/ForemanInventoryUpload/{__snapshots__ → __tests__/__snapshots__}/ForemanInventoryUpload.test.js.snap +0 -0
  174. data/webpack/ForemanRhCloudHelpers.js +6 -0
  175. data/webpack/ForemanRhCloudPages.js +9 -0
  176. data/webpack/ForemanRhCloudReducers.js +12 -0
  177. data/webpack/ForemanRhCloudSelectors.js +10 -0
  178. data/webpack/ForemanRhCloudTestHelpers.js +20 -0
  179. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettings.js +33 -0
  180. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsActions.js +60 -0
  181. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsConstants.js +10 -0
  182. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsReducer.js +28 -0
  183. data/webpack/InsightsCloudSync/Components/InsightsSettings/InsightsSettingsSelectors.js +6 -0
  184. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettings.test.js +18 -0
  185. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsActions.test.js +46 -0
  186. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsReducer.test.js +56 -0
  187. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/InsightsSettingsSelectors.test.js +21 -0
  188. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettings.test.js.snap +15 -0
  189. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsActions.test.js.snap +31 -0
  190. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsReducer.test.js.snap +33 -0
  191. data/webpack/InsightsCloudSync/Components/InsightsSettings/__tests__/__snapshots__/InsightsSettingsSelectors.test.js.snap +9 -0
  192. data/webpack/InsightsCloudSync/Components/InsightsSettings/index.js +21 -0
  193. data/webpack/InsightsCloudSync/Components/InsightsSettings/insightsSettings.scss +16 -0
  194. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.fixtures.js +1 -0
  195. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/InsightsSyncSwitcher.js +45 -0
  196. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/InsightsSyncSwitcher.test.js +17 -0
  197. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/__tests__/__snapshots__/InsightsSyncSwitcher.test.js.snap +38 -0
  198. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/index.js +1 -0
  199. data/webpack/InsightsCloudSync/Components/InsightsSyncSwitcher/insightsSyncSwitcher.scss +3 -0
  200. data/webpack/InsightsCloudSync/InsightsCloudSync.js +59 -0
  201. data/webpack/InsightsCloudSync/InsightsCloudSync.test.js +16 -0
  202. data/webpack/InsightsCloudSync/InsightsCloudSyncActions.js +23 -0
  203. data/webpack/InsightsCloudSync/InsightsCloudSyncConstants.js +6 -0
  204. data/webpack/InsightsCloudSync/InsightsCloudSyncHelpers.js +3 -0
  205. data/webpack/InsightsCloudSync/InsightsCloudSyncReducers.js +8 -0
  206. data/webpack/InsightsCloudSync/__snapshots__/InsightsCloudSync.test.js.snap +67 -0
  207. data/webpack/InsightsCloudSync/__tests__/InsightsCloudSyncHelpers.test.js +11 -0
  208. data/webpack/InsightsCloudSync/__tests__/__snapshots__/InsightsCloudSyncHelpers.test.js.snap +3 -0
  209. data/webpack/InsightsCloudSync/index.js +18 -0
  210. data/webpack/InsightsHostDetailsTab/InsightsTab.js +64 -0
  211. data/webpack/InsightsHostDetailsTab/InsightsTab.scss +86 -0
  212. data/webpack/InsightsHostDetailsTab/InsightsTabActions.js +30 -0
  213. data/webpack/InsightsHostDetailsTab/InsightsTabConstants.js +3 -0
  214. data/webpack/InsightsHostDetailsTab/InsightsTabReducer.js +26 -0
  215. data/webpack/InsightsHostDetailsTab/InsightsTabSelectors.js +3 -0
  216. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTab.fixtures.js +25 -0
  217. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTab.test.js +13 -0
  218. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTabActions.test.js +13 -0
  219. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTabIntegration.test.js +17 -0
  220. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTabReducer.test.js +35 -0
  221. data/webpack/InsightsHostDetailsTab/__tests__/InsightsTabSelectors.test.js +13 -0
  222. data/webpack/InsightsHostDetailsTab/__tests__/__snapshots__/InsightsTab.test.js.snap +30 -0
  223. data/webpack/InsightsHostDetailsTab/__tests__/__snapshots__/InsightsTabActions.test.js.snap +20 -0
  224. data/webpack/InsightsHostDetailsTab/__tests__/__snapshots__/InsightsTabReducer.test.js.snap +41 -0
  225. data/webpack/InsightsHostDetailsTab/__tests__/__snapshots__/InsightsTabSelectors.test.js.snap +20 -0
  226. data/webpack/InsightsHostDetailsTab/components/ListItem/ListItem.js +69 -0
  227. data/webpack/InsightsHostDetailsTab/components/ListItem/index.js +1 -0
  228. data/webpack/InsightsHostDetailsTab/index.js +20 -0
  229. data/webpack/__mocks__/foremanReact/components/Layout/LayoutConstants.js +1 -0
  230. data/webpack/__mocks__/foremanReact/constants.js +5 -0
  231. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +8 -0
  232. data/webpack/__tests__/ForemanRhCloudHelpers.test.js +11 -0
  233. data/webpack/__tests__/ForemanRhCloudSelectors.test.js +22 -0
  234. data/webpack/__tests__/ForemanRhCloudTestHelpers.test.js +20 -0
  235. data/webpack/__tests__/__snapshots__/ForemanRhCloudHelpers.test.js.snap +3 -0
  236. data/webpack/__tests__/__snapshots__/ForemanRhCloudSelectors.test.js.snap +25 -0
  237. data/webpack/__tests__/__snapshots__/ForemanRhCloudTestHelpers.test.js.snap +39 -0
  238. data/webpack/index.js +3 -6
  239. data/webpack/stories/decorators/withCardsDecorator.js +1 -1
  240. data/webpack/subscriptions_extension_index.js +8 -0
  241. metadata +196 -17
  242. data/app/controllers/foreman_inventory_upload/react_controller.rb +0 -7
  243. data/test/unit/slice_generator_test.rb.orig +0 -280
  244. data/webpack/ForemanInventoryUpload/ForemanInventoryUploadSelectors.js +0 -4
@@ -0,0 +1,10 @@
1
+ export const filterAccounts = (accounts, accountIds, filterTerm) => {
2
+ if (!filterTerm || !accountIds.length) {
3
+ return accountIds;
4
+ }
5
+
6
+ const filterTermLowerCased = filterTerm.toLowerCase();
7
+ return accountIds.filter(id =>
8
+ accounts[id].label.toLowerCase().includes(filterTermLowerCased)
9
+ );
10
+ };
@@ -1,11 +1,12 @@
1
1
  import Immutable from 'seamless-immutable';
2
+ import { AUTO_UPLOAD_TOGGLE } from '../AutoUploadSwitcher/AutoUploadSwitcherConstants';
3
+ import { HOST_OBFUSCATION_TOGGLE } from '../HostObfuscationSwitcher/HostObfuscationSwitcherConstants';
2
4
  import {
3
5
  INVENTORY_ACCOUNT_STATUS_POLLING,
4
6
  INVENTORY_ACCOUNT_STATUS_POLLING_ERROR,
5
7
  INVENTORY_ACCOUNT_STATUS_POLLING_START,
6
8
  INVENTORY_PROCESS_RESTART,
7
9
  } from './AccountListConstants';
8
- import { AUTO_UPLOAD_TOGGLE } from '../AutoUploadSwitcher/AutoUploadSwitcherConstants';
9
10
 
10
11
  const initialState = Immutable({
11
12
  accounts: {},
@@ -22,6 +23,8 @@ export default (state = initialState, action) => {
22
23
  accountID,
23
24
  processStatusName,
24
25
  autoUploadEnabled,
26
+ hostObfuscationEnabled,
27
+ cloudToken,
25
28
  } = {},
26
29
  } = action;
27
30
 
@@ -31,6 +34,8 @@ export default (state = initialState, action) => {
31
34
  ...state,
32
35
  accounts,
33
36
  autoUploadEnabled,
37
+ hostObfuscationEnabled,
38
+ cloudToken,
34
39
  error: null,
35
40
  });
36
41
  case INVENTORY_ACCOUNT_STATUS_POLLING_ERROR:
@@ -57,6 +62,11 @@ export default (state = initialState, action) => {
57
62
  ...state,
58
63
  autoUploadEnabled,
59
64
  });
65
+ case HOST_OBFUSCATION_TOGGLE:
66
+ return state.merge({
67
+ ...state,
68
+ hostObfuscationEnabled,
69
+ });
60
70
  default:
61
71
  return state;
62
72
  }
@@ -1,10 +1,19 @@
1
- import { selectForemanInventoryUpload } from '../../ForemanInventoryUploadSelectors';
1
+ import { selectForemanInventoryUpload } from '../../../ForemanRhCloudSelectors';
2
2
 
3
3
  export const selectAccountsList = state =>
4
4
  selectForemanInventoryUpload(state).accountsList;
5
+
5
6
  export const selectAccounts = state => selectAccountsList(state).accounts;
7
+
6
8
  export const selectPollingProcessID = state =>
7
9
  selectAccountsList(state).pollingProcessID;
10
+
8
11
  export const selectError = state => selectAccountsList(state).error;
12
+
9
13
  export const selectAutoUploadEnabled = state =>
10
14
  selectAccountsList(state).autoUploadEnabled;
15
+
16
+ export const selectHostObfuscationEnabled = state =>
17
+ selectAccountsList(state).hostObfuscationEnabled;
18
+
19
+ export const selectCloudToken = state => selectAccountsList(state).cloudToken;
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { EmptyState, Icon } from 'patternfly-react';
3
+ import { translate as __ } from 'foremanReact/common/I18n';
4
+ import './emptyResults.scss';
5
+
6
+ const inventoryEmptyResults = () => (
7
+ <EmptyState>
8
+ <EmptyState.Title>
9
+ <Icon className="no_results_icon" name="meh-o" />
10
+ {__("Oops! Couldn't find organization that matches your query")}
11
+ </EmptyState.Title>
12
+ </EmptyState>
13
+ );
14
+
15
+ export default inventoryEmptyResults;
@@ -0,0 +1,13 @@
1
+ import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
2
+
3
+ import EmptyResults from '../EmptyResults';
4
+
5
+ const fixtures = {
6
+ 'render without Props': {},
7
+ /** fixtures, props for the component */
8
+ };
9
+
10
+ describe('EmptyResults', () => {
11
+ describe('rendering', () =>
12
+ testComponentSnapshotsWithFixtures(EmptyResults, fixtures));
13
+ });
@@ -0,0 +1,18 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`EmptyResults rendering render without Props 1`] = `
4
+ <EmptyState
5
+ className=""
6
+ >
7
+ <EmptyStateTitle
8
+ className=""
9
+ >
10
+ <Icon
11
+ className="no_results_icon"
12
+ name="meh-o"
13
+ type="fa"
14
+ />
15
+ Oops! Couldn't find organization that matches your query
16
+ </EmptyStateTitle>
17
+ </EmptyState>
18
+ `;
@@ -0,0 +1,7 @@
1
+ .blank-slate-pf {
2
+ margin-top: 100px;
3
+
4
+ .no_results_icon {
5
+ margin-right: 5px;
6
+ }
7
+ }
@@ -0,0 +1 @@
1
+ export { default } from './EmptyResults';
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
4
4
  import ListItemStatus from '../ListItemStatus';
5
5
  import Dashboard from '../../../Dashboard';
6
6
 
7
- const ListItem = ({ accountID, account, initExpanded }) => (
7
+ const ListItem = ({ accountID, account }) => (
8
8
  <ListView.Item
9
9
  leftContent={<ListView.Icon name="user" />}
10
10
  heading={account.label}
@@ -13,7 +13,6 @@ const ListItem = ({ accountID, account, initExpanded }) => (
13
13
  ]}
14
14
  stacked
15
15
  hideCloseIcon
16
- initExpanded={initExpanded}
17
16
  >
18
17
  <Dashboard accountID={accountID} account={account} />
19
18
  </ListView.Item>
@@ -26,7 +25,6 @@ ListItem.propTypes = {
26
25
  upload_report_status: PropTypes.string,
27
26
  label: PropTypes.string,
28
27
  }),
29
- initExpanded: PropTypes.bool,
30
28
  };
31
29
 
32
30
  ListItem.defaultProps = {
@@ -35,7 +33,6 @@ ListItem.defaultProps = {
35
33
  upload_report_status: 'unknown',
36
34
  label: 'default_org_name',
37
35
  },
38
- initExpanded: false,
39
36
  };
40
37
 
41
38
  export default ListItem;
@@ -5,6 +5,7 @@ import { props } from '../AccountList.fixtures';
5
5
 
6
6
  const fixtures = {
7
7
  'render with props': props,
8
+ 'show empty results': { ...props, filterTerm: 'not_matching_term' },
8
9
  };
9
10
 
10
11
  describe('AccountList', () => {
@@ -1,13 +1,20 @@
1
1
  import { testActionSnapshotWithFixtures } from 'react-redux-test-utils';
2
+ import API from 'foremanReact/API';
2
3
  import {
3
4
  fetchAccountsStatus,
4
5
  startAccountStatusPolling,
5
6
  stopAccountStatusPolling,
6
7
  restartProcess,
7
8
  } from '../AccountListActions';
8
- import { pollingProcessID } from '../AccountList.fixtures';
9
+ import {
10
+ pollingProcessID,
11
+ fetchAccountsStatusResponse,
12
+ } from '../AccountList.fixtures';
9
13
  import { accountID, activeTab } from '../../Dashboard/Dashboard.fixtures';
10
14
 
15
+ jest.mock('foremanReact/API');
16
+ API.get.mockImplementation(async () => fetchAccountsStatusResponse);
17
+
11
18
  const fixtures = {
12
19
  'should fetchAccountsStatus': () => fetchAccountsStatus(),
13
20
  'should startAccountStatusPolling': () =>
@@ -0,0 +1,12 @@
1
+ import { filterAccounts } from '../AccountListHelper';
2
+ import { accounts, accountIDs } from '../AccountList.fixtures';
3
+
4
+ describe('AccountList helpers', () => {
5
+ it('account ids filter should return all accounts where label contains "test"', () => {
6
+ expect(filterAccounts(accounts, accountIDs, 'test')).toEqual(accountIDs);
7
+ });
8
+
9
+ it('account ids filter should not match', () => {
10
+ expect(filterAccounts(accounts, accountIDs, 'no_match')).toEqual([]);
11
+ });
12
+ });
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { IntegrationTestHelper } from 'react-redux-test-utils';
3
3
 
4
4
  import AccountList from '../index';
5
- import reducers from '../../../ForemanInventoryUploadReducers';
5
+ import reducers from '../../../../ForemanRhCloudReducers';
6
6
 
7
7
  describe('AccountList integration test', () => {
8
8
  it('should flow', async () => {
@@ -15,8 +15,11 @@ import {
15
15
  accountID,
16
16
  processStatusName,
17
17
  autoUploadEnabled,
18
+ hostObfuscationEnabled,
19
+ cloudToken,
18
20
  } from '../AccountList.fixtures';
19
21
  import { AUTO_UPLOAD_TOGGLE } from '../../AutoUploadSwitcher/AutoUploadSwitcherConstants';
22
+ import { HOST_OBFUSCATION_TOGGLE } from '../../HostObfuscationSwitcher/HostObfuscationSwitcherConstants';
20
23
 
21
24
  const fixtures = {
22
25
  'should return the initial state': {},
@@ -26,6 +29,8 @@ const fixtures = {
26
29
  payload: {
27
30
  accounts,
28
31
  autoUploadEnabled,
32
+ hostObfuscationEnabled,
33
+ cloudToken,
29
34
  },
30
35
  },
31
36
  },
@@ -65,6 +70,14 @@ const fixtures = {
65
70
  },
66
71
  },
67
72
  },
73
+ 'should handle HOST_OBFUSCATION_TOGGLE': {
74
+ action: {
75
+ type: HOST_OBFUSCATION_TOGGLE,
76
+ payload: {
77
+ hostObfuscationEnabled,
78
+ },
79
+ },
80
+ },
68
81
  };
69
82
 
70
83
  describe('AccountList reducer', () =>
@@ -4,22 +4,24 @@ import {
4
4
  selectAccounts,
5
5
  selectPollingProcessID,
6
6
  selectAutoUploadEnabled,
7
+ selectHostObfuscationEnabled,
7
8
  } from '../AccountListSelectors';
8
9
  import {
9
10
  pollingProcessID,
10
11
  accounts,
11
12
  autoUploadEnabled,
13
+ hostObfuscationEnabled,
12
14
  } from '../AccountList.fixtures';
15
+ import { rhCloudStateWrapper } from '../../../../ForemanRhCloudTestHelpers';
13
16
 
14
- const state = {
15
- ForemanInventoryUpload: {
16
- accountsList: {
17
- accounts,
18
- pollingProcessID,
19
- autoUploadEnabled,
20
- },
17
+ const state = rhCloudStateWrapper({
18
+ accountsList: {
19
+ accounts,
20
+ pollingProcessID,
21
+ autoUploadEnabled,
22
+ hostObfuscationEnabled,
21
23
  },
22
- };
24
+ });
23
25
 
24
26
  const fixtures = {
25
27
  'should return AccountsList': () => selectAccountsList(state),
@@ -28,6 +30,8 @@ const fixtures = {
28
30
  selectPollingProcessID(state),
29
31
  'should return AccountList autoUploadEnabled': () =>
30
32
  selectAutoUploadEnabled(state),
33
+ 'should return AccountList hostObfuscationEnabled': () =>
34
+ selectHostObfuscationEnabled(state),
31
35
  };
32
36
 
33
37
  describe('AccountList selectors', () =>
@@ -13,7 +13,6 @@ exports[`AccountList rendering render with props 1`] = `
13
13
  }
14
14
  }
15
15
  accountID="Account1"
16
- initExpanded={true}
17
16
  key="0"
18
17
  />
19
18
  <ListItem
@@ -25,7 +24,6 @@ exports[`AccountList rendering render with props 1`] = `
25
24
  }
26
25
  }
27
26
  accountID="Account2"
28
- initExpanded={false}
29
27
  key="1"
30
28
  />
31
29
  <ListItem
@@ -37,8 +35,9 @@ exports[`AccountList rendering render with props 1`] = `
37
35
  }
38
36
  }
39
37
  accountID="Account3"
40
- initExpanded={false}
41
38
  key="2"
42
39
  />
43
40
  </ListView>
44
41
  `;
42
+
43
+ exports[`AccountList rendering show empty results 1`] = `<inventoryEmptyResults />`;
@@ -5,9 +5,28 @@ Array [
5
5
  Array [
6
6
  Object {
7
7
  "payload": Object {
8
- "error": "Cannot read property 'data' of undefined",
8
+ "accounts": Object {
9
+ "Account1": Object {
10
+ "generate_report_status": "running",
11
+ "label": "test_org1",
12
+ "upload_report_status": "running",
13
+ },
14
+ "Account2": Object {
15
+ "generate_report_status": "failure",
16
+ "label": "test_org2",
17
+ "upload_report_status": "unknown",
18
+ },
19
+ "Account3": Object {
20
+ "generate_report_status": "running",
21
+ "label": "test_org3",
22
+ "upload_report_status": "success",
23
+ },
24
+ },
25
+ "autoUploadEnabled": true,
26
+ "cloudToken": "some-cloud-token",
27
+ "hostObfuscationEnabled": true,
9
28
  },
10
- "type": "INVENTORY_ACCOUNT_STATUS_POLLING_ERROR",
29
+ "type": "INVENTORY_ACCOUNT_STATUS_POLLING",
11
30
  },
12
31
  ],
13
32
  ]
@@ -9,6 +9,15 @@ Object {
9
9
  }
10
10
  `;
11
11
 
12
+ exports[`AccountList reducer should handle HOST_OBFUSCATION_TOGGLE 1`] = `
13
+ Object {
14
+ "accounts": Object {},
15
+ "error": null,
16
+ "hostObfuscationEnabled": true,
17
+ "pollingProcessID": 0,
18
+ }
19
+ `;
20
+
12
21
  exports[`AccountList reducer should handle INVENTORY_ACCOUNT_STATUS_POLLING 1`] = `
13
22
  Object {
14
23
  "accounts": Object {
@@ -29,7 +38,9 @@ Object {
29
38
  },
30
39
  },
31
40
  "autoUploadEnabled": true,
41
+ "cloudToken": "some-cloud-token",
32
42
  "error": null,
43
+ "hostObfuscationEnabled": true,
33
44
  "pollingProcessID": 0,
34
45
  }
35
46
  `;
@@ -22,6 +22,8 @@ Object {
22
22
 
23
23
  exports[`AccountList selectors should return AccountList autoUploadEnabled 1`] = `true`;
24
24
 
25
+ exports[`AccountList selectors should return AccountList hostObfuscationEnabled 1`] = `true`;
26
+
25
27
  exports[`AccountList selectors should return AccountList pollingProcessID 1`] = `0`;
26
28
 
27
29
  exports[`AccountList selectors should return AccountsList 1`] = `
@@ -44,6 +46,7 @@ Object {
44
46
  },
45
47
  },
46
48
  "autoUploadEnabled": true,
49
+ "hostObfuscationEnabled": true,
47
50
  "pollingProcessID": 0,
48
51
  }
49
52
  `;
@@ -9,12 +9,14 @@ import {
9
9
  selectPollingProcessID,
10
10
  selectError,
11
11
  } from './AccountListSelectors';
12
+ import { selectFilterTerm } from '../InventoryFilter/InventoryFilterSelectors';
12
13
 
13
14
  // map state to props
14
15
  const mapStateToProps = state => ({
15
16
  accounts: selectAccounts(state),
16
17
  pollingProcessID: selectPollingProcessID(state),
17
18
  error: selectError(state),
19
+ filterTerm: selectFilterTerm(state),
18
20
  });
19
21
 
20
22
  // map action dispatchers to props
@@ -6,17 +6,17 @@ import './autoUploadSwitcher.scss';
6
6
 
7
7
  const AutoUploadSwitcher = ({ autoUploadEnabled, handleToggle }) => (
8
8
  <div className="auto_upload_switcher">
9
- <Switch
10
- size="mini"
11
- value={autoUploadEnabled}
12
- onChange={() => handleToggle(autoUploadEnabled)}
13
- />
9
+ <span>Auto upload</span>
14
10
  <FieldLevelHelp
15
11
  content={__(
16
12
  'Enable automatic upload of your host inventory to the Red Hat cloud'
17
13
  )}
18
14
  />
19
- <span>Allow Auto Upload</span>
15
+ <Switch
16
+ size="mini"
17
+ value={autoUploadEnabled}
18
+ onChange={() => handleToggle(autoUploadEnabled)}
19
+ />
20
20
  </div>
21
21
  );
22
22