-
Notifications
You must be signed in to change notification settings - Fork 680
tests/main/system-usernames-hooks: a snap using system-usernames and hooks #17405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bboozzoo
wants to merge
1
commit into
canonical:master
Choose a base branch
from
bboozzoo:bboozzoo/system-usernames-snap-with-hooks
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| summary: exercise snap hooks using system-usernames | ||
|
|
||
| details: | | ||
| Exercise a scenario in which a snap that uses system-usernames carries | ||
| hooks. Make sure that hooks are able to exercise functionality provided by | ||
| system-usernames. | ||
|
|
||
| prepare: | | ||
| tests.cleanup defer "$TESTSTOOLS"/user-state remove-with-group snap_daemon | ||
|
|
||
| execute: | | ||
| "$TESTSTOOLS"/snaps-state install-local test-snapd-sh | ||
| test-snapd-sh.sh -c 'setpriv --clear-groups \ | ||
| --reuid snap_daemon \ | ||
| --regid snap_daemon -- \ | ||
| id' | ||
|
|
||
| "$TESTSTOOLS"/snaps-state install-local test-snapd-sh | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/sh | ||
| PS1='$ ' | ||
| exec /bin/sh "$@" |
11 changes: 11 additions & 0 deletions
11
tests/main/system-usernames-hooks/test-snapd-sh/meta/hooks/install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #!/bin/sh | ||
|
|
||
| exec 2>&1 | ||
|
|
||
| echo "running install hook" >> "$SNAP_COMMON"/hook.log | ||
|
|
||
| mkdir "$SNAP_COMMON"/data | ||
| touch "$SNAP_COMMON"/data/foo | ||
|
|
||
| chown -R snap_daemon "$SNAP_COMMON"/data | ||
| chgrp -R root "$SNAP_COMMON"/data |
11 changes: 11 additions & 0 deletions
11
tests/main/system-usernames-hooks/test-snapd-sh/meta/hooks/post-refresh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #!/bin/sh | ||
|
|
||
| exec 2>&1 | ||
|
|
||
| echo "running post-refresh hook" >> "$SNAP_COMMON"/hook.log | ||
|
|
||
| setpriv \ | ||
| --clear-groups \ | ||
| --reuid snap_daemon \ | ||
| --regid snap_daemon -- \ | ||
| /bin/sh -c "echo 'post refresh' >> $SNAP_COMMON/data/foo" |
11 changes: 11 additions & 0 deletions
11
tests/main/system-usernames-hooks/test-snapd-sh/meta/snap.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| name: test-snapd-sh | ||
| summary: Minimal snap for testing | ||
| version: 1.0 | ||
| base: core24 | ||
|
|
||
| apps: | ||
| sh: | ||
| command: bin/sh | ||
|
|
||
| system-usernames: | ||
| snap_daemon: shared |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add some assertions for files (e.g.
"$SNAP_COMMON"/hook.logand$SNAP_COMMON/data/foo) after install and refresh?