katello 4.4.1 → 4.5.0
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/katello/hosts/activation_key_edit.js +9 -2
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +3 -0
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
- data/app/controllers/katello/api/v2/alternate_content_sources_bulk_actions_controller.rb +44 -0
- data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +121 -0
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
- data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
- data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
- data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
- data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
- data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
- data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
- data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
- data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
- data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
- data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
- data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/refresh.rb +27 -0
- data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
- data/app/lib/actions/katello/cdn_configuration/update.rb +3 -3
- data/app/lib/actions/katello/content_view/destroy.rb +2 -1
- data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
- data/app/lib/actions/katello/content_view/publish.rb +8 -10
- data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
- data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
- data/app/lib/actions/katello/content_view_version/import.rb +25 -22
- data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
- data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
- data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
- data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
- data/app/lib/actions/katello/product/content_create.rb +10 -8
- data/app/lib/actions/katello/repository/destroy.rb +36 -12
- data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
- data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +23 -0
- data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
- data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
- data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +16 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +15 -0
- data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +16 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/api/v2/error_handling.rb +1 -0
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +24 -11
- data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
- data/app/lib/katello/util/errata.rb +2 -3
- data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
- data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
- data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
- data/app/models/katello/alternate_content_source.rb +71 -0
- data/app/models/katello/authorization/alternate_content_source.rb +33 -0
- data/app/models/katello/authorization/repository.rb +5 -3
- data/app/models/katello/candlepin/repository_mapper.rb +13 -6
- data/app/models/katello/cdn_configuration.rb +15 -15
- data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -6
- data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -2
- data/app/models/katello/concerns/setting_extensions.rb +14 -0
- data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
- data/app/models/katello/content.rb +1 -0
- data/app/models/katello/content_credential.rb +6 -0
- data/app/models/katello/content_override.rb +7 -3
- data/app/models/katello/content_view.rb +33 -2
- data/app/models/katello/content_view_erratum_filter.rb +26 -12
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_version.rb +12 -0
- data/app/models/katello/content_view_version_export_history.rb +3 -1
- data/app/models/katello/erratum.rb +9 -5
- data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
- data/app/models/katello/host/content_facet.rb +14 -0
- data/app/models/katello/host_available_module_stream.rb +12 -0
- data/app/models/katello/product_content.rb +1 -0
- data/app/models/katello/purpose_sla_status.rb +1 -1
- data/app/models/katello/purpose_status.rb +2 -2
- data/app/models/katello/repository.rb +7 -4
- data/app/models/katello/root_repository.rb +1 -1
- data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
- data/app/models/katello/sync_plan.rb +1 -1
- data/app/presenters/katello/product_content_presenter.rb +15 -0
- data/app/services/katello/applicable_host_queue.rb +1 -1
- data/app/services/katello/product_content_finder.rb +12 -2
- data/app/services/katello/pulp3/alternate_content_source.rb +123 -0
- data/app/services/katello/pulp3/api/file.rb +8 -0
- data/app/services/katello/pulp3/api/yum.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +104 -71
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
- data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
- data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
- data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +102 -38
- data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
- data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
- data/app/services/katello/pulp3/repository/yum.rb +70 -12
- data/app/services/katello/pulp3/repository.rb +6 -62
- data/app/services/katello/pulp3/service_common.rb +66 -0
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
- data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
- data/app/views/foreman/job_templates/change_content_source.erb +1 -1
- data/app/views/foreman/job_templates/install_errata.erb +5 -5
- data/app/views/foreman/job_templates/install_errata_by_search_query.erb +10 -8
- data/app/views/foreman/job_templates/install_group.erb +4 -4
- data/app/views/foreman/job_templates/install_package.erb +4 -4
- data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/remove_group.erb +4 -4
- data/app/views/foreman/job_templates/remove_package.erb +4 -4
- data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
- data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
- data/app/views/foreman/job_templates/restart_services.erb +3 -3
- data/app/views/foreman/job_templates/update_group.erb +4 -4
- data/app/views/foreman/job_templates/update_package.erb +4 -4
- data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
- data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +24 -0
- data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
- data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
- data/app/views/katello/api/v2/content_facet/show.json.rabl +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
- data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
- data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
- data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
- data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
- data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
- data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
- data/app/views/katello/sync_management/_repo.html.erb +8 -29
- data/config/routes/api/v2.rb +19 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
- data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
- data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
- data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
- data/db/migrate/20211220185935_clean_duplicate_content_units.rb +1 -1
- data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
- data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
- data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
- data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
- data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
- data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
- data/db/migrate/20220303160220_remove_duplicate_errata.rb +1 -1
- data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
- data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
- data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
- data/db/migrate/20220428203334_add_last_refreshed_to_katello_alternate_content_sources.rb +5 -0
- data/db/seeds.d/110-content-view-autopublish.rb +13 -0
- data/db/seeds.d/150-module_job_templates.rb +1 -1
- data/engines/bastion/README.md +1 -0
- data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.routes.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +11 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js +11 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -12
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
- data/lib/katello/engine.rb +1 -5
- data/lib/katello/permission_creator.rb +34 -4
- data/lib/katello/plugin.rb +377 -3
- data/lib/katello/tasks/refresh_alternate_content_sources.rake +15 -0
- data/lib/katello/tasks/reset.rake.bak +67 -0
- data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +47 -41
- data/locale/bn/LC_MESSAGES/katello.mo +0 -0
- data/locale/bn/katello.po +820 -106
- data/locale/bn/katello.po.time_stamp +0 -0
- data/locale/cs/LC_MESSAGES/katello.mo +0 -0
- data/locale/cs/katello.po +818 -104
- data/locale/cs/katello.po.time_stamp +0 -0
- data/locale/de/LC_MESSAGES/katello.mo +0 -0
- data/locale/de/katello.po +893 -179
- data/locale/de/katello.po.time_stamp +0 -0
- data/locale/en/LC_MESSAGES/katello.mo +0 -0
- data/locale/en/katello.po +817 -103
- data/locale/en/katello.po.time_stamp +0 -0
- data/locale/es/LC_MESSAGES/katello.mo +0 -0
- data/locale/es/katello.po +882 -168
- data/locale/es/katello.po.time_stamp +0 -0
- data/locale/fr/LC_MESSAGES/katello.mo +0 -0
- data/locale/fr/katello.po +1219 -505
- data/locale/fr/katello.po.time_stamp +0 -0
- data/locale/gu/LC_MESSAGES/katello.mo +0 -0
- data/locale/gu/katello.po +826 -112
- data/locale/gu/katello.po.time_stamp +0 -0
- data/locale/hi/LC_MESSAGES/katello.mo +0 -0
- data/locale/hi/katello.po +826 -112
- data/locale/hi/katello.po.time_stamp +0 -0
- data/locale/it/LC_MESSAGES/katello.mo +0 -0
- data/locale/it/katello.po +863 -148
- data/locale/it/katello.po.time_stamp +0 -0
- data/locale/ja/LC_MESSAGES/katello.mo +0 -0
- data/locale/ja/katello.po +1216 -499
- data/locale/ja/katello.po.time_stamp +0 -0
- data/locale/katello.pot +3847 -2507
- data/locale/kn/LC_MESSAGES/katello.mo +0 -0
- data/locale/kn/katello.po +826 -112
- data/locale/kn/katello.po.time_stamp +0 -0
- data/locale/ko/LC_MESSAGES/katello.mo +0 -0
- data/locale/ko/katello.po +912 -198
- data/locale/ko/katello.po.time_stamp +0 -0
- data/locale/mr/LC_MESSAGES/katello.mo +0 -0
- data/locale/mr/katello.po +826 -112
- data/locale/mr/katello.po.time_stamp +0 -0
- data/locale/or/LC_MESSAGES/katello.mo +0 -0
- data/locale/or/katello.po +826 -112
- data/locale/or/katello.po.time_stamp +0 -0
- data/locale/pa/LC_MESSAGES/katello.mo +0 -0
- data/locale/pa/katello.po +826 -112
- data/locale/pa/katello.po.time_stamp +0 -0
- data/locale/pt/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt/katello.po +817 -103
- data/locale/pt/katello.po.time_stamp +0 -0
- data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
- data/locale/pt_BR/katello.po +879 -165
- data/locale/pt_BR/katello.po.time_stamp +0 -0
- data/locale/ru/LC_MESSAGES/katello.mo +0 -0
- data/locale/ru/katello.po +927 -213
- data/locale/ru/katello.po.time_stamp +0 -0
- data/locale/ta/LC_MESSAGES/katello.mo +0 -0
- data/locale/ta/katello.po +820 -106
- data/locale/ta/katello.po.time_stamp +0 -0
- data/locale/te/LC_MESSAGES/katello.mo +0 -0
- data/locale/te/katello.po +826 -112
- data/locale/te/katello.po.time_stamp +0 -0
- data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_CN/katello.po +1202 -486
- data/locale/zh_CN/katello.po.time_stamp +0 -0
- data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
- data/locale/zh_TW/katello.po +856 -142
- data/locale/zh_TW/katello.po.time_stamp +0 -0
- data/webpack/components/Bookmark/index.js +22 -14
- data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
- data/webpack/components/Errata/index.js +38 -8
- data/webpack/components/Packages/index.js +1 -4
- data/webpack/components/Search/Search.js +22 -3
- data/webpack/components/SelectAllCheckbox/index.js +1 -0
- data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
- data/webpack/components/Table/EmptyStateMessage.js +21 -7
- data/webpack/components/Table/MainTable.js +29 -4
- data/webpack/components/Table/MainTable.scss +5 -1
- data/webpack/components/Table/TableHooks.js +65 -20
- data/webpack/components/Table/TableWrapper.js +9 -3
- data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
- data/webpack/components/Table/components/TranslatedPlural.js +57 -0
- data/webpack/components/TypeAhead/TypeAhead.js +12 -0
- data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
- data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +7 -2
- data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +250 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +232 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
- data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
- data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +206 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +118 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
- data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
- data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
- data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RecentCommunicationCardExtensions.js +37 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
- data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
- data/webpack/components/extensions/HostDetails/HostDetailsActions.js +11 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +4 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +6 -1
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +176 -72
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +522 -118
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +6 -4
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +164 -58
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +59 -49
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionHooks.js +85 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +298 -107
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +14 -7
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/HostTracesActions.js +2 -1
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +104 -0
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +134 -57
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +37 -32
- data/webpack/components/extensions/HostDetails/Tabs/{ModuleStreamsTab/__tests__/modules.fixtures.json → __tests__/moduleStreams.fixtures.json} +6 -3
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +261 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +21 -15
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +44 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +4 -1
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +105 -6
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +25 -6
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
- data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +18 -0
- data/webpack/containers/Application/config.js +5 -0
- data/webpack/global_index.js +32 -9
- data/webpack/global_test_setup.js +13 -0
- data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +13 -8
- data/webpack/scenes/AlternateContentSources/ACSActions.js +65 -0
- data/webpack/scenes/AlternateContentSources/ACSConstants.js +18 -0
- data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
- data/webpack/scenes/AlternateContentSources/ACSSelectors.js +24 -0
- data/webpack/scenes/AlternateContentSources/Create/ACSCreateContext.js +4 -0
- data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +160 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +79 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +199 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +104 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +41 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +71 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +57 -0
- data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +77 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +149 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreateData.fixtures.json +3 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/contentCredentials.fixtures.json +69 -0
- data/webpack/scenes/AlternateContentSources/Create/__tests__/smartProxy.fixtures.json +65 -0
- data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +162 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
- data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
- data/webpack/scenes/AlternateContentSources/index.js +4 -0
- data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
- data/webpack/scenes/Content/Table/ContentTable.js +1 -0
- data/webpack/scenes/ContentCredentials/ContentCredentialSelectors.js +4 -1
- data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +2 -1
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +2 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +2 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +16 -2
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
- data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
- data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +10 -6
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
- data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
- data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +2 -2
- data/webpack/scenes/ContentViews/helpers.js +3 -0
- data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
- data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
- data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
- data/webpack/scenes/RedHatRepositories/components/Search.js +4 -4
- data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +9 -2
- data/webpack/scenes/SmartProxy/SmartProxyContentConstants.js +1 -1
- data/webpack/scenes/SmartProxy/SmartProxyContentSelectors.js +10 -1
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
- data/webpack/scenes/Tasks/TaskActions.js +6 -0
- data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
- data/webpack/scenes/Tasks/helpers.js +60 -5
- data/webpack/utils/helpers.js +2 -0
- metadata +183 -38
- data/app/models/setting/content.rb +0 -201
- data/db/seeds.d/107-enable_dynflow.rb +0 -8
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
- data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +0 -108
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerEmptyState.js +0 -42
- data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -0,0 +1,149 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as reactRedux from 'react-redux';
|
3
|
+
import { renderWithRedux, patientlyWaitFor, fireEvent } from 'react-testing-lib-wrapper';
|
4
|
+
import api, { foremanApi } from '../../../../services/api';
|
5
|
+
import nock, { nockInstance, assertNockRequest, mockAutocomplete, mockSetting } from '../../../../test-utils/nockWrapper';
|
6
|
+
import ACSTable from '../../MainTable/ACSTable';
|
7
|
+
import contentCredentialResult from './contentCredentials.fixtures';
|
8
|
+
import smartProxyResult from './smartProxy.fixtures';
|
9
|
+
|
10
|
+
const ACSIndexPath = api.getApiUrl('/alternate_content_sources');
|
11
|
+
const ACSCreatePath = api.getApiUrl('/alternate_content_sources');
|
12
|
+
const contentCredentialPath = api.getApiUrl('/content_credentials');
|
13
|
+
const smartProxyPath = foremanApi.getApiUrl('/smart_proxies');
|
14
|
+
const autocompleteUrl = '/alternate_content_sources/auto_complete_search';
|
15
|
+
|
16
|
+
const createACSDetails = {
|
17
|
+
upstream_username: 'username',
|
18
|
+
upstream_password: 'password',
|
19
|
+
name: 'acs_test',
|
20
|
+
description: '',
|
21
|
+
base_url: 'https://test_url.com/',
|
22
|
+
subpaths: ['test/repo1/', 'test/repo2/'],
|
23
|
+
smart_proxy_names: ['centos7-katello-devel-stable.example.com'],
|
24
|
+
content_type: 'yum',
|
25
|
+
alternate_content_source_type: 'custom',
|
26
|
+
verify_ssl: false,
|
27
|
+
ssl_ca_cert_id: '',
|
28
|
+
};
|
29
|
+
|
30
|
+
const noResults = {
|
31
|
+
total: 0,
|
32
|
+
subtotal: 0,
|
33
|
+
page: 1,
|
34
|
+
per_page: 20,
|
35
|
+
results: [],
|
36
|
+
};
|
37
|
+
|
38
|
+
let searchDelayScope;
|
39
|
+
let autoSearchScope;
|
40
|
+
beforeEach(() => {
|
41
|
+
searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', 0);
|
42
|
+
autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing');
|
43
|
+
});
|
44
|
+
|
45
|
+
afterEach(() => {
|
46
|
+
nock.cleanAll();
|
47
|
+
assertNockRequest(searchDelayScope);
|
48
|
+
assertNockRequest(autoSearchScope);
|
49
|
+
});
|
50
|
+
|
51
|
+
test('Can show add ACS button', async (done) => {
|
52
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
53
|
+
const scope = nockInstance
|
54
|
+
.get(ACSIndexPath)
|
55
|
+
.query(true)
|
56
|
+
.reply(200, noResults);
|
57
|
+
|
58
|
+
const { queryByText } = renderWithRedux(<ACSTable />);
|
59
|
+
|
60
|
+
expect(queryByText("You currently don't have any alternate content sources.")).toBeNull();
|
61
|
+
await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
|
62
|
+
expect(queryByText('Add source')).toBeInTheDocument();
|
63
|
+
assertNockRequest(autocompleteScope);
|
64
|
+
assertNockRequest(scope, done);
|
65
|
+
});
|
66
|
+
|
67
|
+
test('Can display create wizard and create ACS', async (done) => {
|
68
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
69
|
+
const scope = nockInstance
|
70
|
+
.get(ACSIndexPath)
|
71
|
+
.query(true)
|
72
|
+
.reply(200, noResults);
|
73
|
+
|
74
|
+
const contentCredentialScope = nockInstance
|
75
|
+
.get(contentCredentialPath)
|
76
|
+
.query(true)
|
77
|
+
.reply(200, contentCredentialResult);
|
78
|
+
|
79
|
+
const smartProxyScope = nockInstance
|
80
|
+
.get(smartProxyPath)
|
81
|
+
.query(true)
|
82
|
+
.reply(200, smartProxyResult);
|
83
|
+
|
84
|
+
const createScope = nockInstance
|
85
|
+
.post(ACSCreatePath, createACSDetails)
|
86
|
+
.reply(201, { id: 22 });
|
87
|
+
|
88
|
+
const {
|
89
|
+
getByLabelText, getByText, getAllByRole, queryByText,
|
90
|
+
} = renderWithRedux(<ACSTable />);
|
91
|
+
|
92
|
+
expect(queryByText("You currently don't have any alternate content sources.")).toBeNull();
|
93
|
+
await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
|
94
|
+
expect(queryByText('Add source')).toBeInTheDocument();
|
95
|
+
fireEvent.click(getByText('Add source'));
|
96
|
+
|
97
|
+
// First step: Select source
|
98
|
+
await patientlyWaitFor(() => {
|
99
|
+
expect(getByText('Add an alternate content source')).toBeInTheDocument();
|
100
|
+
expect(queryByText('Indicate the source type.')).toBeInTheDocument();
|
101
|
+
});
|
102
|
+
|
103
|
+
// Choose ACS type, content_type defaults to yum
|
104
|
+
fireEvent.click(getByText('Custom'));
|
105
|
+
|
106
|
+
// Go to next step: Name source
|
107
|
+
fireEvent.click(getByText('Next'));
|
108
|
+
|
109
|
+
await patientlyWaitFor(() => {
|
110
|
+
expect(getByText('Enter a name for your source.')).toBeInTheDocument();
|
111
|
+
});
|
112
|
+
// Enter Name
|
113
|
+
fireEvent.change(getByLabelText('acs_name_field'), { target: { value: 'acs_test' } });
|
114
|
+
|
115
|
+
// Mock smart proxy selector to go to next page
|
116
|
+
const useSelectorMock = jest.spyOn(reactRedux, 'useSelector');
|
117
|
+
useSelectorMock.mockReturnValue(smartProxyResult);
|
118
|
+
fireEvent.click(getByText('Next'));
|
119
|
+
fireEvent.click(getByLabelText('Add all'));
|
120
|
+
|
121
|
+
// Go to URL and subpath step
|
122
|
+
fireEvent.click(getByText('Next'));
|
123
|
+
|
124
|
+
fireEvent.change(getByLabelText('acs_base_url_field'), { target: { value: 'https://test_url.com/' } });
|
125
|
+
expect(getByLabelText('acs_base_url_field')).toHaveAttribute('value', 'https://test_url.com/');
|
126
|
+
fireEvent.change(getByLabelText('acs_subpath_field'), { target: { value: 'test/repo1/,test/repo2/' } });
|
127
|
+
|
128
|
+
// Mock content credential data
|
129
|
+
useSelectorMock.mockReturnValue(contentCredentialResult.results);
|
130
|
+
fireEvent.click(getByText('Next'));
|
131
|
+
const manualAuthRadio = getAllByRole('radio', { name: 'Manual authentication' })[0];
|
132
|
+
fireEvent.click(manualAuthRadio);
|
133
|
+
await patientlyWaitFor(() => {
|
134
|
+
expect(getByText('Username')).toBeInTheDocument();
|
135
|
+
expect(getByText('Password')).toBeInTheDocument();
|
136
|
+
});
|
137
|
+
fireEvent.change(getByLabelText('acs_username_field'), { target: { value: 'username' } });
|
138
|
+
fireEvent.change(getByLabelText('acs_password_field'), { target: { value: 'password' } });
|
139
|
+
|
140
|
+
fireEvent.click(getByText('Next'));
|
141
|
+
fireEvent.click(getByText('Add'));
|
142
|
+
|
143
|
+
useSelectorMock.mockClear();
|
144
|
+
assertNockRequest(autocompleteScope);
|
145
|
+
assertNockRequest(scope);
|
146
|
+
assertNockRequest(contentCredentialScope);
|
147
|
+
assertNockRequest(smartProxyScope);
|
148
|
+
assertNockRequest(createScope, done);
|
149
|
+
});
|
@@ -0,0 +1,69 @@
|
|
1
|
+
{
|
2
|
+
"total": 2,
|
3
|
+
"subtotal": 2,
|
4
|
+
"selectable": 2,
|
5
|
+
"page": 1,
|
6
|
+
"per_page": 20,
|
7
|
+
"error": null,
|
8
|
+
"search": null,
|
9
|
+
"sort": {
|
10
|
+
"by": "name",
|
11
|
+
"order": "asc"
|
12
|
+
},
|
13
|
+
"results": [
|
14
|
+
{
|
15
|
+
"name": "test",
|
16
|
+
"content_type": "cert",
|
17
|
+
"content": "abcdef",
|
18
|
+
"id": 1,
|
19
|
+
"organization_id": 1,
|
20
|
+
"organization": {
|
21
|
+
"name": "Default Organization",
|
22
|
+
"label": "Default_Organization",
|
23
|
+
"id": 1
|
24
|
+
},
|
25
|
+
"created_at": "2022-05-02 16:21:58 -0400",
|
26
|
+
"updated_at": "2022-05-02 16:21:58 -0400",
|
27
|
+
"gpg_key_products": [],
|
28
|
+
"gpg_key_repos": [],
|
29
|
+
"ssl_ca_products": [],
|
30
|
+
"ssl_ca_root_repos": [],
|
31
|
+
"ssl_client_products": [],
|
32
|
+
"ssl_client_root_repos": [],
|
33
|
+
"ssl_key_products": [],
|
34
|
+
"ssl_key_root_repos": [],
|
35
|
+
"permissions": {
|
36
|
+
"view_content_credenials": true,
|
37
|
+
"edit_content_credenials": true,
|
38
|
+
"destroy_content_credenials": true
|
39
|
+
}
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"name": "test1",
|
43
|
+
"content_type": "gpg_key",
|
44
|
+
"content": "abcdef",
|
45
|
+
"id": 2,
|
46
|
+
"organization_id": 1,
|
47
|
+
"organization": {
|
48
|
+
"name": "Default Organization",
|
49
|
+
"label": "Default_Organization",
|
50
|
+
"id": 1
|
51
|
+
},
|
52
|
+
"created_at": "2022-05-02 16:22:30 -0400",
|
53
|
+
"updated_at": "2022-05-02 16:22:30 -0400",
|
54
|
+
"gpg_key_products": [],
|
55
|
+
"gpg_key_repos": [],
|
56
|
+
"ssl_ca_products": [],
|
57
|
+
"ssl_ca_root_repos": [],
|
58
|
+
"ssl_client_products": [],
|
59
|
+
"ssl_client_root_repos": [],
|
60
|
+
"ssl_key_products": [],
|
61
|
+
"ssl_key_root_repos": [],
|
62
|
+
"permissions": {
|
63
|
+
"view_content_credenials": true,
|
64
|
+
"edit_content_credenials": true,
|
65
|
+
"destroy_content_credenials": true
|
66
|
+
}
|
67
|
+
}
|
68
|
+
]
|
69
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
{
|
2
|
+
"total": 1,
|
3
|
+
"subtotal": 1,
|
4
|
+
"page": 1,
|
5
|
+
"per_page": 20,
|
6
|
+
"search": null,
|
7
|
+
"sort": {
|
8
|
+
"by": null,
|
9
|
+
"order": null
|
10
|
+
},
|
11
|
+
"results": [
|
12
|
+
{
|
13
|
+
"created_at": "2022-05-02 10:17:57 -0400",
|
14
|
+
"updated_at": "2022-05-02 10:24:21 -0400",
|
15
|
+
"hosts_count": 0,
|
16
|
+
"name": "centos7-katello-devel-stable.example.com",
|
17
|
+
"id": 1,
|
18
|
+
"url": "https://centos7-katello-devel-stable.example.com:9090",
|
19
|
+
"remote_execution_pubkey": "foreman-proxy@centos7-katello-devel-stable.example.com",
|
20
|
+
"download_policy": "on_demand",
|
21
|
+
"supported_pulp_types": [
|
22
|
+
"ansible_collection",
|
23
|
+
"deb",
|
24
|
+
"docker",
|
25
|
+
"file",
|
26
|
+
"python",
|
27
|
+
"yum"
|
28
|
+
],
|
29
|
+
"features": [
|
30
|
+
{
|
31
|
+
"capabilities": [
|
32
|
+
"single",
|
33
|
+
"ssh"
|
34
|
+
],
|
35
|
+
"name": "Dynflow",
|
36
|
+
"id": 17
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"capabilities": [],
|
40
|
+
"name": "SSH",
|
41
|
+
"id": 18
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"capabilities": [
|
45
|
+
"ansible",
|
46
|
+
"certguard",
|
47
|
+
"container",
|
48
|
+
"core",
|
49
|
+
"deb",
|
50
|
+
"file",
|
51
|
+
"python",
|
52
|
+
"rpm"
|
53
|
+
],
|
54
|
+
"name": "Pulpcore",
|
55
|
+
"id": 3
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"capabilities": [],
|
59
|
+
"name": "Logs",
|
60
|
+
"id": 13
|
61
|
+
}
|
62
|
+
]
|
63
|
+
}
|
64
|
+
]
|
65
|
+
}
|
@@ -0,0 +1,162 @@
|
|
1
|
+
import React, { useState, useCallback } from 'react';
|
2
|
+
import { useSelector, useDispatch } from 'react-redux';
|
3
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
4
|
+
import { Button } from '@patternfly/react-core';
|
5
|
+
import { TableVariant, Thead, Tbody, Tr, Th, Td } from '@patternfly/react-table';
|
6
|
+
import TableWrapper from '../../../components/Table/TableWrapper';
|
7
|
+
import {
|
8
|
+
selectAlternateContentSources, selectAlternateContentSourcesError,
|
9
|
+
selectAlternateContentSourcesStatus,
|
10
|
+
} from '../ACSSelectors';
|
11
|
+
import { useTableSort } from '../../../components/Table/TableHooks';
|
12
|
+
import getAlternateContentSources, { deleteACS, refreshACS } from '../ACSActions';
|
13
|
+
import ACSCreateWizard from '../Create/ACSCreateWizard';
|
14
|
+
import LastSync from '../../ContentViews/Details/Repositories/LastSync';
|
15
|
+
|
16
|
+
const ACSTable = () => {
|
17
|
+
const response = useSelector(selectAlternateContentSources);
|
18
|
+
const status = useSelector(selectAlternateContentSourcesStatus);
|
19
|
+
const error = useSelector(selectAlternateContentSourcesError);
|
20
|
+
const [searchQuery, updateSearchQuery] = useState('');
|
21
|
+
const [isCreateWizardOpen, setIsCreateWizardOpen] = useState(false);
|
22
|
+
const dispatch = useDispatch();
|
23
|
+
const { results, ...metadata } = response;
|
24
|
+
const columnHeaders = [
|
25
|
+
__('Name'),
|
26
|
+
__('Type'),
|
27
|
+
__('Last Refresh'),
|
28
|
+
];
|
29
|
+
|
30
|
+
const COLUMNS_TO_SORT_PARAMS = {
|
31
|
+
[columnHeaders[0]]: 'name',
|
32
|
+
[columnHeaders[1]]: 'alternate_content_source_type',
|
33
|
+
};
|
34
|
+
|
35
|
+
const {
|
36
|
+
pfSortParams, apiSortParams,
|
37
|
+
activeSortColumn, activeSortDirection,
|
38
|
+
} = useTableSort({
|
39
|
+
allColumns: columnHeaders,
|
40
|
+
columnsToSortParams: COLUMNS_TO_SORT_PARAMS,
|
41
|
+
initialSortColumnName: 'Name',
|
42
|
+
});
|
43
|
+
|
44
|
+
const fetchItems = useCallback(
|
45
|
+
params =>
|
46
|
+
getAlternateContentSources({
|
47
|
+
...apiSortParams,
|
48
|
+
...params,
|
49
|
+
}),
|
50
|
+
[apiSortParams],
|
51
|
+
);
|
52
|
+
|
53
|
+
const onDelete = (id) => {
|
54
|
+
dispatch(deleteACS(id, () =>
|
55
|
+
dispatch(getAlternateContentSources())));
|
56
|
+
};
|
57
|
+
|
58
|
+
const onRefresh = (id) => {
|
59
|
+
dispatch(refreshACS(id, () =>
|
60
|
+
dispatch(getAlternateContentSources())));
|
61
|
+
};
|
62
|
+
|
63
|
+
const createButtonOnclick = () => {
|
64
|
+
setIsCreateWizardOpen(true);
|
65
|
+
};
|
66
|
+
|
67
|
+
const rowDropdownItems = ({ id }) => [
|
68
|
+
{
|
69
|
+
title: __('Delete'),
|
70
|
+
ouiaId: `remove-acs-${id}`,
|
71
|
+
onClick: () => {
|
72
|
+
onDelete(id);
|
73
|
+
},
|
74
|
+
},
|
75
|
+
{
|
76
|
+
title: __('Refresh'),
|
77
|
+
ouiaId: `remove-acs-${id}`,
|
78
|
+
onClick: () => {
|
79
|
+
onRefresh(id);
|
80
|
+
},
|
81
|
+
},
|
82
|
+
];
|
83
|
+
|
84
|
+
const emptyContentTitle = __("You currently don't have any alternate content sources.");
|
85
|
+
const emptyContentBody = __('An alternate content source can be added by using the "Add source" button above.');
|
86
|
+
const emptySearchTitle = __('No matching alternate content sources found');
|
87
|
+
const emptySearchBody = __('Try changing your search settings.');
|
88
|
+
/* eslint-disable react/no-array-index-key */
|
89
|
+
return (
|
90
|
+
<TableWrapper
|
91
|
+
{...{
|
92
|
+
metadata,
|
93
|
+
emptyContentTitle,
|
94
|
+
emptyContentBody,
|
95
|
+
emptySearchTitle,
|
96
|
+
emptySearchBody,
|
97
|
+
searchQuery,
|
98
|
+
updateSearchQuery,
|
99
|
+
error,
|
100
|
+
status,
|
101
|
+
fetchItems,
|
102
|
+
}}
|
103
|
+
ouiaId="alternate-content-sources-table"
|
104
|
+
variant={TableVariant.compact}
|
105
|
+
additionalListeners={[activeSortColumn, activeSortDirection]}
|
106
|
+
autocompleteEndpoint="/alternate_content_sources/auto_complete_search"
|
107
|
+
actionButtons={
|
108
|
+
<>
|
109
|
+
<Button ouiaId="create-acs" onClick={createButtonOnclick} variant="primary" aria-label="create_acs">
|
110
|
+
{__('Add source')}
|
111
|
+
</Button>
|
112
|
+
{isCreateWizardOpen &&
|
113
|
+
<ACSCreateWizard
|
114
|
+
show={isCreateWizardOpen}
|
115
|
+
setIsOpen={setIsCreateWizardOpen}
|
116
|
+
/>
|
117
|
+
}
|
118
|
+
</>
|
119
|
+
}
|
120
|
+
>
|
121
|
+
<Thead>
|
122
|
+
<Tr>
|
123
|
+
{columnHeaders.map(col => (
|
124
|
+
<Th
|
125
|
+
key={col}
|
126
|
+
sort={COLUMNS_TO_SORT_PARAMS[col] ? pfSortParams(col) : undefined}
|
127
|
+
>
|
128
|
+
{col}
|
129
|
+
</Th>
|
130
|
+
))}
|
131
|
+
</Tr>
|
132
|
+
</Thead>
|
133
|
+
<Tbody>
|
134
|
+
{results?.map((acs, index) => {
|
135
|
+
const {
|
136
|
+
name,
|
137
|
+
alternate_content_source_type: acsType,
|
138
|
+
last_refresh: lastTask,
|
139
|
+
} = acs;
|
140
|
+
const { last_refresh_words: lastRefreshWords, started_at: startedAt } = lastTask ?? {};
|
141
|
+
return (
|
142
|
+
<Tr key={index}>
|
143
|
+
<Td>{name}</Td>
|
144
|
+
<Td>{acsType}</Td>
|
145
|
+
<Td><LastSync startedAt={startedAt} lastSync={lastTask} lastSyncWords={lastRefreshWords} emptyMessage="N/A" /></Td>
|
146
|
+
<Td
|
147
|
+
actions={{
|
148
|
+
items: rowDropdownItems(acs),
|
149
|
+
}}
|
150
|
+
/>
|
151
|
+
</Tr>
|
152
|
+
);
|
153
|
+
})
|
154
|
+
}
|
155
|
+
</Tbody>
|
156
|
+
</TableWrapper>
|
157
|
+
);
|
158
|
+
/* eslint-enable react/no-array-index-key */
|
159
|
+
};
|
160
|
+
|
161
|
+
export default ACSTable;
|
162
|
+
|
@@ -0,0 +1,91 @@
|
|
1
|
+
{
|
2
|
+
"total": 3,
|
3
|
+
"subtotal": 3,
|
4
|
+
"selectable": 3,
|
5
|
+
"page": "1",
|
6
|
+
"per_page": "20",
|
7
|
+
"error": null,
|
8
|
+
"search": null,
|
9
|
+
"sort": {
|
10
|
+
"by": "name",
|
11
|
+
"order": "asc"
|
12
|
+
},
|
13
|
+
"results": [
|
14
|
+
{
|
15
|
+
"name": "test_acs_file_1",
|
16
|
+
"base_url": "https://fixtures.pulpproject.org/",
|
17
|
+
"subpaths": [
|
18
|
+
"file/"
|
19
|
+
],
|
20
|
+
"content_type": "file",
|
21
|
+
"alternate_content_source_type": "custom",
|
22
|
+
"smart_proxies": [
|
23
|
+
{
|
24
|
+
"id": 1,
|
25
|
+
"name": "centos7-katello-devel-stable.example.com",
|
26
|
+
"url": "https://centos7-katello-devel-stable.example.com:9090",
|
27
|
+
"created_at": "2022-05-02T10:17:57.044-04:00",
|
28
|
+
"updated_at": "2022-05-02T10:24:21.666-04:00",
|
29
|
+
"pubkey": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3bzUlVINCZqDFEcBmWI3d3rytod1XtlGNrTp4JXeLVmT74/gbpeUkM221RZxfNDrU6BPHxwbuzeAF3/DU4nT6w9WkRSemeNxzLSZPqNiJuqjDwIkI2KTmTkyOF+jYObC+0ir7pCD7IdCVdf2RxJIJjPB8GnLYAzBjPRwtUFuDZfzpBGf4iTlmMd8oSfSnUOSrdI30ag2DkvoqGII+z+QVIGRj/bKL55DW4C/5ykH5B7kpZSFfRcmYzA6f1bNHuWuOkopkT3CcpotEb7kx3qeh16skJsgPABYBTm41klUPIFJS609dF8jJwbF+ZhNkIv96OYT/7nZR+Kcf/S2qBbXP foreman-proxy@centos7-katello-devel-stable.example.com",
|
30
|
+
"expired_logs": "0",
|
31
|
+
"puppet_path": null,
|
32
|
+
"download_policy": "on_demand"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"upstream_username": null,
|
36
|
+
"id": 3,
|
37
|
+
"label": "test_acs_file_1",
|
38
|
+
"description": null
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"name": "test_acs_file_2",
|
42
|
+
"base_url": "https://fixtures.pulpproject.org/",
|
43
|
+
"subpaths": [
|
44
|
+
"file/"
|
45
|
+
],
|
46
|
+
"content_type": "file",
|
47
|
+
"alternate_content_source_type": "custom",
|
48
|
+
"smart_proxies": [
|
49
|
+
{
|
50
|
+
"id": 1,
|
51
|
+
"name": "centos7-katello-devel-stable.example.com",
|
52
|
+
"url": "https://centos7-katello-devel-stable.example.com:9090",
|
53
|
+
"created_at": "2022-05-02T10:17:57.044-04:00",
|
54
|
+
"updated_at": "2022-05-02T10:24:21.666-04:00",
|
55
|
+
"pubkey": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3bzUlVINCZqDFEcBmWI3d3rytod1XtlGNrTp4JXeLVmT74/gbpeUkM221RZxfNDrU6BPHxwbuzeAF3/DU4nT6w9WkRSemeNxzLSZPqNiJuqjDwIkI2KTmTkyOF+jYObC+0ir7pCD7IdCVdf2RxJIJjPB8GnLYAzBjPRwtUFuDZfzpBGf4iTlmMd8oSfSnUOSrdI30ag2DkvoqGII+z+QVIGRj/bKL55DW4C/5ykH5B7kpZSFfRcmYzA6f1bNHuWuOkopkT3CcpotEb7kx3qeh16skJsgPABYBTm41klUPIFJS609dF8jJwbF+ZhNkIv96OYT/7nZR+Kcf/S2qBbXP foreman-proxy@centos7-katello-devel-stable.example.com",
|
56
|
+
"expired_logs": "0",
|
57
|
+
"puppet_path": null,
|
58
|
+
"download_policy": "on_demand"
|
59
|
+
}
|
60
|
+
],
|
61
|
+
"upstream_username": null,
|
62
|
+
"id": 1,
|
63
|
+
"label": "test_acs_file_2",
|
64
|
+
"description": null
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"name": "test_acs_yum_1",
|
68
|
+
"base_url": "https://fixtures.pulpproject.org/",
|
69
|
+
"subpaths": ["file/", "package/"],
|
70
|
+
"content_type": "yum",
|
71
|
+
"alternate_content_source_type": "custom",
|
72
|
+
"smart_proxies": [
|
73
|
+
{
|
74
|
+
"id": 1,
|
75
|
+
"name": "centos7-katello-devel-stable.example.com",
|
76
|
+
"url": "https://centos7-katello-devel-stable.example.com:9090",
|
77
|
+
"created_at": "2022-05-02T10:17:57.044-04:00",
|
78
|
+
"updated_at": "2022-05-02T10:24:21.666-04:00",
|
79
|
+
"pubkey": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3bzUlVINCZqDFEcBmWI3d3rytod1XtlGNrTp4JXeLVmT74/gbpeUkM221RZxfNDrU6BPHxwbuzeAF3/DU4nT6w9WkRSemeNxzLSZPqNiJuqjDwIkI2KTmTkyOF+jYObC+0ir7pCD7IdCVdf2RxJIJjPB8GnLYAzBjPRwtUFuDZfzpBGf4iTlmMd8oSfSnUOSrdI30ag2DkvoqGII+z+QVIGRj/bKL55DW4C/5ykH5B7kpZSFfRcmYzA6f1bNHuWuOkopkT3CcpotEb7kx3qeh16skJsgPABYBTm41klUPIFJS609dF8jJwbF+ZhNkIv96OYT/7nZR+Kcf/S2qBbXP foreman-proxy@centos7-katello-devel-stable.example.com",
|
80
|
+
"expired_logs": "0",
|
81
|
+
"puppet_path": null,
|
82
|
+
"download_policy": "on_demand"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"upstream_username": null,
|
86
|
+
"id": 4,
|
87
|
+
"label": "test_acs_yum_1",
|
88
|
+
"description": null
|
89
|
+
}
|
90
|
+
]
|
91
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { renderWithRedux, patientlyWaitFor } from 'react-testing-lib-wrapper';
|
3
|
+
|
4
|
+
import nock, { nockInstance, assertNockRequest, mockAutocomplete, mockSetting } from '../../../../test-utils/nockWrapper';
|
5
|
+
import api from '../../../../services/api';
|
6
|
+
import ACSTable from '../ACSTable';
|
7
|
+
import acsData from './acsIndex.fixtures.json';
|
8
|
+
|
9
|
+
const acsURL = api.getApiUrl('/alternate_content_sources');
|
10
|
+
const autocompleteUrl = '/alternate_content_sources/auto_complete_search';
|
11
|
+
|
12
|
+
let firstAcs;
|
13
|
+
let searchDelayScope;
|
14
|
+
let autoSearchScope;
|
15
|
+
|
16
|
+
beforeEach(() => {
|
17
|
+
const { results } = acsData;
|
18
|
+
[firstAcs] = results;
|
19
|
+
searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', 0);
|
20
|
+
autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing');
|
21
|
+
});
|
22
|
+
|
23
|
+
afterEach(() => {
|
24
|
+
nock.cleanAll();
|
25
|
+
assertNockRequest(searchDelayScope);
|
26
|
+
assertNockRequest(autoSearchScope);
|
27
|
+
});
|
28
|
+
|
29
|
+
test('Can call API and show ACS on page load', async (done) => {
|
30
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
31
|
+
const scope = nockInstance
|
32
|
+
.get(acsURL)
|
33
|
+
.query(true)
|
34
|
+
.reply(200, acsData);
|
35
|
+
|
36
|
+
const { getByText, queryByText } = renderWithRedux(<ACSTable />);
|
37
|
+
|
38
|
+
// Nothing will show at first, page is loading
|
39
|
+
expect(queryByText(firstAcs.name)).toBeNull();
|
40
|
+
// Assert that the ACS name is now showing on the screen, but wait for it to appear.
|
41
|
+
await patientlyWaitFor(() => expect(getByText(firstAcs.name)).toBeInTheDocument());
|
42
|
+
assertNockRequest(autocompleteScope);
|
43
|
+
assertNockRequest(scope, done);
|
44
|
+
});
|
45
|
+
|
46
|
+
test('Can handle no ACS being present', async (done) => {
|
47
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
48
|
+
|
49
|
+
const noResults = {
|
50
|
+
total: 0,
|
51
|
+
subtotal: 0,
|
52
|
+
page: 1,
|
53
|
+
per_page: 20,
|
54
|
+
results: [],
|
55
|
+
};
|
56
|
+
const scope = nockInstance
|
57
|
+
.get(acsURL)
|
58
|
+
.query(true)
|
59
|
+
.reply(200, noResults);
|
60
|
+
|
61
|
+
const { queryByText } = renderWithRedux(<ACSTable />);
|
62
|
+
|
63
|
+
expect(queryByText(firstAcs.name)).toBeNull();
|
64
|
+
await patientlyWaitFor(() => expect(queryByText("You currently don't have any alternate content sources.")).toBeInTheDocument());
|
65
|
+
assertNockRequest(autocompleteScope);
|
66
|
+
assertNockRequest(scope, done);
|
67
|
+
});
|
@@ -42,6 +42,7 @@ const ContentRepositories = ({ contentType, id, tabKey }) => {
|
|
42
42
|
emptySearchBody,
|
43
43
|
emptyContentBody,
|
44
44
|
}}
|
45
|
+
ouiaId="content-repositories-table"
|
45
46
|
variant={TableVariant.compact}
|
46
47
|
autocompleteEndpoint="/repositories/auto_complete_search"
|
47
48
|
fetchItems={useCallback(
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import {
|
2
|
+
selectAPIStatus,
|
2
3
|
selectAPIResponse,
|
3
4
|
} from 'foremanReact/redux/API/APISelectors';
|
5
|
+
import { STATUS } from 'foremanReact/constants';
|
4
6
|
|
5
7
|
import { GET_CONTENT_CREDENTIALS_KEY } from './ContentCredentialConstants';
|
6
8
|
|
@@ -9,4 +11,5 @@ export const selectContentCredentials = (state) => {
|
|
9
11
|
return response.results;
|
10
12
|
};
|
11
13
|
|
12
|
-
export
|
14
|
+
export const selectContentCredentialsStatus = state =>
|
15
|
+
selectAPIStatus(state, GET_CONTENT_CREDENTIALS_KEY) || STATUS.PENDING;
|
@@ -54,12 +54,16 @@ export const copyContentView = params => post({
|
|
54
54
|
errorToast: error => cvErrorToast(error),
|
55
55
|
});
|
56
56
|
|
57
|
-
export const publishContentView = params => post({
|
57
|
+
export const publishContentView = (params, handleSuccess, handleError) => post({
|
58
58
|
type: API_OPERATIONS.POST,
|
59
59
|
key: cvVersionPublishKey(params.id, params.versionCount),
|
60
60
|
url: api.getApiUrl(`/content_views/${params.id}/publish`),
|
61
61
|
params,
|
62
|
-
handleSuccess: response =>
|
62
|
+
handleSuccess: (response) => {
|
63
|
+
if (handleSuccess) handleSuccess(response);
|
64
|
+
return renderTaskStartedToast(response.data);
|
65
|
+
},
|
66
|
+
handleError,
|
63
67
|
errorToast: error => cvErrorToast(error),
|
64
68
|
});
|
65
69
|
|