Class FormAspects

java.lang.Object
allurium.aspects.FormAspects

public class FormAspects extends Object
Aspect class for intercepting and logging actions performed on AbstractForm instances.

This aspect is specifically designed to enhance form submission methods by logging their execution as steps in Allure reports. It captures the context of the action, including the name and type of the form, and dynamically logs the step result based on the success or failure of the intercepted method.

Features:

  • Intercepts the submit() method of AbstractForm and logs its execution.
  • Generates a unique step identifier and uses StepTextProvider to create descriptive step names for Allure reports.
  • Handles success and failure scenarios by updating the step's status accordingly.

Example:


 public class LoginForm extends AbstractForm {
  • Constructor Details

    • FormAspects

      public FormAspects()
  • Method Details

    • stepSubmit

      public void stepSubmit(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts and logs the execution of the submit() method in AbstractForm.

      This method wraps the execution of the intercepted submit() method with Allure step logging. It dynamically generates a step name using StepTextProvider and records the step's success or failure status.

      Parameters:
      invocation - the join point representing the intercepted method
      Throws:
      Throwable - if the intercepted method throws any exception