This document describes the project's testing utilities and best practices.
Test helpers can be found in the common/testing package.
Instead of creating identifiers like task queue name, namespace or worker identity by hand,
use the testvars
package.
Example:
func TestFoo(t *testing.T) {
tv := testvars.New(t)
req := &workflowservice.SignalWithStartWorkflowExecutionRequest{
RequestId: uuid.New(),
Namespace: tv.NamespaceName().String(),
WorkflowId: tv.WorkflowID(),
WorkflowType: tv.WorkflowType(),
TaskQueue: tv.TaskQueue(),
SignalName: "foo",
}
}