blob: b882fcdcbaa5b384b09d7e728776ac8dfe1395c9 [file] [log] [blame]
# ---------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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: Insert field Kamelet action
Background:
Given HTTP server timeout is 15000 ms
Given HTTP server "test-insert-service"
Given variables
| field | subject |
| value | Camel K rocks! |
Scenario: Create Http server
Given create Kubernetes service test-insert-service with target port 8080
Scenario: Create Kamelet binding
Given Camel K resource polling configuration
| maxAttempts | 200 |
| delayBetweenAttempts | 2000 |
Given variable input is
"""
{ "id": "citrus:randomUUID()" }
"""
When load KameletBinding insert-field-action-binding.yaml
Then Camel K integration insert-field-action-binding should be running
And Camel K integration insert-field-action-binding should print Routes startup
Scenario: Verify output message sent
Given expect HTTP request body
"""
{ "id": "@ignore@", "${field}": "${value}" }
"""
And HTTP request header Content-Type="application/json"
When receive POST /result
Then send HTTP 200 OK
Scenario: Remove resources
Given delete KameletBinding insert-field-action-binding
And delete Kubernetes service test-insert-service