{"id":15148625,"url":"https://github.com/xinitrc86/adash-services","last_synced_at":"2025-10-24T05:30:24.258Z","repository":{"id":57173086,"uuid":"272188064","full_name":"xinitrc86/adash-services","owner":"xinitrc86","description":"Monitor your ABAP UNIT tests and use them in CI/CD pipelines. ","archived":false,"fork":false,"pushed_at":"2023-09-14T20:19:23.000Z","size":138,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-30T22:51:33.566Z","etag":null,"topics":["abap","aunit","ci-cd","coverage","tdd"],"latest_commit_sha":null,"homepage":"","language":"ABAP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xinitrc86.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-14T11:26:32.000Z","updated_at":"2023-09-14T20:19:28.000Z","dependencies_parsed_at":"2024-10-10T02:40:34.801Z","dependency_job_id":null,"html_url":"https://github.com/xinitrc86/adash-services","commit_stats":{"total_commits":20,"total_committers":4,"mean_commits":5.0,"dds":"0.19999999999999996","last_synced_commit":"65e0df9d84702b2491ebeabdf678daa49950c6fe"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xinitrc86%2Fadash-services","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xinitrc86%2Fadash-services/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xinitrc86%2Fadash-services/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xinitrc86%2Fadash-services/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xinitrc86","download_url":"https://codeload.github.com/xinitrc86/adash-services/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237915423,"owners_count":19386724,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["abap","aunit","ci-cd","coverage","tdd"],"created_at":"2024-09-26T13:21:14.061Z","updated_at":"2025-10-24T05:30:21.398Z","avatar_url":"https://github.com/xinitrc86.png","language":"ABAP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ADASH Services\nADASH Services is the backend part of [ADASH Cli](https://github.com/xinitrc86/adash-cli). It can be used in conjunction with [ADASH Monitor](https://github.com/xinitrc86/adash-monitor) or any other interface adapted to consume its OData services. \n\nIt consists of:\n* An exposed rest API for usage by the cli or other tools. \n* Exposed OData services for usage by the monitor or other interfaces\n* A report for job schedulling of tests runs. \n\n## Usage\nPlease refer to [ADASH Cli](https://github.com/xinitrc86/adash-cli).\n\n## Installation\n* Clone it or import the zip with [ABAPGit](https://github.com/larshp/abapGit).\n  * This will activate ADASH services in /iwfnd/maint_services. Make sure they have a proper system alias after clonning.\n  * Expose API in SICF with handler class zcl_adash_sicf_api_handler. \n    * If you wish to change the defult /sap/zadash path, you will need to change zcl_adash_sicf_api_handler with the new path too.\n* Schedulle zpr_adash_setup_runner for monitoring.\n\n## Compatibility \nWas developed on AS v753, should work on versions as low as v740sp08. Should require little effort to go as low as v740sp05. Lower than that is not possible, for now, as this was the first release with CDSs on. If you are up to creating the Gateway OData services for older versions, we can help.\n\n## Dependencies\nMake sure you clone the following repositories before this one.\n[zassert](https://github.com/xinitrc86/zassert)\n[ABAP Swagger](https://github.com/larshp/ABAP-Swagger)\n\n## Monitoring\nSchedule report zpr_adash_setup_runner for an automatic monitoring of your set up packages. We recommend two independent runs:\nOne without coverage that you can run every 15 minutes (unless somehow all of your tests takes longer than that).\nOne with coverage that you can run every half a day. Coverage Analyzer can take a long time depending on the amount of code it needs to analyze. Never go below 1 hour runs and keep an eye on your server loads from time to time.\n\n\n## API\n    https://\u003cpath_to_your_sys\u003e:\u003cyour_sys\u003e/\u003cpath to adash sicf node\u003e    \n    GET /{type}/{component}/add\n    Adds a component to the automatic monitoring, executing a first test run and a first coverage run at the backround. \n    i.e: GET /devc/zpackage/add \n    \n\n    GET /{type}/{component}/test \n    Run tests on given component and return is results. \n    i.e: GET /devc/zpackage/test    \n\n    Response:    \n    {\n        \"DATA\": {\n            \"STATUS\": \"string\",\n            \"SUMARIES\": [\n            {\n                \"MANDT\": \"string\",\n                \"EXECUTION\": \"string\",\n                \"TOTAL_TESTS\": 0,\n                \"TOTAL_FAILED\": 0,\n                \"TOTAL_SUCCESS\": 0,\n                \"STATEMENTS_COUNT\": 0,\n                \"STATEMENTS_COVERED\": 0,\n                \"STATEMENTS_UNCOVERED\": 0,\n                \"TIMESTAMP\": 0,\n                \"NAME\": \"string\",\n                \"TYPE\": \"string\",\n                \"PACKAGE_OWN\": \"string\",\n                \"PARENT_PACKAGE\": \"string\"\n            }\n            ],\n            \"TESTS\": [\n            {\n                \"MANDT\": \"string\",\n                \"EXECUTION\": \"string\",\n                \"TEST_CLASS\": \"string\",\n                \"TEST_METHOD\": \"string\",\n                \"STATUS\": \"string\",\n                \"FAILURE_HEADER\": \"string\",\n                \"FAILURE_DETAILS\": \"string\",\n                \"TIMESTAMP\": 0,\n                \"NAME\": \"string\",\n                \"TYPE\": \"string\",\n                \"PACKAGE_OWN\": \"string\",\n                \"PARENT_PACKAGE\": \"string\"\n            }\n            ]\n        }\n    }\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxinitrc86%2Fadash-services","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxinitrc86%2Fadash-services","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxinitrc86%2Fadash-services/lists"}