You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/03/22 13:33:39 UTC

cxf git commit: Adding jaxrs/spring_boot demo test

Repository: cxf
Updated Branches:
  refs/heads/master a2efc18ef -> d72b3d27a


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/d72b3d27
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/d72b3d27
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/d72b3d27

Branch: refs/heads/master
Commit: d72b3d27a172748b1d1479a0a7bfaafbf92f5149
Parents: a2efc18
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Wed Mar 22 13:33:24 2017 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Wed Mar 22 13:33:24 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/d72b3d27/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 f241ee5..19213bc 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
@@ -44,6 +44,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/d72b3d27/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); 
+    }
+
+}