oneclient acceptance tests using environment deployed from packages

Build: #3365 was successful

Job: regular file CRUD proxyio symlinks was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

replace[singleprovider singleclient proxyio]: Test case result

The below summarizes the result of the test " replace[singleprovider singleclient proxyio]" in build 3,365 of Onedata Products - oneclient acceptance pkg - regular file CRUD proxyio symlinks.
Description
replace[singleprovider singleclient proxyio]
Test class
oneclient.scenarios.test_reg_file_CRUD
Method
test_replace[singleprovider_singleclient_proxyio]
Jira Issue
Duration
16 secs
Status
Failed (Existing Failure)

Error Log

AssertionError
fixturefunc = <function replace at 0x7f8a4c0aaac0>
request = <FixtureRequest for <Function test_replace[singleprovider_singleclient_proxyio]>>
kwargs = {'file': 'space1/file1', 'text1': 'TEST', 'text2': 'SYSTEM', 'user': 'user1', ...}

    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/oneclient/steps/reg_file_steps.py:52: in replace
    multi_reg_file_steps.replace(user, text1, text2, file, "client1", users)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/oneclient/steps/multi_reg_file_steps.py:207: in replace
    assert_(client.perform, condition, timeout=0)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expression = <bound method Client.perform of <tests.utils.client_utils.Client object at 0x7f8a4bd1b560>>
args = (<function replace.<locals>.condition at 0x7f8a4bd037e0>,)
kwargs = {'timeout': 0}, assert_result = False

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

tests/utils/utils.py:42: AssertionError