This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new d7f3ad4 CAMEL-15410: Added unit test
d7f3ad4 is described below
commit d7f3ad44922d638b4b3fb5b370bee7103d5dbb65
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Mar 25 13:51:37 2021 +0100
CAMEL-15410: Added unit test
---
.../rest/RestUndertowProducerEncodingTest.java | 67 ++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git
a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/rest/RestUndertowProducerEncodingTest.java
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/rest/RestUndertowProducerEncodingTest.java
new file mode 100644
index 0000000..0648ce8
--- /dev/null
+++
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/rest/RestUndertowProducerEncodingTest.java
@@ -0,0 +1,67 @@
+/*
+ * 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.
+ */
+package org.apache.camel.component.undertow.rest;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.undertow.BaseUndertowTest;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class RestUndertowProducerEncodingTest extends BaseUndertowTest {
+
+ @Test
+ public void testSelect() throws Exception {
+
template.sendBody("rest:get:bw-web-api/v1/objects/timesheets?companyId=RD&select=personId,personName",
"Hello World");
+ }
+
+ @Test
+ public void testFilter() throws Exception {
+
template.sendBody("rest:get:bw-web-api/v1/objects/timesheets?companyId=RD&select=personId,personName"
+ + "&filter=date(time/date) ge 2020-06-01 and
personId eq 'R10019'",
+ "Bye World");
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ // configure to use undertow on localhost with the given port
+
restConfiguration().component("undertow").host("localhost").port(getPort());
+
+ // use the rest DSL to define the rest services
+ rest("/bw-web-api/v1/objects")
+ .get("{action}")
+ .route()
+ .process(exchange -> {
+ String action =
exchange.getIn().getHeader("action", String.class);
+ assertEquals("timesheets", action);
+ String select =
exchange.getIn().getHeader("select", String.class);
+ assertEquals("personId,personName", select);
+ String cid =
exchange.getIn().getHeader("companyId", String.class);
+ assertEquals("RD", cid);
+ String filter =
exchange.getIn().getHeader("filter", String.class);
+ if (filter != null) {
+ assertEquals("date(time/date) ge 2020-06-01
and personId eq 'R10019'", filter);
+ }
+ });
+ }
+ };
+ }
+
+}