-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Test environment initialization to CadenceTestRule from Work…
…flowTest. WorkflowTest is currently 6,000 lines long and has nearly every test related to end to end client behavior. It provides the rather neat behavior that it supports running against both an instance of Cadence running in Docker and against the test version. It's additionally parameterized to run the entire test suite with or without sticky execution enabled. Due to the complexity in handling both environments, adding yet another test to WorkflowTest has always been the easiest option for developers. To allow for tests to easily be split into other files, extract the core functionality to a Junit test rule that can easily be reused by additional tests. With the exception of testSignalCrossDomainExternalWorkflow and the replay tests that don't use the test environment, all tests have been left in WorkflowTest to be split out later.
- Loading branch information
Showing
15 changed files
with
930 additions
and
604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
224 changes: 224 additions & 0 deletions
224
src/test/java/com/uber/cadence/testUtils/CadenceTestContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
package com.uber.cadence.testUtils; | ||
|
||
import com.uber.cadence.FeatureFlags; | ||
import com.uber.cadence.client.WorkflowClient; | ||
import com.uber.cadence.client.WorkflowClientOptions; | ||
import com.uber.cadence.internal.worker.PollerOptions; | ||
import com.uber.cadence.serviceclient.ClientOptions; | ||
import com.uber.cadence.serviceclient.IWorkflowService; | ||
import com.uber.cadence.serviceclient.WorkflowServiceTChannel; | ||
import com.uber.cadence.testing.TestEnvironmentOptions; | ||
import com.uber.cadence.testing.TestWorkflowEnvironment; | ||
import com.uber.cadence.worker.Worker; | ||
import com.uber.cadence.worker.WorkerFactory; | ||
import com.uber.cadence.worker.WorkerFactoryOptions; | ||
import com.uber.cadence.worker.WorkerOptions; | ||
import com.uber.cadence.workflow.interceptors.TracingWorkflowInterceptorFactory; | ||
import java.time.Duration; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.concurrent.ExecutionException; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import java.util.concurrent.ScheduledFuture; | ||
import java.util.concurrent.ScheduledThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.function.Function; | ||
|
||
public class CadenceTestContext { | ||
|
||
private final Map<String, Worker> workers = new HashMap<>(); | ||
private List<ScheduledFuture<?>> delayedCallbacks = new ArrayList<>(); | ||
private final IWorkflowService wfService; | ||
private final WorkflowClient workflowClient; | ||
private final String defaultTaskList; | ||
private final TracingWorkflowInterceptorFactory tracer; | ||
private WorkerFactory workerFactory; | ||
// Real Service only | ||
private ScheduledExecutorService scheduledExecutor; | ||
// Test service only | ||
private TestWorkflowEnvironment testEnvironment; | ||
|
||
private CadenceTestContext( | ||
WorkflowClient workflowClient, | ||
String defaultTaskList, | ||
TracingWorkflowInterceptorFactory tracer, | ||
WorkerFactory workerFactory, | ||
ScheduledExecutorService scheduledExecutor, | ||
TestWorkflowEnvironment testEnvironment) { | ||
this.wfService = workflowClient.getService(); | ||
this.workflowClient = workflowClient; | ||
this.defaultTaskList = defaultTaskList; | ||
this.tracer = tracer; | ||
this.workerFactory = workerFactory; | ||
this.scheduledExecutor = scheduledExecutor; | ||
this.testEnvironment = testEnvironment; | ||
} | ||
|
||
public Worker getDefaultWorker() { | ||
return getOrCreateWorker(getDefaultTaskList()); | ||
} | ||
|
||
public Worker getOrCreateWorker(String taskList) { | ||
return workers.computeIfAbsent(taskList, this::createWorker); | ||
} | ||
|
||
public void start() { | ||
if (isRealService()) { | ||
workerFactory.start(); | ||
} else { | ||
testEnvironment.start(); | ||
} | ||
} | ||
|
||
public void stop() { | ||
if (!workerFactory.isStarted() || workerFactory.isTerminated() || workerFactory.isShutdown()) { | ||
return; | ||
} | ||
if (isRealService()) { | ||
workerFactory.shutdown(); | ||
workerFactory.awaitTermination(1, TimeUnit.SECONDS); | ||
for (ScheduledFuture<?> result : delayedCallbacks) { | ||
if (result.isDone() && !result.isCancelled()) { | ||
try { | ||
result.get(); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException("Interrupted, some assertions may not have run", e); | ||
} catch (ExecutionException e) { | ||
if (e.getCause() instanceof AssertionError) { | ||
throw (AssertionError) e.getCause(); | ||
} else { | ||
throw new RuntimeException("Failed to complete callback", e.getCause()); | ||
} | ||
} | ||
} | ||
} | ||
wfService.close(); | ||
} else { | ||
testEnvironment.shutdown(); | ||
testEnvironment.awaitTermination(1, TimeUnit.SECONDS); | ||
} | ||
if (tracer != null) { | ||
tracer.assertExpected(); | ||
} | ||
} | ||
|
||
public void suspendPolling() { | ||
workerFactory.suspendPolling(); | ||
} | ||
|
||
public void resumePolling() { | ||
workerFactory.resumePolling(); | ||
} | ||
|
||
public void registerDelayedCallback(Duration delay, Runnable r) { | ||
if (isRealService()) { | ||
ScheduledFuture<?> result = | ||
scheduledExecutor.schedule(r, delay.toMillis(), TimeUnit.MILLISECONDS); | ||
delayedCallbacks.add(result); | ||
} else { | ||
testEnvironment.registerDelayedCallback(delay, r); | ||
} | ||
} | ||
|
||
public void sleep(Duration d) { | ||
if (isRealService()) { | ||
try { | ||
Thread.sleep(d.toMillis()); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException("Interrupted", e); | ||
} | ||
} else { | ||
testEnvironment.sleep(d); | ||
} | ||
} | ||
|
||
public long currentTimeMillis() { | ||
if (isRealService()) { | ||
return System.currentTimeMillis(); | ||
} else { | ||
return testEnvironment.currentTimeMillis(); | ||
} | ||
} | ||
|
||
public String getDefaultTaskList() { | ||
return defaultTaskList; | ||
} | ||
|
||
public WorkflowClient getWorkflowClient() { | ||
return workflowClient; | ||
} | ||
|
||
public WorkflowClient createWorkflowClient(WorkflowClientOptions options) { | ||
if (isRealService()) { | ||
return WorkflowClient.newInstance(getWorkflowClient().getService(), options); | ||
} else { | ||
return testEnvironment.newWorkflowClient(options); | ||
} | ||
} | ||
|
||
public TracingWorkflowInterceptorFactory getTracer() { | ||
return tracer; | ||
} | ||
|
||
private boolean isRealService() { | ||
return testEnvironment == null; | ||
} | ||
|
||
private Worker createWorker(String taskList) { | ||
if (isRealService()) { | ||
return workerFactory.newWorker( | ||
taskList, | ||
WorkerOptions.newBuilder() | ||
.setActivityPollerOptions(PollerOptions.newBuilder().setPollThreadCount(5).build()) | ||
.setMaxConcurrentActivityExecutionSize(1000) | ||
.setInterceptorFactory(tracer) | ||
.build()); | ||
} else { | ||
return testEnvironment.newWorker(taskList); | ||
} | ||
} | ||
|
||
public static CadenceTestContext forTestService( | ||
Function<TestEnvironmentOptions, TestWorkflowEnvironment> envFactory, | ||
WorkflowClientOptions clientOptions, | ||
String defaultTaskList, | ||
WorkerFactoryOptions workerFactoryOptions) { | ||
TracingWorkflowInterceptorFactory tracer = new TracingWorkflowInterceptorFactory(); | ||
|
||
TestEnvironmentOptions testOptions = | ||
new TestEnvironmentOptions.Builder() | ||
.setWorkflowClientOptions(clientOptions) | ||
.setInterceptorFactory(tracer) | ||
.setWorkerFactoryOptions(workerFactoryOptions) | ||
.build(); | ||
TestWorkflowEnvironment testEnvironment = envFactory.apply(testOptions); | ||
return new CadenceTestContext( | ||
testEnvironment.newWorkflowClient(), | ||
defaultTaskList, | ||
tracer, | ||
testEnvironment.getWorkerFactory(), | ||
null, | ||
testEnvironment); | ||
} | ||
|
||
public static CadenceTestContext forRealService( | ||
WorkflowClientOptions clientOptions, | ||
String defaultTaskList, | ||
WorkerFactoryOptions workerFactoryOptions) { | ||
TracingWorkflowInterceptorFactory tracer = new TracingWorkflowInterceptorFactory(); | ||
|
||
IWorkflowService wfService = | ||
new WorkflowServiceTChannel( | ||
ClientOptions.newBuilder() | ||
.setFeatureFlags( | ||
new FeatureFlags().setWorkflowExecutionAlreadyCompletedErrorEnabled(true)) | ||
.build()); | ||
WorkflowClient workflowClient = WorkflowClient.newInstance(wfService, clientOptions); | ||
WorkerFactory workerFactory = new WorkerFactory(workflowClient, workerFactoryOptions); | ||
ScheduledExecutorService scheduledExecutor = new ScheduledThreadPoolExecutor(1); | ||
return new CadenceTestContext( | ||
workflowClient, defaultTaskList, tracer, workerFactory, scheduledExecutor, null); | ||
} | ||
} |
Oops, something went wrong.