GUI acceptance tests using environment deployed from packages.

Build: #513 failed

Job: POSIX multiuser failed

user2 creates directory and fails to create another directory because of change in parent directory permission[1oz 1op deployed]: Test case result

The below summarizes the result of the test " user2 creates directory and fails to create another directory because of change in parent directory permission[1oz 1op deployed]" in build 513 of Onedata Products - gui acceptance pkg - Chrome POSIX tests multiuser.
Description
user2 creates directory and fails to create another directory because of change in parent directory permission[1oz 1op deployed]
Test class
gui.scenarios.test_oneprovider_posix_multiuser
Method
test_user2_creates_directory_and_fails_to_create_another_directory_because_of_change_in_parent_directory_permission[1oz_1op_deployed]
Duration
16 secs
Status
Failed (Existing Failure)

Error Log

HTTPNotFound: [404] Not Found: {"error_description":"The space could not be found.","error":"space_not_found"}
request = <FixtureRequest for <Function 'test_user2_creates_directory_and_fails_to_create_another_directory_because_of_change_in_parent_directory_permission[1oz_1op_deployed]'>>

>   ???

tests/gui/scenarios/test_oneprovider_posix_multiuser.py:57: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/steps.py:165: in step_func
    result = get_fixture_value(request, func.__name__)
/usr/local/lib/python2.7/dist-packages/pytest_bdd/utils.py:36: in get_fixture_value
    return getfixturevalue(name)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:441: in getfixturevalue
    return self._get_active_fixturedef(argname).cached_result[0]
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:466: in _get_active_fixturedef
    result = self._getfixturevalue(fixturedef)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:531: in _getfixturevalue
    val = fixturedef.execute(request=subrequest)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:787: in execute
    return ihook.pytest_fixture_setup(fixturedef=self, request=request)
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:745: in __call__
    return self._hookexec(self, self._nonwrappers + self._wrappers, kwargs)
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:339: in _hookexec
    return self._inner_hookexec(hook, methods, kwargs)
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:334: in <lambda>
    _MultiCall(methods, kwargs, hook.spec_opts).execute()
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:613: in execute
    return _wrapped_call(hook_impl.function(*args), self.execute)
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:254: in _wrapped_call
    return call_outcome.get_result()
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:280: in get_result
    _reraise(*ex)  # noqa
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:265: in __init__
    self.result = func()
/usr/local/lib/python2.7/dist-packages/_pytest/vendored_packages/pluggy.py:614: in execute
    res = hook_impl.function(*args)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:817: in pytest_fixture_setup
    result = call_fixture_func(fixturefunc, request, kwargs)
/usr/local/lib/python2.7/dist-packages/_pytest/fixtures.py:722: in call_fixture_func
    res = fixturefunc(**kwargs)
tests/gui/steps/rest/env_up/spaces.py:135: in create_and_configure_spaces
    users, groups, storages, spaces)
tests/gui/steps/rest/env_up/spaces.py:156: in _create_and_configure_spaces
    storages_db, hosts, description.get('providers', {}))
tests/gui/steps/rest/env_up/spaces.py:270: in _get_support
    wait_for_space_support(space_id, owner_credentials, provider_hostname)
<decorator-gen-12>:2: in wait_for_space_support
    ???
tests/utils/utils.py:71: in wrapper
    return fun(*args, **kwargs)
tests/gui/steps/rest/env_up/spaces.py:278: in wait_for_space_support
    headers={'X-Auth-Token': owner_credentials.token})
tests/utils/rest_utils.py:45: in http_get
    verify, cert, auth, default_headers=default_headers)
tests/utils/rest_utils.py:85: in http_request
    raise_http_exception(response)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

response = <Response [404]>

    def raise_http_exception(response):
        ex_cls = _exceptions.get(response.status_code, HTTPError)
>       raise ex_cls(response)
E       HTTPNotFound: [404] Not Found: {"error_description":"The space could not be found.","error":"space_not_found"}

tests/utils/http_exceptions.py:15: HTTPNotFound