oneclient acceptance tests using environment deployed from packages

Build: #3362 failed

Job: regular file stat proxyio symlinks was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

type empty[singleprovider singleclient proxyio]: Test case result

The below summarizes the result of the test " type empty[singleprovider singleclient proxyio]" in build 3,362 of Onedata Products - oneclient acceptance pkg - regular file stat proxyio symlinks.
Description
type empty[singleprovider singleclient proxyio]
Test class
oneclient.scenarios.test_reg_file_stat
Method
test_type_empty[singleprovider_singleclient_proxyio]
Jira Issue
Duration
3 mins
Status
Failed (Existing Failure)

Error Log

AssertionError
fixturefunc = <function shell_check_type at 0x7f2dd0b2b100>
request = <FixtureRequest for <Function test_type_empty[singleprovider_singleclient_proxyio]>>
kwargs = {'file': 'space1/file1', 'file_type': 'regular empty file', 'user': 'user1', 'users': {'admin': <tests.utils.user_util...ests.utils.user_utils.User object at 0x7f2dd0f34bf0>, 'user1': <tests.utils.user_utils.User object at 0x7f2dd0c3f170>}}

    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:109: in shell_check_type
    multi_file_steps.shell_check_type(user, file, file_type, "client1", users)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/oneclient/steps/multi_file_steps.py:410: in shell_check_type
    assert_(client.perform, condition)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

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