X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fresources%2FHELP.md;h=c7a15a7659c36c1b8308c8cf634247ce5437f0d2;hb=609c79ead77490f99f3f34836b19820999a85169;hp=40f1a5e16bd3b3293b1c48210db59e8cc34d6bb1;hpb=080dc0740d8b02011dee032f5d44eeb5f2ffe23f;p=anna.git diff --git a/example/diameter/launcher/resources/HELP.md b/example/diameter/launcher/resources/HELP.md index 40f1a5e..c7a15a7 100644 --- a/example/diameter/launcher/resources/HELP.md +++ b/example/diameter/launcher/resources/HELP.md @@ -539,7 +539,7 @@ Implemented status codes: *200* (ok), *400* (bad request) and *405* (method not > curl -v --request GET localhost:8000 -You could also expose the service as HTTP2 server through *nginx* working as reverse proxy (*adml-http* image is built in this way although internally provides HTTP operations script only for 1.1). Then you could use HTTP2 clients like *nghttp*: +You could also expose the service as HTTP2 server through *nginx* working as reverse proxy (*anna-adml-http* image is built in this way although internally provides HTTP operations script only for 1.1). Then you could use HTTP2 clients like *nghttp*: > nghttp -v -H ":method: GET" "" @@ -579,7 +579,7 @@ Retrieve statistics xml report (will be *base64-encoded* at response). > curl -v --request POST -H "Content-Type: application/json" localhost:8000 -d@test.json -You could also expose the service as HTTP2 server through *nginx* working as reverse proxy (*adml-http* image is built in this way although internally provides HTTP operations script only for 1.1). Then you could use HTTP2 clients like *nghttp*: +You could also expose the service as HTTP2 server through *nginx* working as reverse proxy (*anna-adml-http* image is built in this way although internally provides HTTP operations script only for 1.1). Then you could use HTTP2 clients like *nghttp*: > nghttp -v -H ":method: POST" -d test.json "" @@ -840,7 +840,7 @@ Selects a context working node by mean a registered name (origin-host). If empty } ``` -**Response body**: +**Response body**: ``` { @@ -1243,7 +1243,7 @@ Sends diameter expressed in hexadecimal string (no spaces, no colons, i.e.: `010 ADML implements a bulting *Finite State Machine* to plan testing flows with a great flexibility. -#### POST /testid-description +#### POST /testid-description/{id} **Request body**: @@ -1262,7 +1262,7 @@ ADML implements a bulting *Finite State Machine* to plan testing flows with a gr } ``` -#### POST /testid-ip-limit +#### POST /testid-ip-limit/{id} In-Progress limit is the maximum number of tests which can be executed in parallel. This operation allows a specific test to set this global pool behaviour. @@ -1288,7 +1288,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-timeout +#### POST /testid-timeout/{id} **Request body**: @@ -1307,7 +1307,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-sendmsg2e +#### POST /testid-sendmsg2e/{id} **Request body**: @@ -1327,7 +1327,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-sendmsg2c +#### POST /testid-sendmsg2c/{id} **Request body**: @@ -1347,7 +1347,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-delay +#### POST /testid-delay/{id} **Request body**: @@ -1366,7 +1366,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-sh-command +#### POST /testid-sh-command/{id} **Request body**: @@ -1385,7 +1385,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfe-hex +#### POST /testid-waitfe-hex/{id} **Request body**: @@ -1405,7 +1405,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfc-hex +#### POST /testid-waitfc-hex/{id} **Request body**: @@ -1425,7 +1425,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfe-msg +#### POST /testid-waitfe-msg/{id} **Request body**: @@ -1445,7 +1445,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfc-msg +#### POST /testid-waitfc-msg/{id} **Request body**: @@ -1465,7 +1465,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfe +#### POST /testid-waitfe/{id} **Request body**: @@ -1494,7 +1494,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -#### POST /testid-waitfc +#### POST /testid-waitfc/{id} **Request body**: @@ -1523,7 +1523,7 @@ Value '-1' means 'no limit' (full parallel). Be careful with resources consumpti } ``` -### EXECUTION ACTIONS +### FSM TESTING EXECUTION ACTIONS #### POST /test-ttps @@ -1903,5 +1903,26 @@ As it could be very large, it will be dumped on provided target directory, '*/tm } ``` +### DYNAMIC PROCEDURE + +Used for system test. Arguments are determined by the way in a specific dynamic library is designed/documented. + +#### POST /dynamic + +**Request body**: + +``` +{ + "arguments": +} +``` + +**Response body**: +``` +{ + "result":"", + "response":"" +} +```