123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- # -*- coding: utf-8 -*-
- from __future__ import absolute_import, print_function, unicode_literals
- import pytest
- import salt.config
- import salt.version
- from tests.support.case import ModuleCase
- from tests.support.mixins import AdaptedConfigurationTestCaseMixin
- @pytest.mark.windows_whitelisted
- class TestModuleTest(ModuleCase, AdaptedConfigurationTestCaseMixin):
- """
- Validate the test module
- """
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_ping(self):
- """
- test.ping
- """
- self.assertTrue(self.run_function("test.ping"))
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_echo(self):
- """
- test.echo
- """
- self.assertEqual(self.run_function("test.echo", ["text"]), "text")
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_version(self):
- """
- test.version
- """
- self.assertEqual(
- self.run_function("test.version"), salt.version.__saltstack_version__.string
- )
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_conf_test(self):
- """
- test.conf_test
- """
- self.assertEqual(self.run_function("test.conf_test"), "baz")
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_get_opts(self):
- """
- test.get_opts
- """
- opts = salt.config.minion_config(self.get_config_file_path("minion"))
- self.assertEqual(
- self.run_function("test.get_opts")["cachedir"], opts["cachedir"]
- )
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_cross_test(self):
- """
- test.cross_test
- """
- self.assertTrue(self.run_function("test.cross_test", ["test.ping"]))
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_fib(self):
- """
- test.fib
- """
- self.assertEqual(self.run_function("test.fib", ["20"],)[0], 6765)
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_collatz(self):
- """
- test.collatz
- """
- self.assertEqual(self.run_function("test.collatz", ["40"],)[0][-1], 2)
- @pytest.mark.slow_test(seconds=30) # Test takes >10 and <=30 seconds
- def test_outputter(self):
- """
- test.outputter
- """
- self.assertEqual(self.run_function("test.outputter", ["text"]), "text")
|