Added features for append/error_malformed, delete/list_order, insert/error_malformed and insert/list_order. Updated append/error_unprocessable and list/success.

This commit is contained in:
Héctor Hurtado
2019-08-20 10:31:14 +02:00
parent 040fc55b39
commit 380eed57d9
7 changed files with 196 additions and 7 deletions
@@ -10,7 +10,9 @@ Feature: Listing routes in a Kapow! server
Given I have a just started Kapow! server
When I request a routes listing
Then I get an empty list
Then I get 200 as response code
And I get "OK" as response phrase
And I get an empty list
Scenario: Listing routes on a server with routes loaded.
After some route creation/insertion operations the server
@@ -21,7 +23,9 @@ Feature: Listing routes in a Kapow! server
| GET | /listRootDir | /bin/sh -c | ls -la / \| response /body |
| GET | /listDir/{dirname} | /bin/sh -c | ls -la /request/params/dirname \| response /body |
When I request a routes listing
Then I get a list with the following elements:
Then I get 200 as response code
And I get "OK" as response phrase
And I get a list with the following elements:
| method | url_pattern | entrypoint | command | index | id |
| GET | /listRootDir | /bin/sh -c | ls -la / \| response /body | 0 | * |
| GET | /listDir/{dirname} | /bin/sh -c | ls -la /request/params/dirname \| response /body | 1 | * |