katello 4.5.0 → 4.6.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +7 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +52 -22
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +33 -3
  6. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  7. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  10. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  11. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  12. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  13. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  14. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  15. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  16. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  17. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  18. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  19. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  20. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  21. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  23. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  24. data/app/lib/actions/katello/content_view/promote_to_environment.rb +4 -2
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/organization/environment_contents_refresh.rb +20 -0
  27. data/app/lib/actions/katello/organization/manifest_refresh.rb +10 -4
  28. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  29. data/app/lib/actions/katello/repository/create.rb +9 -0
  30. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  31. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  33. data/app/lib/actions/katello/repository/update.rb +33 -0
  34. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  35. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  38. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  39. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  40. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  41. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  42. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  43. data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +3 -1
  44. data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +9 -2
  45. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +45 -0
  46. data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +6 -1
  47. data/app/lib/actions/pulp3/content_view_version/export.rb +8 -3
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  50. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  51. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  52. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  53. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +28 -13
  54. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +4 -2
  55. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +4 -2
  56. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +82 -0
  57. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  58. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  59. data/app/lib/katello/errors.rb +1 -1
  60. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  61. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  62. data/app/models/katello/alternate_content_source.rb +39 -8
  63. data/app/models/katello/alternate_content_source_product.rb +13 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +13 -2
  65. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  66. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  67. data/app/models/katello/content_view.rb +41 -29
  68. data/app/models/katello/content_view_deb_filter.rb +51 -0
  69. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  70. data/app/models/katello/content_view_filter.rb +10 -3
  71. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  72. data/app/models/katello/installed_package.rb +1 -0
  73. data/app/models/katello/product.rb +3 -0
  74. data/app/models/katello/repository.rb +2 -0
  75. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  76. data/app/services/cert/certs.rb +8 -16
  77. data/app/services/katello/organization_creator.rb +18 -7
  78. data/app/services/katello/pulp/server.rb +2 -2
  79. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  80. data/app/services/katello/pulp3/api/apt.rb +12 -0
  81. data/app/services/katello/pulp3/api/core.rb +8 -0
  82. data/app/services/katello/pulp3/content_view_version/export.rb +38 -11
  83. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +3 -1
  84. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +34 -0
  85. data/app/services/katello/pulp3/deb.rb +3 -1
  86. data/app/services/katello/pulp3/pulp_content_unit.rb +2 -0
  87. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  88. data/app/services/katello/pulp3/repository.rb +4 -3
  89. data/app/services/katello/pulp3/service_common.rb +1 -1
  90. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  91. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  92. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  93. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  94. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  95. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  96. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  97. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  98. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  99. data/app/views/katello/layouts/react.html.erb +1 -1
  100. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  101. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  102. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  103. data/ca/redhat-uep.pem +18 -23
  104. data/config/katello.yaml.example +0 -2
  105. data/config/routes/api/v2.rb +2 -0
  106. data/config/routes/overrides.rb +1 -0
  107. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  108. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +11 -9
  109. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  110. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  111. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  112. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  113. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  114. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  121. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  122. data/lib/katello/engine.rb +1 -2
  123. data/lib/katello/permission_creator.rb +2 -2
  124. data/lib/katello/permissions/host_permissions.rb +1 -0
  125. data/lib/katello/plugin.rb +6 -12
  126. data/lib/katello/version.rb +1 -1
  127. data/locale/action_names.rb +49 -46
  128. data/locale/bn/katello.po +361 -53
  129. data/locale/cs/katello.po +361 -53
  130. data/locale/de/katello.po +366 -58
  131. data/locale/en/katello.po +361 -53
  132. data/locale/es/katello.po +364 -56
  133. data/locale/fr/katello.po +374 -66
  134. data/locale/gu/katello.po +361 -53
  135. data/locale/hi/katello.po +361 -53
  136. data/locale/it/katello.po +361 -53
  137. data/locale/ja/katello.po +374 -66
  138. data/locale/katello.pot +1626 -1079
  139. data/locale/kn/katello.po +361 -53
  140. data/locale/ko/katello.po +361 -53
  141. data/locale/mr/katello.po +361 -53
  142. data/locale/or/katello.po +361 -53
  143. data/locale/pa/katello.po +361 -53
  144. data/locale/pt/katello.po +361 -53
  145. data/locale/pt_BR/katello.po +364 -56
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ta/katello.po +361 -53
  148. data/locale/te/katello.po +361 -53
  149. data/locale/zh_CN/katello.po +374 -66
  150. data/locale/zh_TW/katello.po +361 -53
  151. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  152. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  153. data/webpack/components/Errata/index.js +18 -3
  154. data/webpack/components/Loading.js +1 -1
  155. data/webpack/components/RoutedTabs/index.js +1 -17
  156. data/webpack/components/Search/Search.js +0 -1
  157. data/webpack/components/Search/__tests__/search.test.js +1 -2
  158. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  159. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  160. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  161. data/webpack/components/Table/MainTable.js +46 -4
  162. data/webpack/components/Table/TableHooks.js +8 -4
  163. data/webpack/components/Table/TableWrapper.js +14 -8
  164. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  165. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  166. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  167. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  168. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  169. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  170. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  171. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  172. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  173. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  174. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  177. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  178. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  179. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  180. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  181. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  182. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  183. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +9 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -8
  185. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +11 -9
  186. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +58 -8
  187. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  188. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -3
  189. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  190. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +48 -20
  191. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  192. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  193. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  194. data/webpack/containers/Application/config.js +5 -10
  195. data/webpack/global_index.js +19 -7
  196. data/webpack/global_test_setup.js +14 -2
  197. data/webpack/ouia_id_check.js +95 -0
  198. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  199. data/webpack/redux/reducers/index.js +2 -4
  200. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  201. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  202. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  203. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  204. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  205. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  206. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  207. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +4 -3
  208. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  210. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  211. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  212. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  213. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  214. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  215. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  216. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  217. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  218. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  219. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  220. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  221. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  222. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  223. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  224. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  225. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  226. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  227. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  228. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  229. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  230. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  231. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  232. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  233. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  234. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  235. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  236. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  237. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  239. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  240. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  241. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  242. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  244. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  246. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  247. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  248. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  249. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  250. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  257. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  259. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  260. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  261. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  262. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  263. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  264. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  265. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  288. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  289. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  290. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  291. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  292. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  293. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  294. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  295. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  296. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  297. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  298. data/webpack/test-utils/nockWrapper.js +7 -0
  299. metadata +82 -167
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  406. data/lib/katello/tasks/reset.rake.bak +0 -67
  407. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  408. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  409. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  410. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  411. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  412. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  413. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  414. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  415. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  416. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  417. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  418. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  419. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  420. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  421. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  422. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  423. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  424. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  425. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  426. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  427. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  428. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  429. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  430. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  431. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  432. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  433. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  434. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  435. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  436. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  437. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  438. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  439. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  440. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  441. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  442. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  443. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  444. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  445. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  446. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  447. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  448. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  449. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  450. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  451. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  452. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  453. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  454. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  455. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  456. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  457. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  458. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -1,12 +1,6 @@
1
1
  import React, { useContext } from 'react';
2
2
  import { translate as __ } from 'foremanReact/common/I18n';
3
- import {
4
- TextContent,
5
- TextList,
6
- TextListVariants,
7
- TextListItem,
8
- TextListItemVariants,
9
- } from '@patternfly/react-core';
3
+ import { TextContent, TextList, TextListItem, TextListItemVariants, TextListVariants } from '@patternfly/react-core';
10
4
  import ACSCreateContext from '../ACSCreateContext';
11
5
  import WizardHeader from '../../../ContentViews/components/WizardHeader';
12
6
 
@@ -15,7 +9,7 @@ const ACSReview = () => {
15
9
  name, description, acsType, contentType,
16
10
  smartProxies, url, subpaths, verifySSL,
17
11
  authentication, sslCertName, sslKeyName, username,
18
- password, caCertName,
12
+ password, caCertName, productNames,
19
13
  } = useContext(ACSCreateContext);
20
14
 
21
15
  return (
@@ -23,7 +17,7 @@ const ACSReview = () => {
23
17
  <WizardHeader
24
18
  title={__('Review Details')}
25
19
  description={__('Review the information below and click Add to add your source. ' +
26
- 'To edit details in previous steps, click Back or any step on the left.')}
20
+ 'To edit details in previous steps, click Back or any step on the left.')}
27
21
  />
28
22
  <TextContent>
29
23
  <TextList component={TextListVariants.dl}>
@@ -45,56 +39,76 @@ const ACSReview = () => {
45
39
  </TextListItem>
46
40
  <TextListItem component={TextListItemVariants.dt}>{__('Smart proxies')}</TextListItem>
47
41
  <TextListItem component={TextListItemVariants.dd}>
48
- {smartProxies}
42
+ {smartProxies.join(', ')}
49
43
  </TextListItem>
50
- <TextListItem component={TextListItemVariants.dt}>{__('Base URL')}</TextListItem>
51
- <TextListItem component={TextListItemVariants.dd}>
52
- {url}
53
- </TextListItem>
54
- <TextListItem component={TextListItemVariants.dt}>{__('Subpaths')}</TextListItem>
55
- <TextListItem component={TextListItemVariants.dd}>
56
- {subpaths}
57
- </TextListItem>
58
- <TextListItem component={TextListItemVariants.dt}>{__('Verify SSL')}</TextListItem>
59
- <TextListItem component={TextListItemVariants.dd}>
60
- {verifySSL ? __('Yes') : __('No')}
61
- </TextListItem>
62
- <TextListItem component={TextListItemVariants.dt}>{__('CA Cert')}</TextListItem>
63
- <TextListItem component={TextListItemVariants.dd}>
64
- {caCertName}
65
- </TextListItem>
66
- {authentication === 'manual' && (
44
+ {acsType === 'custom' &&
67
45
  <>
68
- <TextListItem component={TextListItemVariants.dt}>{__('Authentication type')}</TextListItem>
69
- <TextListItem component={TextListItemVariants.dd}>
70
- {__('Manual')}
46
+ <TextListItem component={TextListItemVariants.dt}>
47
+ {__('Base URL')}
71
48
  </TextListItem>
72
- <TextListItem component={TextListItemVariants.dt}>{__('Username')}</TextListItem>
73
49
  <TextListItem component={TextListItemVariants.dd}>
74
- {username}
50
+ {url}
75
51
  </TextListItem>
76
- <TextListItem component={TextListItemVariants.dt}>{__('Password')}</TextListItem>
52
+ <TextListItem component={TextListItemVariants.dt}>{__('Subpaths')}</TextListItem>
77
53
  <TextListItem component={TextListItemVariants.dd}>
78
- {password}
54
+ {subpaths}
79
55
  </TextListItem>
80
- </>
81
- )}
82
- {authentication === 'content_credentials' && (
83
- <>
84
- <TextListItem component={TextListItemVariants.dt}>{__('Authentication type')}</TextListItem>
56
+ <TextListItem component={TextListItemVariants.dt}>{__('Verify SSL')}</TextListItem>
85
57
  <TextListItem component={TextListItemVariants.dd}>
86
- {__('Content credential')}
58
+ {verifySSL ? __('Yes') : __('No')}
87
59
  </TextListItem>
88
- <TextListItem component={TextListItemVariants.dt}>{__('SSL Cert')}</TextListItem>
60
+ <TextListItem component={TextListItemVariants.dt}>{__('CA Cert')}</TextListItem>
89
61
  <TextListItem component={TextListItemVariants.dd}>
90
- {sslCertName}
62
+ {caCertName}
91
63
  </TextListItem>
92
- <TextListItem component={TextListItemVariants.dt}>{__('Client key')}</TextListItem>
64
+ {authentication === 'manual' && (
65
+ <>
66
+ <TextListItem
67
+ component={TextListItemVariants.dt}
68
+ >{__('Authentication type')}
69
+ </TextListItem>
70
+ <TextListItem component={TextListItemVariants.dd}>
71
+ {__('Manual')}
72
+ </TextListItem>
73
+ <TextListItem component={TextListItemVariants.dt}>{__('Username')}</TextListItem>
74
+ <TextListItem component={TextListItemVariants.dd}>
75
+ {username}
76
+ </TextListItem>
77
+ <TextListItem component={TextListItemVariants.dt}>{__('Password')}</TextListItem>
78
+ <TextListItem component={TextListItemVariants.dd}>
79
+ {password}
80
+ </TextListItem>
81
+ </>
82
+ )}
83
+ {authentication === 'content_credentials' && (
84
+ <>
85
+ <TextListItem
86
+ component={TextListItemVariants.dt}
87
+ >{__('Authentication type')}
88
+ </TextListItem>
89
+ <TextListItem component={TextListItemVariants.dd}>
90
+ {__('Content credential')}
91
+ </TextListItem>
92
+ <TextListItem component={TextListItemVariants.dt}>{__('SSL Cert')}</TextListItem>
93
+ <TextListItem component={TextListItemVariants.dd}>
94
+ {sslCertName}
95
+ </TextListItem>
96
+ <TextListItem component={TextListItemVariants.dt}>{__('Client key')}</TextListItem>
97
+ <TextListItem component={TextListItemVariants.dd}>
98
+ {sslKeyName}
99
+ </TextListItem>
100
+ </>
101
+ )}
102
+ </>
103
+ }
104
+ {acsType === 'simplified' &&
105
+ <>
106
+ <TextListItem component={TextListItemVariants.dt}>{__('Products')}</TextListItem>
93
107
  <TextListItem component={TextListItemVariants.dd}>
94
- {sslKeyName}
108
+ {productNames.join(', ')}
95
109
  </TextListItem>
96
110
  </>
97
- )}
111
+ }
98
112
  </TextList>
99
113
  </TextContent>
100
114
  </>
@@ -12,7 +12,8 @@ const ACSSmartProxies = () => {
12
12
  } = useContext(ACSCreateContext);
13
13
  const availableSmartProxies = useSelector(selectSmartProxy);
14
14
  const { results } = availableSmartProxies;
15
- const [availableOptions, setAvailableOptions] = useState(results?.map(proxy => proxy.name));
15
+ const [availableOptions, setAvailableOptions] = useState(results?.map(proxy =>
16
+ proxy.name)?.filter(sp => !smartProxies.includes(sp)));
16
17
  const onListChange = (newAvailableOptions, newChosenOptions) => {
17
18
  setAvailableOptions(newAvailableOptions);
18
19
  setSmartProxies(newChosenOptions);
@@ -21,8 +22,8 @@ const ACSSmartProxies = () => {
21
22
  return (
22
23
  <>
23
24
  <WizardHeader
24
- title={__('Name source')}
25
- description={__('Enter a name for your source.')}
25
+ title={__('Select smart proxy')}
26
+ description={__('Select smart proxies to be used with this source.')}
26
27
  />
27
28
  <DualListSelector
28
29
  isSearchable
@@ -44,7 +44,6 @@ const AcsUrlPaths = () => {
44
44
  label={__('Subpaths')}
45
45
  type="string"
46
46
  fieldId="acs_subpaths"
47
- isRequired
48
47
  >
49
48
  <TextArea
50
49
  placeholder="test/repo1/, test/repo2/,"
@@ -1,14 +1,6 @@
1
1
  import React, { useContext } from 'react';
2
2
  import { translate as __ } from 'foremanReact/common/I18n';
3
- import {
4
- Tile,
5
- Flex,
6
- FlexItem,
7
- Form,
8
- FormGroup,
9
- FormSelect,
10
- FormSelectOption,
11
- } from '@patternfly/react-core';
3
+ import { Flex, FlexItem, Form, FormGroup, FormSelect, FormSelectOption, Tile } from '@patternfly/react-core';
12
4
  import ACSCreateContext from '../ACSCreateContext';
13
5
  import WizardHeader from '../../../ContentViews/components/WizardHeader';
14
6
 
@@ -47,7 +39,24 @@ const SelectSource = () => {
47
39
  >
48
40
  <Flex>
49
41
  <FlexItem>
50
- <Tile title={__('Custom')} isStacked id="custom" onClick={onSelect} onKeyDown={onKeyDown} isSelected={acsType === 'custom'} />{' '}
42
+ <Tile
43
+ title={__('Custom')}
44
+ isStacked
45
+ id="custom"
46
+ onClick={onSelect}
47
+ onKeyDown={onKeyDown}
48
+ isSelected={acsType === 'custom'}
49
+ />{' '}
50
+ </FlexItem>
51
+ <FlexItem>
52
+ <Tile
53
+ title={__('Simplified')}
54
+ isStacked
55
+ id="simplified"
56
+ onClick={onSelect}
57
+ onKeyDown={onKeyDown}
58
+ isSelected={acsType === 'simplified'}
59
+ />{' '}
51
60
  </FlexItem>
52
61
  </Flex>
53
62
  </FormGroup>
@@ -57,16 +66,23 @@ const SelectSource = () => {
57
66
  fieldId="content_type"
58
67
  isRequired
59
68
  >
60
- <FormSelect isRequired value={contentType} onChange={(value) => { setContentType(value); }} aria-label="FormSelect Input">
69
+ <FormSelect
70
+ isRequired
71
+ value={contentType}
72
+ onChange={(value) => {
73
+ setContentType(value);
74
+ }}
75
+ aria-label="FormSelect Input"
76
+ >
61
77
  {
62
- typeOptions.map(option => (
63
- <FormSelectOption
64
- key={option.value}
65
- value={option.value}
66
- label={option.label}
67
- />
68
- ))
69
- }
78
+ typeOptions.map(option => (
79
+ <FormSelectOption
80
+ key={option.value}
81
+ value={option.value}
82
+ label={option.label}
83
+ />
84
+ ))
85
+ }
70
86
  </FormSelect>
71
87
  </FormGroup>
72
88
  </Form>
@@ -1,19 +1,23 @@
1
1
  import React from 'react';
2
2
  import * as reactRedux from 'react-redux';
3
- import { renderWithRedux, patientlyWaitFor, fireEvent } from 'react-testing-lib-wrapper';
3
+ import { Route } from 'react-router-dom';
4
+ import { act, fireEvent, patientlyWaitFor, renderWithRedux } from 'react-testing-lib-wrapper';
4
5
  import api, { foremanApi } from '../../../../services/api';
5
- import nock, { nockInstance, assertNockRequest, mockAutocomplete, mockSetting } from '../../../../test-utils/nockWrapper';
6
+ import { assertNockRequest, mockAutocomplete, mockSetting, nockInstance } from '../../../../test-utils/nockWrapper';
6
7
  import ACSTable from '../../MainTable/ACSTable';
7
8
  import contentCredentialResult from './contentCredentials.fixtures';
8
9
  import smartProxyResult from './smartProxy.fixtures';
10
+ import productsResult from './products.fixtures.json';
9
11
 
12
+ const withACSRoute = component => <Route path="/labs/alternate_content_sources/">{component}</Route>;
10
13
  const ACSIndexPath = api.getApiUrl('/alternate_content_sources');
11
14
  const ACSCreatePath = api.getApiUrl('/alternate_content_sources');
12
15
  const contentCredentialPath = api.getApiUrl('/content_credentials');
13
16
  const smartProxyPath = foremanApi.getApiUrl('/smart_proxies');
17
+ const productsPath = api.getApiUrl('/products');
14
18
  const autocompleteUrl = '/alternate_content_sources/auto_complete_search';
15
19
 
16
- const createACSDetails = {
20
+ const createCustomACSDetails = {
17
21
  upstream_username: 'username',
18
22
  upstream_password: 'password',
19
23
  name: 'acs_test',
@@ -27,6 +31,15 @@ const createACSDetails = {
27
31
  ssl_ca_cert_id: '',
28
32
  };
29
33
 
34
+ const createSimplifiedACSDetails = {
35
+ name: 'acs_simplified_test',
36
+ description: '',
37
+ smart_proxy_names: ['centos7-katello-devel-stable.example.com'],
38
+ product_ids: [340, 19, 341],
39
+ content_type: 'yum',
40
+ alternate_content_source_type: 'simplified',
41
+ };
42
+
30
43
  const noResults = {
31
44
  total: 0,
32
45
  subtotal: 0,
@@ -35,6 +48,12 @@ const noResults = {
35
48
  results: [],
36
49
  };
37
50
 
51
+ const renderOptions = {
52
+ routerParams: {
53
+ initialEntries: [{ pathname: '/labs/alternate_content_sources/' }],
54
+ },
55
+ };
56
+
38
57
  let searchDelayScope;
39
58
  let autoSearchScope;
40
59
  beforeEach(() => {
@@ -43,7 +62,6 @@ beforeEach(() => {
43
62
  });
44
63
 
45
64
  afterEach(() => {
46
- nock.cleanAll();
47
65
  assertNockRequest(searchDelayScope);
48
66
  assertNockRequest(autoSearchScope);
49
67
  });
@@ -61,10 +79,11 @@ test('Can show add ACS button', async (done) => {
61
79
  await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
62
80
  expect(queryByText('Add source')).toBeInTheDocument();
63
81
  assertNockRequest(autocompleteScope);
64
- assertNockRequest(scope, done);
82
+ assertNockRequest(scope);
83
+ act(done);
65
84
  });
66
85
 
67
- test('Can display create wizard and create ACS', async (done) => {
86
+ test('Can display create wizard and create custom ACS', async (done) => {
68
87
  const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
69
88
  const scope = nockInstance
70
89
  .get(ACSIndexPath)
@@ -76,18 +95,23 @@ test('Can display create wizard and create ACS', async (done) => {
76
95
  .query(true)
77
96
  .reply(200, contentCredentialResult);
78
97
 
98
+ const productScope = nockInstance
99
+ .get(productsPath)
100
+ .query(true)
101
+ .reply(200, productsResult);
102
+
79
103
  const smartProxyScope = nockInstance
80
104
  .get(smartProxyPath)
81
105
  .query(true)
82
106
  .reply(200, smartProxyResult);
83
107
 
84
108
  const createScope = nockInstance
85
- .post(ACSCreatePath, createACSDetails)
109
+ .post(ACSCreatePath, createCustomACSDetails)
86
110
  .reply(201, { id: 22 });
87
111
 
88
112
  const {
89
113
  getByLabelText, getByText, getAllByRole, queryByText,
90
- } = renderWithRedux(<ACSTable />);
114
+ } = renderWithRedux(withACSRoute(<ACSTable />), renderOptions);
91
115
 
92
116
  expect(queryByText("You currently don't have any alternate content sources.")).toBeNull();
93
117
  await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
@@ -113,11 +137,14 @@ test('Can display create wizard and create ACS', async (done) => {
113
137
  fireEvent.change(getByLabelText('acs_name_field'), { target: { value: 'acs_test' } });
114
138
 
115
139
  // Mock smart proxy selector to go to next page
116
- const useSelectorMock = jest.spyOn(reactRedux, 'useSelector');
117
- useSelectorMock.mockReturnValue(smartProxyResult);
140
+ const useSmartProxySelectorMock = jest.spyOn(reactRedux, 'useSelector');
141
+ useSmartProxySelectorMock.mockReturnValue(smartProxyResult);
118
142
  fireEvent.click(getByText('Next'));
143
+ await patientlyWaitFor(() => {
144
+ expect(getByText('centos7-katello-devel-stable.example.com')).toBeInTheDocument();
145
+ });
119
146
  fireEvent.click(getByLabelText('Add all'));
120
-
147
+ useSmartProxySelectorMock.mockRestore();
121
148
  // Go to URL and subpath step
122
149
  fireEvent.click(getByText('Next'));
123
150
 
@@ -126,7 +153,8 @@ test('Can display create wizard and create ACS', async (done) => {
126
153
  fireEvent.change(getByLabelText('acs_subpath_field'), { target: { value: 'test/repo1/,test/repo2/' } });
127
154
 
128
155
  // Mock content credential data
129
- useSelectorMock.mockReturnValue(contentCredentialResult.results);
156
+ const useContentCredentialSelectorMock = jest.spyOn(reactRedux, 'useSelector');
157
+ useContentCredentialSelectorMock.mockReturnValue(contentCredentialResult.results);
130
158
  fireEvent.click(getByText('Next'));
131
159
  const manualAuthRadio = getAllByRole('radio', { name: 'Manual authentication' })[0];
132
160
  fireEvent.click(manualAuthRadio);
@@ -136,14 +164,93 @@ test('Can display create wizard and create ACS', async (done) => {
136
164
  });
137
165
  fireEvent.change(getByLabelText('acs_username_field'), { target: { value: 'username' } });
138
166
  fireEvent.change(getByLabelText('acs_password_field'), { target: { value: 'password' } });
139
-
167
+ useContentCredentialSelectorMock.mockRestore();
140
168
  fireEvent.click(getByText('Next'));
141
169
  fireEvent.click(getByText('Add'));
142
170
 
171
+ assertNockRequest(autocompleteScope);
172
+ assertNockRequest(scope);
173
+ assertNockRequest(contentCredentialScope);
174
+ assertNockRequest(productScope);
175
+ assertNockRequest(smartProxyScope);
176
+ assertNockRequest(createScope, done);
177
+ act(done);
178
+ });
179
+
180
+ test('Can display create wizard and create simplified ACS', async (done) => {
181
+ const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
182
+ const scope = nockInstance
183
+ .get(ACSIndexPath)
184
+ .query(true)
185
+ .reply(200, noResults);
186
+
187
+ const contentCredentialScope = nockInstance
188
+ .get(contentCredentialPath)
189
+ .query(true)
190
+ .reply(200, contentCredentialResult);
191
+
192
+ const smartProxyScope = nockInstance
193
+ .get(smartProxyPath)
194
+ .query(true)
195
+ .reply(200, smartProxyResult);
196
+
197
+ const productScope = nockInstance
198
+ .get(productsPath)
199
+ .query(true)
200
+ .reply(200, productsResult);
201
+
202
+ const createScope = nockInstance
203
+ .post(ACSCreatePath, createSimplifiedACSDetails)
204
+ .reply(201, { id: 22 });
205
+
206
+ const {
207
+ getByLabelText, getByText, queryByText,
208
+ } = renderWithRedux(withACSRoute(<ACSTable />), renderOptions);
209
+
210
+ expect(queryByText("You currently don't have any alternate content sources.")).toBeNull();
211
+ await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
212
+ expect(queryByText('Add source')).toBeInTheDocument();
213
+ fireEvent.click(getByText('Add source'));
214
+
215
+ // First step: Select source
216
+ await patientlyWaitFor(() => {
217
+ expect(getByText('Add an alternate content source')).toBeInTheDocument();
218
+ expect(queryByText('Indicate the source type.')).toBeInTheDocument();
219
+ });
220
+
221
+ // Choose ACS type, content_type defaults to yum
222
+ fireEvent.click(getByText('Simplified'));
223
+
224
+ // Go to next step: Name source
225
+ fireEvent.click(getByText('Next'));
226
+
227
+ await patientlyWaitFor(() => {
228
+ expect(getByText('Enter a name for your source.')).toBeInTheDocument();
229
+ });
230
+ // Enter Name
231
+ fireEvent.change(getByLabelText('acs_name_field'), { target: { value: 'acs_simplified_test' } });
232
+
233
+ // Mock smart proxy selector to go to next page
234
+ const useSelectorMock = jest.spyOn(reactRedux, 'useSelector');
235
+ useSelectorMock.mockReturnValue(smartProxyResult);
236
+ fireEvent.click(getByText('Next'));
237
+ fireEvent.click(getByLabelText('Add all'));
143
238
  useSelectorMock.mockClear();
239
+ // Mock product selector to go to next page
240
+ const useProductSelectorMock = jest.spyOn(reactRedux, 'useSelector');
241
+ useProductSelectorMock.mockReturnValue(productsResult);
242
+ fireEvent.click(getByText('Next'));
243
+ fireEvent.click(getByLabelText('Add all'));
244
+
245
+ fireEvent.click(getByText('Next'));
246
+ useProductSelectorMock.mockClear();
247
+ fireEvent.click(getByText('Add'));
248
+
144
249
  assertNockRequest(autocompleteScope);
145
250
  assertNockRequest(scope);
251
+ assertNockRequest(productScope);
146
252
  assertNockRequest(contentCredentialScope);
147
253
  assertNockRequest(smartProxyScope);
148
254
  assertNockRequest(createScope, done);
255
+ act(done);
149
256
  });
@@ -0,0 +1,92 @@
1
+ {
2
+ "total": 3,
3
+ "subtotal": 3,
4
+ "selectable": 3,
5
+ "page": 1,
6
+ "per_page": 3,
7
+ "error": null,
8
+ "search": null,
9
+ "sort": {
10
+ "by": "name",
11
+ "order": "asc"
12
+ },
13
+ "results": [
14
+ {
15
+ "id": 340,
16
+ "cp_id": "607918016883",
17
+ "name": "prod",
18
+ "label": "prod",
19
+ "description": null,
20
+ "provider_id": 1,
21
+ "sync_plan_id": null,
22
+ "sync_summary": {},
23
+ "gpg_key_id": null,
24
+ "ssl_ca_cert_id": null,
25
+ "ssl_client_cert_id": null,
26
+ "ssl_client_key_id": null,
27
+ "sync_state": null,
28
+ "last_sync": "2022-07-25 09:31:37 -0400",
29
+ "last_sync_words": "1 day",
30
+ "organization_id": 1,
31
+ "organization": {
32
+ "name": "Default Organization",
33
+ "label": "Default_Organization",
34
+ "id": 1
35
+ },
36
+ "sync_plan": null,
37
+ "repository_count": 2
38
+ },
39
+ {
40
+ "id": 19,
41
+ "cp_id": "479",
42
+ "name": "Red Hat Enterprise Linux for x86_64",
43
+ "label": "Red_Hat_Enterprise_Linux_for_x86_64",
44
+ "description": null,
45
+ "provider_id": 2,
46
+ "sync_plan_id": null,
47
+ "sync_summary": {
48
+ "success": 2
49
+ },
50
+ "gpg_key_id": null,
51
+ "ssl_ca_cert_id": null,
52
+ "ssl_client_cert_id": null,
53
+ "ssl_client_key_id": null,
54
+ "sync_state": "Syncing Complete.",
55
+ "last_sync": "2022-07-22 13:49:39 -0400",
56
+ "last_sync_words": "4 days",
57
+ "organization_id": 1,
58
+ "organization": {
59
+ "name": "Default Organization",
60
+ "label": "Default_Organization",
61
+ "id": 1
62
+ },
63
+ "sync_plan": null,
64
+ "repository_count": 2
65
+ },
66
+ {
67
+ "id": 341,
68
+ "cp_id": "805147203918",
69
+ "name": "yummy",
70
+ "label": "yummy",
71
+ "description": null,
72
+ "provider_id": 1,
73
+ "sync_plan_id": null,
74
+ "sync_summary": {},
75
+ "gpg_key_id": null,
76
+ "ssl_ca_cert_id": null,
77
+ "ssl_client_cert_id": null,
78
+ "ssl_client_key_id": null,
79
+ "sync_state": null,
80
+ "last_sync": "2022-07-25 21:25:33 -0400",
81
+ "last_sync_words": "about 15 hours",
82
+ "organization_id": 1,
83
+ "organization": {
84
+ "name": "Default Organization",
85
+ "label": "Default_Organization",
86
+ "id": 1
87
+ },
88
+ "sync_plan": null,
89
+ "repository_count": 1
90
+ }
91
+ ]
92
+ }