Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neofs-testcases
Submodule neofs-testcases updated 72 files
+16 −0 .github/workflows/run-tests.yml
+1 −3 neofs-testlib/neofs_testlib/cli/neofs_adm/fschain.py
+1 −2 neofs-testlib/neofs_testlib/cli/neofs_cli/acl.py
+0 −10 neofs-testlib/neofs_testlib/cli/neofs_cli/container.py
+6 −44 neofs-testlib/neofs_testlib/cli/neofs_cli/object.py
+1 −0 neofs-testlib/neofs_testlib/cli/neogo/nep11.py
+52 −22 neofs-testlib/neofs_testlib/env/env.py
+10 −0 neofs-testlib/neofs_testlib/env/templates/ir.yaml
+9 −9 neofs-testlib/neofs_testlib/env/templates/neofs_env_config.yaml
+0 −1 neofs-testlib/neofs_testlib/env/templates/network.yaml
+6 −0 neofs-testlib/neofs_testlib/env/templates/rest.yaml
+5 −0 neofs-testlib/neofs_testlib/env/templates/sn.yaml
+78 −61 neofs-testlib/neofs_testlib/protobuf/generated/container/service_pb2.py
+24 −20 neofs-testlib/neofs_testlib/protobuf/generated/netmap/types_pb2.py
+14 −14 neofs-testlib/neofs_testlib/protobuf/generated/object/types_pb2.py
+31 −19 neofs-testlib/neofs_testlib/protobuf/generated/session/types_pb2.py
+10 −10 neofs-testlib/neofs_testlib/protobuf/generated/status/types_pb2.py
+0 −12 neofs-testlib/neofs_testlib_tests/pytest/s3_bearer_rules.json
+0 −1 neofs-testlib/neofs_testlib_tests/pytest/test_env.py
+1 −2 neofs-testlib/neofs_testlib_tests/unit/test_cli.py
+0 −12 pytest_tests/data/s3_bearer_rules.json
+0 −2 pytest_tests/lib/helpers/acl.py
+0 −5 pytest_tests/lib/helpers/container.py
+0 −26 pytest_tests/lib/helpers/container_access.py
+2 −4 pytest_tests/lib/helpers/eacl_object_filters.py
+38 −0 pytest_tests/lib/helpers/file_helper.py
+6 −0 pytest_tests/lib/helpers/grpc_responses.py
+0 −3 pytest_tests/lib/helpers/json_transformers.py
+42 −22 pytest_tests/lib/helpers/neofs_verbs.py
+0 −31 pytest_tests/lib/helpers/object_access.py
+26 −1 pytest_tests/lib/helpers/quota.py
+117 −5 pytest_tests/lib/helpers/rest_gate.py
+56 −1 pytest_tests/lib/helpers/session_token.py
+13 −5 pytest_tests/lib/neofs_env/neofs_epoch.py
+132 −17 pytest_tests/lib/rest_gw/rest_utils.py
+4 −0 pytest_tests/lib/s3/s3_object.py
+0 −20 pytest_tests/tests/acl/test_acl.py
+0 −23 pytest_tests/tests/acl/test_bearer.py
+2 −36 pytest_tests/tests/acl/test_eacl.py
+0 −1 pytest_tests/tests/cli/test_neofs_cli.py
+3 −0 pytest_tests/tests/conftest.py
+10 −44 pytest_tests/tests/container/test_container.py
+174 −180 pytest_tests/tests/container/test_container_locks.py
+1 −14 pytest_tests/tests/container/test_ec_container.py
+62 −10 pytest_tests/tests/container/test_initial_placement.py
+0 −2 pytest_tests/tests/failovers/test_failover_network.py
+29 −51 pytest_tests/tests/failovers/test_failover_part.py
+208 −1 pytest_tests/tests/failovers/test_failover_storage.py
+15 −52 pytest_tests/tests/metrics/test_sn_metrics.py
+0 −2 pytest_tests/tests/network/test_config_changes.py
+2 −16 pytest_tests/tests/network/test_deployment.py
+0 −174 pytest_tests/tests/network/test_homomorphic_hash.py
+0 −1 pytest_tests/tests/network/test_ir_controls.py
+22 −168 pytest_tests/tests/object/test_object_api.py
+34 −59 pytest_tests/tests/object/test_object_lock.py
+0 −58 pytest_tests/tests/object/test_object_put_grpc.py
+333 −0 pytest_tests/tests/object/test_object_ranged_get.py
+77 −11 pytest_tests/tests/object/test_object_searchv2.py
+15 −3 pytest_tests/tests/payment/test_container_payments.py
+8 −20 pytest_tests/tests/quota/test_container_quota.py
+8 −20 pytest_tests/tests/quota/test_ec_container_quota.py
+8 −20 pytest_tests/tests/quota/test_user_quota.py
+0 −100 pytest_tests/tests/s3/test_s3_disabled_homo_hash.py
+51 −0 pytest_tests/tests/s3/test_s3_multipart.py
+611 −0 pytest_tests/tests/services/rest_gate/test_rest_bearerv2.py
+0 −1 pytest_tests/tests/services/rest_gate/test_rest_options.py
+0 −1 pytest_tests/tests/services/rest_gate/test_rest_searchv2.py
+50 −41 pytest_tests/tests/services/rest_gate/test_rest_session_token.py
+62 −8 pytest_tests/tests/session_token/test_session_token_v2.py
+1 −2 pytest_tests/tests/session_token/test_static_object_session_token.py
+6 −13 pytest_tests/tests/session_token/test_static_session_token_container.py
+3 −3 requirements.txt
Loading