aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/dispatcher_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-10-17 08:03:03 +0900
committerOphestra <cat@gensokyo.uk>2025-10-17 08:03:03 +0900
commit82299d34c60928e4908c784e771c0fc4aa283a5b (patch)
tree89396d712731e70899bbe082fb2f7bc023024564 /internal/app/dispatcher_test.go
parent792013cefbeb7413c60bd24e7014f8a9e0622540 (diff)
internal/app/sppulse: correctly handle small cookie
The trailing zero bytes need to be sliced off, so send cookie size alongside buffer content. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/dispatcher_test.go')
-rw-r--r--internal/app/dispatcher_test.go70
1 files changed, 62 insertions, 8 deletions
diff --git a/internal/app/dispatcher_test.go b/internal/app/dispatcher_test.go
index b87fae66..7e91b816 100644
--- a/internal/app/dispatcher_test.go
+++ b/internal/app/dispatcher_test.go
@@ -124,24 +124,39 @@ func paramsWantEnv(config *hst.Config, wantEnv map[string]string, next extraChec
}
}
+// opBehaviourTestCase checks outcomeOp behaviour against outcomeStateSys and outcomeStateParams.
type opBehaviourTestCase struct {
- name string
- newOp func(isShim, clearUnexported bool) outcomeOp
+ name string
+ // newOp returns a new instance of outcomeOp under testing that is safe to clobber.
+ newOp func(isShim, clearUnexported bool) outcomeOp
+ // newConfig returns a new instance of [hst.Config] that is checked not to be clobbered by outcomeOp.
newConfig func() *hst.Config
- pStateSys pStateSysFunc
- toSystem []stub.Call
- wantSys *system.I
+ // pStateSys is called before outcomeOp.toSystem to prepare outcomeStateSys.
+ pStateSys pStateSysFunc
+ // toSystem are expected syscallDispatcher calls during outcomeOp.toSystem.
+ toSystem []stub.Call
+ // wantSys is the expected [system.I] state after outcomeOp.toSystem.
+ wantSys *system.I
+ // extraCheckSys is called after outcomeOp.toSystem to check the state of outcomeStateSys.
extraCheckSys extraCheckSysFunc
+ // wantErrSystem is the expected error value returned by outcomeOp.toSystem.
+ // Further testing is skipped if not nil.
wantErrSystem error
- pStateContainer pStateContainerFunc
- toContainer []stub.Call
- wantParams *container.Params
+ // pStateContainer is called before outcomeOp.toContainer to prepare outcomeStateParams.
+ pStateContainer pStateContainerFunc
+ // toContainer are expected syscallDispatcher calls during outcomeOp.toContainer.
+ toContainer []stub.Call
+ // wantParams is the expected [container.Params] after outcomeOp.toContainer.
+ wantParams *container.Params
+ // extraCheckParams is called after outcomeOp.toContainer to check the state of outcomeStateParams.
extraCheckParams extraCheckParamsFunc
+ // wantErrContainer is the expected error value returned by outcomeOp.toContainer.
wantErrContainer error
}
+// checkOpBehaviour runs a slice of opBehaviourTestCase.
func checkOpBehaviour(t *testing.T, testCases []opBehaviourTestCase) {
t.Helper()
@@ -258,6 +273,40 @@ func checkOpBehaviour(t *testing.T, testCases []opBehaviourTestCase) {
func newI() *system.I { return system.New(panicMsgContext{}, panicMsgContext{}, checkExpectUid) }
+// simpleTestCase is a simple freeform test case utilising kstub.
+type simpleTestCase struct {
+ name string
+ f func(k *kstub) error
+ // want are expected syscallDispatcher calls during f.
+ want stub.Expect
+ // wantErr is the expected error value returned by f.
+ wantErr error
+}
+
+// checkSimple runs a slice of simpleTestCase.
+func checkSimple(t *testing.T, fname string, testCases []simpleTestCase) {
+ t.Helper()
+
+ for _, tc := range testCases {
+ t.Run(tc.name, func(t *testing.T) {
+ t.Helper()
+ t.Parallel()
+
+ defer stub.HandleExit(t)
+ k := &kstub{panicDispatcher{}, stub.New(t, func(s *stub.Stub[syscallDispatcher]) syscallDispatcher { return &kstub{panicDispatcher{}, s} }, tc.want)}
+ if err := tc.f(k); !reflect.DeepEqual(err, tc.wantErr) {
+ t.Errorf("%s: error = %#v, want %#v", fname, err, tc.wantErr)
+ }
+ k.VisitIncomplete(func(s *stub.Stub[syscallDispatcher]) {
+ t.Helper()
+
+ t.Errorf("%s: %d calls, want %d", fname, s.Pos(), s.Len())
+ })
+ })
+ }
+}
+
+// kstub partially implements syscallDispatcher via [stub.Stub].
type kstub struct {
panicDispatcher
*stub.Stub[syscallDispatcher]
@@ -416,6 +465,11 @@ func (nameDentry) IsDir() bool { panic("unreachable") }
func (nameDentry) Type() fs.FileMode { panic("unreachable") }
func (nameDentry) Info() (fs.FileInfo, error) { panic("unreachable") }
+// errorReader implements [io.Reader] that unconditionally returns -1, val.
+type errorReader struct{ val error }
+
+func (r errorReader) Read([]byte) (int, error) { return -1, r.val }
+
// panicMsgContext implements [message.Msg] and [context.Context] with methods wrapping panic.
// This should be assigned to test cases to be checked against.
type panicMsgContext struct{}