Acceptance tests using different clients concurrently. Environment deployed from packages.
Build: #659 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 659 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
- 34 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': 'ba15c0fb181783ffd4ea8d6c2c1cd681f8e894c3cb8672d87edb0a9fe51d1c92', 'ip': '172.17.0.5...bf22b2eea9b570', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.10', 'name': 'dev-onezone', ...}} users = {'admin': <tests.utils.user_utils.AdminUser instance at 0x7fc5542386c8>, 'onepanel': <tests.utils.user_utils.AdminUser instance at 0x7fc5560a0dd0>, 'user1': <tests.utils.user_utils.User instance at 0x7fc5541fd710>} 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