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
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.jboss.shrinkwrap.api.spec.WebArchive
     
    void
    A test to check that asynchronous is disabled In normal operation, asyncClient.asyncWaitThenReturn() is launched asynchronously.
    void
    Test whether Bulkhead is enabled on waitWithBulkhead()
    void
    CircuitBreaker policy being disabled the policy shouldn't be applied
    void
    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 TestException

    Methods inherited from class org.jboss.arquillian.testng.Arquillian

    arquillianAfterClass, arquillianAfterSuite, arquillianAfterTest, arquillianArgumentProvider, arquillianBeforeClass, arquillianBeforeSuite, arquillianBeforeTest, run

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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

      public void testAsync() throws InterruptedException, ExecutionException
      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 - interrupted
      ExecutionException - task was aborted
    • testBulkhead

      public void testBulkhead()
      Test whether Bulkhead is enabled on waitWithBulkhead()