Class DisableAnnotationGloballyEnableOnClassDisableOnMethod
java.lang.Object
org.jboss.arquillian.testng.Arquillian
org.eclipse.microprofile.fault.tolerance.tck.disableEnv.DisableAnnotationGloballyEnableOnClassDisableOnMethod
- All Implemented Interfaces:
org.testng.IHookable
,org.testng.ITestNGListener
public class DisableAnnotationGloballyEnableOnClassDisableOnMethod
extends org.jboss.arquillian.testng.Arquillian
Test that annotations can be disabled globally, then enabled at the class level and then disabled at the method
level.
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
-
DisableAnnotationGloballyEnableOnClassDisableOnMethod
public DisableAnnotationGloballyEnableOnClassDisableOnMethod()
-
-
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. Retry is enabled at the class level and not disabled for this method so we expect to get two executions -
testCircuitBreaker
public void testCircuitBreaker()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()
-