├── .devenv.hosting.yaml ├── .flake8 ├── .github ├── CODEOWNERS └── workflows │ └── dco.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── pyproject.toml ├── pytest_tests ├── __init__.py ├── helpers │ ├── __init__.py │ ├── acl.py │ ├── aws_cli_client.py │ ├── binary_version.py │ ├── cli_helpers.py │ ├── cluster.py │ ├── complex_object_actions.py │ ├── container.py │ ├── container_access.py │ ├── env_properties.py │ ├── epoch.py │ ├── failover_utils.py │ ├── file_helper.py │ ├── frostfs_verbs.py │ ├── http_gate.py │ ├── iptables_helper.py │ ├── k6.py │ ├── node_management.py │ ├── object_access.py │ ├── payment_neogo.py │ ├── remote_process.py │ ├── s3_helper.py │ ├── storage_group.py │ ├── storage_object_info.py │ ├── storage_policy.py │ ├── test_control.py │ ├── tombstone.py │ ├── utility.py │ └── wallet.py ├── pytest.ini ├── requirements.txt ├── resources │ ├── common.py │ ├── files │ │ ├── policy.json │ │ └── s3_bearer_rules.json │ └── load_params.py ├── steps │ ├── __init__.py │ ├── cluster_test_base.py │ ├── load.py │ ├── s3_gate_base.py │ ├── s3_gate_bucket.py │ ├── s3_gate_object.py │ ├── session_token.py │ └── storage_object.py └── testsuites │ ├── __init__.py │ ├── acl │ ├── conftest.py │ ├── storage_group │ │ └── test_storagegroup.py │ ├── test_acl.py │ ├── test_bearer.py │ ├── test_eacl.py │ └── test_eacl_filters.py │ ├── conftest.py │ ├── container │ └── test_container.py │ ├── failovers │ ├── __init__.py │ ├── test_failover_network.py │ └── test_failover_storage.py │ ├── load │ └── test_load.py │ ├── network │ └── test_node_management.py │ ├── object │ ├── test_object_api.py │ ├── test_object_api_bearer.py │ ├── test_object_lifetime.py │ └── test_object_lock.py │ ├── payment │ └── test_balance.py │ ├── services │ ├── http_gate │ │ ├── test_http_bearer.py │ │ ├── test_http_gate.py │ │ ├── test_http_headers.py │ │ ├── test_http_object.py │ │ ├── test_http_streaming.py │ │ └── test_http_system_header.py │ ├── s3_gate │ │ ├── test_s3_ACL.py │ │ ├── test_s3_bucket.py │ │ ├── test_s3_gate.py │ │ ├── test_s3_locking.py │ │ ├── test_s3_multipart.py │ │ ├── test_s3_object.py │ │ ├── test_s3_policy.py │ │ ├── test_s3_tagging.py │ │ └── test_s3_versioning.py │ └── test_binaries.py │ ├── session_token │ ├── conftest.py │ ├── test_object_session_token.py │ ├── test_static_object_session_token.py │ └── test_static_session_token_container.py │ └── shard │ └── test_control_shard.py ├── requirements.txt ├── requirements_dev.txt ├── venv └── local-pytest │ └── environment.sh └── venv_template.mk /.devenv.hosting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.devenv.hosting.yaml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.github/workflows/dco.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tests/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tests/helpers/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/acl.py -------------------------------------------------------------------------------- /pytest_tests/helpers/aws_cli_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/aws_cli_client.py -------------------------------------------------------------------------------- /pytest_tests/helpers/binary_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/binary_version.py -------------------------------------------------------------------------------- /pytest_tests/helpers/cli_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/cli_helpers.py -------------------------------------------------------------------------------- /pytest_tests/helpers/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/cluster.py -------------------------------------------------------------------------------- /pytest_tests/helpers/complex_object_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/complex_object_actions.py -------------------------------------------------------------------------------- /pytest_tests/helpers/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/container.py -------------------------------------------------------------------------------- /pytest_tests/helpers/container_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/container_access.py -------------------------------------------------------------------------------- /pytest_tests/helpers/env_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/env_properties.py -------------------------------------------------------------------------------- /pytest_tests/helpers/epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/epoch.py -------------------------------------------------------------------------------- /pytest_tests/helpers/failover_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/failover_utils.py -------------------------------------------------------------------------------- /pytest_tests/helpers/file_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/file_helper.py -------------------------------------------------------------------------------- /pytest_tests/helpers/frostfs_verbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/frostfs_verbs.py -------------------------------------------------------------------------------- /pytest_tests/helpers/http_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/http_gate.py -------------------------------------------------------------------------------- /pytest_tests/helpers/iptables_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/iptables_helper.py -------------------------------------------------------------------------------- /pytest_tests/helpers/k6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/k6.py -------------------------------------------------------------------------------- /pytest_tests/helpers/node_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/node_management.py -------------------------------------------------------------------------------- /pytest_tests/helpers/object_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/object_access.py -------------------------------------------------------------------------------- /pytest_tests/helpers/payment_neogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/payment_neogo.py -------------------------------------------------------------------------------- /pytest_tests/helpers/remote_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/remote_process.py -------------------------------------------------------------------------------- /pytest_tests/helpers/s3_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/s3_helper.py -------------------------------------------------------------------------------- /pytest_tests/helpers/storage_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/storage_group.py -------------------------------------------------------------------------------- /pytest_tests/helpers/storage_object_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/storage_object_info.py -------------------------------------------------------------------------------- /pytest_tests/helpers/storage_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/storage_policy.py -------------------------------------------------------------------------------- /pytest_tests/helpers/test_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/test_control.py -------------------------------------------------------------------------------- /pytest_tests/helpers/tombstone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/tombstone.py -------------------------------------------------------------------------------- /pytest_tests/helpers/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/utility.py -------------------------------------------------------------------------------- /pytest_tests/helpers/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/helpers/wallet.py -------------------------------------------------------------------------------- /pytest_tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/pytest.ini -------------------------------------------------------------------------------- /pytest_tests/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../requirements.txt 2 | -------------------------------------------------------------------------------- /pytest_tests/resources/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/resources/common.py -------------------------------------------------------------------------------- /pytest_tests/resources/files/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/resources/files/policy.json -------------------------------------------------------------------------------- /pytest_tests/resources/files/s3_bearer_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/resources/files/s3_bearer_rules.json -------------------------------------------------------------------------------- /pytest_tests/resources/load_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/resources/load_params.py -------------------------------------------------------------------------------- /pytest_tests/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tests/steps/cluster_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/cluster_test_base.py -------------------------------------------------------------------------------- /pytest_tests/steps/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/load.py -------------------------------------------------------------------------------- /pytest_tests/steps/s3_gate_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/s3_gate_base.py -------------------------------------------------------------------------------- /pytest_tests/steps/s3_gate_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/s3_gate_bucket.py -------------------------------------------------------------------------------- /pytest_tests/steps/s3_gate_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/s3_gate_object.py -------------------------------------------------------------------------------- /pytest_tests/steps/session_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/session_token.py -------------------------------------------------------------------------------- /pytest_tests/steps/storage_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/steps/storage_object.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/conftest.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/storage_group/test_storagegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/storage_group/test_storagegroup.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/test_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/test_acl.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/test_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/test_bearer.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/test_eacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/test_eacl.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/acl/test_eacl_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/acl/test_eacl_filters.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/conftest.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/container/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/container/test_container.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/failovers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_tests/testsuites/failovers/test_failover_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/failovers/test_failover_network.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/failovers/test_failover_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/failovers/test_failover_storage.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/load/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/load/test_load.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/network/test_node_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/network/test_node_management.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/object/test_object_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/object/test_object_api.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/object/test_object_api_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/object/test_object_api_bearer.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/object/test_object_lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/object/test_object_lifetime.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/object/test_object_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/object/test_object_lock.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/payment/test_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/payment/test_balance.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_bearer.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_gate.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_headers.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_object.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_streaming.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/http_gate/test_http_system_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/http_gate/test_http_system_header.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_ACL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_ACL.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_bucket.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_gate.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_locking.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_multipart.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_object.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_policy.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_tagging.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/s3_gate/test_s3_versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/s3_gate/test_s3_versioning.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/services/test_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/services/test_binaries.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/session_token/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/session_token/conftest.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/session_token/test_object_session_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/session_token/test_object_session_token.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/session_token/test_static_object_session_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/session_token/test_static_object_session_token.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/session_token/test_static_session_token_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/session_token/test_static_session_token_container.py -------------------------------------------------------------------------------- /pytest_tests/testsuites/shard/test_control_shard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/pytest_tests/testsuites/shard/test_control_shard.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | pre-commit==2.20.0 2 | isort==5.12.0 -------------------------------------------------------------------------------- /venv/local-pytest/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/venv/local-pytest/environment.sh -------------------------------------------------------------------------------- /venv_template.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrueCloudLab/frostfs-testcases/HEAD/venv_template.mk --------------------------------------------------------------------------------