diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-08-29 09:44:01 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-31 16:52:52 +0000 |
commit | 6d067fcba2bf84fb5e7c7691b796d42d67028176 (patch) | |
tree | ff34ff2da6709301737cc78c2d6fb1e72e766513 /contrib | |
parent | 8245f0942811c2954d257ad8fac6cca8d36e896c (diff) | |
download | podman-6d067fcba2bf84fb5e7c7691b796d42d67028176.tar.gz podman-6d067fcba2bf84fb5e7c7691b796d42d67028176.tar.bz2 podman-6d067fcba2bf84fb5e7c7691b796d42d67028176.zip |
Turn on test debugging
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1369
Approved by: rhatdan
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/python/podman/Makefile | 2 | ||||
-rw-r--r-- | contrib/python/podman/test/test_containers.py | 19 | ||||
-rw-r--r-- | contrib/python/podman/test/test_tunnel.py | 14 |
3 files changed, 23 insertions, 12 deletions
diff --git a/contrib/python/podman/Makefile b/contrib/python/podman/Makefile index 7096f6152..e7e365a9c 100644 --- a/contrib/python/podman/Makefile +++ b/contrib/python/podman/Makefile @@ -11,7 +11,7 @@ lint: .PHONY: integration integration: - test/test_runner.sh + test/test_runner.sh -v .PHONY: install install: diff --git a/contrib/python/podman/test/test_containers.py b/contrib/python/podman/test/test_containers.py index 167aae68b..70221e33d 100644 --- a/contrib/python/podman/test/test_containers.py +++ b/contrib/python/podman/test/test_containers.py @@ -1,6 +1,7 @@ import os import signal import unittest +from pathlib import Path from test.podman_testcase import PodmanTestCase from test.retry_decorator import retry @@ -219,13 +220,19 @@ class TestContainers(PodmanTestCase): self.assertTrue(ctnr.status, 'running') # creating cgoups can be flakey - @retry(podman.libs.errors.ErrorOccurred, tries=16, delay=2, print_=print) + @retry(podman.libs.errors.ErrorOccurred, tries=4, delay=2, print_=print) def test_stats(self): - self.assertTrue(self.alpine_ctnr.running) - - actual = self.alpine_ctnr.stats() - self.assertEqual(self.alpine_ctnr.id, actual.id) - self.assertEqual(self.alpine_ctnr.names, actual.name) + try: + self.assertTrue(self.alpine_ctnr.running) + + actual = self.alpine_ctnr.stats() + self.assertEqual(self.alpine_ctnr.id, actual.id) + self.assertEqual(self.alpine_ctnr.names, actual.name) + except Exception: + info = Path('/proc/self/mountinfo') + with info.open() as fd: + print('{} {}'.format(self.alpine_ctnr.id, info)) + print(fd.read()) def test_logs(self): self.assertTrue(self.alpine_ctnr.running) diff --git a/contrib/python/podman/test/test_tunnel.py b/contrib/python/podman/test/test_tunnel.py index 8ee4b1052..9a33e76cd 100644 --- a/contrib/python/podman/test/test_tunnel.py +++ b/contrib/python/podman/test/test_tunnel.py @@ -1,5 +1,6 @@ from __future__ import absolute_import +import logging import time import unittest from unittest.mock import MagicMock, patch @@ -66,16 +67,19 @@ class TestTunnel(unittest.TestCase): ) tunnel = Tunnel(context).bore() - cmd = [ - 'ssh', - '-fNT', - '-q', + cmd = ['ssh', '-fNT'] + if logging.getLogger().getEffectiveLevel() == logging.DEBUG: + cmd.append('-v') + else: + cmd.append('-q') + + cmd.extend(( '-L', '{}:{}'.format(context.local_socket, context.remote_socket), '-i', context.identity_file, '{}@{}'.format(context.username, context.hostname), - ] + )) mock_finalize.assert_called_once_with(tunnel, tunnel.close) mock_exists.assert_called_once_with(context.local_socket) |