diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-18 04:25:40 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-18 04:33:04 +0900 |
| commit | d4284c109d593fa1413a162734b3db5134c66d19 (patch) | |
| tree | 3cdab15c944ad4df19df609ce4c49a9d0d51296c /internal/app/spruntime_test.go | |
| parent | 030ad2a73bcbcafdc434771901cf6e8e659c00a6 (diff) | |
internal/app/spruntime: emulate pam_systemd type
This sets XDG_SESSION_TYPE to the corresponding values specified in pam_systemd(8) according to enablements.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/spruntime_test.go')
| -rw-r--r-- | internal/app/spruntime_test.go | 94 |
1 files changed, 91 insertions, 3 deletions
diff --git a/internal/app/spruntime_test.go b/internal/app/spruntime_test.go index 2b650483..493e66a3 100644 --- a/internal/app/spruntime_test.go +++ b/internal/app/spruntime_test.go @@ -17,9 +17,47 @@ func TestSpRuntimeOp(t *testing.T) { config := hst.Template() checkOpBehaviour(t, []opBehaviourTestCase{ - {"success", func(bool, bool) outcomeOp { - return spRuntimeOp{} - }, hst.Template, nil, []stub.Call{ + {"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"), bits.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). @@ -36,5 +74,55 @@ func TestSpRuntimeOp(t *testing.T) { "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"), bits.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"), bits.BindWritable), + }, paramsWantEnv(config, map[string]string{ + "XDG_RUNTIME_DIR": "/run/user/1000", + "XDG_SESSION_CLASS": "user", + "XDG_SESSION_TYPE": "wayland", + }, nil), nil}, }) } |
