Prv8 Shell
Server : Apache
System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64
User : matalashes ( 1004)
PHP Version : 8.1.29
Disable Function : NONE
Directory :  /usr/src/cloud-init/tests/integration_tests/modules/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/src/cloud-init/tests/integration_tests/modules/test_ssh_generate.py
"""Integration test for the ssh module.

This module has two tests to verify if we can create ssh keys
through the ``ssh`` module. The first test asserts that some keys
were not created while the second one verifies if the expected
keys were created.

(This is ported from
``tests/cloud_tests/testcases/modules/ssh_keys_generate.yaml``.)"""

import pytest

USER_DATA = """\
#cloud-config
ssh_genkeytypes:
  - ecdsa
  - ed25519
authkey_hash: sha512
"""


@pytest.mark.ci
@pytest.mark.user_data(USER_DATA)
class TestSshKeysGenerate:
    @pytest.mark.parametrize(
        "ssh_key_path",
        (
            "/etc/ssh/ssh_host_dsa_key.pub",
            "/etc/ssh/ssh_host_dsa_key",
            "/etc/ssh/ssh_host_rsa_key.pub",
            "/etc/ssh/ssh_host_rsa_key",
        ),
    )
    def test_ssh_keys_not_generated(self, ssh_key_path, class_client):
        out = class_client.execute("test -e {}".format(ssh_key_path))
        assert out.failed

    @pytest.mark.parametrize(
        "ssh_key_path",
        (
            "/etc/ssh/ssh_host_ecdsa_key.pub",
            "/etc/ssh/ssh_host_ecdsa_key",
            "/etc/ssh/ssh_host_ed25519_key.pub",
            "/etc/ssh/ssh_host_ed25519_key",
        ),
    )
    def test_ssh_keys_generated(self, ssh_key_path, class_client):
        out = class_client.read_from_file(ssh_key_path)
        assert "" != out.strip()

haha - 2025