Skip to content Skip to sidebar Skip to footer

How to Run Test and Continuous Build Git

In this article from the series Automation Tools, I am going to guide you on how you can set up a GitHub Actions job for a Selenium Java project, run your Selenium tests, and display the report with the test results, all that without ever leaving the GitHub website.

What Is GitHub Actions?

GitHub Actions  is one of the most recent workflow mechanisms that are quick and easy to set up directly from the GitHub repository. It allows building CI/CD pipelines  for testing, releasing, and deploying software without third-party platforms. It has hosted runners for every major OS (Windows, macOS, Linux), or you can directly run it on a VM or inside a container. It's entirely free for public repositories, and the free plan for private repositories includes 2000 minutes per month.

Why Do You Need CI/CD?

CI/CD , short for Continuous Integration  and Continuous Delivery/Deployment , is a collection of practices and operating principles that enable teams to deliver code changes more frequently and reliably. The implementation is usually called CI/CD pipeline .

Continuous Integration  establishes a consistent automated way of building, packaging, and testing applications. This helps teams deliver code changes more frequently, which improves collaboration and software quality.

Continuous Delivery  starts where Continuous Integration ends. It automates the delivery of applications to selected environments. For example, teams usually work on multiple environments (development, testing, staging, production), and Continuous Delivery helps with an automated way to push code changes to them.

The logic behind using such principles is, so teams commit smaller code changes more frequently. Continuous Integration usually checks if the code builds and the tests run successfully on each commit to the repository, so it's easier to identify defects earlier and improve software quality. Continuous Deployment helps those changes get to the production environment seamlessly when all the tests have been carried out.

Setting Up The Tests

In the example, we're going to build a simple Maven project with Java, which will test the proper validation of the fields of Bootstrap 5's example Checkout form . We're checking if the appropriate error message is displayed on each required field, if it is empty when submitting and if the form submits if all the fields have valid info.

bootstrap example checkout form validation error

We're not going to go into much detail about writing the test, as this isn't the point of this article. You can download the source code from the bottom of the page. Here's the test class we're going to execute:

public class CheckoutTests {
public WebDriver driver;
public CheckoutPage page;
@BeforeAll
public static void classInit() {
WebDriverManager .chromedriver().setup();
}
@BeforeEach
public void testInit() {
ChromeOptions options = new ChromeOptions();
options.addArguments( "--headless" );
driver = new ChromeDriver(options);
page = new CheckoutPage(driver);
page.navigate();
}
@AfterEach
public void testCleanup() {
driver.quit();
}
@Test
public void formSent_When_InfoValid() {
var clientInfo = new ClientInfo();
clientInfo.setFirstName( "Anton" );
clientInfo.setLastName( "Angelov" );
clientInfo.setUsername( "aangelov" );
clientInfo.setEmail( "info@berlinspaceflowers.com" );
clientInfo.setAddress1( "1 Willi Brandt Avenue Tiergarten" );
clientInfo.setAddress2( "Lützowplatz 17" );
clientInfo.setCountry(1);
clientInfo.setState(1);
clientInfo.setZip( "10115" );
clientInfo.setCardName( "Anton Angelov" );
clientInfo.setCardNumber( "1234567890123456" );
clientInfo.setCardExpiration( "12/23" );
clientInfo.setCardCVV( "123" );
page.fillInfo(clientInfo);
page.assertions().formSent();
}
...
@Test
public void validatedCardCVV_When_CardCVVNotSet() {
var clientInfo = new ClientInfo();
clientInfo.setFirstName( "Anton" );
clientInfo.setLastName( "Angelov" );
clientInfo.setUsername( "aangelov" );
clientInfo.setEmail( "infoberlinspaceflowers.com" );
clientInfo.setAddress1( "1 Willi Brandt Avenue Tiergarten" );
clientInfo.setAddress2( "Lützowplatz 17" );
clientInfo.setCountry(1);
clientInfo.setState(1);
clientInfo.setZip( "10115" );
clientInfo.setCardName( "Anton Angelov" );
clientInfo.setCardNumber( "1234567890123456" );
clientInfo.setCardExpiration( "12/23" );
clientInfo.setCardCVV( " " );
page.fillInfo(clientInfo);
page.assertions().validatedCardCVV();
}
}

NOTE: We're setting up Chrome to run in the headless mode because the runners don't display output and will probably crash the driver.

After you have the Maven project set up with all the tests and verified that they're working, we're adding the maven-surefire-plugin  to the POM.xml to run the tests through the command line. Next, go to the project's root using CMD/Terminal and write mvn clean test  to clean the project's generated files, compile the project and run the tests (note that test carries the additional tasks needed such as compilation). If everything goes as expected, you should have a folder called "surefire-reports" with a .xml file with the results under the "target" folder. We're going to need it later when we're configuring the reporting.

Getting Started with GitHub Actions

After committing the project to a repository in GitHub, go to the "Actions" tab (top red square) in that repository and choose "Set up this workflow" in the "Java with Maven" box (bottom red square):

github actions location

You'll be greeted with the workflow configuration file with additional actions you can choose from on the right. You'll notice that it's configured to run on the latest Ubuntu, and it has a step for configuring JDK 11:

github actions workflow created

Since our tests are written using JDK 15, we'll change the Java version from 11 to 15. At the bottom, we'll swap the Maven command with mvn clean test . By default, it's configured to execute the workflow on every push or pull request. This means we can't manually run it unless we add workflow_dispatch  hook under on:  Note that this is .yml file, and whitespaces are important. Here's what we're left with:

name: Java CI with Maven
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v2
with:
java-version: '15'
distribution: 'adopt'
- name: Build with Maven
run: mvn clean test

When you're done with the changes, press the green "Start commit" button and commit the new file:

github actions commit

That's all you need to get started. When you go to the " Actions " tab now, you'll notice that there's a job that's set up, and it's probably already executing. You can click on it to see the live console output:

github actions live console output

Configuring the Reporting Action

To edit the workflow configuration, you must go to the <your-repo> /.github/workflows  directory. Clicking on the edit icon, you'll be greeted with the same screen you saw when creating the workflow. At the right side of the screen, there's a " Marketplace " tab with a search bar under it. For example, search for " Test Reporter " this is the plugin we're going to use to display the report from the .xml file we mentioned a couple of sections above.

github actions test reporter

github actions test reporter

To edit the workflow configuration, you must go to the <your-repo> /.github/workflows  directory. Clicking on the edit icon, you'll be greeted with the same screen you saw when creating the workflow. At the right side of the screen, there's a " Marketplace " tab with a search bar under it. For example, search for " Test Reporter " is the plugin we're going to use to display the report from the .xml file mentioned in a couple of sections above.

- name: Test Reporter
uses: dorny/test-reporter@v1.4.3
with:
name: Run Tests
path: "**/surefire-reports/TEST-*.xml"
reporter: java-junit

After running the new workflow, you'll notice that under " Jobs ", there's a new section called " Run Tests " under " Jobs ". It will generate a page with the reports of all the .xml files included in the " path " section. Here's how it looks like if all the tests have passed successfully:

test reporter github actions

And here's how the report looks like when you have a failed test:

test reporter github actions failed

Summary

GitHub Actions is one of the most recent workflow mechanisms that are quick and easy to set up directly from the GitHub website. It allows building CI/CD pipelines for testing, releasing, and deploying software without third-party platforms. It has hosted runners for every major OS, or you can use your own hosted runner with it. It's free for all public repositories and has a free plan for private ones.

Online Training

  • JAVA

  • C#

  • NON-FUNCTIONAL

Web Test Automation Fundamentals

LEVEL: 1

  • Java Level 1
  • Java Unit Testing Fundamentals
  • Source Control Introduction
  • Selenium WebDriver- Getting Started
  • Setup Continuous Integration Job
Duration: 20 hours

4 hour per day

-50% coupon code:

Test Automation Advanced

LEVEL: 2

  • Java Level 2
  • WebDriver Level 2
  • Appium Level 1
  • WinAppDriver Level 1
  • WebDriver in Docker and Cloud
  • Test Reporting Solutions and Frameworks
  • Behavior-Driven Development
Duration: 30 hours

4 hour per day

-20% coupon code:

Enterprise Test Automation Framework

LEVEL: 3 (Master Class)

After discussing the core characteristics, we will start writing the core feature piece by piece.
We will continuously elaborate on why we design the code the way it is and look into different designs and compare them. You will have exercises to finish a particular part or extend it further along with discussing design patterns and best practices in programming.

Duration: 30 hours

4 hour per day

-20% coupon code:

Web Test Automation Fundamentals

LEVEL: 1

  • C# Level 1
  • C# Unit Testing Fundamentals
  • Source Control Introduction
  • Selenium WebDriver- Getting Started
  • Setup Continuous Integration Job
Duration: 20 hours

4 hour per day

-50% coupon code:

Test Automation Advanced

LEVEL: 2

  • C# Level 2
  • WebDriver Level 2
  • Appium Level 1
  • WinAppDriver Level 1
  • WebDriver in Docker and Cloud
  • Test Reporting Solutions and Frameworks
  • Behavior-Driven Development- SpecFlow
Duration: 30 hours

4 hour per day

-20% coupon code:

Enterprise Test Automation Framework

LEVEL: 3 (Master Class)

After discussing the core characteristics, we will start writing the core feature piece by piece.
We will continuously elaborate on why we design the code the way it is and look into different designs and compare them. You will have exercises to finish a particular part or extend it further along with discussing design patterns and best practices in programming.

Duration: 30 hours

4 hour per day

-20% coupon code:

Performance Testing

  • Fundamentals of Performance Testing
  • Fundamentals of network technologie
  • Performance testing with WebPageTest
  • Performance test execution and automation
  • Introduction to Jmeter
  • Introduction to performance monitoring and tuning
  • Performance testing in the cloud
Duration: 24 hours

4 hour per day

-30% coupon code:

Automation Tools

bartonsursity.blogspot.com

Source: https://www.automatetheplanet.com/running-selenium-tests-github-actions-java/

Post a Comment for "How to Run Test and Continuous Build Git"