katello 4.3.0.rc1 → 4.3.0.rc4
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/controllers/katello/api/v2/api_controller.rb +4 -0
- data/app/controllers/katello/api/v2/capsule_content_controller.rb +11 -3
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +1 -1
- data/app/controllers/katello/api/v2/generic_content_units_controller.rb +10 -4
- data/app/controllers/katello/api/v2/host_errata_controller.rb +5 -0
- data/app/controllers/katello/api/v2/host_packages_controller.rb +2 -0
- data/app/controllers/katello/api/v2/host_tracer_controller.rb +4 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +8 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +35 -3
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +2 -2
- data/app/controllers/katello/api/v2/root_controller.rb +10 -19
- data/app/controllers/katello/concerns/api/v2/bulk_extensions.rb +3 -13
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +1 -9
- data/app/controllers/katello/remote_execution_controller.rb +1 -1
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +7 -5
- data/app/lib/actions/katello/repository/destroy.rb +3 -3
- data/app/lib/actions/katello/repository/import_upload.rb +12 -2
- data/app/lib/actions/pulp/repository/sync.rb +0 -2
- data/app/lib/actions/pulp3/abstract_async_task.rb +16 -4
- data/app/lib/actions/pulp3/capsule_content/generate_metadata.rb +5 -4
- data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +25 -0
- data/app/lib/actions/pulp3/orchestration/repository/import_repository_upload.rb +36 -0
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +1 -1
- data/app/lib/actions/pulp3/repository/commit_upload.rb +3 -1
- data/app/lib/actions/pulp3/repository/import_upload.rb +4 -2
- data/app/lib/actions/pulp3/repository/reclaim_space.rb +25 -0
- data/app/lib/actions/pulp3/repository/save_artifact.rb +12 -8
- data/app/lib/katello/resources/cdn.rb +10 -1
- data/app/lib/katello/resources/registry.rb +1 -1
- data/app/models/katello/concerns/host_managed_extensions.rb +7 -4
- data/app/models/katello/concerns/smart_proxy_extensions.rb +21 -9
- data/app/models/katello/content_view_version.rb +1 -6
- data/app/models/katello/glue/pulp/repo.rb +1 -2
- data/app/models/katello/host_tracer.rb +2 -0
- data/app/models/katello/pulp3/repository_reference.rb +7 -0
- data/app/models/katello/repository.rb +2 -30
- data/app/models/katello/root_repository.rb +3 -44
- data/app/models/setting/content.rb +2 -8
- data/app/presenters/katello/host_package_presenter.rb +21 -0
- data/app/services/katello/bulk_items_helper.rb +35 -0
- data/app/services/katello/pulp3/api/core.rb +16 -2
- data/app/services/katello/pulp3/content.rb +4 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +9 -3
- data/app/services/katello/pulp3/repository.rb +9 -4
- data/app/services/katello/pulp3/repository_mirror.rb +1 -1
- data/app/services/katello/repository_type.rb +2 -1
- data/app/services/katello/smart_proxy_helper.rb +10 -1
- data/app/views/foreman/job_templates/change_content_source.erb +42 -0
- data/app/views/foreman/job_templates/install_errata.erb +8 -6
- data/app/views/foreman/job_templates/resolve_traces.erb +4 -5
- data/app/views/foreman/job_templates/resolve_traces_-_katello_ansible_default.erb +3 -5
- data/app/views/foreman/smart_proxies/_content_sync.html.erb +17 -4
- data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +12 -0
- data/app/views/foreman/smart_proxies/show.html.erb +4 -2
- data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +6 -0
- data/app/views/katello/api/v2/{organizations/cdn_configuration.rabl → cdn_configurations/show.json.rabl} +4 -0
- data/app/views/katello/api/v2/content_facet/show.json.rabl +8 -0
- data/app/views/katello/api/v2/content_view_filters/show.json.rabl +0 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
- data/app/views/katello/api/v2/host_packages/base.json.rabl +2 -0
- data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/show.json.rabl +0 -3
- data/config/routes/api/v2.rb +5 -10
- data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +2 -0
- data/db/migrate/20211115215210_drop_ostree_branches.rb +13 -0
- data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +1 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +3 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +21 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/sync-state.service.js +2 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-versions.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +0 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.module.js +0 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +0 -11
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +1 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +14 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +0 -10
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-reclaim-space-modal.controller.js +36 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +16 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +18 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +13 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +3 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +4 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/product-repositories-reclaim-space-modal.controller.js +35 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +0 -9
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +3 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +18 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +7 -8
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/pulp-primary/pulp-primary.controller.js +35 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/pulp-primary/pulp-primary.factory.js +18 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/pulp-primary/pulp-primary.module.js +14 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/pulp-primary/pulp-primary.routes.js +16 -0
- data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
- data/lib/katello/permission_creator.rb +3 -4
- data/lib/katello/plugin.rb +4 -10
- data/lib/katello/repository_types/ostree.rb +3 -1
- data/lib/katello/tasks/reset.rake +2 -2
- data/lib/katello/tasks/upgrades/4.3/fix_url_auth.rake +25 -0
- data/lib/katello/version.rb +1 -1
- data/package.json +1 -0
- data/webpack/components/AddedStatusLabel.js +2 -1
- data/webpack/components/EditableTextInput/EditableTextInput.js +76 -17
- data/webpack/components/EditableTextInput/__tests__/editableTextInput.test.js +82 -0
- data/webpack/components/EditableTextInput/editableTextInput.scss +4 -0
- data/webpack/components/Packages/index.js +63 -0
- data/webpack/components/RoutedTabs/index.js +3 -1
- data/webpack/components/Search/Search.js +7 -1
- data/webpack/components/SelectAllCheckbox/index.js +2 -2
- data/webpack/components/Table/EmptyStateMessage.js +4 -2
- data/webpack/components/Table/MainTable.scss +7 -1
- data/webpack/components/Table/TableHooks.js +10 -19
- data/webpack/components/Table/TableWrapper.js +3 -3
- data/webpack/components/WithOrganization/__snapshots__/withOrganization.test.js.snap +3 -3
- data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +24 -30
- data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +16 -0
- data/webpack/components/extensions/HostDetails/HostErrata/HostErrataConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesActions.js +11 -0
- data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesSelectors.js +16 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +4 -0
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.js +119 -25
- data/webpack/components/extensions/HostDetails/Tabs/HostTracesConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.js +127 -0
- data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.scss +11 -0
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +30 -4
- data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +73 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +2 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsSelectors.js +16 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +347 -0
- data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.scss +7 -0
- data/webpack/components/extensions/HostDetails/Tabs/TracesTab.js +38 -31
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/bookmarks.fixtures.json +12 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/contentOverrides.fixtures.json +227 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +423 -2
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +28 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +91 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +120 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +307 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/resolveErrata.fixtures.json +35 -0
- data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +55 -9
- data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +28 -14
- data/webpack/containers/Application/overrides.scss +31 -9
- data/webpack/global_index.js +11 -4
- data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +0 -2
- data/webpack/scenes/Content/ContentConfig.js +23 -7
- data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +2 -0
- data/webpack/scenes/ContentCredentials/ContentCredentialActions.js +18 -0
- data/webpack/scenes/ContentCredentials/ContentCredentialConstants.js +2 -0
- data/webpack/scenes/ContentCredentials/ContentCredentialSelectors.js +12 -0
- data/webpack/scenes/ContentCredentials/__tests__/contentCredentials.fixtures.js +73 -0
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +8 -12
- data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -1
- data/webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js +1 -1
- data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +3 -3
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +7 -2
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.scss +7 -0
- data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +9 -9
- data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +6 -6
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +39 -37
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +10 -4
- data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReview.js +35 -33
- data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +12 -7
- data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +2 -6
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +13 -14
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +36 -31
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +8 -8
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +108 -41
- data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +3 -2
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +1 -4
- data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -6
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +11 -5
- data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +6 -9
- data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +5 -8
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +40 -43
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +2 -2
- data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +4 -4
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +6 -8
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +6 -1
- data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +1 -1
- data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +16 -22
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +8 -8
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +3 -5
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewErrataByDateDetails.fixtures.json +1 -8
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +5 -9
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvAllRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataDateFilterContent.test.js +1 -9
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +2 -4
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErratumFilterDetails.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailModuleAffectedRepos.fixtures.json +1 -8
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailWithAffectedRepos.fixtures.json +1 -8
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +2 -4
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilterDetails.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvPackageFilterDetail.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +61 -32
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +6 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +5 -8
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +55 -9
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +0 -2
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +48 -29
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +2 -2
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +9 -7
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +5 -2
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +38 -9
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +4 -1
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +59 -53
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +14 -3
- data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +24 -17
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +3 -3
- data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +1 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +4 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +134 -32
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +8 -3
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +1 -4
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +21 -1
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsCounts.fixtures.json +1 -2
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +22 -1
- data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRepositories.fixtures.json +1 -18
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +5 -5
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +2 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +1 -3
- data/webpack/scenes/ContentViews/Details/contentViewInfo.scss +0 -4
- data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +66 -53
- data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +40 -28
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +3 -3
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +14 -14
- data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +6 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +53 -12
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +12 -6
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -6
- data/webpack/scenes/ContentViews/components/ContentViewIcon.js +12 -7
- data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +2 -2
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +26 -27
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +18 -6
- data/webpack/scenes/ContentViews/components/WizardHeader.js +44 -0
- data/webpack/scenes/ContentViews/components/contentViewIcon.scss +13 -2
- data/webpack/scenes/Organizations/OrganizationActions.js +22 -24
- data/webpack/scenes/Organizations/OrganizationConstants.js +1 -3
- data/webpack/scenes/Organizations/OrganizationReducer.js +0 -7
- data/webpack/scenes/Organizations/OrganizationSelectors.js +16 -0
- data/webpack/scenes/Organizations/__tests__/OrganizationActions.test.js +1 -21
- data/webpack/scenes/Organizations/__tests__/OrganizationReducer.test.js +0 -20
- data/webpack/scenes/Organizations/__tests__/organizations.fixtures.js +34 -23
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationForm.js +185 -0
- data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationForm.scss +3 -0
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +112 -146
- data/webpack/scenes/Subscriptions/Manifest/__tests__/CdnConfigurationForm.test.js +114 -0
- data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +121 -31
- data/webpack/scenes/Subscriptions/Manifest/index.js +14 -3
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsActions.test.js.snap +1 -0
- data/webpack/scenes/Tasks/TaskActions.js +4 -3
- data/webpack/scenes/Tasks/__tests__/__snapshots__/TaskActions.test.js.snap +1 -0
- data/webpack/utils/helpers.js +2 -2
- metadata +62 -43
- data/app/controllers/katello/api/v2/ostree_branches_controller.rb +0 -16
- data/app/lib/actions/pulp/repository/presenters/ostree_presenter.rb +0 -91
- data/app/models/katello/ostree_branch.rb +0 -12
- data/app/models/katello/repository_ostree_branch.rb +0 -7
- data/app/services/katello/pulp/ostree_branch.rb +0 -14
- data/app/services/katello/pulp/repository/ostree.rb +0 -48
- data/app/views/katello/api/v2/ostree_branches/compare.json.rabl +0 -10
- data/app/views/katello/api/v2/ostree_branches/index.json.rabl +0 -7
- data/app/views/katello/api/v2/ostree_branches/show.json.rabl +0 -5
- data/app/views/katello/api/v2/root/resource_list.json.rabl +0 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-ostree-branches.html +0 -26
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-ostree.html +0 -27
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch-repositories.controller.js +0 -77
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js +0 -31
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-info.html +0 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-repositories.html +0 -72
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch.html +0 -30
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/ostree-branch.factory.js +0 -27
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/ostree-branches.controller.js +0 -67
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/ostree-branches.module.js +0 -15
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/ostree-branches.routes.js +0 -50
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/views/ostree-branches.html +0 -40
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ostree-branches.html +0 -40
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/ostree-upstream-sync-policy.service.js +0 -26
- data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +0 -12
- data/webpack/scenes/Content/Details/ContentCounts.js +0 -42
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +0 -108
- data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +0 -158
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"total": 3,
|
3
|
+
"subtotal": 3,
|
4
|
+
"page": 1,
|
5
|
+
"per_page": 20,
|
6
|
+
"error": null,
|
7
|
+
"search": null,
|
8
|
+
"results": [
|
9
|
+
{
|
10
|
+
"id": 738,
|
11
|
+
"name": "coreutils",
|
12
|
+
"nvra": "coreutils-8.30-6.el8.x86_64",
|
13
|
+
"upgradable_version": "coreutils-9.0-1.el8.x86_64"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"id": 646,
|
17
|
+
"name": "chrony",
|
18
|
+
"nvra": "chrony-3.3-3.el8.x86_64",
|
19
|
+
"upgradable_version": "chrony-4.0-1.el8.x86_64"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"id": 676,
|
23
|
+
"name": "acl",
|
24
|
+
"nvra": "acl-2.2.53-1.el8.x86_64",
|
25
|
+
"upgradable_version": "acl-2.5.3-1.el8.x86_64"
|
26
|
+
}
|
27
|
+
]
|
28
|
+
}
|
@@ -0,0 +1,91 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { renderWithRedux, patientlyWaitFor } from 'react-testing-lib-wrapper';
|
3
|
+
import { nockInstance, assertNockRequest, mockForemanAutocomplete, mockSetting } from '../../../../../test-utils/nockWrapper';
|
4
|
+
import { foremanApi } from '../../../../../services/api';
|
5
|
+
import { HOST_PACKAGES_KEY } from '../../HostPackages/HostPackagesConstants';
|
6
|
+
import { PackagesTab } from '../PackagesTab';
|
7
|
+
import mockPackagesData from './packages.fixtures.json';
|
8
|
+
|
9
|
+
const contentFacetAttributes = {
|
10
|
+
id: 11,
|
11
|
+
uuid: 'e5761ea3-4117-4ecf-83d0-b694f99b389e',
|
12
|
+
content_view_default: false,
|
13
|
+
lifecycle_environment_library: false,
|
14
|
+
};
|
15
|
+
|
16
|
+
const renderOptions = (facetAttributes = contentFacetAttributes) => ({
|
17
|
+
apiNamespace: HOST_PACKAGES_KEY,
|
18
|
+
initialState: {
|
19
|
+
API: {
|
20
|
+
HOST_DETAILS: {
|
21
|
+
response: {
|
22
|
+
id: 1,
|
23
|
+
content_facet_attributes: { ...facetAttributes },
|
24
|
+
},
|
25
|
+
status: 'RESOLVED',
|
26
|
+
},
|
27
|
+
},
|
28
|
+
},
|
29
|
+
});
|
30
|
+
|
31
|
+
const hostPackages = foremanApi.getApiUrl('/hosts/1/packages?include_latest_upgradable=true&per_page=20&page=1');
|
32
|
+
const autocompleteUrl = '/hosts/1/packages/auto_complete_search';
|
33
|
+
|
34
|
+
let firstPackages;
|
35
|
+
let searchDelayScope;
|
36
|
+
let autoSearchScope;
|
37
|
+
|
38
|
+
beforeEach(() => {
|
39
|
+
const { results } = mockPackagesData;
|
40
|
+
[firstPackages] = results;
|
41
|
+
searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', 500);
|
42
|
+
autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', true);
|
43
|
+
});
|
44
|
+
|
45
|
+
afterEach(() => {
|
46
|
+
assertNockRequest(searchDelayScope);
|
47
|
+
assertNockRequest(autoSearchScope);
|
48
|
+
});
|
49
|
+
|
50
|
+
test('Can call API for packages and show on screen on page load', async (done) => {
|
51
|
+
// Setup autocomplete with mockForemanAutoComplete since we aren't adding /katello
|
52
|
+
const autocompleteScope = mockForemanAutocomplete(nockInstance, autocompleteUrl);
|
53
|
+
|
54
|
+
// return tracedata results when we look for packages
|
55
|
+
const scope = nockInstance
|
56
|
+
.get(hostPackages)
|
57
|
+
.reply(200, mockPackagesData);
|
58
|
+
|
59
|
+
const { getAllByText } = renderWithRedux(<PackagesTab />, renderOptions());
|
60
|
+
|
61
|
+
// Assert that the packages are now showing on the screen, but wait for them to appear.
|
62
|
+
await patientlyWaitFor(() => expect(getAllByText(firstPackages.name)[0]).toBeInTheDocument());
|
63
|
+
// Assert request was made and completed, see helper function
|
64
|
+
assertNockRequest(autocompleteScope);
|
65
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
66
|
+
});
|
67
|
+
|
68
|
+
test('Can handle no packags being present', async (done) => {
|
69
|
+
// Setup autocomplete with mockForemanAutoComplete since we aren't adding /katello
|
70
|
+
const autocompleteScope = mockForemanAutocomplete(nockInstance, autocompleteUrl);
|
71
|
+
|
72
|
+
const noResults = {
|
73
|
+
total: 0,
|
74
|
+
subtotal: 0,
|
75
|
+
page: 1,
|
76
|
+
per_page: 20,
|
77
|
+
results: [],
|
78
|
+
};
|
79
|
+
|
80
|
+
const scope = nockInstance
|
81
|
+
.get(hostPackages)
|
82
|
+
.reply(200, noResults);
|
83
|
+
|
84
|
+
const { queryByText } = renderWithRedux(<PackagesTab />, renderOptions());
|
85
|
+
|
86
|
+
// Assert that there are not any packages showing on the screen.
|
87
|
+
await patientlyWaitFor(() => expect(queryByText('This host does not have any packages.')).toBeInTheDocument());
|
88
|
+
// Assert request was made and completed, see helper function
|
89
|
+
assertNockRequest(autocompleteScope);
|
90
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
91
|
+
});
|
@@ -0,0 +1,120 @@
|
|
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
|
+
"enabled": true,
|
16
|
+
"product": {
|
17
|
+
"id": 301,
|
18
|
+
"name": "ParthaProduct"
|
19
|
+
},
|
20
|
+
"content": {
|
21
|
+
"id": 7587,
|
22
|
+
"name": "empty repo",
|
23
|
+
"label": "Default_Organization_ParthaProduct_empty_repo",
|
24
|
+
"vendor": "Custom",
|
25
|
+
"content_type": "yum",
|
26
|
+
"content_url": "/custom/ParthaProduct/empty_repo",
|
27
|
+
"gpg_url": null
|
28
|
+
},
|
29
|
+
"repositories": [
|
30
|
+
{
|
31
|
+
"id": 3,
|
32
|
+
"name": "empty repo",
|
33
|
+
"arch": "noarch",
|
34
|
+
"releasever": null
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"name": "empty repo",
|
38
|
+
"vendor": "Custom",
|
39
|
+
"label": "Default_Organization_ParthaProduct_empty_repo",
|
40
|
+
"id": "1636469876198",
|
41
|
+
"type": "yum",
|
42
|
+
"gpgUrl": null,
|
43
|
+
"contentUrl": "/custom/ParthaProduct/empty_repo",
|
44
|
+
"override": "default",
|
45
|
+
"overrides": [],
|
46
|
+
"enabled_content_override": null
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"enabled": true,
|
50
|
+
"product": {
|
51
|
+
"id": 301,
|
52
|
+
"name": "ParthaProduct"
|
53
|
+
},
|
54
|
+
"content": {
|
55
|
+
"id": 7586,
|
56
|
+
"name": "partha multi-errata",
|
57
|
+
"label": "Default_Organization_ParthaProduct_partha_multi-errata",
|
58
|
+
"vendor": "Custom",
|
59
|
+
"content_type": "yum",
|
60
|
+
"content_url": "/custom/ParthaProduct/partha_multi-errata",
|
61
|
+
"gpg_url": null
|
62
|
+
},
|
63
|
+
"repositories": [
|
64
|
+
{
|
65
|
+
"id": 2,
|
66
|
+
"name": "partha multi-errata",
|
67
|
+
"arch": "noarch",
|
68
|
+
"releasever": null
|
69
|
+
}
|
70
|
+
],
|
71
|
+
"name": "partha multi-errata",
|
72
|
+
"vendor": "Custom",
|
73
|
+
"label": "Default_Organization_ParthaProduct_partha_multi-errata",
|
74
|
+
"id": "1636469778922",
|
75
|
+
"type": "yum",
|
76
|
+
"gpgUrl": null,
|
77
|
+
"contentUrl": "/custom/ParthaProduct/partha_multi-errata",
|
78
|
+
"override": "0",
|
79
|
+
"overrides": [
|
80
|
+
{
|
81
|
+
"name": "enabled",
|
82
|
+
"value": false
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"enabled_content_override": false
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"enabled": true,
|
89
|
+
"product": {
|
90
|
+
"id": 302,
|
91
|
+
"name": "Pull Provider"
|
92
|
+
},
|
93
|
+
"content": {
|
94
|
+
"id": 7588,
|
95
|
+
"name": "yggdrasil",
|
96
|
+
"label": "Default_Organization_Pull_Provider_yggdrasil",
|
97
|
+
"vendor": "Custom",
|
98
|
+
"content_type": "yum",
|
99
|
+
"content_url": "/custom/Pull_Provider/yggdrasil",
|
100
|
+
"gpg_url": null
|
101
|
+
},
|
102
|
+
"repositories": [],
|
103
|
+
"name": "yggdrasil",
|
104
|
+
"vendor": "Custom",
|
105
|
+
"label": "Default_Organization_Pull_Provider_yggdrasil",
|
106
|
+
"id": "1636471500857",
|
107
|
+
"type": "yum",
|
108
|
+
"gpgUrl": null,
|
109
|
+
"contentUrl": "/custom/Pull_Provider/yggdrasil",
|
110
|
+
"override": "1",
|
111
|
+
"overrides": [
|
112
|
+
{
|
113
|
+
"name": "enabled",
|
114
|
+
"value": true
|
115
|
+
}
|
116
|
+
],
|
117
|
+
"enabled_content_override": true
|
118
|
+
}
|
119
|
+
]
|
120
|
+
}
|
@@ -0,0 +1,307 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { renderWithRedux, patientlyWaitFor, fireEvent } from 'react-testing-lib-wrapper';
|
3
|
+
import { nockInstance, assertNockRequest, mockAutocomplete, mockSetting } from '../../../../../test-utils/nockWrapper';
|
4
|
+
import katelloApi, { foremanApi } from '../../../../../services/api';
|
5
|
+
import { REPOSITORY_SETS_KEY } from '../RepositorySetsTab/RepositorySetsConstants';
|
6
|
+
import RepositorySetsTab from '../RepositorySetsTab/RepositorySetsTab';
|
7
|
+
import mockRepoSetData from './repositorySets.fixtures.json';
|
8
|
+
import mockBookmarkData from './bookmarks.fixtures.json';
|
9
|
+
import mockContentOverride from './contentOverrides.fixtures.json';
|
10
|
+
|
11
|
+
const contentFacetAttributes = {
|
12
|
+
id: 11,
|
13
|
+
uuid: 'e5761ea3-4117-4ecf-83d0-b694f99b389e',
|
14
|
+
content_view_default: false,
|
15
|
+
lifecycle_environment_library: false,
|
16
|
+
};
|
17
|
+
|
18
|
+
const renderOptions = (facetAttributes = contentFacetAttributes) => ({
|
19
|
+
apiNamespace: REPOSITORY_SETS_KEY,
|
20
|
+
initialState: {
|
21
|
+
API: {
|
22
|
+
HOST_DETAILS: {
|
23
|
+
response: {
|
24
|
+
id: 1,
|
25
|
+
content_facet_attributes: { ...facetAttributes },
|
26
|
+
subscription_status: 5, // Simple Content Access
|
27
|
+
},
|
28
|
+
status: 'RESOLVED',
|
29
|
+
},
|
30
|
+
},
|
31
|
+
},
|
32
|
+
});
|
33
|
+
|
34
|
+
const hostRepositorySets = katelloApi.getApiUrl('/repository_sets');
|
35
|
+
const autocompleteUrl = '/repository_sets/auto_complete_search';
|
36
|
+
const repositorySetBookmarks = foremanApi.getApiUrl('/bookmarks?search=controller%3Dkatello_product_contents');
|
37
|
+
const contentOverride = foremanApi.getApiUrl('/hosts/1/subscriptions/content_override');
|
38
|
+
|
39
|
+
const defaultQuery = {
|
40
|
+
content_access_mode_env: true,
|
41
|
+
content_access_mode_all: true,
|
42
|
+
host_id: 1,
|
43
|
+
per_page: 20,
|
44
|
+
page: 1,
|
45
|
+
search: '',
|
46
|
+
};
|
47
|
+
const libraryQuery = {
|
48
|
+
...defaultQuery,
|
49
|
+
content_access_mode_env: false,
|
50
|
+
};
|
51
|
+
|
52
|
+
let firstRepoSet;
|
53
|
+
let searchDelayScope;
|
54
|
+
let autoSearchScope;
|
55
|
+
let bookmarkScope;
|
56
|
+
|
57
|
+
beforeEach(() => {
|
58
|
+
// jest.resetModules();
|
59
|
+
const { results } = mockRepoSetData;
|
60
|
+
[firstRepoSet] = results;
|
61
|
+
bookmarkScope = nockInstance.get(repositorySetBookmarks).reply(200, mockBookmarkData);
|
62
|
+
searchDelayScope = mockSetting(nockInstance, 'autosearch_delay', 500);
|
63
|
+
autoSearchScope = mockSetting(nockInstance, 'autosearch_while_typing', true);
|
64
|
+
});
|
65
|
+
|
66
|
+
afterEach(() => {
|
67
|
+
assertNockRequest(searchDelayScope);
|
68
|
+
assertNockRequest(autoSearchScope);
|
69
|
+
assertNockRequest(bookmarkScope);
|
70
|
+
});
|
71
|
+
|
72
|
+
test('Can call API for repository sets and show basic table', async (done) => {
|
73
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
74
|
+
const scope = nockInstance
|
75
|
+
.get(hostRepositorySets)
|
76
|
+
.query(defaultQuery)
|
77
|
+
.reply(200, mockRepoSetData);
|
78
|
+
|
79
|
+
const { getByText } = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
80
|
+
|
81
|
+
// Assert that the repository sets are now showing on the screen, but wait for them to appear.
|
82
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
83
|
+
assertNockRequest(autocompleteScope);
|
84
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
85
|
+
});
|
86
|
+
|
87
|
+
test('Can handle no repository sets being present', async (done) => {
|
88
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
89
|
+
|
90
|
+
const noResults = {
|
91
|
+
total: 0,
|
92
|
+
subtotal: 0,
|
93
|
+
page: 1,
|
94
|
+
per_page: 20,
|
95
|
+
results: [],
|
96
|
+
};
|
97
|
+
|
98
|
+
const scope = nockInstance
|
99
|
+
.get(hostRepositorySets)
|
100
|
+
.query(defaultQuery)
|
101
|
+
.reply(200, noResults);
|
102
|
+
|
103
|
+
const { queryByText } = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
104
|
+
|
105
|
+
// Assert that there are not any repository sets showing on the screen.
|
106
|
+
await patientlyWaitFor(() => expect(queryByText('No repository sets to show.')).toBeInTheDocument());
|
107
|
+
// Assert request was made and completed, see helper function
|
108
|
+
assertNockRequest(autocompleteScope);
|
109
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
110
|
+
});
|
111
|
+
|
112
|
+
test('Toggle Group shows if it\'s not the default content view or library enviroment', async (done) => {
|
113
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
114
|
+
const scope = nockInstance
|
115
|
+
.get(hostRepositorySets)
|
116
|
+
.query(defaultQuery)
|
117
|
+
.reply(200, mockRepoSetData);
|
118
|
+
|
119
|
+
const {
|
120
|
+
queryByLabelText,
|
121
|
+
getByText,
|
122
|
+
} = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
123
|
+
|
124
|
+
// Assert that the errata are now showing on the screen, but wait for them to appear.
|
125
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
126
|
+
expect(queryByLabelText('Limit to environment')).toBeInTheDocument();
|
127
|
+
assertNockRequest(autocompleteScope);
|
128
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
129
|
+
});
|
130
|
+
|
131
|
+
test('Toggle Group does not show if it\'s the default content view ', async (done) => {
|
132
|
+
const options = renderOptions({
|
133
|
+
...contentFacetAttributes,
|
134
|
+
content_view_default: true,
|
135
|
+
});
|
136
|
+
// Setup autocomplete with mockAutocomplete since we aren't adding /katello
|
137
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
138
|
+
const scope = nockInstance
|
139
|
+
.get(hostRepositorySets)
|
140
|
+
.query(libraryQuery)
|
141
|
+
.reply(200, mockRepoSetData);
|
142
|
+
|
143
|
+
const {
|
144
|
+
queryByLabelText,
|
145
|
+
getByText,
|
146
|
+
} = renderWithRedux(<RepositorySetsTab />, options);
|
147
|
+
|
148
|
+
// Assert that the errata are now showing on the screen, but wait for them to appear.
|
149
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
150
|
+
expect(queryByLabelText('Limit to environment')).not.toBeInTheDocument();
|
151
|
+
assertNockRequest(autocompleteScope);
|
152
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
153
|
+
});
|
154
|
+
|
155
|
+
test('Toggle Group does not show if it\'s the library environment', async (done) => {
|
156
|
+
const options = renderOptions({
|
157
|
+
...contentFacetAttributes,
|
158
|
+
lifecycle_environment_library: true,
|
159
|
+
});
|
160
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
161
|
+
// return errata data results when we look for errata
|
162
|
+
const scope = nockInstance
|
163
|
+
.get(hostRepositorySets)
|
164
|
+
.query(libraryQuery)
|
165
|
+
.reply(200, mockRepoSetData);
|
166
|
+
|
167
|
+
const {
|
168
|
+
queryByLabelText,
|
169
|
+
getByText,
|
170
|
+
} = renderWithRedux(<RepositorySetsTab />, options);
|
171
|
+
|
172
|
+
// Assert that the errata are now showing on the screen, but wait for them to appear.
|
173
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
174
|
+
expect(queryByLabelText('Limit to environment')).not.toBeInTheDocument();
|
175
|
+
assertNockRequest(autocompleteScope);
|
176
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
177
|
+
});
|
178
|
+
|
179
|
+
test('Can toggle with the Toggle Group ', async (done) => {
|
180
|
+
// Setup autocomplete with mockAutocomplete since we aren't adding /katello
|
181
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
182
|
+
// return errata data results when we look for errata
|
183
|
+
const scope = nockInstance
|
184
|
+
.get(hostRepositorySets)
|
185
|
+
.query(defaultQuery)
|
186
|
+
.reply(200, mockRepoSetData);
|
187
|
+
|
188
|
+
const {
|
189
|
+
queryByLabelText,
|
190
|
+
getByText,
|
191
|
+
} = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
192
|
+
|
193
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
194
|
+
expect(queryByLabelText('Limit to environment')).toBeInTheDocument();
|
195
|
+
expect(queryByLabelText('Limit to environment')).toHaveAttribute('aria-pressed', 'true');
|
196
|
+
expect(queryByLabelText('No limit')).toHaveAttribute('aria-pressed', 'false');
|
197
|
+
assertNockRequest(autocompleteScope);
|
198
|
+
assertNockRequest(scope, done); // Pass jest callback to confirm test is done
|
199
|
+
});
|
200
|
+
|
201
|
+
test('Can override to disabled', async (done) => {
|
202
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
203
|
+
const scope = nockInstance
|
204
|
+
.get(hostRepositorySets)
|
205
|
+
.query(defaultQuery)
|
206
|
+
.reply(200, mockRepoSetData);
|
207
|
+
const contentOverrideScope = nockInstance
|
208
|
+
.put(contentOverride)
|
209
|
+
.reply(200, mockContentOverride);
|
210
|
+
|
211
|
+
const { getByText, getAllByText, getAllByLabelText } =
|
212
|
+
renderWithRedux(<RepositorySetsTab />, renderOptions());
|
213
|
+
|
214
|
+
// Assert that the repository sets are now showing on the screen, but wait for them to appear.
|
215
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
216
|
+
expect(getAllByText('Enabled')).toHaveLength(2);
|
217
|
+
expect(getAllByText('Disabled')).toHaveLength(1);
|
218
|
+
// Find the first action menu and click it
|
219
|
+
const actionMenu = getAllByLabelText('Actions')[0].closest('button');
|
220
|
+
fireEvent.click(actionMenu);
|
221
|
+
|
222
|
+
const overrideMenuItem = getByText('Override to disabled');
|
223
|
+
expect(overrideMenuItem).toBeInTheDocument();
|
224
|
+
fireEvent.click(overrideMenuItem);
|
225
|
+
|
226
|
+
await patientlyWaitFor(() => {
|
227
|
+
expect(getAllByText('Enabled')).toHaveLength(1);
|
228
|
+
expect(getAllByText('Disabled')).toHaveLength(2);
|
229
|
+
});
|
230
|
+
|
231
|
+
|
232
|
+
assertNockRequest(autocompleteScope);
|
233
|
+
assertNockRequest(scope);
|
234
|
+
assertNockRequest(contentOverrideScope, done); // Pass jest callback to confirm test is done
|
235
|
+
});
|
236
|
+
|
237
|
+
test('Can override to enabled', async (done) => {
|
238
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
239
|
+
const scope = nockInstance
|
240
|
+
.get(hostRepositorySets)
|
241
|
+
.query(defaultQuery)
|
242
|
+
.reply(200, mockRepoSetData);
|
243
|
+
const contentOverrideScope = nockInstance
|
244
|
+
.put(contentOverride)
|
245
|
+
.reply(200, mockContentOverride);
|
246
|
+
|
247
|
+
const {
|
248
|
+
getByText, queryByText, getAllByText, getAllByLabelText,
|
249
|
+
} = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
250
|
+
|
251
|
+
// Assert that the repository sets are now showing on the screen, but wait for them to appear.
|
252
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
253
|
+
expect(getAllByText('Enabled')).toHaveLength(2);
|
254
|
+
expect(getAllByText('Disabled')).toHaveLength(1);
|
255
|
+
// The second item is overridden to disabled; we're going to override to enabled
|
256
|
+
const actionMenu = getAllByLabelText('Actions')[1].closest('button');
|
257
|
+
fireEvent.click(actionMenu);
|
258
|
+
|
259
|
+
const overrideMenuItem = getByText('Override to enabled');
|
260
|
+
expect(overrideMenuItem).toBeInTheDocument();
|
261
|
+
fireEvent.click(overrideMenuItem);
|
262
|
+
|
263
|
+
await patientlyWaitFor(() => {
|
264
|
+
expect(getAllByText('Enabled')).toHaveLength(3);
|
265
|
+
expect(queryByText('Disabled')).not.toBeInTheDocument();
|
266
|
+
});
|
267
|
+
|
268
|
+
assertNockRequest(autocompleteScope);
|
269
|
+
assertNockRequest(scope);
|
270
|
+
assertNockRequest(contentOverrideScope, done); // Pass jest callback to confirm test is done
|
271
|
+
});
|
272
|
+
|
273
|
+
test('Can reset to default', async (done) => {
|
274
|
+
const autocompleteScope = mockAutocomplete(nockInstance, autocompleteUrl);
|
275
|
+
const scope = nockInstance
|
276
|
+
.get(hostRepositorySets)
|
277
|
+
.query(defaultQuery)
|
278
|
+
.reply(200, mockRepoSetData);
|
279
|
+
const contentOverrideScope = nockInstance
|
280
|
+
.put(contentOverride)
|
281
|
+
.reply(200, mockContentOverride);
|
282
|
+
|
283
|
+
const {
|
284
|
+
getByText, queryByText, getAllByText, getAllByLabelText,
|
285
|
+
} = renderWithRedux(<RepositorySetsTab />, renderOptions());
|
286
|
+
|
287
|
+
// Assert that the repository sets are now showing on the screen, but wait for them to appear.
|
288
|
+
await patientlyWaitFor(() => expect(getByText(firstRepoSet.contentUrl)).toBeInTheDocument());
|
289
|
+
expect(getAllByText('Enabled')).toHaveLength(2);
|
290
|
+
expect(getAllByText('Disabled')).toHaveLength(1);
|
291
|
+
// The second item is overridden to disabled but would normally be enabled; we're going to reset
|
292
|
+
const actionMenu = getAllByLabelText('Actions')[1].closest('button');
|
293
|
+
fireEvent.click(actionMenu);
|
294
|
+
|
295
|
+
const overrideMenuItem = getByText('Reset to default');
|
296
|
+
expect(overrideMenuItem).toBeInTheDocument();
|
297
|
+
fireEvent.click(overrideMenuItem);
|
298
|
+
|
299
|
+
await patientlyWaitFor(() => {
|
300
|
+
expect(getAllByText('Enabled')).toHaveLength(3);
|
301
|
+
expect(queryByText('Disabled')).not.toBeInTheDocument();
|
302
|
+
});
|
303
|
+
|
304
|
+
assertNockRequest(autocompleteScope);
|
305
|
+
assertNockRequest(scope);
|
306
|
+
assertNockRequest(contentOverrideScope, done); // Pass jest callback to confirm test is done
|
307
|
+
});
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"id": 67,
|
3
|
+
"description": "Install errata RHEA-2017:99143",
|
4
|
+
"job_category": "Katello",
|
5
|
+
"targeting_id": 66,
|
6
|
+
"status": 3,
|
7
|
+
"start_at": "2021-10-12 14:58:05 -0400",
|
8
|
+
"status_label": "running",
|
9
|
+
"dynflow_task": {
|
10
|
+
"id": "947e862c-773b-46ec-9735-78428e742356",
|
11
|
+
"state": "planned"
|
12
|
+
},
|
13
|
+
"succeeded": "N/A",
|
14
|
+
"failed": "N/A",
|
15
|
+
"pending": "N/A",
|
16
|
+
"total": 1,
|
17
|
+
"missing": 0,
|
18
|
+
"targeting": {
|
19
|
+
"bookmark_id": null,
|
20
|
+
"search_query": "name ^ (centos7-katello-client.fedora.example.com)",
|
21
|
+
"targeting_type": "static_query",
|
22
|
+
"user_id": 4,
|
23
|
+
"randomized_ordering": null,
|
24
|
+
"hosts": [
|
25
|
+
{
|
26
|
+
"name": "centos7-katello-client.fedora.example.com",
|
27
|
+
"id": 13
|
28
|
+
}
|
29
|
+
]
|
30
|
+
},
|
31
|
+
"task": {
|
32
|
+
"id": "947e862c-773b-46ec-9735-78428e742356",
|
33
|
+
"state": "planned"
|
34
|
+
}
|
35
|
+
}
|