36 lines
1003 B
Python
36 lines
1003 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()
|