forked from TrueCloudLab/frostfs-testcases
68 lines
2.6 KiB
Python
68 lines
2.6 KiB
Python
import logging
|
|
|
|
import allure
|
|
import pytest
|
|
from frostfs_testlib.resources.wellknown_acl import PUBLIC_ACL
|
|
from frostfs_testlib.steps.cli.container import create_container
|
|
from frostfs_testlib.steps.http.http_gate import upload_via_http_gate_curl, verify_object_hash
|
|
from frostfs_testlib.storage.dataclasses.object_size import ObjectSize
|
|
from frostfs_testlib.testing.cluster_test_base import ClusterTestBase
|
|
from frostfs_testlib.utils.file_utils import generate_file
|
|
|
|
logger = logging.getLogger("NeoLogger")
|
|
|
|
|
|
@pytest.mark.sanity
|
|
@pytest.mark.http_gate
|
|
@pytest.mark.http_put
|
|
@pytest.mark.skip("Skipped due to deprecated PUT via http")
|
|
class Test_http_streaming(ClusterTestBase):
|
|
PLACEMENT_RULE = "REP 2 IN X CBF 1 SELECT 4 FROM * AS X"
|
|
|
|
@pytest.fixture(scope="class", autouse=True)
|
|
@allure.title("[Class/Autouse]: Prepare wallet and deposit")
|
|
def prepare_wallet(self, default_wallet):
|
|
Test_http_streaming.wallet = default_wallet
|
|
|
|
@allure.title("Put via pipe (streaming), Get over HTTP and verify hashes")
|
|
def test_object_can_be_put_get_by_streaming(self, complex_object_size: ObjectSize):
|
|
"""
|
|
Test that object can be put using gRPC interface and get using HTTP.
|
|
|
|
Steps:
|
|
1. Create big object;
|
|
2. Put object using curl with pipe (streaming);
|
|
3. Download object using HTTP gate (https://github.com/TrueCloudLab/frostfs-http-gw#downloading);
|
|
4. Compare hashes between original and downloaded object;
|
|
|
|
Expected result:
|
|
Hashes must be the same.
|
|
"""
|
|
with allure.step("Create public container and verify container creation"):
|
|
cid = create_container(
|
|
self.wallet,
|
|
shell=self.shell,
|
|
endpoint=self.cluster.default_rpc_endpoint,
|
|
rule=self.PLACEMENT_RULE,
|
|
basic_acl=PUBLIC_ACL,
|
|
)
|
|
with allure.step("Allocate big object"):
|
|
# Generate file
|
|
file_path = generate_file(complex_object_size.value)
|
|
|
|
with allure.step(
|
|
"Put objects using curl utility and Get object and verify hashes [ get/$CID/$OID ]"
|
|
):
|
|
oid = upload_via_http_gate_curl(
|
|
cid=cid, filepath=file_path, endpoint=self.cluster.default_http_gate_endpoint
|
|
)
|
|
verify_object_hash(
|
|
oid=oid,
|
|
file_name=file_path,
|
|
wallet=self.wallet,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
nodes=self.cluster.storage_nodes,
|
|
endpoint=self.cluster.default_http_gate_endpoint,
|
|
http_hostname=self.cluster.default_http_hostname[0],
|
|
)
|