Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #683 failed

Job: Onepanel was successful

support space[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " support space[1oz 1op 1oc-RESt-web GUi-RESt]" in build 683 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
support space[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_support_space[1oz_1op_1oc-REST-web GUI-REST]
Jira Issue
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

TypeError: __init__() got an unexpected keyword argument 'mount_in_root'
client1 = 'REST', client2 = 'web GUI', client3 = 'REST'
request = <FixtureRequest for <Function 'test_support_space[1oz_1op_1oc-REST-web GUI-REST]'>>

    from tests.gui.steps.oneprovider.file_browser import *
>   from tests.gui.steps.oneprovider.metadata import *

tests/mixed/scenarios/test_onepanel_basic.py:41: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:195: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/scenario.py:137: in _execute_step_function
    step_func(**kwargs)
tests/mixed/steps/onepanel_basic.py:341: in support_space_in_op_panel
    tmp_memory, config)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'onepanel', provider_host = 'oneprovider-1'
hosts = {'oneclient-1': {'container-id': '213ad43a165f5d4ca7a98a981f94f8896c3d17a341dd5fd053a85e6558eff704', 'ip': '172.17.0.5...d70594e4a2fac0', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.11', 'name': 'dev-onezone', ...}}
users = {'admin': <tests.utils.user_utils.AdminUser instance at 0x7fede3e545f0>, 'onepanel': <tests.utils.user_utils.AdminUser instance at 0x7fede3e54e60>, 'user1': <tests.utils.user_utils.User instance at 0x7fede00430e0>}
tmp_memory = defaultdict(<type 'dict'>, {'browsers': {'shares': {}, 'mailbox': {'token': 'M...ailbox': {}, 'window': {'modal': None}, 'spaces': {}, 'oz': {}, 'groups': {}}})
config = 'storage: posix
size: 1000000'

    def support_space_in_op_panel_using_rest(user, provider_host, hosts, users,
                                             tmp_memory, config):
        user_client = login_to_panel(user, users[user].password,
                                     hosts[provider_host]['hostname'])
    
        provider_api = OneproviderApi(user_client)
    
        options = yaml.load(config)
    
        storage_import_options = options.get('storage import', None)
        if storage_import_options:
            strategy = '_'.join(storage_import_options['strategy'].lower().
                                split())
            max_depth = storage_import_options.get('max depth', None)
            storage_import = StorageImportDetails(strategy, max_depth)
        else:
            storage_import = None
    
        storages = provider_api.get_storages().ids
        for storage_id in storages:
            storage = provider_api.get_storage_details(storage_id)
            if storage.name == options['storage']:
                space_support_rq = SpaceSupportRequest(
                    token=tmp_memory[user]['mailbox']['token'],
                    size=options['size'],
                    storage_id=storage_id,
                    storage_import=storage_import,
>                   mount_in_root=options.get('mount in root', False))
E               TypeError: __init__() got an unexpected keyword argument 'mount_in_root'

tests/mixed/steps/rest/onepanel/spaces.py:73: TypeError