mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
* tests: adding details to tests in core suite - part 1 * Update tests/core/compat/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/basic18/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/compat/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/config-defaults-once/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/core-dump/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/create-user-2/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/create-user-2/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/create-user/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/create-user/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/fan/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/grub-no-unpacked-assets/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> * Update tests/core/core-to-snapd-failover16/task.yaml Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl> --------- Co-authored-by: Zygmunt Bazyli Krynicki <me@zygoon.pl>
70 lines
2.1 KiB
YAML
70 lines
2.1 KiB
YAML
summary: Ensure that snap create-user works in ubuntu-core
|
|
# FIXME: combine this test with tests/core/create-user-2?
|
|
|
|
details: |
|
|
Check that the command `snap create-user` works in ubuntu core.
|
|
Ensure that the keys are imported for the user and it can be created as a sudoer.
|
|
|
|
environment:
|
|
USER_EMAIL: mvo@ubuntu.com
|
|
USER_NAME: mvo
|
|
|
|
restore: |
|
|
if [ -e managed.device ]; then
|
|
exit 0
|
|
fi
|
|
# Check if the user exists before remove it
|
|
if id "$USER_NAME" >/dev/null 2>&1; then
|
|
snap remove-user "$USER_NAME"
|
|
fi
|
|
|
|
debug: |
|
|
if [ -e managed.device ]; then
|
|
ls -al /home/"$USER_NAME" || true
|
|
cat /var/lib/extrausers/passwd || true
|
|
fi
|
|
|
|
execute: |
|
|
if [ "$(snap managed)" = "true" ]; then
|
|
# Leave a file indicating the device was initially managed
|
|
touch managed.device
|
|
|
|
if snap create-user --sudoer "$USER_EMAIL" 2>create.error; then
|
|
echo "Did not get expected error creating user in managed device"
|
|
exit 1
|
|
fi
|
|
MATCH "cannot create user: device already managed" < create.error
|
|
|
|
exit 0
|
|
fi
|
|
|
|
echo "Adding invalid user"
|
|
expected='error: while creating user: cannot create user "nosuchuser@example.com"'
|
|
if output=$(snap create-user nosuchuser@example.com 2>&1); then
|
|
echo "snap create-user should fail for unknown users but it did not"
|
|
exit 1
|
|
fi
|
|
MATCH "$expected" <<<"$output"
|
|
|
|
echo "Adding valid user"
|
|
expected="created user \"$USER_NAME\""
|
|
output=$(snap create-user --sudoer "$USER_EMAIL")
|
|
if [ "$output" != "$expected" ]; then
|
|
echo "Unexpected output $output"
|
|
exit 1
|
|
fi
|
|
echo "Ensure there are ssh keys imported"
|
|
MATCH ssh-rsa < /home/"$USER_NAME"/.ssh/authorized_keys
|
|
|
|
echo "Ensure the user is a sudo user"
|
|
sudo -u "$USER_NAME" sudo true
|
|
|
|
echo "ensure the user's home directory exists"
|
|
test -d /home/"$USER_NAME"
|
|
|
|
echo "ensure ~/.snap/auth.json was created"
|
|
test -f /home/"$USER_NAME"/.snap/auth.json
|
|
|
|
echo "ensure user's email was stored in ~/.snap/auth.json"
|
|
MATCH "\"email\":\"$USER_EMAIL\"" < /home/"$USER_NAME"/.snap/auth.json
|