Author: antelder
Date: Fri Feb 20 12:24:30 2009
New Revision: 746221

URL: http://svn.apache.org/viewvc?rev=746221&view=rev
Log:
Start of a test for the jsp page

Added:
    tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/
    tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/
    tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/
    
tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/
    
tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/HelloworldTestCase.java
Modified:
    tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/pom.xml

Modified: tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/pom.xml
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/pom.xml?rev=746221&r1=746220&r2=746221&view=diff
==============================================================================
--- tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/pom.xml (original)
+++ tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/pom.xml Fri Feb 
20 12:24:30 2009
@@ -52,9 +52,9 @@
         </dependency>
 
         <dependency>
-            <groupId>httpunit</groupId>
-            <artifactId>httpunit</artifactId>
-            <version>1.6.1</version>
+            <groupId>htmlunit</groupId>
+            <artifactId>htmlunit</artifactId>
+            <version>1.9</version>
             <scope>test</scope>
         </dependency>
 
@@ -69,7 +69,7 @@
                 <executions>
                     <execution>
                         <id>start-container</id>
-                        <phase>pre-integration-test</phase>
+                        <phase>compile</phase>
                         <goals>
                             <goal>start</goal>
                         </goals>
@@ -109,7 +109,7 @@
                               <groupId>org.apache.tuscany.sca</groupId>
                               <artifactId>helloworld-jsp</artifactId>
                               <type>war</type>
-                              
<pingURL>http://localhost:8085/helloworld-jsp</pingURL>
+                              
<pingURL>http://localhost:8085/helloworld-jsp-xxx</pingURL>
                            </deployable>
                         </deployables>
                     </configuration>

Added: 
tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/HelloworldTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/HelloworldTestCase.java?rev=746221&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/HelloworldTestCase.java
 (added)
+++ 
tuscany/java/sca/itest/distribution/webapp-helloworld-jsp/src/test/java/itest/HelloworldTestCase.java
 Fri Feb 20 12:24:30 2009
@@ -0,0 +1,50 @@
+/*
+ * 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 itest;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.IOException;
+import java.net.MalformedURLException;
+import java.util.Iterator;
+
+import org.junit.Test;
+
+import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
+import com.gargoylesoftware.htmlunit.WebClient;
+import com.gargoylesoftware.htmlunit.html.HtmlPage;
+import com.gargoylesoftware.htmlunit.html.HtmlParagraph;
+
+/**
+ */
+public class HelloworldTestCase {
+
+    @Test
+    public void testA() throws FailingHttpStatusCodeException, 
MalformedURLException, IOException {
+        HtmlPage page = (HtmlPage)new 
WebClient().getPage("http://localhost:8085/helloworld-jsp-2.0-SNAPSHOT";);
+        Iterator<?> ss = page.getAllHtmlChildElements();
+        ss.next();
+        ss.next();
+        ss.next();
+        HtmlParagraph p = (HtmlParagraph)ss.next();
+        assertEquals("Hello world", p.asText());
+    }
+
+}


Reply via email to