summaryrefslogtreecommitdiff
path: root/cloudinit/config/tests/test_keys_to_console.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/config/tests/test_keys_to_console.py')
-rw-r--r--cloudinit/config/tests/test_keys_to_console.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/cloudinit/config/tests/test_keys_to_console.py b/cloudinit/config/tests/test_keys_to_console.py
deleted file mode 100644
index 4083fc54..00000000
--- a/cloudinit/config/tests/test_keys_to_console.py
+++ /dev/null
@@ -1,34 +0,0 @@
-"""Tests for cc_keys_to_console."""
-from unittest import mock
-
-import pytest
-
-from cloudinit.config import cc_keys_to_console
-
-
-class TestHandle:
- """Tests for cloudinit.config.cc_keys_to_console.handle.
-
- TODO: These tests only cover the emit_keys_to_console config option, they
- should be expanded to cover the full functionality.
- """
-
- @mock.patch("cloudinit.config.cc_keys_to_console.util.multi_log")
- @mock.patch("cloudinit.config.cc_keys_to_console.os.path.exists")
- @mock.patch("cloudinit.config.cc_keys_to_console.subp.subp")
- @pytest.mark.parametrize("cfg,subp_called", [
- ({}, True), # Default to emitting keys
- ({"ssh": {}}, True), # Default even if we have the parent key
- ({"ssh": {"emit_keys_to_console": True}}, True), # Explicitly enabled
- ({"ssh": {"emit_keys_to_console": False}}, False), # Disabled
- ])
- def test_emit_keys_to_console_config(
- self, m_subp, m_path_exists, _m_multi_log, cfg, subp_called
- ):
- # Ensure we always find the helper
- m_path_exists.return_value = True
- m_subp.return_value = ("", "")
-
- cc_keys_to_console.handle("name", cfg, mock.Mock(), mock.Mock(), ())
-
- assert subp_called == (m_subp.call_count == 1)