mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
io.projectatomic.podman -> io.podman Signed-off-by: baude <bbaude@redhat.com> Closes: #1204 Approved by: mheon
35 lines
1,003 B
Python
35 lines
1,003 B
Python
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
from unittest.mock import patch
|
|
|
|
import podman
|
|
from podman.client import BaseClient, Client, LocalClient, RemoteClient
|
|
|
|
|
|
class TestClient(unittest.TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
@patch('podman.libs.system.System.ping', return_value=True)
|
|
def test_local(self, mock_ping):
|
|
p = Client(
|
|
uri='unix:/run/podman',
|
|
interface='io.podman',
|
|
)
|
|
|
|
self.assertIsInstance(p._client, LocalClient)
|
|
self.assertIsInstance(p._client, BaseClient)
|
|
|
|
mock_ping.assert_called_once_with()
|
|
|
|
@patch('podman.libs.system.System.ping', return_value=True)
|
|
def test_remote(self, mock_ping):
|
|
p = Client(
|
|
uri='unix:/run/podman',
|
|
interface='io.podman',
|
|
remote_uri='ssh://user@hostname/run/podman/podman',
|
|
identity_file='~/.ssh/id_rsa')
|
|
|
|
self.assertIsInstance(p._client, BaseClient)
|
|
mock_ping.assert_called_once_with()
|