koemaeda / abapunit2junit

Runs Abap Unit tests and converts results to JUnit report format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

Connects to SAP Netweaver and runs abap unit tests for the given package or object

Getting Started

Run

npm install
npm start -- --host=<host> --protocol=<http/https> --username=<user> --password=<password> --package=<package name>

Settings

There are two ways to configure the app. Either by passing command line arguments when starting the app, or by using env-variables. The arguments are always prioritized if both are given.

Arguments

  1. --host=<url>> - url to SAP server
  2. --protocol=<http/https> - protocol to be used
  3. --package=<name of abap package>
  4. --username=<username>
  5. --password=<password>
  6. --insecure=<true/false> - Enables to connect to https enabled endpoints without valid certificates
  7. --out - path and name of result file, default result/output.xml
  8. --aunit - <true/false> - Should abap result file be saved, default false
  9. --aunitout - path and name of abap result file, default result/abapresult.xml

About

Runs Abap Unit tests and converts results to JUnit report format

License:MIT License


Languages

Language:JavaScript 68.5%Language:XSLT 31.5%