You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/10/27 04:48:21 UTC

[2/2] git commit: CAMEL-7964 Add a test of camel-http4 and camel-jetty

CAMEL-7964 Add a test of camel-http4 and camel-jetty


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b5f1da22
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b5f1da22
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b5f1da22

Branch: refs/heads/master
Commit: b5f1da228edaad4d623f2f4fe05305467591f69b
Parents: bc6c03a
Author: Willem Jiang <wi...@gmail.com>
Authored: Mon Oct 27 11:45:42 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Mon Oct 27 11:45:42 2014 +0800

----------------------------------------------------------------------
 .../itest/jetty/JettyRestRedirectTest.java      | 61 ++++++++++++++++++++
 1 file changed, 61 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b5f1da22/tests/camel-itest/src/test/java/org/apache/camel/itest/jetty/JettyRestRedirectTest.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest/src/test/java/org/apache/camel/itest/jetty/JettyRestRedirectTest.java b/tests/camel-itest/src/test/java/org/apache/camel/itest/jetty/JettyRestRedirectTest.java
new file mode 100644
index 0000000..81acf89
--- /dev/null
+++ b/tests/camel-itest/src/test/java/org/apache/camel/itest/jetty/JettyRestRedirectTest.java
@@ -0,0 +1,61 @@
+/**
+ * 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.itest.jetty;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.test.AvailablePortFinder;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+public class JettyRestRedirectTest extends CamelTestSupport {
+
+    private int port;
+
+    @Test
+    public void testClasspath() throws Exception {
+        String response = template.requestBody("http4://localhost:" + port + "/metadata/profile/tag", "<hello>Camel</hello>", String.class);
+        assertEquals("It should support the redirect out of box.", "Mock profile", response);
+    }
+
+    
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        port = AvailablePortFinder.getNextAvailable(8000);
+
+        return new RouteBuilder() {
+            public void configure() {
+                restConfiguration().component("jetty").scheme("http").port(port);
+                rest("/metadata/profile")
+                    .get("/{id}").to("direct:profileLookup")
+                    .post("/tag").to("direct:tag");
+
+                from("direct:profileLookup").transform().constant("Mock profile");
+                from("direct:tag").log("${headers}").process(new Processor() {
+                    @Override
+                    public void process(Exchange ex) throws Exception {
+                        ex.getOut().setHeader(Exchange.HTTP_RESPONSE_CODE, 303);
+                        ex.getOut().setHeader("Location", "/metadata/profile/1");
+                    }
+                }).log("${headers}").transform().constant("Redirecting...");
+            }
+        };
+    }
+    
+}
+