Skip to content

Instantly share code, notes, and snippets.

@garyjoy
Created March 9, 2018 15:01
Show Gist options
  • Save garyjoy/de0a0fa65f74b48eafb6e58f73ddcab5 to your computer and use it in GitHub Desktop.
Save garyjoy/de0a0fa65f74b48eafb6e58f73ddcab5 to your computer and use it in GitHub Desktop.
@endpoints
Feature: Endpoint Tests in IBM BPM
Scenario Outline: Endpoint Test for <description>
When I get "<URL>" (which is "<description>") the HTTP Status Code is <code>
Examples:
| URL | description | code |
# Development
| http://?/ProcessPortal/login.jsp | BPM Load Balancer in Development | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 1 in Development | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 2 in Development | 200 |
| http://?:?/acce/ | ECM in Development | 200 |
| https://?/logon/login.jsp | My Integration in Development | 200 |
# Test
| http://?/ProcessPortal/login.jsp | BPM Load Balancer in Test | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 1 in Test | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 2 in Test | 200 |
| http://?:?/acce/ | ECM in Test | 200 |
| https://?/logon/login.jsp | My Integration in Test | 200 |
# Acceptance
| http://?/ProcessPortal/login.jsp | BPM Load Balancer in Acceptance | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 1 in Acceptance | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 2 in Acceptance | 200 |
| http://?:?/acce/ | ECM in Acceptance | 200 |
| https://?/logon/login.jsp | My Integration in Acceptance | 200 |
# Production
| http://?/ProcessPortal/login.jsp | BPM Load Balancer in Production | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 1 in Production | 200 |
| http://?:?/ProcessPortal/login.jsp | BPM Node 2 in Production | 200 |
| http://?:?/acce/ | ECM in Production | 200 |
| https://?/logon/login.jsp | My Integration in Production | 200 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment