GithubHelp home page GithubHelp logo

task_hello-world-challenge-tests's Introduction

hello-world-challenge-tests

Test for hello-world-challenge application.

Run App and Run Tests with Docker-Compose.yaml

version: '3.1'

services:

  challenge:
    image: letsrokk/hello-world-challenge:latest
    restart: always
    ports:
      - 8080:8080
    network_mode: host

  tests:
    image: ubuntu
    command: bash -c "
        apt-get update && 
        apt-get -y install git &&
        apt-get -y install maven &&
        git clone https://github.com/PavelSakharchuk/hello-world-challenge-tests.git &&
        cd hello-world-challenge-tests &&
        mvn test surefire-report:report &&
        cp /hello-world-challenge-tests/target/site/surefire-report.html /report"
    depends_on:
      - challenge
    volumes:
      - .:/report
    network_mode: host

Building Documentation For Docker-Compose.yaml

  1. Running App with Docker;
  2. Ubuntu image Building with the following commands for running autotest with copying report near the docker-compose file:
    • apt-get update: Packages update;
    • apt-get -y install git: Git installation for repository clone;
    • apt-get -y install maven: Maven installation for build and run autotests;
    • git clone https://github.com/PavelSakharchuk/hello-world-challenge-tests.git: Autotests repository cloning for run getting;
    • cd hello-world-challenge-tests: Jump to project folder for run maven commands;
    • mvn test surefire-report:report: Running tests and generate report;
    • cp /hello-world-challenge-tests/target/site/surefire-report.html /report: Copying report to report path;

Run App and Tests with Commands

Run App with Java Latest version of JAR-file can be found in Releases on GitHub

% java -jar hello-world-challenge-runner.jar 

Run Autotests (report is in the 'target/site' folder after run autotest)

git clone https://github.com/PavelSakharchuk/hello-world-challenge-tests.git
cd hello-world-challenge-tests
mvn clean test surefire-report:report

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.