oneclient acceptance tests using environment deployed from packages

Build: #3360 failed

Job: multiprovider proxy regular file stat proxyio hardlinks was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

change access[multiprovider proxy]: Test case result

The below summarizes the result of the test " change access[multiprovider proxy]" in build 3,360 of Onedata Products - oneclient acceptance pkg - multiprovider proxy regular file stat proxyio hardlinks.
Description
change access[multiprovider proxy]
Test class
oneclient.scenarios.test_multi_reg_file_stat
Method
test_change_access[multiprovider_proxy]
Jira Issue
Duration
1 min
Status
Failed (New Failure)

Error Log

AssertionError
fixturefunc = <function check_mode at 0x7f27f9b7c680>
request = <FixtureRequest for <Function test_change_access[multiprovider_proxy]>>
kwargs = {'client_node': 'client21', 'file': 'space1/file1', 'mode': '211', 'user': 'user2', ...}

    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)
/usr/local/lib/python3.12/dist-packages/decorator.py:232: in fun
    return caller(func, *(extras + args), **kw)
tests/utils/utils.py:93: in wrapper
    return fun(*args, **kwargs)
tests/oneclient/steps/multi_file_steps.py:430: in check_mode
    assert_(client.perform, condition)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expression = <bound method Client.perform of <tests.utils.client_utils.Client object at 0x7f27f95f4590>>
args = (<function check_mode.<locals>.condition at 0x7f27f99a2520>,)
kwargs = {}, assert_result = False

    def assert_(expression, *args, **kwargs):
        assert_result = expression(*args, **kwargs)
>       assert assert_result
E       AssertionError

tests/utils/utils.py:42: AssertionError