Files
temporal/temporaltest/options.go
Alex Shtin 91893f1064 Remove license header from every file (#7689)
## What changed?
<!-- Describe what has changed in this PR -->
Remove license header from every file. Because it is really hard to
follow in this PR here is the summary:
1. License header is removed from all `.go` and `.proto` files
:fireworks::fireworks:🎆.
2. `LICENSE` file in the root directory has only Temporal and Uber
copyrights.
3. 5 other `LICENSE` files added to the packages which have copyrights
different from Temporal and Uber: Datadog, Xargin, "Mat Ryer, Tyler
Bunnell and contributors".
4. `license_file` flag is removed from all code generation tools.
5. `copyright_file` flag is removed from `go:generate mockgen`
directive.
6. All copyright related targets are removed from `Makefile`.
7. Updated Temporal copyright year to 2025 everywhere.

## Why?
<!-- Tell your future self why have you made these changes -->
I double checked with legal department that it is not needed to have
license header in every file. One file per repo is enough. I put all
copyrights to the root `LICENSE` file and removed header from all other
files. Also updated tools and `Makefile`.
2025-05-01 18:50:21 -07:00

53 lines
1.5 KiB
Go

package temporaltest
import (
"testing"
"go.temporal.io/sdk/client"
"go.temporal.io/sdk/worker"
"go.temporal.io/server/temporal"
)
type TestServerOption interface {
apply(*TestServer)
}
type applyFunc func(*TestServer)
func (f applyFunc) apply(s *TestServer) { f(s) }
// WithT directs all worker and client logs to the test logger.
//
// If this option is specified, then server will automatically be stopped when the
// test completes.
func WithT(t *testing.T) TestServerOption {
return applyFunc(func(server *TestServer) {
server.t = t
})
}
// WithBaseClientOptions configures options for the default clients and workers connected to the test server.
func WithBaseClientOptions(o client.Options) TestServerOption {
return applyFunc(func(server *TestServer) {
server.defaultClientOptions = o
})
}
// WithBaseWorkerOptions configures default options for workers connected to the test server.
//
// WorkflowPanicPolicy is always set to worker.FailWorkflow so that workflow executions
// fail fast when workflow code panics or detects non-determinism.
func WithBaseWorkerOptions(o worker.Options) TestServerOption {
o.WorkflowPanicPolicy = worker.FailWorkflow
return applyFunc(func(server *TestServer) {
server.defaultWorkerOptions = o
})
}
// WithBaseServerOptions enables configuring additional server options not directly exposed via temporaltest.
func WithBaseServerOptions(options ...temporal.ServerOption) TestServerOption {
return applyFunc(func(server *TestServer) {
server.serverOptions = append(server.serverOptions, options...)
})
}