GithubHelp home page GithubHelp logo

apitesting-newman's Introduction

APITesting-Newman

API Testing with Newman Jenkins

Newman-Jenkins API Testing framework with CI Integration .

Prerequisite : Newman Docker image Jenkinsfile on Bitbucket project

Bitbucket folder structure

Package.json sample : { "name": "reciproci_api_test", "version": "1.0.0", "description": "Api Test Integration with Jenkins", "main": "index.js", "directories": { "test": "tests" }, "scripts": { "test": "node tests/run-collections-in-directory.js" }, "repository": { "type": "git", "url": "https://[email protected]/scm/~user1/APITesting-Newman .git" }, "author": "Techtree", "dependencies": { "async": "^2.6.1", "newman": "^4.3.1", "node": "^11.9.0" } }

Package json can be created with command โ€œ npm init โ€œ

Tests folder will have all testing collection API and data file .

Jenkinsfile #!/usr/bin/env groovy

pipeline {

agent {
    docker {
        image 'node'
        args '-u root'
    }
}

stages {
    stage('Build') {
        steps {
            echo 'Building...'
            sh 'npm install'
        }
    }
    stage('Test') {
        steps {
            echo 'Testing...'
            sh 'npm run test'
        }
    }
}

}


STEP 1 : Create New Item with Pipeline project from Jenkins. STEP 2 : Configure Bitbucket Repo and Jenkinsfile path on Pipeline Tab STEP 3 : Run Build Now and check for results .

apitesting-newman's People

Contributors

thirumurugan19 avatar

Stargazers

 avatar Vijayakumar Ramdoss avatar kant avatar

Watchers

James Cloos avatar  avatar

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.