Class DisableAnnotationGloballyTest
java.lang.Object
org.jboss.arquillian.testng.Arquillian
org.eclipse.microprofile.fault.tolerance.tck.disableEnv.DisableAnnotationGloballyTest
- All Implemented Interfaces:
org.testng.IHookable
,org.testng.ITestNGListener
public class DisableAnnotationGloballyTest
extends org.jboss.arquillian.testng.Arquillian
Test the impact of policies disabling through config.
The test assumes that the container supports both the MicroProfile Configuration API and the MicroProfile Fault
Tolerance API. All Fault tolerance policies are disabled through configuration in the deployment.
- Author:
- Antoine Sabot-Durand, Neil Young, Andrew Rouse
-
Nested Class Summary
Nested classes/interfaces inherited from class org.jboss.arquillian.testng.Arquillian
org.jboss.arquillian.testng.Arquillian.UpdateResultListener
-
Field Summary
Fields inherited from class org.jboss.arquillian.testng.Arquillian
ARQUILLIAN_DATA_PROVIDER
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.jboss.shrinkwrap.api.spec.WebArchive
deploy()
void
A test to check that asynchronous is disabled In normal operation, asyncClient.asyncWaitThenReturn() is launched asynchronously.void
Test whether Bulkhead is enabled onwaitWithBulkhead()
void
CircuitBreaker policy being disabled the policy shouldn't be appliedvoid
Test that a Fallback service is ignored when service fails.void
failAndRetryOnce is annotated with maxRetries = 1 so it is expected to execute 2 times but as Retry is disabled, then no retries should be attempted.void
Test Timeout is disabled, should wait two seconds and then get a TestExceptionMethods inherited from class org.jboss.arquillian.testng.Arquillian
arquillianAfterClass, arquillianAfterSuite, arquillianAfterTest, arquillianArgumentProvider, arquillianBeforeClass, arquillianBeforeSuite, arquillianBeforeTest, run
-
Constructor Details
-
DisableAnnotationGloballyTest
public DisableAnnotationGloballyTest()
-
-
Method Details
-
deploy
@Deployment public static org.jboss.shrinkwrap.api.spec.WebArchive deploy() -
testRetryDisabled
public void testRetryDisabled()failAndRetryOnce is annotated with maxRetries = 1 so it is expected to execute 2 times but as Retry is disabled, then no retries should be attempted. -
testFallbackDisabled
public void testFallbackDisabled()Test that a Fallback service is ignored when service fails. failRetryOnceThenFallback is annotated with maxRetries = 1 so serviceB is expected to execute 2 times but as Retry is disabled then no retries should be attempted . -
testCircuitClosedThenOpen
public void testCircuitClosedThenOpen()CircuitBreaker policy being disabled the policy shouldn't be applied -
testTimeout
public void testTimeout()Test Timeout is disabled, should wait two seconds and then get a TestException -
testAsync
A test to check that asynchronous is disabled In normal operation, asyncClient.asyncWaitThenReturn() is launched asynchronously. As Asynchronous operation was disabled via config, test is expecting a synchronous operation.- Throws:
InterruptedException
- interruptedExecutionException
- task was aborted
-
testBulkhead
public void testBulkhead()Test whether Bulkhead is enabled onwaitWithBulkhead()
-