Package allurium.aspects
Class SwitcherAspects
java.lang.Object
allurium.aspects.SwitcherAspects
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:
AbstractSwitcher.toggle()
- Intercepts and logs the toggle action.AbstractSwitcher.switchOn()
- Intercepts and logs the switch-on action.AbstractSwitcher.switchOff()
- Intercepts and logs the switch-off action.
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:
-
AbstractSwitcher
Allure
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
stepShift
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theAbstractSwitcher.toggle()
method to log the toggle action as an Allure step.void
stepSwitchOff
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theAbstractSwitcher.switchOff()
method to log the switch-off action as an Allure step.void
stepSwitchOn
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theAbstractSwitcher.switchOn()
method to log the switch-on action as an Allure step.
-
Constructor Details
-
SwitcherAspects
public SwitcherAspects()
-
-
Method Details
-
stepShift
Intercepts theAbstractSwitcher.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
Intercepts theAbstractSwitcher.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
Intercepts theAbstractSwitcher.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
-