mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
85b0a8c401
This is a follow up of this PR: https://github.com/saltstack/salt/pull/43235 With the fix in PR 43235, we are polling the status of the deletion via show_deployment. This is now also reflected in the tests with this change.
130 lines
5.5 KiB
Python
130 lines
5.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Jochen Breuer <jbreuer@suse.de>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
Mock,
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
try:
|
|
from salt.modules import kubernetes
|
|
except ImportError:
|
|
kubernetes = False
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
@skipIf(kubernetes is False, "Probably Kubernetes client lib is not installed. \
|
|
Skipping test_kubernetes.py")
|
|
class KubernetesTestCase(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Test cases for salt.modules.kubernetes
|
|
'''
|
|
|
|
def setup_loader_modules(self):
|
|
return {
|
|
kubernetes: {
|
|
'__salt__': {},
|
|
}
|
|
}
|
|
|
|
def test_nodes(self):
|
|
'''
|
|
Test node listing.
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.CoreV1Api.return_value = Mock(
|
|
**{"list_node.return_value.to_dict.return_value":
|
|
{'items': [{'metadata': {'name': 'mock_node_name'}}]}}
|
|
)
|
|
self.assertEqual(kubernetes.nodes(), ['mock_node_name'])
|
|
self.assertTrue(kubernetes.kubernetes.client.CoreV1Api().list_node().to_dict.called)
|
|
|
|
def test_deployments(self):
|
|
'''
|
|
Tests deployment listing.
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.ExtensionsV1beta1Api.return_value = Mock(
|
|
**{"list_namespaced_deployment.return_value.to_dict.return_value":
|
|
{'items': [{'metadata': {'name': 'mock_deployment_name'}}]}}
|
|
)
|
|
self.assertEqual(kubernetes.deployments(), ['mock_deployment_name'])
|
|
self.assertTrue(
|
|
kubernetes.kubernetes.client.ExtensionsV1beta1Api().list_namespaced_deployment().to_dict.called)
|
|
|
|
def test_services(self):
|
|
'''
|
|
Tests services listing.
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.CoreV1Api.return_value = Mock(
|
|
**{"list_namespaced_service.return_value.to_dict.return_value":
|
|
{'items': [{'metadata': {'name': 'mock_service_name'}}]}}
|
|
)
|
|
self.assertEqual(kubernetes.services(), ['mock_service_name'])
|
|
self.assertTrue(kubernetes.kubernetes.client.CoreV1Api().list_namespaced_service().to_dict.called)
|
|
|
|
def test_pods(self):
|
|
'''
|
|
Tests pods listing.
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.CoreV1Api.return_value = Mock(
|
|
**{"list_namespaced_pod.return_value.to_dict.return_value":
|
|
{'items': [{'metadata': {'name': 'mock_pod_name'}}]}}
|
|
)
|
|
self.assertEqual(kubernetes.pods(), ['mock_pod_name'])
|
|
self.assertTrue(kubernetes.kubernetes.client.CoreV1Api().
|
|
list_namespaced_pod().to_dict.called)
|
|
|
|
def test_delete_deployments(self):
|
|
'''
|
|
Tests deployment deletion
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch('salt.modules.kubernetes.show_deployment', Mock(return_value=None)):
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.V1DeleteOptions = Mock(return_value="")
|
|
mock_kubernetes_lib.client.ExtensionsV1beta1Api.return_value = Mock(
|
|
**{"delete_namespaced_deployment.return_value.to_dict.return_value": {'code': ''}}
|
|
)
|
|
self.assertEqual(kubernetes.delete_deployment("test"), {'code': 200})
|
|
self.assertTrue(
|
|
kubernetes.kubernetes.client.ExtensionsV1beta1Api().
|
|
delete_namespaced_deployment().to_dict.called)
|
|
|
|
def test_create_deployments(self):
|
|
'''
|
|
Tests deployment creation.
|
|
:return:
|
|
'''
|
|
with patch('salt.modules.kubernetes.kubernetes') as mock_kubernetes_lib:
|
|
with patch.dict(kubernetes.__salt__, {'config.option': Mock(return_value="")}):
|
|
mock_kubernetes_lib.client.ExtensionsV1beta1Api.return_value = Mock(
|
|
**{"create_namespaced_deployment.return_value.to_dict.return_value": {}}
|
|
)
|
|
self.assertEqual(kubernetes.create_deployment("test", "default", {}, {},
|
|
None, None, None), {})
|
|
self.assertTrue(
|
|
kubernetes.kubernetes.client.ExtensionsV1beta1Api().
|
|
create_namespaced_deployment().to_dict.called)
|