Acceptance tests using different clients concurrently. Environment deployed from packages.
Build: #666 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 666 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
- 37 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': '27a680ba81dde56e128645ca3f8a35b8a3110e9e0c213aa7aa9a7df7a4d0e376', 'ip': '172.17.0.5...f33c9da4471330', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.11', 'name': 'dev-onezone', ...}} users = {'admin': <tests.utils.user_utils.AdminUser instance at 0x7f44881737e8>, 'onepanel': <tests.utils.user_utils.AdminUser instance at 0x7f448979d248>, 'user1': <tests.utils.user_utils.User instance at 0x7f4488155ab8>} 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