23 lines
519 B
Go
23 lines
519 B
Go
package notarius
|
|
|
|
import "context"
|
|
|
|
// FakeRunner is a configurable in-memory runner for stage tests.
|
|
type FakeRunner struct {
|
|
Requests []RunRequest
|
|
Result RunResult
|
|
Err error
|
|
}
|
|
|
|
// Run records the request and returns the configured result or error.
|
|
func (f *FakeRunner) Run(ctx context.Context, req RunRequest) (RunResult, error) {
|
|
if err := ctx.Err(); err != nil {
|
|
return RunResult{}, err
|
|
}
|
|
f.Requests = append(f.Requests, req)
|
|
if f.Err != nil {
|
|
return RunResult{}, f.Err
|
|
}
|
|
return f.Result, nil
|
|
}
|