TestNG Foundation is a lightweight collection of TestNG listeners, interfaces, and static utility classes that supplement and augment the functionality provided by the TestNG API. The facilities provided by TestNG Foundation include two types of runtime listener hooks, test artifact capture, automatic test context attribute propagation, automatic retry of failed tests, and test execution timeout management.
Future releases of TestNG Foundation will add target platform support. See ExecutionFlowController for more information.
- ExecutionFlowController:
ExecutionFlowController is a TestNG listener that performs several basic functions related to test method execution:- ExecutionFlowController propagates test context attributes: [before method] → [test method] → [after method]
This feature enables tests to attach context-specific values that are accessible throughout the entire lifecycle of the test. - For test classes that implement the IInvokedMethodListenerEx interface, ExecutionFlowController forwards calls from its own invoked method listener implementation to the corresponding methods in the test class. In-bound attribute propagation is performed before forwarding the
beforeInvocation(IInvokedMethod, ITestResult)
call, and out-bound attribute propagation is performed after forwarding theafterInvocation(IInvokedMethod, ITestResult)
call. - For methods that don't specify a timeout interval, ExecutionFlowController sets the configured (or default) standard interval.
- If automatic retry of failed tests is enabled, ExecutionFlowController attaches the specified (or default) retry analyzer to each test method with no prior declaration.
NOTE: TestNG sets the status of retried tests toSKIP
. The 'throwable' of these retried tests distinguishes them from actual skipped tests, for which the 'throwable' isorg.testng.SkipException
. - In-depth details of ExecutionFlowController can be found here.
- ExecutionFlowController propagates test context attributes: [before method] → [test method] → [after method]
- ListenerChain:
ListenerChain is a TestNG listener that enables you to add other listeners at runtime and guarantees the order in which they're invoked. This is similar in behavior to a JUnit rule chain. ListenerChain also provides static methods that enable you to acquire references to listeners that are linked into the chain. - ArtifactCollector:
ArtifactCollector is a TestNG test listener that serves as the foundation for artifact-capturing test listeners. This is a generic class, with the artifact-specific implementation provided by instances of the ArtifactType interface. See the Interfaces section below for more details.
- LinkedListener:
This is a marker interface for listeners that can be linked to the ListenerChain via its service loader. - IInvokedMethodListenerEx:
Test classes that implement the IInvokedMethodListenerEx interface are hooked in by the invoked method listener implementation of ExecutionFlowController. See the TestNG Listeners section above for more details. - ArtifactType:
Classes that implement the ArtifactType interface provide the artifact-specific methods used by the ArtifactCollector listener to capture and store test-related artifacts. The unit tests for this project include a reference implementation (UnitTestArtifact) provides a basic outline for a scenario-specific artifact provider. This artifact provider is specified as the superclass type parameter in the UnitTestCapture listener, which is a lightweight extension of ArtifactCollector. The most basic example is shown below:
package com.example;
import java.nio.file.Path;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.ITestResult;
import com.nordstrom.automation.testng.ArtifactType;
public class MyArtifactType extends ArtifactType {
private static final String ARTIFACT_PATH = "artifacts";
private static final String EXTENSION = "txt";
private static final String ARTIFACT = "This text artifact was captured for '%s'";
private static final Logger LOGGER = LoggerFactory.getLogger(MyArtifactType.class);
@Override
public boolean canGetArtifact(ITestResult result) {
return true;
}
@Override
public byte[] getArtifact(ITestResult result) {
return String.format(ARTIFACT, result.getName()).getBytes().clone();
}
@Override
public Path getArtifactPath(ITestResult result) {
return super.getArtifactPath(result).resolve(ARTIFACT_PATH);
}
@Override
public String getArtifactExtension() {
return EXTENSION;
}
@Override
public Logger getLogger() {
return LOGGER;
}
}
package com.example;
import com.nordstrom.automation.testng.ArtifactCollector;
public class MyArtifactCapture extends ArtifactCollector<MyArtifactType> {
public MyArtifactCapture() {
super(new MyArtifactType());
}
}
The preceding code is an example of how the artifact type definition is assigned as the type parameter in a subclass of ArtifactCollector. Because TestNG listeners are specified solely by their class, type-specific artifact collectors must be declared this way.
- LinkedListeners:
To attach listeners to an active ListenerChain, mark your test class with the@LinkedListeners
annotation.
- PropertyManager:
PropertyManager contains two static methods used to propagate attributes from one test context to another:extractAttributes()
- Extracts all of the attributes of the specified test context into a map.injectAttributes()
- Injects all of the entries of the specified map into the specified test context as attributes.
If ExecutionFlowController is the only listener you need, or if the order in which your listeners are invoked is inconsequential, the TestNG @Listeners
annotation is a perfectly fine method to activate your listeners. However, if you need to activate multiple listeners that must be invoked in a specific order, use ListenerChain and activate it via the ServiceLoader as described in the TestNG documentation:
com.nordstrom.automation.testng.ListenerChain
In a Maven project, the preceding file is stored in the src/main/resources folder:
Once this file is added to your project, ListenerChain will be loaded automatically whenever you run your tests. To link listeners into the chain, you have two options:
- Specify listeners to attach via the ListenerChain service loader.
- Mark your test class with the
@LinkedListeners
annotation.
These options are not mutually exclusive; you can freely apply both within the same project.
Listeners that you wish to attach via the ListenerChain service loader must implement the LinkedListener interface:
package com.example
import org.testng.IClassListener;
import com.nordstrom.automation.testng.LinkedListener;
public class ServiceLoadedListener implements IClassListener, LinkedListener {
@Override
public void onBeforeClass(ITestClass testClass) {
...
}
@Override
public void onAfterClass(ITestClass testClass) {
...
}
}
To specify the listener(s) you wish to attach via the ListenerChain service loader, create a file at location
META-INF/services/com.nordstrom.automation.testng.LinkedListener and indicate the listener(s) you want to be linked in:
com.example.ServiceLoadedListener
In a Maven project, the preceding file is stored in the src/test/resources folder:
In this example, we've specified a single listener (ServiceLoadedListener) that should be attached via the ListenerChain service loader. If additional listeners had been specified, each of them would be attached in the order they're specified.
With the @LinkedListeners
annotation, you specify one or more listener types to attach to the ListenerChain:
package com.example;
import com.nordstrom.automation.selenium.listeners.DriverListener;
import com.nordstrom.automation.testng.ExecutionFlowController;
import com.nordstrom.automation.testng.LinkedListeners;
import com.nordstrom.automation.testng.ListenerChain;
@LinkedListeners({DriverListener.class, ExecutionFlowController.class})
public class ExampleTest {
...
}
As shown above, we use the @LinkedListeners
annotation to attach DriverListener and ExecutionFlowController. The order in which listener methods are invoked is determined by the order in which listener objects are added to the chain. Listener before methods are invoked in last-added-first-called order. Listener after methods are invoked in first-added-first-called order. Only one instance of any given listener class will be included in the chain.
The annotation transformer of ExecutionFlowController applies the configuration for two managed features to their corresponding attributes in the @Test
annotation:
- The TEST_TIMEOUT setting specifies the global test timeout interval (in milliseconds). By default, this setting is undefined, which disables this feature. When a timeout interval is specified, this value is assigned to every test method doesn't already specify a longer interval.
- Automatic retry of failed tests is configured via two settings and a service loader provider configuration file:
- The MAX_RETRY setting specifies the global test retry count. By default, this setting has a value of 0, which disables the global retry analyzer feature.
- The RETRY_ANALYZER setting specifies the global retry analyzer class. By default, this setting specifies the RetryManager class. This can be overridden with the fully-qualified name of a different retry analyzer. However, this is typically unnecessary, as RetryManager enables you to attach one or more retry analyzers through the service loader. More on this below.
META-INF/services/org.testng.IRetryAnalyzer
is the service loader retry analyzer configuration file. By default, this file is absent. To add managed analyzers, create this file and add the fully-qualified names of their classes, one line per item.
When a positive retry count and valid retry analyzer are specified, the indicated analyzer is attached to every test method that doesn't already specify a retry analyzer. Note that until you create and populate the provider configuration file, RetryManager will always return false
. Consequently, no failed tests will be retried. The IRetryAnalyzer implementations in the classes specified by the configuration file determine whether or not any given failed test is retried.
As indicated above, RetryManager is a TestNG retry analyzer that provides a framework for invoking collections of scenario-specific analyzers that are installed via the ServiceLoader:
- Managed retry analyzers implement the standard IRetryAnalyzer interface.
- Analyzer classes are added to the managed collection via entries in a file named
META-INF/services/org.testng.IRetryAnalyzer
- The number of times a failed test will be retried is configured via the MAX_RETRY setting, which defaults to 0.
Prior to retrying a failed test, RetryManager emits a debug-level message in this format:
### RETRY ### [suite-name/test-name] className.methodName(parmValue...)
The class/method portion of these messages is produced by the InvocationRecord class. The content of each parmValue
item (if any) represents the actual value passed to the corresponding argument of a failed invocation of a parameterized test.
Once automatic retry is enabled, RetryManager will be attached to every method that doesn't already specify a retry analyzer. However, there may be test methods or classes that you don't wish to be retried. For example, you may have a long-running test method that would delay completion of the suite, or you have an entire class of tests that rely on externally-managed resources that must be replenished between runs.
For these sorts of scenarios, you can mark test methods or classes with the @NoRetry
annotation:
@Test
@NoRetry
public void testLongRunning() {
// test implementation goes here
}
Sensitive values can be redacted from the messages that RetryManager emits by marking their test method arguments with the @RedactValue
annotation:
@Test
@Parameters({"username", "password"})
public void testLogin(String username, @RedactValue String password) {
// test implementation goes here
}
The retry message for this method would include the actual user name, but redact the password:
### RETRY ### [MySuite/MyTest] AccountTest.testLogin(john.doe, |:arg1:|)
Typically, scenario-specific retry analyzers are installed via the service loader. However, if you plan to use RetryManager in another framework, we recommend that you extend this class and override the isRetriable(ITestResult)
method instead of registering your retry analyzer via the service loader. This strategy enables clients of your framework to add their own analyzers without disconnecting yours. Just make sure to invoke the overridden method in RetryManager if your analyzer declines to request method retry:
@Override
protected boolean isRetriable(ITestResult result) {
if (isRetriableInFramework(result)) {
return true;
}
return super.isRetriable(result);
}
Remember to override the value of the RETRY_ANALYZER setting with the fully-qualified class name of your framework-specific extension of RetryManager to enable activation of your analyzer by ExecutionFlowController.
ExecutionFlowController propagates test context attributes from one phase of test execution to the next. This feature enables tests to attach context-specific values that are accessible throughout the entire lifecycle of the test.
The attribute propagation feature of ExecutionFlowController produces many-to-one-to-many behavior:
- The attributes attached to all executed
@BeforeMethod
configuration methods are aggregated together for propagation to the test method. - The attributes attached to the test method (which include those that were propagated from before) are propagated to all executed
@AfterMethod
configuration methods.
This attribute propagation feature provides an easy way for tests to maintain context-specific values. For any attribute whose value is an object reference, this behavior can result in the creation of additional references that will prevent the object from being marked for garbage collection until the entire suite of tests completes. For these sorts of attributes, TestNG Foundation provides the TrackedObject class.
TrackedObject is a reference-tracking wrapper used by PropertyManager to record the test result objects to which an object reference is propagated. This enables the client to release all references when the object is no longer needed:
private static final DRIVER = "Driver";
public void setDriver(WebDriver driver) {
ITestResult result = Reporter.getCurrentTestResult();
if (driver != null) {
new TrackedObject<>(result, DRIVER, driver);
} else {
Object val = result.getAttribute(DRIVER);
if (val instanceof TrackedObject) {
((TrackedObject<?>) val).release();
} else {
result.setAttribute(DRIVER, null);
result.removeAttribute(DRIVER);
}
}
}
public WebDriver getDriver() {
Object obj;
ITestResult result = Reporter.getCurrentTestResult();
Object val = result.getAttribute(DRIVER);
if (val instanceof TrackedObject) {
obj = ((TrackedObject<?>) val).getValue();
} else {
obj = val;
}
return (WebDriver) obj;
}
In this example, a Selenium driver attribute is stored as a tracked object. When the driver is no longer needed, specifying a null
value will signal that all propagated references should be released. To retrieve the driver reference from the test attribute, extract it with the TrackedObject.getValue()
method.