Repository URL to install this package:
|
Version:
3.2.4 ▾
|
# Copyright (c) 2015-2018 Cisco Systems, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
import os
import pytest
from molecule.command.init import role
@pytest.fixture
def _command_args():
return {
"dependency_name": "galaxy",
"driver_name": "delegated",
"provisioner_name": "ansible",
"role_name": "test-role",
"scenario_name": "default",
"subcommand": __name__,
"verifier_name": "ansible",
}
@pytest.fixture
def _instance(_command_args):
return role.Role(_command_args)
def test_execute(temp_dir, _instance, patched_logger_info):
_instance.execute()
msg = "Initializing new role test-role..."
patched_logger_info.assert_any_call(msg)
assert os.path.isdir("./test-role")
assert os.path.isdir("./test-role/molecule/default")
role_directory = os.path.join(temp_dir.strpath, "test-role")
msg = "Initialized role in {} successfully.".format(role_directory)
patched_logger_info.assert_any_call(msg)
def test_execute_role_exists(temp_dir, _instance, patched_logger_critical):
_instance.execute()
with pytest.raises(SystemExit) as e:
_instance.execute()
assert 1 == e.value.code
msg = "The directory test-role exists. Cannot create new role."
patched_logger_critical.assert_called_once_with(msg)