123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- # -*- coding: utf-8 -*-
- """
- Test the ssh_auth states
- """
- # Import python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import os
- # Import salt libs
- import salt.utils.files
- # Import Salt Testing libs
- from tests.support.case import ModuleCase
- from tests.support.helpers import (
- destructiveTest,
- skip_if_not_root,
- slowTest,
- with_system_user,
- )
- from tests.support.mixins import SaltReturnAssertsMixin
- from tests.support.runtests import RUNTIME_VARS
- class SSHAuthStateTests(ModuleCase, SaltReturnAssertsMixin):
- @destructiveTest
- @skip_if_not_root
- @with_system_user("issue_7409", on_existing="delete", delete=True)
- @slowTest
- def test_issue_7409_no_linebreaks_between_keys(self, username):
- userdetails = self.run_function("user.info", [username])
- user_ssh_dir = os.path.join(userdetails["home"], ".ssh")
- authorized_keys_file = os.path.join(user_ssh_dir, "authorized_keys")
- ret = self.run_state(
- "file.managed",
- name=authorized_keys_file,
- user=username,
- makedirs=True,
- contents_newline=False,
- # Explicit no ending line break
- contents="ssh-rsa AAAAB3NzaC1kc3MAAACBAL0sQ9fJ5bYTEyY== root",
- )
- ret = self.run_state(
- "ssh_auth.present",
- name="AAAAB3NzaC1kcQ9J5bYTEyZ==",
- enc="ssh-rsa",
- user=username,
- comment=username,
- )
- self.assertSaltTrueReturn(ret)
- self.assertSaltStateChangesEqual(ret, {"AAAAB3NzaC1kcQ9J5bYTEyZ==": "New"})
- with salt.utils.files.fopen(authorized_keys_file, "r") as fhr:
- self.assertEqual(
- fhr.read(),
- "ssh-rsa AAAAB3NzaC1kc3MAAACBAL0sQ9fJ5bYTEyY== root\n"
- "ssh-rsa AAAAB3NzaC1kcQ9J5bYTEyZ== {0}\n".format(username),
- )
- @destructiveTest
- @skip_if_not_root
- @with_system_user("issue_10198", on_existing="delete", delete=True)
- @slowTest
- def test_issue_10198_keyfile_from_another_env(self, username=None):
- userdetails = self.run_function("user.info", [username])
- user_ssh_dir = os.path.join(userdetails["home"], ".ssh")
- authorized_keys_file = os.path.join(user_ssh_dir, "authorized_keys")
- key_fname = "issue_10198.id_rsa.pub"
- # Create the keyfile that we expect to get back on the state call
- with salt.utils.files.fopen(
- os.path.join(RUNTIME_VARS.TMP_PRODENV_STATE_TREE, key_fname), "w"
- ) as kfh:
- kfh.write("ssh-rsa AAAAB3NzaC1kcQ9J5bYTEyZ== {0}\n".format(username))
- # Create a bogus key file on base environment
- with salt.utils.files.fopen(
- os.path.join(RUNTIME_VARS.TMP_STATE_TREE, key_fname), "w"
- ) as kfh:
- kfh.write("ssh-rsa BAAAB3NzaC1kcQ9J5bYTEyZ== {0}\n".format(username))
- ret = self.run_state(
- "ssh_auth.present",
- name="Setup Keys",
- source="salt://{0}?saltenv=prod".format(key_fname),
- enc="ssh-rsa",
- user=username,
- comment=username,
- )
- self.assertSaltTrueReturn(ret)
- with salt.utils.files.fopen(authorized_keys_file, "r") as fhr:
- self.assertEqual(
- fhr.read(), "ssh-rsa AAAAB3NzaC1kcQ9J5bYTEyZ== {0}\n".format(username)
- )
- os.unlink(authorized_keys_file)
- ret = self.run_state(
- "ssh_auth.present",
- name="Setup Keys",
- source="salt://{0}".format(key_fname),
- enc="ssh-rsa",
- user=username,
- comment=username,
- saltenv="prod",
- )
- self.assertSaltTrueReturn(ret)
- with salt.utils.files.fopen(authorized_keys_file, "r") as fhr:
- self.assertEqual(
- fhr.read(), "ssh-rsa AAAAB3NzaC1kcQ9J5bYTEyZ== {0}\n".format(username)
- )
|