fuel-web/tasklib/tasklib/tests/test_puppet_task.py

64 lines
2.5 KiB
Python

# Copyright 2014 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import mock
import yaml
from tasklib import config
from tasklib import task
from tasklib.tests import base
@mock.patch('tasklib.task.os.path.exists')
@mock.patch('tasklib.utils.execute')
class TestPuppetTask(base.BaseUnitTest):
def setUp(self):
self.meta = {'puppet_manifest': 'init.pp',
'puppet_options': '--debug',
'puppet_modules': '/etc/my_puppet_modules',
'type': 'puppet'}
self.only_required = {'type': 'puppet'}
self.config = config.Config()
def test_basic_puppet_action(self, mexecute, mexists):
mexists.return_value = True
mexecute.return_value = (0, '', '')
mopen = mock.mock_open(read_data=yaml.dump(self.meta))
puppet_task = task.Task('test/puppet', self.config)
with mock.patch('tasklib.task.open', mopen, create=True):
puppet_task.run()
expected_cmd = ['puppet', 'apply', '--detailed-exitcodes',
'--modulepath=/etc/my_puppet_modules',
'--debug']
expected = ' '.join(expected_cmd)
self.assertEqual(mexecute.call_count, 1)
received = mexecute.call_args[0][0]
self.assertTrue(expected in received)
def test_default_puppet_action(self, mexecute, mexists):
mexists.return_value = True
mexecute.return_value = (0, '', '')
mopen = mock.mock_open(read_data=yaml.dump(self.only_required))
puppet_task = task.Task('test/puppet/only_required', self.config)
with mock.patch('tasklib.task.open', mopen, create=True):
puppet_task.run()
expected_cmd = [
'puppet', 'apply', '--detailed-exitcodes',
'--modulepath={0}'.format(self.config['puppet_modules'])]
expected = ' '.join(expected_cmd)
self.assertEqual(mexecute.call_count, 1)
received = mexecute.call_args[0][0]
self.assertTrue(expected in received)