123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- # -*- coding: utf-8 -*-
- # Import Python libs
- from __future__ import absolute_import
- import os
- # Import module
- import salt.modules.baredoc as baredoc
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.runtests import RUNTIME_VARS
- # Import Salt Testing Libs
- from tests.support.unit import TestCase
- class BaredocTest(TestCase, LoaderModuleMockMixin):
- """
- Validate baredoc module
- """
- def setup_loader_modules(self):
- return {
- baredoc: {
- "__opts__": {
- "extension_modules": os.path.join(RUNTIME_VARS.CODE_DIR, "salt"),
- },
- "__grains__": {"saltpath": os.path.join(RUNTIME_VARS.CODE_DIR, "salt")},
- }
- }
- def test_baredoc_list_states(self):
- """
- Test baredoc state module listing
- """
- ret = baredoc.list_states(names_only=True)
- assert "value_present" in ret["xml"][0]
- def test_baredoc_list_states_args(self):
- """
- Test baredoc state listing with args
- """
- ret = baredoc.list_states()
- assert "value_present" in ret["xml"][0]
- assert "xpath" in ret["xml"][0]["value_present"]
- def test_baredoc_list_states_single(self):
- """
- Test baredoc state listing single state module
- """
- ret = baredoc.list_states("xml")
- assert "value_present" in ret["xml"][0]
- assert "xpath" in ret["xml"][0]["value_present"]
- def test_baredoc_list_modules(self):
- """
- test baredoc executiion module listing
- """
- ret = baredoc.list_modules(names_only=True)
- assert "get_value" in ret["xml"][0]
- def test_baredoc_list_modules_args(self):
- """
- test baredoc execution module listing with args
- """
- ret = baredoc.list_modules()
- assert "get_value" in ret["xml"][0]
- assert "file" in ret["xml"][0]["get_value"]
- def test_baredoc_list_modules_single_and_alias(self):
- """
- test baredoc single module listing
- """
- ret = baredoc.list_modules("mdata")
- assert "put" in ret["mdata"][2]
- assert "keyname" in ret["mdata"][2]["put"]
- def test_baredoc_state_docs(self):
- ret = baredoc.state_docs()
- assert "XML Manager" in ret["xml"]
- assert "zabbix_usergroup" in ret
- def test_baredoc_state_docs_single_arg(self):
- ret = baredoc.state_docs("xml")
- assert "XML Manager" in ret["xml"]
- ret = baredoc.state_docs("xml.value_present")
- assert "Manages a given XML file" in ret["xml.value_present"]
- def test_baredoc_state_docs_multiple_args(self):
- ret = baredoc.state_docs("zabbix_hostgroup.present", "xml")
- assert "Ensures that the host group exists" in ret["zabbix_hostgroup.present"]
- assert "XML Manager" in ret["xml"]
- assert "Manages a given XML file" in ret["xml.value_present"]
- def test_baredoc_module_docs(self):
- ret = baredoc.module_docs()
- assert "A module for testing" in ret["saltcheck"]
- def test_baredoc_module_docs_single_arg(self):
- ret = baredoc.module_docs("saltcheck")
- assert "A module for testing" in ret["saltcheck"]
- def test_baredoc_module_docs_multiple_args(self):
- ret = baredoc.module_docs("saltcheck", "xml.get_value")
- assert "A module for testing" in ret["saltcheck"]
- assert "Returns the value of the matched xpath element" in ret["xml.get_value"]
|