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

Build: #649 failed

Job: Onepanel failed

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

The below summarizes the result of the test " revoke space support[1oz 1op 1oc-RESt-web GUi-RESt]" in build 649 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
revoke space support[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_revoke_space_support[1oz_1op_1oc-REST-web GUI-REST]
Jira Issue
Duration
24 secs
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_revoke_space_support[1oz_1op_1oc-REST-web GUI-REST]'>>

>   ???

tests/mixed/scenarios/test_onepanel_basic.py:45: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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': '506b2412f3e35c58f3f2746685cc5dd6882fbe70f52a3f8faba6aef221c9cd6c', 'ip': '172.17.0.6...80a5f5f05e1f598', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.9', 'name': 'dev-onezone', ...}}
users = {'admin': <tests.utils.user_utils.AdminUser instance at 0x7fbf3075f7a0>, 'onepanel': <tests.utils.user_utils.AdminUser instance at 0x7fbf3073a488>, 'user1': <tests.utils.user_utils.User instance at 0x7fbf38c4a440>}
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