You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import socket
|
|
import sys
|
|
import unittest
|
|
|
|
import mitogen.core
|
|
|
|
import testlib
|
|
|
|
|
|
# TODO: https://github.com/dw/mitogen/issues/688 https://travis-ci.org/github/dw/mitogen/jobs/665088918?utm_medium=notification&utm_source=github_status
|
|
# class DockerTest(testlib.DockerMixin, testlib.TestCase):
|
|
# def test_okay(self):
|
|
# # Magic calls must happen as root.
|
|
# try:
|
|
# root = self.router.sudo()
|
|
# except mitogen.core.StreamError:
|
|
# raise unittest.SkipTest("requires sudo to localhost root")
|
|
|
|
# via_ssh = self.docker_ssh(
|
|
# username='mitogen__has_sudo',
|
|
# password='has_sudo_password',
|
|
# )
|
|
|
|
# via_setns = self.router.setns(
|
|
# kind='docker',
|
|
# container=self.dockerized_ssh.container_name,
|
|
# via=root,
|
|
# )
|
|
|
|
# self.assertEqual(
|
|
# via_ssh.call(socket.gethostname),
|
|
# via_setns.call(socket.gethostname),
|
|
# )
|
|
|
|
|
|
# DockerTest = unittest.skipIf(
|
|
# condition=sys.version_info < (2, 5),
|
|
# reason="mitogen.setns unsupported on Python <2.4"
|
|
# )(DockerTest)
|