[oVirt Jenkins] ovirt-system-tests_basic-suite-master_nightly -
Build # 1407 - Failure!
by jenkins@jenkins.phx.ovirt.org
Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/
Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_night...
Build Number: 1407
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #1407
[Marcin Sobczyk] deploy: Fix wildcard pattern for HE suite
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.test_100_basic_ui_sanity.test_secure_connection_should_fail_without_root_ca[firefox]
Error Message:
failed on setup with "ost_utils.shell.ShellError: Command failed with rc=125. Stdout:
Stderr:
Error: cannot connect to the Podman socket, please verify that Podman REST API service is running: server API version is too old. Client "3.1.0" server "3.0.0""
Stack Trace:
engine_fqdn = 'engine', engine_ip = '192.168.200.2'
selenium_artifacts_dir = '/home/jenkins/workspace/ovirt-system-tests_basic-suite-master_nightly/ovirt-system-tests/exported-artifacts/ui_tests_artifacts/'
@pytest.fixture(scope="session")
def hub_url(engine_fqdn, engine_ip, selenium_artifacts_dir):
env_url = _env_hub_url()
if env_url is not None:
yield env_url
else:
backend = _grid_backend()
if backend == "podman" or backend == "podman-remote":
videos_artifacts_dir = selenium_artifacts_dir
with podman.grid(
engine_fqdn,
engine_ip,
podman_cmd=backend,
> videos_artifacts_dir=videos_artifacts_dir,
) as hub_url:
ost_utils/ost_utils/pytest/fixtures/selenium/__init__.py:75:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:248: in grid
videos_artifacts_dir,
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:195: in _grid
with _pod(hub_port, podman_cmd) as pod_name:
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:70: in _pod
f"{hub_port}:{hub_port}",
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
args = ['podman-remote', 'pod', 'create', '--network=slirp4netns', '-p', '4444:4444']
bytes_output = False, kwargs = {}
process = <subprocess.Popen object at 0x7f7b0e125208>, out = ''
err = 'Error: cannot connect to the Podman socket, please verify that Podman REST API service is running: server API version is too old. Client "3.1.0" server "3.0.0"\n'
def shell(args, bytes_output=False, **kwargs):
process = subprocess.Popen(args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
**kwargs)
out, err = process.communicate()
if not bytes_output:
out = out.decode("utf-8")
err = err.decode("utf-8")
if process.returncode:
> raise ShellError(process.returncode, out, err)
E ost_utils.shell.ShellError: Command failed with rc=125. Stdout:
E
E Stderr:
E Error: cannot connect to the Podman socket, please verify that Podman REST API service is running: server API version is too old. Client "3.1.0" server "3.0.0"
ost_utils/ost_utils/shell.py:49: ShellError