oneclient acceptance tests using environment deployed from packages

Build: #3365 was successful

Job: regular file stat directio symlinks was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

stat change time mv[singleprovider singleclient directio]: Test case result

The below summarizes the result of the test " stat change time mv[singleprovider singleclient directio]" in build 3,365 of Onedata Products - oneclient acceptance pkg - regular file stat directio symlinks.
Description
stat change time mv[singleprovider singleclient directio]
Test class
oneclient.scenarios.test_reg_file_stat
Method
test_stat_change_time_mv[singleprovider_singleclient_directio]
Jira Issue
Duration
36 secs
Status
Failed (Existing Failure)

Error Log

AssertionError
fixturefunc = <function check_time at 0x7fb763233ce0>
request = <FixtureRequest for <Function test_stat_change_time_mv[singleprovider_singleclient_directio]>>
kwargs = {'comparator': 'greater', 'file': 'space1/file2', 'time1': 'status-change', 'time2': 'modification', ...}

    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/file_steps.py:140: in check_time
    multi_file_steps.check_time(user, time1, time2, comparator, file, "client1", users)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/oneclient/steps/multi_file_steps.py:492: in check_time
    assert_(client.perform, condition)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expression = <bound method Client.perform of <tests.utils.client_utils.Client object at 0x7fb762b85130>>
args = (<function check_time.<locals>.condition at 0x7fb762aded40>,)
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