You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/08/07 19:20:30 UTC

svn commit: r1370450 - in /incubator/easyant/plugins/trunk/compile-scala/src/test: ./ antunit/ antunit/src/ antunit/src/main/ antunit/src/main/scala/ antunit/src/main/scala/org/ antunit/src/main/scala/org/apache/ antunit/src/main/scala/org/apache/easya...

Author: jlboudart
Date: Tue Aug  7 19:20:29 2012
New Revision: 1370450

URL: http://svn.apache.org/viewvc?rev=1370450&view=rev
Log:
Add compile-scala test case

Added:
    incubator/easyant/plugins/trunk/compile-scala/src/test/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/compile-scala-test.xml
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/sample-module.ivy
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/
    incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/Example.scala

Added: incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/compile-scala-test.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/compile-scala-test.xml?rev=1370450&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/compile-scala-test.xml (added)
+++ incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/compile-scala-test.xml Tue Aug  7 19:20:29 2012
@@ -0,0 +1,62 @@
+<!--
+   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.
+-->
+<project name="org.apache.easyant.plugins;compile-scala-test" 
+    xmlns:au="antlib:org.apache.ant.antunit" 
+    xmlns:ivy="antlib:org.apache.ivy.ant"
+    xmlns:ea="antlib:org.apache.easyant">
+    
+    <!-- Import your plugin --> 
+    <property name="target" value="target/test-antunit"/>
+    <!-- configure easyant in current project -->
+    <ea:configure-easyant-ivy-instance />
+    <!-- import our local plugin -->
+    <ea:import-test-module moduleIvy="../../../module.ivy" sourceDirectory="../../main/resources"/>
+
+    <property name="src.main.scala" value="${basedir}/src/main/scala"/>
+   
+    <!-- Defines a setUp / tearDown (before each test) that cleans the environnement --> 
+    <target name="clean" description="remove stale build artifacts before / after each test">
+        <delete dir="${basedir}" includeemptydirs="true">
+            <include name="**/target/**"/>
+            <include name="**/lib/**"/>
+        </delete>
+    </target>
+    
+    <target name="setUp" depends="clean">
+        <!--FIXME: findclasspath requires project.ivy.instance and a resolved module -->
+        <ivy:settings id="project.ivy.instance"/>
+        <ivy:resolve file="sample-module.ivy" settingsRef="project.ivy.instance"/>
+    </target>
+    <target name="tearDown" depends="clean"/>
+    
+    <target name="test-compile-scala:init" depends="compile-scala:init">
+        <au:assertPropertyEquals name="src.main.scala" value="${basedir}/src/main/scala"/>
+        <au:assertPropertyEquals name="scalac.debug.mode" value="true"/>
+        <au:assertPropertyEquals name="compile.scala.includes.pattern" value="**/*.scala"/>
+        <au:assertPropertyEquals name="compile.scala.excludes.pattern" value=""/>
+        <au:assertPropertyEquals name="has.src.main.scala" value="true"/>
+    </target>
+    
+    <target name="test-compile-scala:configure" depends="compile-scala:configure">
+         <au:assertReferenceSet refid="resolved.scala.classpath"/>
+    </target>
+
+    <target name="test-compile-scala:compile" depends="compile-scala:compile">
+        <au:assertFileExists file="${target.main.classes}"/>	
+        <au:assertFileExists file="${target.main.classes}/org/apache/easyant/example/Example.class"/>
+    </target>
+</project>

Added: incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/sample-module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/sample-module.ivy?rev=1370450&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/sample-module.ivy (added)
+++ incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/sample-module.ivy Tue Aug  7 19:20:29 2012
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
+    <info organisation="org.apache.easyant" module="standard-java-app" revision="0.1" status="integration"/>
+    <configurations>
+        <conf name="default" description="runtime dependencies artifact can be used with this conf"/>
+        <conf name="test" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases."/>
+        <conf name="provided" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
+    </configurations>
+    <dependencies>
+        <dependency org="junit" name="junit" rev="4.4" conf="*->default"/>
+    </dependencies>
+
+</ivy-module>

Added: incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/Example.scala
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/Example.scala?rev=1370450&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/Example.scala (added)
+++ incubator/easyant/plugins/trunk/compile-scala/src/test/antunit/src/main/scala/org/apache/easyant/example/Example.scala Tue Aug  7 19:20:29 2012
@@ -0,0 +1,25 @@
+/*
+ *  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.easyant.example;
+
+object Example {
+    def main(args: Array[String]) {
+        println("Hello, world!");
+    }
+
+}