oneclient acceptance tests using environment deployed from packages

Build: #3362 failed

Job: multiprovider s3 regular file stat proxyio symlinks was successful

Stages & jobs

  1. Qnthack - copy quarantine

  2. Acceptance Test

  3. Qnthack - rerun

    Final

type empty[multiprovider s3]: Test case result

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

Error Log

AssertionError
fixturefunc = <function shell_check_type at 0x7f4c8f1ec680>
request = <FixtureRequest for <Function test_type_empty[multiprovider_s3]>>
kwargs = {'client_node': 'client21', 'file': 'space1/file1', 'file_type': 'regular empty file', '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)
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 0x7f4c8f2890a0>>
args = (<function shell_check_type.<locals>.condition at 0x7f4c8ef95800>,)
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