Blob Blame History Raw
#!/bin/sh

uname_arch=$(uname -m)

if [ "$uname_arch" == "armv7l" ]; then
  t_Log "*** Not testing on Arch: $uname_arch ***"
  exit 0
fi

for KeyType in rsa dsa; do 
	userdel -rf sshtest; useradd sshtest && echo sshtest | passwd --stdin sshtest
	runuser -l sshtest -c "echo | ssh-keygen -q -t ${KeyType} -b 1024 -f ~/.ssh/id_${KeyType}" > /dev/null
	runuser -l sshtest -c "cat ~/.ssh/*pub > ~/.ssh/authorized_keys && chmod 600 ~/.ssh/*keys" > /dev/null
	cp ./tests/p_openssh/_helper_sshd_user_login-with-key.expect /home/sshtest/ && chmod +x /home/sshtest/*.expect

	# Create a test file
	TestString=$( mktemp -u )
	echo $TestString > /home/sshtest/ssh_test_file

	t_Log "Running $0 - SSH User can login using ${KeyType} key."
	runuser -l sshtest -c "~/_helper_sshd_user_login-with-key.expect" | grep ${TestString}  > /dev/null 2>&1
	t_CheckExitStatus $?
	userdel -rf sshtest
done