Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #3237 was successful

Job: Spaces basic was successful

user fails to create file in the archives root directory[1oz 1op 1oc-oneclient1]: Test case result

The below summarizes the result of the test " user fails to create file in the archives root directory[1oz 1op 1oc-oneclient1]" in build 3,237 of Onedata Products - mixed acceptance pkg - Spaces basic.
Description
user fails to create file in the archives root directory[1oz 1op 1oc-oneclient1]
Test class
mixed.scenarios.test_spaces_basic
Method
test_user_fails_to_create_file_in_the_archives_root_directory[1oz_1op_1oc-oneclient1]
Jira Issue
Duration
15 secs
Status
Failed (Existing Failure)

Error Log

Exception: File created in archives root dir, but creation should have failed
fixturefunc = <function try_to_create_file_in_special_dir at 0x7f19844165c0>
request = <FixtureRequest for <Function test_user_fails_to_create_file_in_the_archives_root_directory[1oz_1op_1oc-oneclient1]>>
kwargs = {'client': 'oneclient1', 'file_name': 'some_name.txt', 'host': 'oneprovider-1', 'hosts': {'oneclient-1': {'container-i...3eb5a', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.218.126', 'name': 'dev-onezone', ...}}, ...}

    def call_fixture_func(
        fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
    ) -> FixtureValue:
        if is_generator(fixturefunc):
            fixturefunc = cast(
                Callable[..., Generator[FixtureValue, None, None]], fixturefunc
            )
            generator = fixturefunc(**kwargs)
            try:
                fixture_result = next(generator)
            except StopIteration:
                raise ValueError(f"{request.fixturename} did not yield a value") from None
            finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
            request.addfinalizer(finalizer)
        else:
            fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
>           fixture_result = fixturefunc(**kwargs)

/usr/local/lib/python3.12/dist-packages/_pytest/fixtures.py:913: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/mixed/steps/rest/onezone/special_dirs.py:167: in try_to_create_file_in_special_dir
    try_to_create_file_in_special_dir_by_id(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

client = 'oneclient1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f1983f36210>, 'admin2': <tests.utils.user_utils.User object a...s.user_utils.AdminUser object at 0x7f1983c5e810>, 'user1': <tests.utils.user_utils.User object at 0x7f1983c5f3b0>, ...}
user = 'user1'
hosts = {'oneclient-1': {'container-id': '33d9dc38682267227fd738ae210a74803a8f8cccaafac62df10e700611519cd0', 'ip': '10.244.218...8dc6fe3eb5a', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '10.244.218.126', 'name': 'dev-onezone', ...}}
host = 'oneprovider-1'
dir_id = '0000000000601D86677569642361726368697665735F726F6F745F3938613739653965656632633933316532383564636337366633613661373136636865383562233938613739653965656632633933316532383564636337366633613661373136636865383562'
file_name = 'some_name.txt'
err_msg = 'File created in archives root dir, but creation should have failed'

    def try_to_create_file_in_special_dir_by_id(client, users, user, hosts, host,
                                                dir_id, file_name, err_msg=''):
        if client.lower() == 'rest':
            try:
                create_empty_file_in_dir_rest(
                    users, user, hosts, host, dir_id,
                    file_name)
                raise Exception(err_msg)
            except (ApiException, HTTPBadRequest) as e:
                ex_err_msg = 'Operation failed with POSIX error: eperm.'
                assert ex_err_msg in str(e), f'Unexpected error occurred {e}'
        elif 'oneclient' in client.lower():
            try:
                oneclient_host = change_client_name_to_hostname(client.lower())
                create_file_in_dir_by_id(user, oneclient_host, users, dir_id, file_name)
>               raise Exception(err_msg)
E               Exception: File created in archives root dir, but creation should have failed

tests/mixed/steps/rest/onezone/special_dirs.py:188: Exception