How to configure TestNg Java maven project in CircleCI, I am new for this platform. Could anyone please share proper documentation with configuration steps. I am Mac user thanks
We have a documentation page for usage with maven that should give you a good start. or you can view our example project directly on GitHub.
Thanks I was able to run the tests . I have another issue now
So in my case Iām first going to create a docker image of the web project and then use that web project to run my tests. Any idea on how I should go about it.
This is my config.yml now.
# Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk-stretch
- image: circleci/php:apache-stretch
working_directory : ~/testHTMLproject
steps:
- checkout
- run:
name: Build application Docker image
command: |
docker build testHTMLproject -t html-server-image:v1
- run:
name: Run docker image
command: |
docker run -d -p 80:80 --name htmlContainer html-server-image:v1
- run:
name: Check the images present
command: |
docker ps
- run:
name: Check if server is up
command: |
curl localhost:80
- checkout
- run: mkdir test-reports
- run:
name: Download Selenium
command: |
curl -O http://selenium-release.storage.googleapis.com/3.5/selenium-server-standalone-3.5.3.jar
- run:
name: Start Selenium
command: |
java -jar selenium-server-standalone-3.5.3.jar -log test-reports/selenium.log
background: true
- run: mvn dependency:go-offline
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
# run tests!
- run: mvn clean integration-test
- run:
name: Save test results
command: |
mkdir -p ~/testng/results/
find . -type f -regex "./test-output/emailable-report.html" -exec cp {} ~/testng/results/ \;
when: always
- store_test_results:
path: ~/testng/results/
- store_artifacts:
path: ~/testng/results/
- store_artifacts:
path: testng/results/
Im trying to access āhttp://localhost:80ā inside the test project
1 Like