2015-01-13 12:53:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
|
|
'''
|
2015-01-21 02:30:44 +00:00
|
|
|
# Import Python libs
|
|
|
|
from __future__ import absolute_import
|
2015-01-13 12:53:32 +00:00
|
|
|
|
|
|
|
# Import Salt Testing Libs
|
2017-02-19 15:35:30 +00:00
|
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import TestCase, skipIf
|
|
|
|
from tests.support.mock import (
|
2015-01-13 12:53:32 +00:00
|
|
|
MagicMock,
|
|
|
|
patch,
|
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON
|
|
|
|
)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.modules.chef as chef
|
2015-01-13 12:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
2017-02-19 15:35:30 +00:00
|
|
|
class ChefTestCase(TestCase, LoaderModuleMockMixin):
|
2015-01-13 12:53:32 +00:00
|
|
|
'''
|
|
|
|
Test cases for salt.modules.chef
|
|
|
|
'''
|
2017-03-22 12:12:36 +00:00
|
|
|
def setup_loader_modules(self):
|
|
|
|
return {chef: {}}
|
|
|
|
|
2015-01-13 12:53:32 +00:00
|
|
|
# 'client' function tests: 1
|
|
|
|
|
|
|
|
@patch('salt.modules.chef._exec_cmd', MagicMock(return_value={}))
|
|
|
|
@patch('salt.utils.which', MagicMock(return_value=True))
|
|
|
|
def test_client(self):
|
|
|
|
'''
|
|
|
|
Test if it execute a chef client run and return a dict
|
|
|
|
'''
|
|
|
|
self.assertDictEqual(chef.client(), {})
|
|
|
|
|
|
|
|
# 'solo' function tests: 1
|
|
|
|
|
|
|
|
@patch('salt.modules.chef._exec_cmd', MagicMock(return_value={}))
|
|
|
|
@patch('salt.utils.which', MagicMock(return_value=True))
|
|
|
|
def test_solo(self):
|
|
|
|
'''
|
|
|
|
Test if it execute a chef solo run and return a dict
|
|
|
|
'''
|
|
|
|
self.assertDictEqual(chef.solo('/dev/sda1'), {})
|