Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
Signed-off-by: refaelm [email protected]
PR Type
Tests, Enhancement
Description
RegistryTests
class to the system tests to support registry scanning.RegistryChecker
class for handling registry operations and validations.Changes walkthrough 📝
4 files
tests.py
Integrate RegistryTests into system tests framework
configurations/system/tests.py
RegistryTests
.RegistryTests
in theall_tests_names
function.RegistryTests
in theget_test
function.registry_tests.py
Add RegistryTests class for registry scanning
configurations/system/tests_cases/registry_tests.py
RegistryTests
class.test_registry_scanning
method for registry scanning.base_registry.py
Introduce BaseRegistry class for registry tests
tests_scripts/registry/base_registry.py
BaseRegistry
class for registry tests.registry_connectors.py
Add RegistryChecker class for registry operations
tests_scripts/registry/registry_connectors.py
RegistryChecker
class for registry operations.1 files
backend_api.py
Implement registry management API endpoints and methods
infrastructure/backend_api.py
7 files
statics.py
Add default registry paths configuration
systest_utils/statics.py
DEFAULT_REGISTRY_PATHS
for registry configurations.check_aws.json
Add AWS registry check configuration
configurations/registry/check_aws.json
check_azure.json
Add Azure registry check configuration
configurations/registry/check_azure.json
check_google.json
Add Google registry check configuration
configurations/registry/check_google.json
check_quay.json
Add Quay registry check configuration
configurations/registry/check_quay.json
create_quay.json
Add Quay registry creation configuration
configurations/registry/create_quay.json
system_test_mapping.json
Update system test mapping with registry scanning
system_test_mapping.json
test_registry_scanning
entry for system test mapping.