Build: #9 failed
Job: Multiprovider multiuser failed
user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]: Test case result
The below summarizes the result of the test " user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]" in build 9 of Onedata Products - gui acceptance pkg - feature-VFS-12098-test-couchbase-upgrade-to-6.x-from-4.1 - Multiprovider multiuser.
- Description
- user uploads file on one provider sees its distribution downloads on other provider and again sees its distribution[1oz 2op deployed]
- Test class
- gui.scenarios.test_multiprovider_multiuser
- Method
- test_user_uploads_file_on_one_provider_sees_its_distribution_downloads_on_other_provider_and_again_sees_its_distribution[1oz_2op_deployed]
- Duration
- 9 mins
- Status
- Failed (Existing Failure)
Error Log
RuntimeError: file 20B-0.txt has not been downloaded fixturefunc = <function has_downloaded_file_content at 0x7f2f50979300> request = <FixtureRequest for <Function test_user_uploads_file_on_one_provider_sees_its_distribution_downloads_on_other_provider_and_again_sees_its_distribution[1oz_2op_deployed]>> kwargs = {'browser_id': 'browser1', 'content': '00000000000000000000', 'file_name': '20B-0.txt', 'tmpdir': local('/tmp/pytest-of-bamboo/pytest-0/test_user_uploads_file_on_one_1')} 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) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ browser_id = 'browser1', file_name = '20B-0.txt' content = '00000000000000000000' tmpdir = local('/tmp/pytest-of-bamboo/pytest-0/test_user_uploads_file_on_one_1') @wt( parsers.parse( "user of {browser_id} sees that content of downloaded " 'file "{file_name}" is equal to: "{content}"' ) ) @repeat_failed(timeout=WAIT_BACKEND) def has_downloaded_file_content(browser_id, file_name, content, tmpdir): downloaded_file = tmpdir.join(browser_id, "download", file_name) if downloaded_file.isfile(): with downloaded_file.open() as f: file_content = "".join(f.readlines()) file_content = file_content.strip() assert ( content == file_content ), f"expected {content} as {file_name} content, instead got {file_content}" else: > raise RuntimeError(f"file {file_name} has not been downloaded") E RuntimeError: file 20B-0.txt has not been downloaded tests/gui/steps/oneprovider/data_tab.py:667: RuntimeError