Class SwitcherAspects

java.lang.Object
allurium.aspects.SwitcherAspects

public class SwitcherAspects extends Object
Aspect class for intercepting and logging actions performed on AbstractSwitcher with additional behaviors.

This class intercepts method calls on switcher elements (e.g., toggle, switchOn, switchOff) and wraps them with Allure step logging to provide better visibility into test execution.

Features:

  • Logs switcher actions as steps in Allure reports.
  • Handles errors during intercepted method executions, ensuring proper status updates in reports.
  • Provides additional debugging information in case of exceptions.

Purpose:

  • Enhances visibility of switcher interactions in tests by integrating Allure step logging.
  • Standardizes the logging format and behavior for switcher operations.

Intercepted Methods:

Example Usage:


 AbstractSwitcher switcher = new ToggleSwitch(Selenide.$(".switch"));
 switcher.toggle();  // Logged as a toggle step in Allure report
 switcher.switchOn();  // Logged as a switch-on step in Allure report
 switcher.switchOff();  // Logged as a switch-off step in Allure report
 

Allure Integration:

  • Each intercepted method starts a new Allure step with a unique UUID.
  • Step names are generated dynamically using StepTextProvider for consistency.
  • Step statuses are updated based on the success or failure of the intercepted method.

Exception Handling:

  • Logs exceptions encountered during method execution.
  • Sets the step status to FAILED in case of an error.
See Also:
  • Constructor Details

    • SwitcherAspects

      public SwitcherAspects()
  • Method Details

    • stepShift

      public void stepShift(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the AbstractSwitcher.toggle() method to log the toggle action as an Allure step.
      Parameters:
      invocation - the join point representing the intercepted method call
      Throws:
      Throwable - any exception thrown by the intercepted method
    • stepSwitchOn

      public void stepSwitchOn(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the AbstractSwitcher.switchOn() method to log the switch-on action as an Allure step.
      Parameters:
      invocation - the join point representing the intercepted method call
      Throws:
      Throwable - any exception thrown by the intercepted method
    • stepSwitchOff

      public void stepSwitchOff(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the AbstractSwitcher.switchOff() method to log the switch-off action as an Allure step.
      Parameters:
      invocation - the join point representing the intercepted method call
      Throws:
      Throwable - any exception thrown by the intercepted method