Acceptance tests using different clients concurrently. Environment deployed from packages.
Build: #662 failed
Job: Access tokens was successful
users create files using web gui an clients and they see that ownership is correctly mapped[1oz 1op luma oneclient-oneclient1-oneclient2-web GUi]: Test case result
The below summarizes the result of the test " users create files using web gui an clients and they see that ownership is correctly mapped[1oz 1op luma oneclient-oneclient1-oneclient2-web GUi]" in build 662 of Onedata Products - mixed acceptance pkg - Chrome LUMA tests.
- Description
- users create files using web gui an clients and they see that ownership is correctly mapped[1oz 1op luma oneclient-oneclient1-oneclient2-web GUi]
- Test class
- mixed.scenarios.test_luma
- Method
- test_users_create_files_using_web_gui_an_clients_and_they_see_that_ownership_is_correctly_mapped[1oz_1op_luma_oneclient-oneclient1-oneclient2-web GUI]
- Jira Issue
-
- Duration
- 12 mins
- Status
- Failed (Existing Failure)
Error Log
CalledProcessError: Command '['docker', 'exec', '61e6eb15310ccb9a0519d8ff83591aaf497005cbea5de6fb5f114a073b236c85', 'su', '-c', 'ps -u user1 | grep "rpyc_classic.py" | grep -v "grep" | awk \'{print $1}\'', 'user1']' returned non-zero exit status 1 client1 = 'oneclient1', client2 = 'oneclient2', client3 = 'web GUI' request = <FixtureRequest for <Function 'test_users_create_files_using_web_gui_an_clients_and_they_see_that_ownership_is_correctly_mapped[1oz_1op_luma_oneclient-oneclient1-oneclient2-web GUI]'>> from tests.gui.steps.modal import * > from tests.gui.steps.oneprovider_common import * tests/mixed/scenarios/test_luma.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) /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/oneclient/steps/multi_auth_steps.py:24: in multi_mount list_parser(tokens), hosts, request, users, env_desc) tests/utils/client_utils.py:187: in mount_users client.start_rpyc(username, i + RPYC_DEFAULT_PORT) tests/utils/client_utils.py:91: in start_rpyc self._start_rpyc_server(user, port) tests/utils/client_utils.py:118: in _start_rpyc_server pid = run_cmd(user_name, self.docker_id, get_pid_cmd, output=True) tests/utils/docker_utils.py:39: in run_cmd detach=detach) bamboos/docker/environment/docker.py:138: in exec_ return subprocess.check_output(cmd, stdin=stdin, stderr=stderr).decode( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ popenargs = (['docker', 'exec', '61e6eb15310ccb9a0519d8ff83591aaf497005cbea5de6fb5f114a073b236c85', 'su', '-c', 'ps -u user1 | grep "rpyc_classic.py" | grep -v "grep" | awk \'{print $1}\'', ...],) kwargs = {'stderr': None, 'stdin': None} process = <subprocess.Popen object at 0x7f6588341fd0>, output = '' unused_err = None, retcode = 1 cmd = ['docker', 'exec', '61e6eb15310ccb9a0519d8ff83591aaf497005cbea5de6fb5f114a073b236c85', 'su', '-c', 'ps -u user1 | grep "rpyc_classic.py" | grep -v "grep" | awk \'{print $1}\'', ...] def check_output(*popenargs, **kwargs): r"""Run command with arguments and return its output as a byte string. If the exit code was non-zero it raises a CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute and output in the output attribute. The arguments are the same as for the Popen constructor. Example: >>> check_output(["ls", "-l", "/dev/null"]) 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' The stdout argument is not allowed as it is used internally. To capture standard error in the result, use stderr=STDOUT. >>> check_output(["/bin/sh", "-c", ... "ls -l non_existent_file ; exit 0"], ... stderr=STDOUT) 'ls: non_existent_file: No such file or directory\n' """ if 'stdout' in kwargs: raise ValueError('stdout argument not allowed, it will be overridden.') process = Popen(stdout=PIPE, *popenargs, **kwargs) output, unused_err = process.communicate() retcode = process.poll() if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd, output=output) E CalledProcessError: Command '['docker', 'exec', '61e6eb15310ccb9a0519d8ff83591aaf497005cbea5de6fb5f114a073b236c85', 'su', '-c', 'ps -u user1 | grep "rpyc_classic.py" | grep -v "grep" | awk \'{print $1}\'', 'user1']' returned non-zero exit status 1 /usr/lib/python2.7/subprocess.py:574: CalledProcessError