aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/outcome/spruntime_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/outcome/spruntime_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/outcome/spruntime_test.go')
-rw-r--r--internal/outcome/spruntime_test.go128
1 files changed, 128 insertions, 0 deletions
diff --git a/internal/outcome/spruntime_test.go b/internal/outcome/spruntime_test.go
new file mode 100644
index 00000000..00056eda
--- /dev/null
+++ b/internal/outcome/spruntime_test.go
@@ -0,0 +1,128 @@
+package outcome
+
+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 TestSpRuntimeOp(t *testing.T) {
+ t.Parallel()
+ config := hst.Template()
+
+ checkOpBehaviour(t, []opBehaviourTestCase{
+ {"success zero", func(isShim bool, clearUnexported bool) outcomeOp {
+ if !isShim {
+ return new(spRuntimeOp)
+ }
+ op := &spRuntimeOp{sessionTypeTTY}
+ if clearUnexported {
+ op.SessionType = sessionTypeUnspec
+ }
+ return op
+ }, func() *hst.Config {
+ c := hst.Template()
+ *c.Enablements = 0
+ return c
+ }, nil, []stub.Call{
+ // this op configures the system state and does not make calls during toSystem
+ }, newI().
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime"), acl.Execute).
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime/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).
+ Tmpfs(fhs.AbsRunUser, 1<<12, 0755).
+ Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable),
+ }, paramsWantEnv(config, map[string]string{
+ "XDG_RUNTIME_DIR": "/run/user/1000",
+ "XDG_SESSION_CLASS": "user",
+ "XDG_SESSION_TYPE": "unspecified",
+ }, nil), nil},
+
+ {"success tty", func(isShim, _ bool) outcomeOp {
+ if !isShim {
+ return new(spRuntimeOp)
+ }
+ return &spRuntimeOp{sessionTypeTTY}
+ }, func() *hst.Config {
+ c := hst.Template()
+ *c.Enablements = 0
+ return c
+ }, nil, []stub.Call{
+ // this op configures the system state and does not make calls during toSystem
+ }, newI().
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime"), acl.Execute).
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime/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).
+ Tmpfs(fhs.AbsRunUser, 1<<12, 0755).
+ Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable),
+ }, paramsWantEnv(config, map[string]string{
+ "XDG_RUNTIME_DIR": "/run/user/1000",
+ "XDG_SESSION_CLASS": "user",
+ "XDG_SESSION_TYPE": "tty",
+ }, nil), nil},
+
+ {"success x11", func(isShim, _ bool) outcomeOp {
+ if !isShim {
+ return new(spRuntimeOp)
+ }
+ return &spRuntimeOp{sessionTypeX11}
+ }, func() *hst.Config {
+ c := hst.Template()
+ *c.Enablements = hst.Enablements(hst.EX11)
+ return c
+ }, nil, []stub.Call{
+ // this op configures the system state and does not make calls during toSystem
+ }, newI().
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime"), acl.Execute).
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime/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).
+ Tmpfs(fhs.AbsRunUser, 1<<12, 0755).
+ Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable),
+ }, paramsWantEnv(config, map[string]string{
+ "XDG_RUNTIME_DIR": "/run/user/1000",
+ "XDG_SESSION_CLASS": "user",
+ "XDG_SESSION_TYPE": "x11",
+ }, nil), nil},
+
+ {"success", func(isShim, _ bool) outcomeOp {
+ if !isShim {
+ return new(spRuntimeOp)
+ }
+ return &spRuntimeOp{sessionTypeWayland}
+ }, 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/runtime"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime"), acl.Execute).
+ Ensure(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), 0700).
+ UpdatePermType(system.User, m("/proc/nonexistent/tmp/hakurei.0/runtime/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).
+ Tmpfs(fhs.AbsRunUser, 1<<12, 0755).
+ Bind(m("/proc/nonexistent/tmp/hakurei.0/runtime/9"), m("/run/user/1000"), comp.BindWritable),
+ }, paramsWantEnv(config, map[string]string{
+ "XDG_RUNTIME_DIR": "/run/user/1000",
+ "XDG_SESSION_CLASS": "user",
+ "XDG_SESSION_TYPE": "wayland",
+ }, nil), nil},
+ })
+}