Commit c7f06cc
authored
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
150 | 150 | | |
151 | 151 | | |
152 | 152 | | |
153 | | - | |
154 | | - | |
| 153 | + | |
| 154 | + | |
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
| |||
Submodule neofs-testcases updated 96 files
- .github/workflows/system-tests.yml+19-6
- .gitignore-1
- README.md+17
- neofs-testlib/neofs_testlib/cli/cli_command.py+6-2
- neofs-testlib/neofs_testlib/cli/neofs_adm/fschain.py+16
- neofs-testlib/neofs_testlib/cli/neofs_cli/accounting.py+2
- neofs-testlib/neofs_testlib/cli/neofs_cli/acl.py+7-1
- neofs-testlib/neofs_testlib/cli/neofs_cli/bearer.py+2
- neofs-testlib/neofs_testlib/cli/neofs_cli/container.py+16
- neofs-testlib/neofs_testlib/cli/neofs_cli/control.py+20-4
- neofs-testlib/neofs_testlib/cli/neofs_cli/netmap.py+8
- neofs-testlib/neofs_testlib/cli/neofs_cli/object.py+18
- neofs-testlib/neofs_testlib/cli/neofs_cli/session.py+2
- neofs-testlib/neofs_testlib/cli/neofs_cli/shards.py+12
- neofs-testlib/neofs_testlib/cli/neofs_cli/storagegroup.py+8
- neofs-testlib/neofs_testlib/cli/neofs_cli/util.py+4
- neofs-testlib/neofs_testlib/env/env.py+323-196
- neofs-testlib/neofs_testlib/env/templates/ir.yaml+3-4
- neofs-testlib/neofs_testlib/env/templates/neofs_env_config.yaml+2-2
- neofs-testlib/neofs_testlib/env/templates/network.yaml+8
- neofs-testlib/neofs_testlib/env/templates/rest.yaml+1
- neofs-testlib/neofs_testlib/env/templates/s3.yaml-3
- neofs-testlib/neofs_testlib/env/templates/sn.yaml+3-18
- neofs-testlib/neofs_testlib/env/templates/sn_post_0_45_2.yaml+67
- neofs-testlib/neofs_testlib_tests/pytest/test_env.py+5-5
- neofs-testlib/neofs_testlib_tests/unit/test_cli.py+40-10
- pytest_tests/lib/helpers/cli_helpers.py+6-2
- pytest_tests/lib/helpers/common.py+2
- pytest_tests/lib/helpers/complex_object_actions.py+1-2
- pytest_tests/lib/helpers/grpc_responses.py+1
- pytest_tests/lib/helpers/json_transformers.py+2-1
- pytest_tests/lib/helpers/neofs_verbs.py+2-3
- pytest_tests/lib/helpers/node_management.py+1-1
- pytest_tests/lib/helpers/rest_gate.py+80-1
- pytest_tests/lib/helpers/session_token.py+1
- pytest_tests/lib/neofs_env/neofs_env_test_base.py+8-10
- pytest_tests/lib/neofs_env/neofs_epoch.py+1-1
- pytest_tests/lib/rest_gw/rest_base.py+11
- pytest_tests/lib/rest_gw/rest_utils.py+40-4
- pytest_tests/lib/s3/s3_base.py+23-10
- pytest_tests/lib/s3/s3_bucket.py-9
- pytest_tests/lib/s3/s3_object.py-4
- pytest_tests/tests/acl/test_acl.py+2-2
- pytest_tests/tests/acl/test_bearer.py+2-2
- pytest_tests/tests/acl/test_eacl.py+2-2
- pytest_tests/tests/acl/test_eacl_filters.py+29-27
- pytest_tests/tests/acl/test_storagegroup.py+33-40
- pytest_tests/tests/conftest.py+48-87
- pytest_tests/tests/container/test_container.py+25-11
- pytest_tests/tests/contract/test_contract.py+7-7
- pytest_tests/tests/failovers/test_failover_network.py+4-4
- pytest_tests/tests/failovers/test_failover_storage.py+105-8
- pytest_tests/tests/load/test_load.py+2-2
- pytest_tests/tests/metrics/test_metrics.py+2-2
- pytest_tests/tests/metrics/test_sn_metrics.py+104-8
- pytest_tests/tests/network/test_config_changes.py+3-3
- pytest_tests/tests/network/test_deployment.py+5-7
- pytest_tests/tests/network/test_homomorphic_hash.py+13-11
- pytest_tests/tests/network/test_ir_change.py+1-1
- pytest_tests/tests/network/test_ir_controls.py+9-9
- pytest_tests/tests/network/test_node_management.py+16-16
- pytest_tests/tests/object/test_object_api.py+47-46
- pytest_tests/tests/object/test_object_api_bearer.py+28-27
- pytest_tests/tests/object/test_object_lifetime.py+6-7
- pytest_tests/tests/object/test_object_lock.py+38-27
- pytest_tests/tests/object/test_object_searchv2.py+418-60
- pytest_tests/tests/payment/test_balance.py+2-2
- pytest_tests/tests/payment/test_container_payments.py+26-29
- pytest_tests/tests/s3/s3_extensions/test_s3_gate_policy.py+6-6
- pytest_tests/tests/s3/test_s3.py+42-21
- pytest_tests/tests/s3/test_s3_ACL.py+4-4
- pytest_tests/tests/s3/test_s3_bucket.py+5-5
- pytest_tests/tests/s3/test_s3_locking.py+131-124
- pytest_tests/tests/s3/test_s3_nexus.py+1-1
- pytest_tests/tests/s3/test_s3_object.py+124-64
- pytest_tests/tests/s3/test_s3_presigned.py+2-2
- pytest_tests/tests/s3/test_s3_tagging.py+8-3
- pytest_tests/tests/s3/test_s3_versioning.py+8-3
- pytest_tests/tests/s3/test_s3_warp.py+1-1
- pytest_tests/tests/services/rest_gate/conftest.py+2-2
- pytest_tests/tests/services/rest_gate/test_rest_bearer.py+6-9
- pytest_tests/tests/services/rest_gate/test_rest_containers.py+17-43
- pytest_tests/tests/services/rest_gate/test_rest_gate.py+184-28
- pytest_tests/tests/services/rest_gate/test_rest_gate_new.py+35-29
- pytest_tests/tests/services/rest_gate/test_rest_headers.py+8-9
- pytest_tests/tests/services/rest_gate/test_rest_object.py+5-6
- pytest_tests/tests/services/rest_gate/test_rest_object_new.py+5-6
- pytest_tests/tests/services/rest_gate/test_rest_options.py+4-4
- pytest_tests/tests/services/rest_gate/test_rest_streaming.py+4-5
- pytest_tests/tests/services/rest_gate/test_rest_system_header.py+18-19
- pytest_tests/tests/session_token/test_object_session_token.py+7-8
- pytest_tests/tests/session_token/test_static_object_session_token.py+22-17
- pytest_tests/tests/session_token/test_static_session_token_container.py+14-11
- pytest_tests/tests/shard/test_control_shard.py+13-3
- pytest_tests/tests/system/test_sighup.py+5-1
- requirements.txt+2-2
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
0 commit comments