aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/sptmpdir_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-10-29 04:32:43 +0900
committerOphestra <cat@gensokyo.uk>2025-10-29 04:33:13 +0900
commita0b4e47acc228e48165966d8e139277b8f6f450e (patch)
treed363a6781536ce946aa445271ca1d3df587e6031 /internal/app/sptmpdir_test.go
parenta52f7038e5a607dd0901244abb791c96deaf9c2d (diff)
internal/outcome: rename from app
This is less ambiguous, and more accurately describes the purpose of the package. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/sptmpdir_test.go')
-rw-r--r--internal/app/sptmpdir_test.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/internal/app/sptmpdir_test.go b/internal/app/sptmpdir_test.go
deleted file mode 100644
index 53b44fbe..00000000
--- a/internal/app/sptmpdir_test.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package app
-
-import (
- "testing"
-
- "hakurei.app/container"
- "hakurei.app/container/comp"
- "hakurei.app/container/fhs"
- "hakurei.app/container/stub"
- "hakurei.app/hst"
- "hakurei.app/system"
- "hakurei.app/system/acl"
-)
-
-func TestSpTmpdirOp(t *testing.T) {
- t.Parallel()
-
- checkOpBehaviour(t, []opBehaviourTestCase{
- {"success", func(bool, bool) outcomeOp {
- return spTmpdirOp{}
- }, hst.Template, nil, []stub.Call{
- // this op configures the system state and does not make calls during toSystem
- }, newI().
- Ensure(m("/proc/nonexistent/tmp/hakurei.0/tmpdir"), 0700).
- UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/tmpdir"), acl.Execute).
- Ensure(m("/proc/nonexistent/tmp/hakurei.0/tmpdir/9"), 01700).
- UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/tmpdir/9"), acl.Read, acl.Write, acl.Execute), nil, nil, insertsOps(nil), []stub.Call{
- // this op configures the container state and does not make calls during toContainer
- }, &container.Params{
- Ops: new(container.Ops).
- Bind(m("/proc/nonexistent/tmp/hakurei.0/tmpdir/9"), fhs.AbsTmp, comp.BindWritable),
- }, nil, nil},
- })
-}