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/04 21:15:48 UTC

svn commit: r1369442 - in /incubator/easyant/plugins/trunk/maven-version-strategy/src/test: ./ antunit/ antunit/maven-version-strategy-test.xml

Author: jlboudart
Date: Sat Aug  4 21:15:48 2012
New Revision: 1369442

URL: http://svn.apache.org/viewvc?rev=1369442&view=rev
Log:
Add maven-version-strategy test case

Added:
    incubator/easyant/plugins/trunk/maven-version-strategy/src/test/
    incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/
    incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/maven-version-strategy-test.xml

Added: incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/maven-version-strategy-test.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/maven-version-strategy-test.xml?rev=1369442&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/maven-version-strategy-test.xml (added)
+++ incubator/easyant/plugins/trunk/maven-version-strategy/src/test/antunit/maven-version-strategy-test.xml Sat Aug  4 21:15:48 2012
@@ -0,0 +1,63 @@
+<!--
+   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;maven-version-strategy-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.java" value="${basedir}/src/main/java"/>
+    <property name="javac.debug.mode" value="false"/>
+   
+    <!-- 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">
+       <property name="ivy.revision" value="1.0"/>
+    </target>
+    <target name="tearDown" depends="clean"/>
+    
+    <target name="test-maven-version-strategy:init" depends="maven-version-strategy:init">
+        <au:assertPropertyEquals name="publish.overwrite" value="false"/>
+    </target>
+
+    <target name="test-maven-version-strategy:local" depends="maven-version-strategy:local">
+        <au:assertPropertyEquals name="publish.overwrite" value="true"/>
+        <au:assertPropertyEquals name="version" value="${ivy.revision}-SNAPSHOT"/>
+    </target>
+
+    <target name="test-maven-version-strategy:shared" depends="maven-version-strategy:shared">
+        <au:assertPropertyEquals name="publish.overwrite" value="true"/>
+        <au:assertPropertyEquals name="version" value="${ivy.revision}-SNAPSHOT"/>
+    </target>
+
+    <target name="test-maven-version-strategy:release" depends="maven-version-strategy:release">
+        <au:assertPropertyEquals name="version" value="${ivy.revision}"/>
+    </target>
+
+</project>