[oVirt Jenkins] ovirt-system-tests_basic-suite-master_nightly -
Build # 1235 - 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: 1235
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #1235
[Marcin Sobczyk] package_mgmt: Exclude ppc64le repos
-----------------
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:
Trying to pull docker.io/selenium/hub:3.141.59-20210422...
unable to retrieve auth token: invalid username/password: unauthorized: incorrect username or password
Error: 1 error occurred:
* Error initializing source docker://selenium/hub:3.141.59-20210422: unable to retrieve auth token: invalid username/password: unauthorized: incorrect username or password"
Stack Trace:
engine_fqdn = 'engine', engine_ip = '192.168.200.2'
@pytest.fixture(scope="session")
def hub_url(engine_fqdn, engine_ip):
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":
with podman.grid(engine_fqdn, engine_ip,
> podman_cmd=backend) as hub_url:
ost_utils/ost_utils/pytest/fixtures/selenium/__init__.py:74:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:145: in grid
hub_port, podman_cmd) as url:
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:122: in _grid
with _hub(hub_image, hub_port, pod_name, podman_cmd) as hub_name:
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:73: in _hub
image
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
args = ['podman-remote', 'run', '-d', '-e', 'SE_OPTS=-port 4444', '-v', ...]
bytes_output = False, kwargs = {}
process = <subprocess.Popen object at 0x7f9dec64cfd0>, out = ''
err = 'Trying to pull docker.io/selenium/hub:3.141.59-20210422...\n unable to retrieve auth token: invalid username/passwor...210422: unable to retrieve auth token: invalid username/password: unauthorized: incorrect username or password\n\n\n\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 Trying to pull docker.io/selenium/hub:3.141.59-20210422...
E unable to retrieve auth token: invalid username/password: unauthorized: incorrect username or password
E Error: 1 error occurred:
E * Error initializing source docker://selenium/hub:3.141.59-20210422: unable to retrieve auth token: invalid username/password: unauthorized: incorrect username or password
ost_utils/ost_utils/shell.py:49: ShellError