mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ad8aa1b1e6
* Jenkins build module A module for queuing and deleting jenkins builds. * CI fixes * More CI fixes. * Even more CI fixes * Fixing symlink * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Felix Fontein <felix@fontein.de> * removed ansible meta section * Added unit tests. * fix tests * more test fixes. * Completed tests. Mocked jenkins api calls. Fixed some logging. * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Cleaned up default items And removed supports check mode flag. * setting name param required * Update plugins/modules/web_infrastructure/jenkins_build.py Co-authored-by: Brett Milford <brettmilford@gmail.com> Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
110 lines
3.8 KiB
Python
110 lines
3.8 KiB
Python
# 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
|
|
|
|
from ansible_collections.community.general.tests.unit.compat import unittest
|
|
from ansible_collections.community.general.tests.unit.compat.mock import patch
|
|
from ansible.module_utils import basic
|
|
from ansible.module_utils._text import to_bytes
|
|
from ansible_collections.community.general.plugins.modules.web_infrastructure import jenkins_build
|
|
|
|
import json
|
|
|
|
|
|
def set_module_args(args):
|
|
"""prepare arguments so that they will be picked up during module creation"""
|
|
args = json.dumps({'ANSIBLE_MODULE_ARGS': args})
|
|
basic._ANSIBLE_ARGS = to_bytes(args)
|
|
|
|
|
|
class AnsibleExitJson(Exception):
|
|
"""Exception class to be raised by module.exit_json and caught by the test case"""
|
|
pass
|
|
|
|
|
|
class AnsibleFailJson(Exception):
|
|
"""Exception class to be raised by module.fail_json and caught by the test case"""
|
|
pass
|
|
|
|
|
|
def exit_json(*args, **kwargs):
|
|
"""function to patch over exit_json; package return data into an exception"""
|
|
if 'changed' not in kwargs:
|
|
kwargs['changed'] = False
|
|
raise AnsibleExitJson(kwargs)
|
|
|
|
|
|
def fail_json(*args, **kwargs):
|
|
"""function to patch over fail_json; package return data into an exception"""
|
|
kwargs['failed'] = True
|
|
raise AnsibleFailJson(kwargs)
|
|
|
|
|
|
class JenkinsMock():
|
|
|
|
def get_job_info(self, name):
|
|
return {
|
|
"nextBuildNumber": 1234
|
|
}
|
|
|
|
def get_build_info(self, name, build_number):
|
|
return {
|
|
"result": "SUCCESS"
|
|
}
|
|
|
|
def get_build_status(self):
|
|
pass
|
|
|
|
def build_job(self, *args):
|
|
return None
|
|
|
|
def delete_build(self, name, build_number):
|
|
return None
|
|
|
|
|
|
class TestJenkinsBuild(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.mock_module_helper = patch.multiple(basic.AnsibleModule,
|
|
exit_json=exit_json,
|
|
fail_json=fail_json)
|
|
self.mock_module_helper.start()
|
|
self.addCleanup(self.mock_module_helper.stop)
|
|
|
|
@patch('ansible_collections.community.general.plugins.modules.web_infrastructure.jenkins_build.test_dependencies')
|
|
def test_module_fail_when_required_args_missing(self, test_deps):
|
|
test_deps.return_value = None
|
|
with self.assertRaises(AnsibleFailJson):
|
|
set_module_args({})
|
|
jenkins_build.main()
|
|
|
|
@patch('ansible_collections.community.general.plugins.modules.web_infrastructure.jenkins_build.test_dependencies')
|
|
@patch('ansible_collections.community.general.plugins.modules.web_infrastructure.jenkins_build.JenkinsBuild.get_jenkins_connection')
|
|
def test_module_create_build(self, jenkins_connection, test_deps):
|
|
test_deps.return_value = None
|
|
jenkins_connection.return_value = JenkinsMock()
|
|
|
|
with self.assertRaises(AnsibleExitJson):
|
|
set_module_args({
|
|
"name": "host-check",
|
|
"user": "abc",
|
|
"token": "xyz"
|
|
})
|
|
jenkins_build.main()
|
|
|
|
@patch('ansible_collections.community.general.plugins.modules.web_infrastructure.jenkins_build.test_dependencies')
|
|
@patch('ansible_collections.community.general.plugins.modules.web_infrastructure.jenkins_build.JenkinsBuild.get_jenkins_connection')
|
|
def test_module_delete_build(self, jenkins_connection, test_deps):
|
|
test_deps.return_value = None
|
|
jenkins_connection.return_value = JenkinsMock()
|
|
|
|
with self.assertRaises(AnsibleExitJson):
|
|
set_module_args({
|
|
"name": "host-check",
|
|
"build_number": "1234",
|
|
"state": "absent",
|
|
"user": "abc",
|
|
"token": "xyz"
|
|
})
|
|
jenkins_build.main()
|