GUI acceptance tests using environment deployed from packages.

Build: #449 failed

Job: Onezone basic failed

user sees that if space is displayed in provider submenu in go to your files panel that provider is also displayed in submenu of that space in data space management panel[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user sees that if space is displayed in provider submenu in go to your files panel that provider is also displayed in submenu of that space in data space management panel[1oz 1op deployed]" in build 449 of Onedata Products - gui acceptance pkg - Chrome onezone basic tests.
Description
user sees that if space is displayed in provider submenu in go to your files panel that provider is also displayed in submenu of that space in data space management panel[1oz 1op deployed]
Test class
gui.scenarios.test_onezone_basic
Method
test_user_sees_that_if_space_is_displayed_in_provider_submenu_in_go_to_your_files_panel_that_provider_is_also_displayed_in_submenu_of_that_space_in_data_space_management_panel[1oz_1op_deployed]
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

test setup failure
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COBTT/onedata/tests/gui/environments/1oz_1op_deployed.yaml'
hosts = {}
request = <SubRequest 'env_desc' for <Function 'test_user_opens_provider_popup_by_clicking_on_supporting_provider_in_spaces_submenu[1oz_1op_deployed]'>>
users = {}

    @fixture(scope='session')
    def env_desc(env_description_abs_path, hosts, request, users):
        from tests.conftest import env_desc
>       return env_desc(env_description_abs_path, hosts, request, users)

tests/gui/conftest.py:388: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:255: in env_desc
    users, env_description_abs_path)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

scenario_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COBTT/onedata/tests/gui/environments/1oz_1op_deployed.yaml'
request = <SubRequest 'env_desc' for <Function 'test_user_opens_provider_popup_by_clicking_on_supporting_provider_in_spaces_submenu[1oz_1op_deployed]'>>
hosts = {}, patch_path = '', users = {}
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-GAPT-COBTT/onedata/tests/gui/environments/1oz_1op_deployed.yaml'

    def start_environment(scenario_path, request, hosts, patch_path,
                          users, env_description_abs_path):
        init_helm()
        clean = False if request.config.getoption('--no-clean') else True
    
        if clean:
            up_args = parse_up_args(request, scenario_path)
            output, ret = run_onenv_command('up', up_args)
            if ret != 0:
                handle_env_init_error(request, env_description_abs_path, 'up',
                                      output)
    
            wait_args = parse_wait_args(request)
            run_onenv_command('wait', wait_args)
    
        status_output, _ = run_onenv_command('status')
        status_output = yaml.load(status_output.decode('utf-8'))
    
>       env_ready = status_output.get('ready')
E       AttributeError: 'NoneType' object has no attribute 'get'

tests/conftest.py:362: AttributeError