mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
SAP task list execution (#3169)
* add sap task list execute * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> * remove json out * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> * change logic Co-authored-by: Rainer Leber <rainer.leber@sva.de> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
56b5be0630
commit
1705335ba7
4 changed files with 433 additions and 0 deletions
|
@ -0,0 +1,89 @@
|
|||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import sys
|
||||
from ansible_collections.community.general.tests.unit.compat.mock import patch, MagicMock
|
||||
from ansible_collections.community.general.tests.unit.plugins.modules.utils import AnsibleExitJson, AnsibleFailJson, ModuleTestCase, set_module_args
|
||||
|
||||
sys.modules['pyrfc'] = MagicMock()
|
||||
sys.modules['pyrfc.Connection'] = MagicMock()
|
||||
sys.modules['xmltodict'] = MagicMock()
|
||||
sys.modules['xmltodict.parse'] = MagicMock()
|
||||
|
||||
from ansible_collections.community.general.plugins.modules.system import sap_task_list_execute
|
||||
|
||||
|
||||
class TestSAPRfcModule(ModuleTestCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestSAPRfcModule, self).setUp()
|
||||
self.module = sap_task_list_execute
|
||||
|
||||
def tearDown(self):
|
||||
super(TestSAPRfcModule, self).tearDown()
|
||||
|
||||
def define_rfc_connect(self, mocker):
|
||||
return mocker.patch(self.module.call_rfc_method)
|
||||
|
||||
def test_without_required_parameters(self):
|
||||
"""Failure must occurs when all parameters are missing"""
|
||||
with self.assertRaises(AnsibleFailJson):
|
||||
set_module_args({})
|
||||
self.module.main()
|
||||
|
||||
def test_error_no_task_list(self):
|
||||
"""tests fail to exec task list"""
|
||||
|
||||
set_module_args({
|
||||
"conn_username": "DDIC",
|
||||
"conn_password": "Test1234",
|
||||
"host": "10.1.8.9",
|
||||
"task_to_execute": "SAP_BASIS_SSL_CHECK"
|
||||
})
|
||||
|
||||
with patch.object(self.module, 'Connection') as conn:
|
||||
conn.return_value = ''
|
||||
with self.assertRaises(AnsibleFailJson) as result:
|
||||
self.module.main()
|
||||
self.assertEqual(result.exception.args[0]['msg'], 'The task list does not exsist.')
|
||||
|
||||
def test_success(self):
|
||||
"""test execute task list success"""
|
||||
|
||||
set_module_args({
|
||||
"conn_username": "DDIC",
|
||||
"conn_password": "Test1234",
|
||||
"host": "10.1.8.9",
|
||||
"task_to_execute": "SAP_BASIS_SSL_CHECK"
|
||||
})
|
||||
with patch.object(self.module, 'xml_to_dict') as XML:
|
||||
XML.return_value = {'item': [{'TASK': {'CHECK_STATUS_DESCR': 'Check successfully',
|
||||
'STATUS_DESCR': 'Executed successfully', 'TASKNAME': 'CL_STCT_CHECK_SEC_CRYPTO',
|
||||
'LNR': '1', 'DESCRIPTION': 'Check SAP Cryptographic Library', 'DOCU_EXIST': 'X',
|
||||
'LOG_EXIST': 'X', 'ACTION_SKIP': None, 'ACTION_UNSKIP': None, 'ACTION_CONFIRM': None,
|
||||
'ACTION_MAINTAIN': None}}]}
|
||||
|
||||
with self.assertRaises(AnsibleExitJson) as result:
|
||||
sap_task_list_execute.main()
|
||||
self.assertEqual(result.exception.args[0]['out'], {'item': [{'TASK': {'CHECK_STATUS_DESCR': 'Check successfully',
|
||||
'STATUS_DESCR': 'Executed successfully', 'TASKNAME': 'CL_STCT_CHECK_SEC_CRYPTO',
|
||||
'LNR': '1', 'DESCRIPTION': 'Check SAP Cryptographic Library', 'DOCU_EXIST': 'X',
|
||||
'LOG_EXIST': 'X', 'ACTION_SKIP': None, 'ACTION_UNSKIP': None,
|
||||
'ACTION_CONFIRM': None, 'ACTION_MAINTAIN': None}}]})
|
||||
|
||||
def test_success_no_log(self):
|
||||
"""test execute task list success without logs"""
|
||||
|
||||
set_module_args({
|
||||
"conn_username": "DDIC",
|
||||
"conn_password": "Test1234",
|
||||
"host": "10.1.8.9",
|
||||
"task_to_execute": "SAP_BASIS_SSL_CHECK"
|
||||
})
|
||||
with patch.object(self.module, 'xml_to_dict') as XML:
|
||||
XML.return_value = "No logs available."
|
||||
with self.assertRaises(AnsibleExitJson) as result:
|
||||
sap_task_list_execute.main()
|
||||
self.assertEqual(result.exception.args[0]['out'], 'No logs available.')
|
Loading…
Add table
Add a link
Reference in a new issue