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: 1303
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #1303
[Eitan Raviv] network: ansible facts per address family
-----------------
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:
Resolving "selenium/video" using unqualified-search registries
(/etc/containers/registries.conf)
Trying to pull
registry.access.redhat.com/selenium/video:ffmpeg-4.3.1-20210618...
name unknown: Repo not found
Trying to pull registry.redhat.io/selenium/video:ffmpeg-4.3.1-20210618...
unable to retrieve auth token: invalid username/password: unauthorized: Please login to
the Red Hat Registry using your Customer Portal credentials. Further instructions can be
found here:
https://access.redhat.com/RegistryAuthentication
Trying to pull docker.io/selenium/video:ffmpeg-4.3.1-20210618...
unable to retrieve auth token: invalid username/password: unauthorized: incorrect
username or password
Error: 1 error occurred:
* 3 errors occurred while pulling:
* Error initializing source
docker://registry.access.redhat.com/selenium/video:ffmpeg-4.3.1-20210618: Error reading
manifest ffmpeg-4.3.1-20210618 in
registry.access.redhat.com/selenium/video: name unknown:
Repo not found
* Error initializing source
docker://registry.redhat.io/selenium/video:ffmpeg-4.3.1-20210618: unable to retrieve auth
token: invalid username/password: unauthorized: Please login to the Red Hat Registry using
your Customer Portal credentials. Further instructions can be found here:
https://access.redhat.com/RegistryAuthentication
* Error initializing source docker://selenium/video:ffmpeg-4.3.1-20210618: unable to
retrieve auth token: invalid username/password: unauthorized: incorrect username or
password"
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:186: in grid
hub_port, podman_cmd, videos_artifacts_dir) as url:
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:164: in _grid
videos_artifacts_dir)as videos_names:
/usr/lib64/python3.6/contextlib.py:81: in __enter__
return next(self.gen)
ost_utils/ost_utils/selenium/grid/podman.py:136: in _video_recorders
FFMPEG_CONTAINER_IMAGE,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
args = ['podman-remote', 'run', '-d', '-v',
'/home/jenkins/workspace/ovirt-system-tests_basic-suite-master_nightly/ovirt-system-tests/exported-artifacts/ui_tests_artifacts/:/videos:Z',
'-e', ...]
bytes_output = False, kwargs = {}
process = <subprocess.Popen object at 0x7f9588d1e828>, out = ''
err = 'Resolving "selenium/video" using unqualified-search registries
(/etc/containers/registries.conf)\nTrying to pull regi...210618: 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 Resolving "selenium/video" using unqualified-search registries
(/etc/containers/registries.conf)
E Trying to pull
registry.access.redhat.com/selenium/video:ffmpeg-4.3.1-20210618...
E name unknown: Repo not found
E Trying to pull registry.redhat.io/selenium/video:ffmpeg-4.3.1-20210618...
E unable to retrieve auth token: invalid username/password: unauthorized:
Please login to the Red Hat Registry using your Customer Portal credentials. Further
instructions can be found here:
https://access.redhat.com/RegistryAuthentication
E Trying to pull docker.io/selenium/video:ffmpeg-4.3.1-20210618...
E unable to retrieve auth token: invalid username/password: unauthorized:
incorrect username or password
E Error: 1 error occurred:
E * 3 errors occurred while pulling:
E * Error initializing source
docker://registry.access.redhat.com/selenium/video:ffmpeg-4.3.1-20210618: Error reading
manifest ffmpeg-4.3.1-20210618 in
registry.access.redhat.com/selenium/video: name unknown:
Repo not found
E * Error initializing source
docker://registry.redhat.io/selenium/video:ffmpeg-4.3.1-20210618: unable to retrieve auth
token: invalid username/password: unauthorized: Please login to the Red Hat Registry using
your Customer Portal credentials. Further instructions can be found here:
https://access.redhat.com/RegistryAuthentication
E * Error initializing source docker://selenium/video:ffmpeg-4.3.1-20210618:
unable to retrieve auth token: invalid username/password: unauthorized: incorrect username
or password
ost_utils/ost_utils/shell.py:49: ShellError