Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes 8f4ca20d8 -> 71ed0cb16


Adding jaxrs/spring_boot demo test


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

Branch: refs/heads/3.1.x-fixes
Commit: 71ed0cb1616e523260c5a4e5964dbaeb40279df3
Parents: 8f4ca20
Author: Sergey Beryozkin <sberyoz...@gmail.com>
Authored: Wed Mar 22 13:33:24 2017 +0000
Committer: Sergey Beryozkin <sberyoz...@gmail.com>
Committed: Wed Mar 22 13:43:00 2017 +0000

----------------------------------------------------------------------
 .../release/samples/jax_rs/spring_boot/pom.xml  |  5 ++
 .../rs/service/SampleRestApplicationTest.java   | 57 ++++++++++++++++++++
 2 files changed, 62 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/71ed0cb1/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml 
b/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
index 534844d..10a90f4 100644
--- a/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot/pom.xml
@@ -43,6 +43,11 @@
             <artifactId>slf4j-jdk14</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-test</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <finalName>${project.artifactId}</finalName>

http://git-wip-us.apache.org/repos/asf/cxf/blob/71ed0cb1/distribution/src/main/release/samples/jax_rs/spring_boot/src/test/java/sample/rs/service/SampleRestApplicationTest.java
----------------------------------------------------------------------
diff --git 
a/distribution/src/main/release/samples/jax_rs/spring_boot/src/test/java/sample/rs/service/SampleRestApplicationTest.java
 
b/distribution/src/main/release/samples/jax_rs/spring_boot/src/test/java/sample/rs/service/SampleRestApplicationTest.java
new file mode 100644
index 0000000..70d5e1c
--- /dev/null
+++ 
b/distribution/src/main/release/samples/jax_rs/spring_boot/src/test/java/sample/rs/service/SampleRestApplicationTest.java
@@ -0,0 +1,57 @@
+/**
+ * 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 sample.rs.service;
+
+import org.apache.cxf.jaxrs.client.WebClient;
+import org.springframework.boot.context.embedded.LocalServerPort;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.junit4.SpringRunner;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = SampleRestApplication.class, webEnvironment = 
WebEnvironment.RANDOM_PORT)
+public class SampleRestApplicationTest {
+
+    @LocalServerPort
+    private int port;
+    @Test
+    public void testHelloRequest() throws Exception {
+        WebClient wc = WebClient.create("http://localhost:"; + port + 
"/services/helloservice");
+        wc.accept("text/plain");
+        
+        // HelloServiceImpl1
+        wc.path("sayHello").path("ApacheCxfUser");
+        String greeting = wc.get(String.class);
+        Assert.assertEquals("Hello ApacheCxfUser, Welcome to CXF RS Spring 
Boot World!!!", greeting); 
+ 
+        // Reverse to the starting URI
+        wc.back(true);
+
+        // HelloServiceImpl2
+        wc.path("sayHello2").path("ApacheCxfUser");
+        greeting = wc.get(String.class);
+        Assert.assertEquals("Hello2 ApacheCxfUser, Welcome to CXF RS Spring 
Boot World!!!", greeting); 
+    }
+
+}

Reply via email to