katello 4.5.1 → 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 (440) 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_uploads_controller.rb +2 -0
  6. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  9. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  10. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +8 -1
  13. data/app/controllers/katello/api/v2/organizations_controller.rb +3 -1
  14. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +8 -0
  15. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  16. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  17. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  18. data/app/lib/actions/katello/alternate_content_source/create.rb +11 -5
  19. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  20. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +57 -13
  22. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  23. data/app/lib/actions/katello/organization/manifest_refresh.rb +8 -4
  24. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  25. data/app/lib/actions/katello/repository/create.rb +9 -0
  26. data/app/lib/actions/katello/repository/destroy.rb +21 -0
  27. data/app/lib/actions/katello/repository/errata_mail.rb +3 -3
  28. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  29. data/app/lib/actions/katello/repository/update.rb +33 -0
  30. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  31. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  32. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  33. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  34. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  36. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  37. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  38. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  39. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  40. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  41. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +2 -2
  42. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +18 -0
  43. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  44. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  45. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  46. data/app/lib/katello/errors.rb +1 -1
  47. data/app/lib/katello/resources/candlepin/owner.rb +9 -2
  48. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  49. data/app/models/katello/alternate_content_source.rb +39 -8
  50. data/app/models/katello/alternate_content_source_product.rb +13 -0
  51. data/app/models/katello/concerns/host_managed_extensions.rb +12 -2
  52. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  53. data/app/models/katello/concerns/smart_proxy_extensions.rb +5 -6
  54. data/app/models/katello/content_view.rb +4 -0
  55. data/app/models/katello/content_view_deb_filter.rb +51 -0
  56. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  57. data/app/models/katello/content_view_filter.rb +10 -3
  58. data/app/models/katello/glue/candlepin/owner.rb +0 -1
  59. data/app/models/katello/installed_package.rb +1 -0
  60. data/app/models/katello/product.rb +3 -0
  61. data/app/models/katello/repository.rb +2 -0
  62. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  63. data/app/services/cert/certs.rb +8 -16
  64. data/app/services/katello/content_unit_indexer.rb +2 -1
  65. data/app/services/katello/organization_creator.rb +4 -4
  66. data/app/services/katello/pulp/server.rb +2 -2
  67. data/app/services/katello/pulp3/alternate_content_source.rb +22 -4
  68. data/app/services/katello/pulp3/api/apt.rb +12 -0
  69. data/app/services/katello/pulp3/erratum.rb +1 -4
  70. data/app/services/katello/pulp3/repository/apt.rb +186 -2
  71. data/app/services/katello/pulp3/repository.rb +4 -3
  72. data/app/services/katello/pulp3/service_common.rb +1 -1
  73. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  74. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  75. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +18 -3
  76. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  77. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  78. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  79. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  80. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  81. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  82. data/app/views/katello/layouts/react.html.erb +1 -1
  83. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  84. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  85. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  86. data/ca/redhat-uep.pem +18 -23
  87. data/config/katello.yaml.example +0 -2
  88. data/config/routes/api/v2.rb +2 -0
  89. data/config/routes/overrides.rb +1 -0
  90. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  91. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  92. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  93. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  94. data/db/seeds.d/102-organizations.rb +1 -1
  95. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  96. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  97. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  102. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +4 -5
  104. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  105. data/lib/katello/engine.rb +1 -2
  106. data/lib/katello/permission_creator.rb +2 -2
  107. data/lib/katello/permissions/host_permissions.rb +1 -0
  108. data/lib/katello/plugin.rb +6 -12
  109. data/lib/katello/version.rb +1 -1
  110. data/locale/action_names.rb +49 -46
  111. data/locale/bn/katello.po +361 -53
  112. data/{webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss → locale/bn/katello.po.time_stamp} +0 -0
  113. data/locale/cs/katello.po +361 -53
  114. data/locale/cs/katello.po.time_stamp +0 -0
  115. data/locale/de/katello.po +366 -58
  116. data/locale/de/katello.po.time_stamp +0 -0
  117. data/locale/en/katello.po +361 -53
  118. data/locale/en/katello.po.time_stamp +0 -0
  119. data/locale/es/katello.po +364 -56
  120. data/locale/es/katello.po.time_stamp +0 -0
  121. data/locale/fr/katello.po +376 -68
  122. data/locale/fr/katello.po.time_stamp +0 -0
  123. data/locale/gu/katello.po +361 -53
  124. data/locale/gu/katello.po.time_stamp +0 -0
  125. data/locale/hi/katello.po +361 -53
  126. data/locale/hi/katello.po.time_stamp +0 -0
  127. data/locale/it/katello.po +361 -53
  128. data/locale/it/katello.po.time_stamp +0 -0
  129. data/locale/ja/katello.po +374 -66
  130. data/locale/ja/katello.po.time_stamp +0 -0
  131. data/locale/katello.pot +1626 -1079
  132. data/locale/kn/katello.po +361 -53
  133. data/locale/kn/katello.po.time_stamp +0 -0
  134. data/locale/ko/katello.po +361 -53
  135. data/locale/ko/katello.po.time_stamp +0 -0
  136. data/locale/mr/katello.po +361 -53
  137. data/locale/mr/katello.po.time_stamp +0 -0
  138. data/locale/or/katello.po +361 -53
  139. data/locale/or/katello.po.time_stamp +0 -0
  140. data/locale/pa/katello.po +361 -53
  141. data/locale/pa/katello.po.time_stamp +0 -0
  142. data/locale/pt/katello.po +361 -53
  143. data/locale/pt/katello.po.time_stamp +0 -0
  144. data/locale/pt_BR/katello.po +364 -56
  145. data/locale/pt_BR/katello.po.time_stamp +0 -0
  146. data/locale/ru/katello.po +361 -53
  147. data/locale/ru/katello.po.time_stamp +0 -0
  148. data/locale/ta/katello.po +361 -53
  149. data/locale/ta/katello.po.time_stamp +0 -0
  150. data/locale/te/katello.po +361 -53
  151. data/locale/te/katello.po.time_stamp +0 -0
  152. data/locale/zh_CN/katello.po +374 -66
  153. data/locale/zh_CN/katello.po.time_stamp +0 -0
  154. data/locale/zh_TW/katello.po +361 -53
  155. data/locale/zh_TW/katello.po.time_stamp +0 -0
  156. data/package.json +0 -3
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -16
  158. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  159. data/webpack/components/Errata/index.js +18 -3
  160. data/webpack/components/Loading.js +1 -1
  161. data/webpack/components/RoutedTabs/index.js +1 -17
  162. data/webpack/components/Search/Search.js +0 -1
  163. data/webpack/components/Search/__tests__/search.test.js +1 -2
  164. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  165. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  166. data/webpack/components/Table/EmptyStateMessage.js +77 -2
  167. data/webpack/components/Table/MainTable.js +46 -4
  168. data/webpack/components/Table/TableHooks.js +9 -6
  169. data/webpack/components/Table/TableWrapper.js +14 -8
  170. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  171. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  172. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +9 -4
  175. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  176. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +173 -0
  177. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  178. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  179. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +301 -0
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +108 -0
  182. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  183. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +12 -12
  184. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +100 -0
  185. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +26 -4
  186. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  187. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  188. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  189. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +8 -12
  190. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -2
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +5 -0
  192. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +57 -7
  193. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +2 -0
  194. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  195. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +4 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +1 -10
  197. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  198. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  199. data/webpack/containers/Application/config.js +5 -10
  200. data/webpack/global_index.js +19 -7
  201. data/webpack/global_test_setup.js +14 -2
  202. data/webpack/ouia_id_check.js +95 -0
  203. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -0
  204. data/webpack/redux/reducers/index.js +2 -4
  205. data/webpack/scenes/AlternateContentSources/ACSActions.js +36 -3
  206. data/webpack/scenes/AlternateContentSources/ACSConstants.js +3 -0
  207. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -6
  208. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +73 -42
  209. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +26 -10
  210. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  211. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +59 -45
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +2 -1
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +0 -1
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +35 -19
  215. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +120 -13
  216. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  217. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +459 -0
  218. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +354 -0
  219. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +104 -0
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +120 -0
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +118 -0
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +118 -0
  223. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +242 -0
  224. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +106 -0
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  227. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  228. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +215 -87
  229. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  230. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +1 -2
  231. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -2
  232. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -4
  233. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +1 -2
  234. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -0
  235. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -2
  236. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +113 -0
  237. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +89 -0
  238. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +32 -9
  239. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  240. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +39 -27
  241. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +236 -0
  242. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +1 -0
  243. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  244. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +3 -0
  245. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +3 -1
  246. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +17 -4
  247. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  248. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +34 -22
  249. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  250. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -2
  251. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +56 -3
  253. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +62 -8
  254. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +1 -5
  255. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -2
  256. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +32 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +1 -2
  258. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +1 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  262. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  263. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -1
  264. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -2
  265. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  266. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +143 -0
  267. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +51 -0
  268. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +314 -0
  269. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +186 -0
  270. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +74 -0
  271. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  272. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +657 -0
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  279. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  280. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  283. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  284. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  285. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  287. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  288. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  289. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  290. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  291. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  292. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +102 -36
  293. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +1 -2
  294. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +4 -2
  295. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +1 -2
  296. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  297. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  298. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +96 -81
  299. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -2
  300. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  301. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  302. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +0 -30
  303. data/webpack/test-utils/nockWrapper.js +7 -0
  304. metadata +100 -145
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  352. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  353. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  354. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  355. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  356. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  357. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  358. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  359. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  360. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  361. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  362. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  363. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  364. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  365. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  366. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  367. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  368. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  369. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  370. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  371. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  372. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  373. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  374. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  375. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  376. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  377. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  378. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  379. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  380. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  381. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  382. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  383. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  384. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  385. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  386. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  387. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  388. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  389. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  390. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  391. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  392. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  393. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  394. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  395. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  396. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  397. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  398. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  399. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  400. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  401. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  402. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  403. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  404. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  405. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  406. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  407. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  408. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  409. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  410. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  411. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  412. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  413. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  414. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  415. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  416. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  417. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  418. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  419. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  420. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  421. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  422. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  423. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  424. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  425. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  426. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  427. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  428. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  429. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  430. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  431. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  432. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  433. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  434. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  435. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  436. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  437. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  438. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  439. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  440. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -0,0 +1,657 @@
1
+ import React from 'react';
2
+ import { act, renderWithRedux, patientlyWaitFor, fireEvent } from 'react-testing-lib-wrapper';
3
+ import { Route } from 'react-router-dom';
4
+ import { head, last } from 'lodash';
5
+ import { nockInstance, assertNockRequest, mockAutocomplete, mockSetting } from '../../../../../../test-utils/nockWrapper';
6
+ import api from '../../../../../../services/api';
7
+
8
+ import ContentViewVersions from '../../ContentViewVersions';
9
+ import cvVersionsData from './contentViewVersions.fixtures.json';
10
+ import cvDetailsData from './contentViewDetails.fixtures.json';
11
+ import environmentPathsData from '../../../../Publish/__tests__/environmentPaths.fixtures.json';
12
+ import CVVersionCompare from '../CVVersionCompare';
13
+ import cvVersionRPMPackagesCompareAllContentData from './RPMPackagesCompareAllContentData.fixtures.json';
14
+ import cvVersionErrataCompareAllContentData from './ErrataCompareAllContentData.fixtures.json';
15
+ import cvVersionPackageGroupsCompareAllContentData from './PackageGroupsCompareAllContentData.fixtures.json';
16
+ import cvVersionFilesCompareAllContentData from './FilesCompareAllContentData.fixtures.json';
17
+ import cvVersionModuleStreamsCompareAllContentData from './ModuleStreamsCompareAllContentData.fixtures.json';
18
+ import cvVersionDebPackagesCompareAllContentData from './DebPackagesCompareAllContentData.fixtures.json';
19
+ import cvVersionContainerTagsCompareAllContentData from './ContainerTagsCompareAllContentData.fixtures.json';
20
+ import cvVersionPythonPackagesCompareAllContentData from './PythonPackagesCompareAllContentData.fixtures.json';
21
+ import cvVersionAnsibleCollectionsCompareAllContentData from './AnsibleCollectionsCompareAllContentData.fixtures.json';
22
+ import cvVersionRPMPackagesCompareThreeContentTypesData from './RPMPackagesCompareThreeContentTypesData.fixtures.json';
23
+ import cvVersionFilesCompareThreeContentTypesData from './FilesCompareThreeContentTypesData.fixtures.json';
24
+ import cvVersionErrataCompareThreeContentTypesData from './ErrataCompareThreeContentTypesData.fixtures.json';
25
+ import versionOneDetailsData from './contentViewVersionOneDetials.fixtures.json';
26
+ import versionTwoDetailsData from './contentViewVersionTwoDetails.fixtures.json';
27
+ import versionThreeDetailsData from './contentViewVersionThreeDetails.fixtures.json';
28
+ import emptyStateVersionOneData from './emptyStateCVVersionOneDetails.fixtures.json';
29
+ import empptyStateVersionTwoData from './emptyStateCVVersionTwoDetails.fixtures.json';
30
+ import cvVersionEmptyContent from './CVVersionEmptyContentCompareData.fixtures.json';
31
+
32
+ const cvVersions = api.getApiUrl('/content_view_versions');
33
+ const cvDetails = api.getApiUrl('/content_views/4');
34
+ const versionDetails = versionId => api.getApiUrl(`/content_view_versions/${versionId}`);
35
+ const autocompleteUrl = '/content_view_versions/auto_complete_search';
36
+ const withCVRoute = component => <Route path="/content_views/:id">{component}</Route>;
37
+ const environmentPathsPath = api.getApiUrl('/organizations/1/environments/paths');
38
+ const renderOptions = {
39
+ initialState: {
40
+ API: {
41
+ CONTENT_VIEW_VERSION_DETAILS_51_21: {
42
+ status: 'RESOLVED',
43
+ },
44
+ CONTENT_VIEW_VERSION_DETAILS_55_21: {
45
+ status: 'RESOLVED',
46
+ },
47
+ },
48
+ },
49
+ routerParams: {
50
+ initialEntries: [{ pathname: '/content_views/4' }],
51
+ initialIndex: 1,
52
+ },
53
+
54
+ };
55
+
56
+ let searchDelayScope;
57
+ let autoSearchScope;
58
+ let envScope;
59
+
60
+ const versionIdsAllContentTypes = {
61
+ versionOneId: '15',
62
+ versionTwoId: '17',
63
+ };
64
+
65
+ const versionIdsThreeContentTypes = {
66
+ versionOneId: '14',
67
+ versionTwoId: '15',
68
+ };
69
+
70
+ const versionLabelsAllContentTypes = {
71
+ versionOneLabel: '4.0',
72
+ versionTwoLabel: '6.0',
73
+ };
74
+
75
+ const versionLabelsThreeContentTypes = {
76
+ versionOneLabel: '3.0',
77
+ versionTwoLabel: '4.0',
78
+ };
79
+ beforeEach(() => {
80
+ envScope = nockInstance
81
+ .get(environmentPathsPath)
82
+ .query(true)
83
+ .reply(200, environmentPathsData);
84
+ });
85
+
86
+ afterEach(() => {
87
+ assertNockRequest(envScope);
88
+ });
89
+
90
+ const testConfigAllContentTypes = [
91
+ {
92
+ name: 'RPM packages',
93
+ countKey: 'rpm_count',
94
+ autoCompleteUrl: '/packages/auto_complete_search',
95
+ dataUrl: api.getApiUrl('/packages/compare'),
96
+ data: cvVersionRPMPackagesCompareAllContentData,
97
+ textQuery: [
98
+ head(cvVersionRPMPackagesCompareAllContentData.results).nvrea,
99
+ last(cvVersionRPMPackagesCompareAllContentData.results).nvrea],
100
+ },
101
+ {
102
+ name: 'RPM package groups',
103
+ countKey: 'package_group_count',
104
+ autoCompleteUrl: '/package_groups/auto_complete_search',
105
+ dataUrl: api.getApiUrl('/package_groups/compare'),
106
+ data: cvVersionPackageGroupsCompareAllContentData,
107
+ textQuery: [
108
+ head(cvVersionPackageGroupsCompareAllContentData.results).name,
109
+ last(cvVersionPackageGroupsCompareAllContentData.results).name],
110
+ },
111
+ {
112
+ name: 'Files',
113
+ countKey: 'file_count',
114
+ autoCompleteUrl: '/files/auto_complete_search',
115
+ dataUrl: api.getApiUrl('/files/compare'),
116
+ data: cvVersionFilesCompareAllContentData,
117
+ textQuery: [
118
+ head(cvVersionFilesCompareAllContentData.results).name,
119
+ last(cvVersionFilesCompareAllContentData.results).name],
120
+ },
121
+ {
122
+ name: 'Errata',
123
+ countKey: 'erratum_count',
124
+ autoCompleteUrl: '/errata/auto_complete_search',
125
+ dataUrl: api.getApiUrl('/errata/compare'),
126
+ data: cvVersionErrataCompareAllContentData,
127
+ textQuery: [
128
+ head(cvVersionErrataCompareAllContentData.results).name,
129
+ last(cvVersionErrataCompareAllContentData.results).name],
130
+ },
131
+ {
132
+ name: 'Module streams',
133
+ countKey: 'module_stream_count',
134
+ autoCompleteUrl: '/module_streams/auto_complete_search',
135
+ dataUrl: api.getApiUrl('/module_streams/compare'),
136
+ data: cvVersionModuleStreamsCompareAllContentData,
137
+ textQuery: [
138
+ head(cvVersionModuleStreamsCompareAllContentData.results).name,
139
+ last(cvVersionModuleStreamsCompareAllContentData.results).name],
140
+ },
141
+ {
142
+ name: 'Deb packages',
143
+ countKey: 'deb_count',
144
+ autoCompleteUrl: '/debs/auto_complete_search',
145
+ dataUrl: api.getApiUrl('/debs/compare'),
146
+ data: cvVersionDebPackagesCompareAllContentData,
147
+ textQuery: [
148
+ head(cvVersionDebPackagesCompareAllContentData.results).name,
149
+ last(cvVersionDebPackagesCompareAllContentData.results).name],
150
+ },
151
+ {
152
+ name: 'Container tags',
153
+ countKey: 'docker_tag_count',
154
+ autoCompleteUrl: '/docker_tags/auto_complete_search',
155
+ dataUrl: api.getApiUrl('/docker_tags/compare'),
156
+ data: cvVersionContainerTagsCompareAllContentData,
157
+ textQuery: [
158
+ head(cvVersionContainerTagsCompareAllContentData.results).name,
159
+ last(cvVersionContainerTagsCompareAllContentData.results).name],
160
+ },
161
+ {
162
+ name: 'Python packages',
163
+ countKey: 'python_package_count',
164
+ autoCompleteUrl: '/python_packages/auto_complete_search',
165
+ dataUrl: api.getApiUrl('/python_packages/compare'),
166
+ data: cvVersionPythonPackagesCompareAllContentData,
167
+ textQuery: [
168
+ head(cvVersionPythonPackagesCompareAllContentData.results).name,
169
+ last(cvVersionPythonPackagesCompareAllContentData.results).name],
170
+ },
171
+ {
172
+ name: 'Ansible collections',
173
+ countKey: 'ansible_collection_count',
174
+ autoCompleteUrl: '/ansible_collections/auto_complete_search',
175
+ dataUrl: api.getApiUrl('/ansible_collections/compare'),
176
+ data: cvVersionAnsibleCollectionsCompareAllContentData,
177
+ textQuery: [
178
+ head(cvVersionAnsibleCollectionsCompareAllContentData.results).name,
179
+ last(cvVersionAnsibleCollectionsCompareAllContentData.results).name],
180
+ },
181
+ ];
182
+
183
+ const testConfigThreeContentTypes = [
184
+ {
185
+ name: 'RPM packages',
186
+ countKey: 'rpm_count',
187
+ autoCompleteUrl: '/packages/auto_complete_search',
188
+ dataUrl: api.getApiUrl('/packages/compare'),
189
+ data: cvVersionRPMPackagesCompareThreeContentTypesData,
190
+ textQuery: [
191
+ head(cvVersionRPMPackagesCompareThreeContentTypesData.results).nvrea,
192
+ last(cvVersionRPMPackagesCompareThreeContentTypesData.results).nvrea],
193
+ },
194
+ {
195
+ name: 'Errata',
196
+ countKey: 'erratum_count',
197
+ autoCompleteUrl: '/errata/auto_complete_search',
198
+ dataUrl: api.getApiUrl('/errata/compare'),
199
+ data: cvVersionErrataCompareThreeContentTypesData,
200
+ textQuery: [
201
+ head(cvVersionErrataCompareThreeContentTypesData.results).name,
202
+ last(cvVersionErrataCompareThreeContentTypesData.results).name],
203
+ },
204
+ {
205
+ name: 'Files',
206
+ countKey: 'file_count',
207
+ autoCompleteUrl: '/files/auto_complete_search',
208
+ dataUrl: api.getApiUrl('/files/compare'),
209
+ data: cvVersionFilesCompareThreeContentTypesData,
210
+ textQuery: [
211
+ head(cvVersionFilesCompareThreeContentTypesData.results).name,
212
+ last(cvVersionFilesCompareThreeContentTypesData.results).name],
213
+ },
214
+ ];
215
+ const emptyContentViewByText = contentType => `No matching ${contentType} found.`;
216
+
217
+ const testConfigViewByDifferent = [
218
+ {
219
+ name: 'RPM packages',
220
+ countKey: 'rpm_count',
221
+ autoCompleteUrl: '/packages/auto_complete_search',
222
+ dataUrl: api.getApiUrl('/packages/compare'),
223
+ data: cvVersionEmptyContent,
224
+ textQuery: emptyContentViewByText('RPM packages'),
225
+ },
226
+ {
227
+ name: 'Errata',
228
+ countKey: 'erratum_count',
229
+ autoCompleteUrl: '/errata/auto_complete_search',
230
+ dataUrl: api.getApiUrl('/errata/compare'),
231
+ data: cvVersionEmptyContent,
232
+ textQuery: emptyContentViewByText('Errata'),
233
+ },
234
+ {
235
+ name: 'Files',
236
+ countKey: 'file_count',
237
+ autoCompleteUrl: '/files/auto_complete_search',
238
+ dataUrl: api.getApiUrl('/files/compare'),
239
+ data: cvVersionFilesCompareThreeContentTypesData,
240
+ textQuery: [
241
+ head(cvVersionFilesCompareThreeContentTypesData.results).name,
242
+ last(cvVersionFilesCompareThreeContentTypesData.results).name],
243
+ },
244
+ ];
245
+
246
+ const testConfigViewBySame = [
247
+ {
248
+ name: 'RPM packages',
249
+ countKey: 'rpm_count',
250
+ autoCompleteUrl: '/packages/auto_complete_search',
251
+ dataUrl: api.getApiUrl('/packages/compare'),
252
+ data: cvVersionRPMPackagesCompareThreeContentTypesData,
253
+ textQuery: [
254
+ head(cvVersionRPMPackagesCompareThreeContentTypesData.results).nvrea,
255
+ last(cvVersionRPMPackagesCompareThreeContentTypesData.results).nvrea],
256
+ },
257
+ {
258
+ name: 'Errata',
259
+ countKey: 'erratum_count',
260
+ autoCompleteUrl: '/errata/auto_complete_search',
261
+ dataUrl: api.getApiUrl('/errata/compare'),
262
+ data: cvVersionErrataCompareThreeContentTypesData,
263
+ textQuery: [
264
+ head(cvVersionErrataCompareThreeContentTypesData.results).name,
265
+ last(cvVersionErrataCompareThreeContentTypesData.results).name],
266
+ },
267
+ {
268
+ name: 'Files',
269
+ countKey: 'file_count',
270
+ autoCompleteUrl: '/files/auto_complete_search',
271
+ dataUrl: api.getApiUrl('/files/compare'),
272
+ data: cvVersionEmptyContent,
273
+ textQuery: emptyContentViewByText('Files'),
274
+ },
275
+ ];
276
+
277
+ test('Can make an API call and show comparison of two versions with all content types', async (done) => {
278
+ const autoCompleteContentTypesScope = testConfigAllContentTypes.map(({ autoCompleteUrl }) =>
279
+ mockAutocomplete(nockInstance, autoCompleteUrl));
280
+
281
+ const scopeContentTypes = testConfigAllContentTypes.map(({ dataUrl, data }) =>
282
+ nockInstance.get(dataUrl).query(true).reply(200, data));
283
+
284
+ const scopeCVDetails = nockInstance
285
+ .get(cvDetails)
286
+ .query(true)
287
+ .reply(200, cvDetailsData);
288
+
289
+ const scopeVersionOneDetails = nockInstance
290
+ .get(versionDetails(15))
291
+ .query(true)
292
+ .reply(200, versionOneDetailsData);
293
+ const scopeVersionTwoDetails = nockInstance
294
+ .get(versionDetails(17))
295
+ .query(true)
296
+ .reply(200, versionTwoDetailsData);
297
+ const { queryByText, queryAllByText, getAllByText } = renderWithRedux(
298
+ withCVRoute(<CVVersionCompare
299
+ cvId={4}
300
+ versionIds={versionIdsAllContentTypes}
301
+ versionLabels={versionLabelsAllContentTypes}
302
+ />),
303
+ renderOptions,
304
+ );
305
+
306
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', undefined, 9);
307
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', undefined, 9);
308
+
309
+ // Nothing will show at first, page is loading
310
+ expect(queryByText(`Version ${versionLabelsAllContentTypes.versionOneLabel}`)).toBeNull();
311
+ expect(queryByText(`Version ${versionLabelsAllContentTypes.versionTwoLabel}`)).toBeNull();
312
+
313
+ // Assert that the CV version is now showing on the screen, but wait for it to appear.
314
+
315
+ await patientlyWaitFor(() => {
316
+ expect(getAllByText(`Version ${versionLabelsAllContentTypes.versionOneLabel}`)).toBeTruthy();
317
+ });
318
+
319
+ await patientlyWaitFor(() => {
320
+ expect(getAllByText(`Version ${versionLabelsAllContentTypes.versionTwoLabel}`)).toBeTruthy();
321
+ });
322
+ // Ensure that tab exists on the screen
323
+ await patientlyWaitFor(() => {
324
+ testConfigAllContentTypes.forEach(({ name, textQuery }) => {
325
+ expect(queryByText(name)).toBeTruthy();
326
+ textQuery.forEach(query => expect(queryAllByText(query)).toBeTruthy());
327
+ });
328
+ });
329
+
330
+
331
+ assertNockRequest(scopeCVDetails);
332
+ assertNockRequest(scopeVersionOneDetails);
333
+ assertNockRequest(scopeVersionTwoDetails);
334
+ scopeContentTypes.map(cv => assertNockRequest(cv));
335
+ autoCompleteContentTypesScope.map(cv => assertNockRequest(cv));
336
+ assertNockRequest(searchDelayScope);
337
+ assertNockRequest(autoSearchScope);
338
+ act(done);
339
+ });
340
+
341
+ test('Can make an API call and compare two versions with three content types', async (done) => {
342
+ const autoCompleteContentTypesScope = testConfigThreeContentTypes.map(({ autoCompleteUrl }) =>
343
+ mockAutocomplete(nockInstance, autoCompleteUrl));
344
+ const scopeContentTypes = testConfigThreeContentTypes.map(({ dataUrl, data }) =>
345
+ nockInstance.get(dataUrl).query(true).reply(200, data));
346
+ const scopeCVDetails = nockInstance
347
+ .get(cvDetails)
348
+ .query(true)
349
+ .reply(200, cvDetailsData);
350
+ const scopeVersionOneDetails = nockInstance
351
+ .get(versionDetails(14))
352
+ .query(true)
353
+ .reply(200, versionThreeDetailsData);
354
+ const scopeVersionTwoDetails = nockInstance
355
+ .get(versionDetails(15))
356
+ .query(true)
357
+ .reply(200, versionOneDetailsData);
358
+ const { queryByText, queryAllByText, getAllByText } = renderWithRedux(
359
+ withCVRoute(<CVVersionCompare
360
+ cvId={4}
361
+ versionIds={versionIdsThreeContentTypes}
362
+ versionLabels={versionLabelsThreeContentTypes}
363
+ />),
364
+ renderOptions,
365
+ );
366
+
367
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', undefined, 3);
368
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', undefined, 3);
369
+
370
+ // Nothing will show at first, page is loading
371
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeNull();
372
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeNull();
373
+
374
+ // Assert that the CV version is now showing on the screen, but wait for it to appear.
375
+
376
+ await patientlyWaitFor(() => {
377
+ expect(getAllByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeTruthy();
378
+ });
379
+
380
+ await patientlyWaitFor(() => {
381
+ expect(getAllByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeTruthy();
382
+ });
383
+ // Ensure that tab exists on the screen
384
+ await patientlyWaitFor(() => {
385
+ testConfigThreeContentTypes.forEach(({ name, textQuery }) => {
386
+ expect(queryByText(name)).toBeTruthy();
387
+ textQuery.forEach(query => expect(queryAllByText(query)).toBeTruthy());
388
+ });
389
+ });
390
+
391
+
392
+ assertNockRequest(scopeCVDetails);
393
+ assertNockRequest(scopeVersionOneDetails);
394
+ assertNockRequest(scopeVersionTwoDetails);
395
+ scopeContentTypes.map(cv => assertNockRequest(cv));
396
+ autoCompleteContentTypesScope.map(cv => assertNockRequest(cv));
397
+ assertNockRequest(searchDelayScope);
398
+ assertNockRequest(autoSearchScope);
399
+ act(done);
400
+ });
401
+
402
+ test('Can select two versions and click compare button', async (done) => {
403
+ const autoCompleteContentTypesScope = testConfigAllContentTypes.map(({ autoCompleteUrl }) =>
404
+ mockAutocomplete(nockInstance, autoCompleteUrl));
405
+ const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
406
+ const scopeContentTypes = testConfigAllContentTypes.map(({ dataUrl, data }) =>
407
+ nockInstance.get(dataUrl).query(true).reply(200, data));
408
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', undefined, 10);
409
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', undefined, 10);
410
+ const scope = nockInstance
411
+ .get(cvVersions)
412
+ .query(true)
413
+ .reply(200, cvVersionsData);
414
+ const scopeCVDetails = nockInstance
415
+ .get(cvDetails)
416
+ .query(true)
417
+ .reply(200, cvDetailsData);
418
+ const scopeVersionOneDetails = nockInstance
419
+ .get(versionDetails(15))
420
+ .query(true)
421
+ .reply(200, versionOneDetailsData);
422
+ const scopeVersionTwoDetails = nockInstance
423
+ .get(versionDetails(17))
424
+ .query(true)
425
+ .reply(200, versionTwoDetailsData);
426
+ const { getByLabelText, getByText } = renderWithRedux(
427
+ withCVRoute(<ContentViewVersions cvId={4} details={cvDetailsData} />),
428
+ renderOptions,
429
+ );
430
+
431
+ await patientlyWaitFor(() => {
432
+ expect(getByLabelText('Select version 15')).toBeInTheDocument();
433
+ expect(getByLabelText('Select version 17')).toBeInTheDocument();
434
+ expect(getByLabelText('compare_two_versions')).toHaveAttribute('disabled');
435
+ });
436
+ fireEvent.click(getByLabelText('Select version 15'));
437
+ fireEvent.click(getByLabelText('Select version 17'));
438
+
439
+ await patientlyWaitFor(() => {
440
+ expect(getByLabelText('compare_two_versions')).toBeInTheDocument();
441
+ });
442
+ fireEvent.click(getByLabelText('compare_two_versions'));
443
+ await patientlyWaitFor(() => {
444
+ expect(getByText('Compare')).toBeInTheDocument();
445
+ });
446
+
447
+ scopeContentTypes.map(cv => assertNockRequest(cv));
448
+ autoCompleteContentTypesScope.map(cv => assertNockRequest(cv));
449
+ assertNockRequest(scopeVersionOneDetails);
450
+ assertNockRequest(scopeVersionTwoDetails);
451
+ assertNockRequest(autocompleteScope);
452
+ assertNockRequest(scope);
453
+ assertNockRequest(scopeCVDetails);
454
+ assertNockRequest(searchDelayScope);
455
+ assertNockRequest(autoSearchScope);
456
+ act(done);
457
+ });
458
+
459
+ test('Can select two versions with no content and click compare button', async (done) => {
460
+ const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
461
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay');
462
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing');
463
+ const scope = nockInstance
464
+ .get(cvVersions)
465
+ .query(true)
466
+ .reply(200, cvVersionsData);
467
+ const scopeCVDetails = nockInstance
468
+ .get(cvDetails)
469
+ .query(true)
470
+ .reply(200, cvDetailsData);
471
+ const scopeVersionOneDetails = nockInstance
472
+ .get(versionDetails(12))
473
+ .query(true)
474
+ .reply(200, emptyStateVersionOneData);
475
+ const scopeVersionTwoDetails = nockInstance
476
+ .get(versionDetails(13))
477
+ .query(true)
478
+ .reply(200, empptyStateVersionTwoData);
479
+ const { getByLabelText, getByText } = renderWithRedux(
480
+ withCVRoute(<ContentViewVersions cvId={4} details={cvDetailsData} />),
481
+ renderOptions,
482
+ );
483
+
484
+ await patientlyWaitFor(() => {
485
+ expect(getByLabelText('Select version 12')).toBeInTheDocument();
486
+ expect(getByLabelText('Select version 13')).toBeInTheDocument();
487
+ expect(getByLabelText('compare_two_versions')).toHaveAttribute('disabled');
488
+ });
489
+ fireEvent.click(getByLabelText('Select version 12'));
490
+ fireEvent.click(getByLabelText('Select version 13'));
491
+
492
+ await patientlyWaitFor(() => {
493
+ expect(getByLabelText('compare_two_versions')).toBeInTheDocument();
494
+ });
495
+ fireEvent.click(getByLabelText('compare_two_versions'));
496
+ await patientlyWaitFor(() => {
497
+ expect(getByText('Versions to compare')).toBeInTheDocument();
498
+ });
499
+
500
+ assertNockRequest(scopeVersionOneDetails);
501
+ assertNockRequest(scopeVersionTwoDetails);
502
+ assertNockRequest(autocompleteScope);
503
+ assertNockRequest(scope);
504
+ assertNockRequest(scopeCVDetails);
505
+ assertNockRequest(searchDelayScope);
506
+ assertNockRequest(autoSearchScope);
507
+ act(done);
508
+ });
509
+
510
+ test('Can select viewing by "Different" in the dropdown and see the content in either of the versions but not both', async (done) => {
511
+ const autoCompleteContentTypesScope = testConfigViewByDifferent.map(({ autoCompleteUrl }) =>
512
+ mockAutocomplete(nockInstance, autoCompleteUrl));
513
+ const scopeContentTypes = testConfigViewByDifferent.map(({ dataUrl, data }) =>
514
+ nockInstance.persist().get(dataUrl).query(true).reply(200, data));
515
+ const scopeCVDetails = nockInstance
516
+ .get(cvDetails)
517
+ .query(true)
518
+ .reply(200, cvDetailsData);
519
+ const scopeVersionOneDetails = nockInstance
520
+ .get(versionDetails(14))
521
+ .query(true)
522
+ .reply(200, versionThreeDetailsData);
523
+ const scopeVersionTwoDetails = nockInstance
524
+ .get(versionDetails(15))
525
+ .query(true)
526
+ .reply(200, versionOneDetailsData);
527
+ const {
528
+ queryByText,
529
+ queryAllByText,
530
+ getByLabelText,
531
+ getByText,
532
+ } = renderWithRedux(
533
+ withCVRoute(<CVVersionCompare
534
+ cvId={4}
535
+ versionIds={versionIdsThreeContentTypes}
536
+ versionLabels={versionLabelsThreeContentTypes}
537
+ />),
538
+ renderOptions,
539
+ );
540
+
541
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', undefined, 3);
542
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', undefined, 3);
543
+
544
+ // Nothing will show at first, page is loading
545
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeNull();
546
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeNull();
547
+
548
+ // Assert that the CV version is now showing on the screen, but wait for it to appear.
549
+ await patientlyWaitFor(() => {
550
+ expect(getByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeTruthy();
551
+ });
552
+
553
+ await patientlyWaitFor(() => {
554
+ expect(getByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeTruthy();
555
+ });
556
+
557
+ fireEvent.click(getByText('All'));
558
+ await patientlyWaitFor(() => {
559
+ expect(getByLabelText('View by Different')).toBeTruthy();
560
+ });
561
+ fireEvent.click(getByLabelText('View by Different'));
562
+
563
+ await patientlyWaitFor(() => {
564
+ testConfigViewByDifferent.forEach(({ name }) => {
565
+ expect(queryByText(name)).toBeTruthy();
566
+ });
567
+ expect(getByText('No matching RPM packages found.')).toBeTruthy();
568
+ (testConfigViewByDifferent.find(({ name }) => name === 'Files')).textQuery.forEach(query => expect(queryAllByText(query)).toBeTruthy());
569
+ });
570
+
571
+ fireEvent.click(getByText('Errata'));
572
+ await patientlyWaitFor(() => {
573
+ expect(getByText('No matching Errata found.')).toBeTruthy();
574
+ });
575
+
576
+ assertNockRequest(scopeCVDetails);
577
+ assertNockRequest(scopeVersionOneDetails);
578
+ assertNockRequest(scopeVersionTwoDetails);
579
+ scopeContentTypes.map(cv => assertNockRequest(cv));
580
+ autoCompleteContentTypesScope.map(cv => assertNockRequest(cv));
581
+ assertNockRequest(searchDelayScope);
582
+ assertNockRequest(autoSearchScope);
583
+ act(done);
584
+ });
585
+
586
+ test('Can select viewing by "Same" in the dropdown and see the content in common for any two versions', async (done) => {
587
+ const autoCompleteContentTypesScope = testConfigViewBySame.map(({ autoCompleteUrl }) =>
588
+ mockAutocomplete(nockInstance, autoCompleteUrl));
589
+ const scopeContentTypes = testConfigViewBySame.map(({ dataUrl, data }) =>
590
+ nockInstance.persist().get(dataUrl).query(true).reply(200, data));
591
+ const scopeCVDetails = nockInstance
592
+ .get(cvDetails)
593
+ .query(true)
594
+ .reply(200, cvDetailsData);
595
+ const scopeVersionOneDetails = nockInstance
596
+ .get(versionDetails(14))
597
+ .query(true)
598
+ .reply(200, versionThreeDetailsData);
599
+ const scopeVersionTwoDetails = nockInstance
600
+ .get(versionDetails(15))
601
+ .query(true)
602
+ .reply(200, versionOneDetailsData);
603
+ const {
604
+ queryByText,
605
+ queryAllByText,
606
+ getByLabelText,
607
+ getByText,
608
+ } = renderWithRedux(
609
+ withCVRoute(<CVVersionCompare
610
+ cvId={4}
611
+ versionIds={versionIdsThreeContentTypes}
612
+ versionLabels={versionLabelsThreeContentTypes}
613
+ />),
614
+ renderOptions,
615
+ );
616
+
617
+ searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', undefined, 3);
618
+ autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', undefined, 3);
619
+
620
+
621
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeNull();
622
+ expect(queryByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeNull();
623
+
624
+ await patientlyWaitFor(() => {
625
+ expect(getByText(`Version ${versionLabelsThreeContentTypes.versionOneLabel}`)).toBeTruthy();
626
+ });
627
+ await patientlyWaitFor(() => {
628
+ expect(getByText(`Version ${versionLabelsThreeContentTypes.versionTwoLabel}`)).toBeTruthy();
629
+ });
630
+ fireEvent.click(getByText('All'));
631
+ await patientlyWaitFor(() => {
632
+ expect(getByLabelText('View by Same')).toBeTruthy();
633
+ });
634
+ fireEvent.click(getByLabelText('View by Same'));
635
+ await patientlyWaitFor(() => {
636
+ testConfigViewBySame.forEach(({ name }) => {
637
+ expect(queryByText(name)).toBeTruthy();
638
+ });
639
+ (testConfigViewBySame.filter(({ name }) => !(name === 'Files'))).forEach(({ textQuery }) => {
640
+ textQuery.forEach(query => expect(queryAllByText(query)).toBeTruthy());
641
+ });
642
+ });
643
+
644
+ expect(getByText('Files')).toBeTruthy();
645
+ fireEvent.click(getByText('Files'));
646
+ await patientlyWaitFor(() => {
647
+ expect(getByText('No matching Files found.')).toBeTruthy();
648
+ });
649
+ assertNockRequest(scopeCVDetails);
650
+ assertNockRequest(scopeVersionOneDetails);
651
+ assertNockRequest(scopeVersionTwoDetails);
652
+ scopeContentTypes.map(cv => assertNockRequest(cv));
653
+ autoCompleteContentTypesScope.map(cv => assertNockRequest(cv));
654
+ assertNockRequest(searchDelayScope);
655
+ assertNockRequest(autoSearchScope);
656
+ act(done);
657
+ });
@@ -0,0 +1,14 @@
1
+ {
2
+ "total": 0,
3
+ "subtotal": 0,
4
+ "selectable": 0,
5
+ "page": "1",
6
+ "per_page": "20",
7
+ "error": null,
8
+ "search": null,
9
+ "sort": {
10
+ "by": null,
11
+ "order": null
12
+ },
13
+ "results": []
14
+ }