Files
kapow/spec/test/features/data/request/success.feature
Héctor Hurtado c3be29255a Closes: #66
2019-10-25 09:52:12 +02:00

53 lines
2.1 KiB
Gherkin

#
# Copyright 2019 Banco Bilbao Vizcaya Argentaria, S.A.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Feature: Retrieve request resources from a handler in Kapow! server.
Users can retrieve request resources by
specifying the handler id and the
resource path.
Scenario Outline: Retrieve different resources for the current request.
Get the following resources for the
current request through the current
handler.
Given I have a Kapow! server with the following testing routes:
| method | url_pattern |
| GET | /foo/{path} |
When I send a request to the testing route "/foo/matchVal1" adding:
| fieldType | name | value |
| parameter | par1 | paramVal1 |
| header | head1 | headVal1 |
| cookie | cook1 | cookieVal1 |
| body | | bodyVal1 |
And I get the resource "<resourcePath>"
Then I get 200 as response code
# And I get "OK" as response reason phrase
And I get the following response raw body:
"""
<value>
"""
Examples:
| resourcePath | value |
| /request/method | GET |
| /request/path | /foo/matchVal1 |
| /request/host | localhost:8080 |
| /request/matches/path | matchVal1 |
| /request/params/par1 | paramVal1 |
| /request/headers/head1 | headVal1 |
| /request/cookies/cook1 | cookieVal1 |
| /request/body | bodyVal1 |