Turn your manual testers into automation experts Request a DemoStart testRigor Free

Apache Struts Testing

Apache Struts Testing

The Apache Struts web framework is a free, open-source MVC (model-view-controller) solution for creating dynamic web applications using Java. It is a well-maintained and full-featured web framework that provides a set of libraries, components, and tools that help developers create web applications with ease. The Apache Struts Project offered two major versions of the Struts framework. Currently, only the Struts 2 version is being maintained.

The framework includes three key components: A "request" handler provided by the application developer that is mapped to a standard URI. A "response" handler transfers control to another resource, which completes the response. A tag library helps developers create interactive form-based applications with server pages. Struts works well with conventional REST applications and technologies like SOAP and AJAX.

As with any development process, testing is one of the key considerations. Per the testing pyramid, the following ways help test applications created using Apache Struts.

Unit Testing

Unit tests are meant to check all the units that are present in the application. Testing each component at a granular level is important as it acts as the very first layer of verification. How these components behave once operated together is checked with the other testing types discussed below. You will need to mock data inputs and services to ensure that each unit can be tested in isolation.

Struts 2 supports running unit tests in the Struts Action class with the Struts 2 JUnit plugin. The Struts 2 JUnit plugin jar file must be on your application's classpath. The JUnit plugin allows you to test the methods of an Action class from within the Struts 2 framework. To use the Struts 2 plugin to ensure the Strut 2 framework runs as part of the test. Also, you need to have your JUnit test class extend StrutsTestCase.

If your Struts 2 application uses Spring to inject dependencies into the Action class, then the Struts 2 JUnit Plugin has a StrutsSpringTestCase that your test class should extend.

Let's take a look at an example of a unit test for a user registration application. The test below will check if the user registration action succeeded. The StrutsTestCase provides a request object (of type MockHttpServletRequest) that can be used to set these values in the request scope.
@Test
public void testExecuteValidationPasses() throws Exception {
  request.setParameter("personBean.firstName", "Bruce");
  request.setParameter("personBean.lastName", "Phillips");
  request.setParameter("personBean.email", "bphillips@ku.edu");
  request.setParameter("personBean.age", "19");
  
  ActionProxy actionProxy = getActionProxy("/register.action");
  Register action = (Register) actionProxy.getAction() ;
  
  assertNotNull("The action is null but should not be.", action);
  
  String result = actionProxy.execute();
  
  assertEquals("The execute method did not return " + ActionSupport.SUCCESS + " but should have.", ActionSupport.SUCCESS, result);
}
You can also use TestNG for unit testing of your Struts application. Ensure that the plugin jar and its dependencies are in the testing classpath. Below is an example where two actions, login and logout, are being tested.
import org.testng.annotations.Test;
import com.opensymphony.xwork2.ActionProxy;
import org.apache.struts2.StrutsTestCase;
import org.junit.Assert;

public class ExampleStruts2Test extends StrutsTestCase {

  @Test
  public void testLoginAction() throws Exception {
    request.setParameter("username", "testuser");
    request.setParameter("password", "testpassword");
    ActionProxy proxy = getActionProxy("/login.action");
    String result = proxy.execute();
    Assert.assertEquals("success", result);
  }
  
  @Test
  public void testLogoutAction() throws Exception {
    request.setParameter("username", "testuser");
    ActionProxy proxy = getActionProxy("/logout.action");
    String result = proxy.execute();
    Assert.assertEquals("success", result);
  }
}

Integration Testing

Using integration tests, you can verify if different components of your system are working correctly together. The test cases target scenarios that involve integrations with databases, file systems, network infrastructure, or other components.

Some scenarios where integration tests are used:
  • Many Struts 2 applications interact with a database to store and retrieve data. Integration testing can be used to ensure that the application is interacting correctly with the database, and that data is being stored and retrieved as expected.
  • Struts 2 provides built-in form validation features that allow developers to define rules for validating user input. Integration testing can be used to ensure that these validation rules are working correctly and that users aren't able to submit invalid data.
An example of a validation method is as follows.
public void validate(){
  if (personBean.getFirstName().length() == 0) {
    addFieldError("personBean.firstName", "First name is required.");
  }
  
  if (personBean.getEmail().length() == 0) {
    addFieldError("personBean.email", "Email is required.");
  }
  
  if (personBean.getAge() < 18) {
    addFieldError("personBean.age", "Age is required and must be 18 or older");
  }
}
  1. Many Struts 2 applications interact with external APIs to retrieve data or perform actions. Integration testing can be used to ensure that these API integrations are working correctly and that the application is able to handle different types of responses and errors from the API.
  2. These applications often involve many steps or pages that need to be navigated through in a specific order. Integration testing can also be used here as a pre-step to end-to-end testing for such situations.

By performing this kind of integration testing, we can ensure that our Struts 2 application is working correctly from end to end and that different parts of the application are interacting correctly.

Below is an example of an integration test for the search operation.
import com.opensymphony.xwork2.ActionProxy;
import org.apache.struts2.StrutsTestCase;
import org.junit.Test;
import static org.junit.Assert.*;

public class ExampleIntegrationTest extends StrutsTestCase {

  @Test
  public void testSearch() throws Exception {
    request.setParameter("query", "test");
    ActionProxy proxy = getActionProxy("/search.action");
    String result = proxy.execute();
    assertEquals("success", result);
    Object action = proxy.getAction();
    assertTrue(action instanceof SearchAction);
    SearchAction searchAction = (SearchAction) action;
    assertNotNull(searchAction.getResults());
    assertTrue(searchAction.getResults().size() > 0);
    assertEquals("test", searchAction.getQuery());
  }
}

End-to-End Testing

End-to-end (or system) testing is a methodology that validates the entire application or system, from start to finish, to ensure that it works as expected in real-world scenarios. This testing approach checks the application's flow, from the user interface (UI) down to the back-end systems and databases, simulating user actions, data inputs, and system interactions to verify that all components work together coherently and efficiently.

And although unit testing and integration testing play a vital role in ensuring defect-free software, they are not enough on their own. This is where end-to-end testing comes into play. These tests are mostly on the UI level, but can also involve API calls when being a part of the user flow.

Here're the most popular tools for Apache Struts applications:

Selenium-based tools

Selenium is an open-source software testing framework primarily used for web applications. It provides a way to automate browser actions and interactions, enabling testers to simulate user behavior and validate that a web application functions as expected. Selenium supports various programming languages, such as Java, C#, Python, and Ruby, and allows for the creation of test scripts that can be executed across multiple web browsers, including Chrome, Firefox, Safari, and Edge. The complexity of test creation and tedious test maintenance are among the top downsides that you ought to consider when deciding to adopt this framework.

Cucumber

Cucumber is an open-source, behavior-driven development (BDD) testing tool that promotes collaboration between business stakeholders, developers, and testers. It enables teams to write human-readable, executable test specifications using a domain-specific language called Gherkin. Cucumber supports various programming languages, including Java, Ruby, and Python, and integrates with popular testing frameworks like Selenium, JUnit, and TestNG. There's a detailed article on Cucumber that you might be interested in.

testRigor

testRigor is a cloud-hosted AI-driven solution, which incrementally simplifies the entire process of end-to-end testing. From initial setup, to building robust functional scenarios using only plain English commands, to extremely straightforward test maintenance.

This means that you don't need programming skills to create testRigor tests, and the tool also supports BDD out of the box with fewer steps to follow than other tools.

What's more is that this tool comes with many additional features like email and SMS text testing, accessibility testing, easy table content testing, and API testing - to name a few. testRigor also supports visual testing wherein you can directly compare screens and brand their variances based on severity. Besides these capabilities, testRigor also integrates with other tools for test management, CI/CD, and issue management tools. You can read more about the capabilities of this tool over here.

Below is an example of how you can use testRigor to write database queries.
run sql query "select top 1 UserID, LastName, FirstName from Users;"
open url "https://www.pivotalaccessibility.com/contact-us"
enter stored value "FirstName" into "First Name"
check that stored value "LastName" itself contains "Jack Smith"
run sql query "insert into Users(UserID, FirstName, LastName) values (3, 'Jane', 'Doe');"
Below is an example of the UI test case including a reusable rule. As you can see, it's extremely straightforward to read and make sense of.
login 							//pre-defined rule
click in the bottom right corner of the screen
click "washing machine"
click exactly "Technician"
check page contains "information will be updated once tracking is started"
check page contains "start tracking"
click "start tracking"
check page contains "the technician will arrive between 4:00 pm and 4:30 pm"
check that page contains "share the OTP with the technician to start services"

Conclusion

Java developers can create versatile web applications using Apache Struts. With proper quality assurance practices and the latest testing tools, you can also ensure the application is in great shape and ready for end users.