You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2008/02/04 21:02:03 UTC

svn commit: r618407 - in /incubator/tuscany/java/sca/tools/maven/maven-web-junit: pom.xml src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java

Author: rfeng
Date: Mon Feb  4 12:02:01 2008
New Revision: 618407

URL: http://svn.apache.org/viewvc?rev=618407&view=rev
Log:
Add the capability to generate web.xml and gernonim-web.xml

Added:
    incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java   (with props)
Modified:
    incubator/tuscany/java/sca/tools/maven/maven-web-junit/pom.xml
    incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java

Modified: incubator/tuscany/java/sca/tools/maven/maven-web-junit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/maven/maven-web-junit/pom.xml?rev=618407&r1=618406&r2=618407&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/maven/maven-web-junit/pom.xml (original)
+++ incubator/tuscany/java/sca/tools/maven/maven-web-junit/pom.xml Mon Feb  4 12:02:01 2008
@@ -48,30 +48,5 @@
             <version>2.0.7</version>
         </dependency>
 
-        <dependency>
-            <groupId>org.apache.maven</groupId>
-            <artifactId>maven-settings</artifactId>
-            <version>2.0.7</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.maven</groupId>
-            <artifactId>maven-artifact</artifactId>
-            <version>2.0.7</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.maven</groupId>
-            <artifactId>maven-model</artifactId>
-            <version>2.0.7</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.maven.shared</groupId>
-            <artifactId>maven-dependency-tree</artifactId>
-            <version>1.0</version>
-        </dependency>
-
-
     </dependencies>
 </project>

Added: incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java?rev=618407&view=auto
==============================================================================
--- incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java (added)
+++ incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java Mon Feb  4 12:02:01 2008
@@ -0,0 +1,148 @@
+/*
+ * 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.tuscany.tools.sca.web.junit.plugin;
+
+import java.io.File;
+import java.io.FileWriter;
+import java.io.IOException;
+
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.project.MavenProject;
+
+/**
+ * @version $Rev$ $Date$
+ * @goal generate
+ * @phase process-resources
+ * @requiresDependencyResolution runtime
+ * @description Generate the web.xml and geronimo-web.xml
+ */
+public class WebJUnitGeneratorMojo extends AbstractMojo {
+    private final static String ASL_HEADER =
+        "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + "\n<!--"
+            + "\n   * Licensed to the Apache Software Foundation (ASF) under one"
+            + "\n   * or more contributor license agreements.  See the NOTICE file"
+            + "\n   * distributed with this work for additional information"
+            + "\n   * regarding copyright ownership.  The ASF licenses this file"
+            + "\n   * to you under the Apache License, Version 2.0 (the"
+            + "\n   * \"License\"); you may not use this file except in compliance"
+            + "\n   * with the License.  You may obtain a copy of the License at"
+            + "\n   * "
+            + "\n   *   http://www.apache.org/licenses/LICENSE-2.0"
+            + "\n   * "
+            + "\n   * Unless required by applicable law or agreed to in writing,"
+            + "\n   * software distributed under the License is distributed on an"
+            + "\n   * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY"
+            + "\n   * KIND, either express or implied.  See the License for the"
+            + "\n   * specific language governing permissions and limitations"
+            + "\n   * under the License.    "
+            + "\n-->";
+
+    private final static String GERONIMO_WEB_XML =
+        ASL_HEADER + "\n<web-app xmlns=\"http://geronimo.apache.org/xml/ns/j2ee/web-2.0\""
+            + "\n    xmlns:d=\"http://geronimo.apache.org/xml/ns/deployment-1.2\">"
+            // + "\n     <context-root>${context.root}</context-root>"
+            + "\n    <d:environment>"
+            + "\n        <d:moduleId>"
+            + "\n            <d:groupId>${groupId}</d:groupId>"
+            + "\n            <d:artifactId>${artifactId}</d:artifactId>"
+            + "\n            <d:version>${version}</d:version>"
+            + "\n            <d:type>war</d:type>"
+            + "\n        </d:moduleId>"
+            + "\n        <d:inverse-classloading />"
+            + "\n    </d:environment>"
+            + "\n</web-app>\n";
+
+    private final static String WEB_XML =
+        ASL_HEADER + "\n<!DOCTYPE web-app PUBLIC \"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN\" \"http://java.sun.com/dtd/web-app_2_3.dtd\">"
+            + "\n<web-app>"
+            + "\n   <display-name>${display-name}</display-name>"
+            + "\n       <filter>"
+            + "\n           <filter-name>tuscany</filter-name>"
+            + "\n           <filter-class>org.apache.tuscany.sca.host.webapp.TuscanyServletFilter</filter-class>"
+            + "\n       </filter>"
+            + "\n       <filter-mapping>"
+            + "\n           <filter-name>tuscany</filter-name>"
+            + "\n           <url-pattern>/*</url-pattern>"
+            + "\n       </filter-mapping>"
+            + "\n</web-app>\n";
+
+    /**
+     * @parameter
+     */
+    private boolean geronimo;
+
+    /**
+     * The project to create a build for.
+     *
+     * @parameter expression="${project}"
+     * @required
+     * @readonly
+     */
+    private MavenProject project;
+
+    public void execute() throws MojoExecutionException {
+        if (project.getPackaging().equals("pom")) {
+            return;
+        }
+        File webxml =
+            new File(project.getBasedir(), "src/main/webapp/WEB-INF/web.xml".replace('/', File.separatorChar));
+        getLog().info("Generating " + webxml.toString());
+        String content = setParameter(WEB_XML, "display.name", project.getName());
+        try {
+            webxml.getParentFile().mkdirs();
+            FileWriter writer = new FileWriter(webxml);
+            writer.append(content);
+            writer.close();
+        } catch (IOException e) {
+            throw new MojoExecutionException(e.getMessage(), e);
+        }
+
+        if (geronimo) {
+            File geronimoxml =
+                new File(project.getBasedir(), "src/main/webapp/WEB-INF/geronimo-web.xml".replace('/',
+                                                                                                  File.separatorChar));
+            getLog().info("Generating " + geronimoxml.toString());
+            content = setParameter(GERONIMO_WEB_XML, "groupId", project.getGroupId());
+            content = setParameter(content, "artifactId", project.getArtifactId());
+            content = setParameter(content, "version", project.getVersion());
+            // content = setParameter(content, "context.root", "/" + project.getBuild().getFinalName());
+            try {
+                geronimoxml.getParentFile().mkdirs();
+                FileWriter writer = new FileWriter(geronimoxml);
+                writer.append(content);
+                writer.close();
+            } catch (IOException e) {
+                throw new MojoExecutionException(e.getMessage(), e);
+            }
+        }
+
+    }
+
+    private String setParameter(String xml, String name, String value) {
+        String pattern = "${" + name + "}";
+        int index = xml.indexOf(pattern);
+        if (index != -1) {
+            String content = xml.substring(0, index) + value + xml.substring(index + pattern.length());
+            return content;
+        }
+        return xml;
+    }
+
+}

Propchange: incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitGeneratorMojo.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Modified: incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java?rev=618407&r1=618406&r2=618407&view=diff
==============================================================================
--- incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java (original)
+++ incubator/tuscany/java/sca/tools/maven/maven-web-junit/src/main/java/org/apache/tuscany/tools/sca/web/junit/plugin/WebJUnitMojo.java Mon Feb  4 12:02:01 2008
@@ -23,6 +23,7 @@
 import java.io.InputStreamReader;
 
 import org.apache.commons.logging.LogFactory;
+import org.apache.http.Header;
 import org.apache.http.HttpEntity;
 import org.apache.http.HttpResponse;
 import org.apache.http.client.HttpClient;
@@ -74,6 +75,10 @@
     private int maxRetries = 3;
 
     public void execute() throws MojoExecutionException {
+        if (project.getPackaging().equals("pom")) {
+            return;
+        }
+
         reset();
 
         if (url == null) {
@@ -84,25 +89,24 @@
 
         int runs = 0, errors = 0, failures = 0;
         String xml = "";
-        
+
         try {
             HttpClient client = new DefaultHttpClient();
             HttpGet httpget = new HttpGet(url);
 
             // Execute HTTP request
             HttpResponse response = client.execute(httpget);
-            String header = response.getFirstHeader("junit.errors").getValue();
-            errors = header == null ? 0 : Integer.parseInt(header);
-            header = response.getFirstHeader("junit.failures").getValue();
-            failures = header == null ? 0 : Integer.parseInt(header);
-            header = response.getFirstHeader("junit.runs").getValue();
-            runs = header == null ? 0 : Integer.parseInt(header);
+            Header header = response.getFirstHeader("junit.errors");
+            errors = header == null ? 0 : Integer.parseInt(header.getValue());
+            header = response.getFirstHeader("junit.failures");
+            failures = header == null ? 0 : Integer.parseInt(header.getValue());
+            header = response.getFirstHeader("junit.runs");
+            runs = header == null ? 0 : Integer.parseInt(header.getValue());
             getLog().info("Runs: " + runs + ", Failures: " + failures + ", Errors: " + errors);
 
             // Get hold of the response entity
             HttpEntity entity = response.getEntity();
 
-            
             // If the response does not enclose an entity, there is no need
             // to bother about connection release
             if (entity != null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org