blob: 6fa1e670c5f4d58ff4c5210843824ca845906f76 [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: Timer Source Kamelet
Background:
Given HTTP server timeout is 15000 ms
Given HTTP server "probe-service"
Scenario: Create Http server
Given create Kubernetes service probe-service with target port 8080
Scenario: Create Kamelet binding
Given Camel K resource polling configuration
| maxAttempts | 200 |
| delayBetweenAttempts | 2000 |
And KameletBinding source properties
| message | Hello World |
And bind Kamelet timer-source to uri http://probe-service.${YAKS_NAMESPACE}/events
When create KameletBinding timer-source-binding
Then KameletBinding timer-source-binding should be available
Then Camel K integration timer-source-binding should be running
And Camel K integration timer-source-binding should print Routes startup
Scenario: Verify binding
Given expect HTTP request body: Hello World
When receive POST /events
Then send HTTP 200 OK
Scenario: Remove Camel K resources
Given delete KameletBinding timer-source-binding
And delete Kubernetes service probe-service