You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/03/31 01:59:24 UTC

svn commit: r4910 - in /dev/flex/flexunit/4.2.0/rc3: ./ binaries/

Author: jmclean
Date: Sun Mar 30 23:59:23 2014
New Revision: 4910

Log:
Apache Flex FlexUnit 4.2.0 RC3

Added:
    dev/flex/flexunit/4.2.0/rc3/
    dev/flex/flexunit/4.2.0/rc3/README
    dev/flex/flexunit/4.2.0/rc3/RELEASE_NOTES
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz   (with props)
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip   (with props)
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc
    dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5
    dev/flex/flexunit/4.2.0/rc3/binaries/
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz   (with props)
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip   (with props)
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc
    dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5

Added: dev/flex/flexunit/4.2.0/rc3/README
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/README (added)
+++ dev/flex/flexunit/4.2.0/rc3/README Sun Mar 30 23:59:23 2014
@@ -0,0 +1,154 @@
+Apache Flex FlexUnit
+==================
+
+Apache Flex FlexUnit is a unit testing framework for Apache Flex and ActionScript 3.0 
+applications and libraries. It mimics the functionality of JUnit, a Java 
+unit testing framework, and comes with a graphical test runner.
+
+Getting the latest sources via git
+==================================
+
+    You can always checkout the latest source via git using the following
+    command:
+	
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-flexunit.git flexunit
+	 cd flexunit
+	 git checkout develop
+
+    For further information visit http://flex.apache.org/download-source.html
+
+Building Apache Flex FlexUnit
+=========================
+
+    Apache Flex FlexUnit requires some build tools which must be installed
+    prior to building FlexUnit and it depends on some external software which
+    are downloaded as part of the build process.  Some of these have different licenses.
+    See the Software Dependencies section for more information on the external software
+    dependencies.
+	
+Install Prerequisites
+---------------------
+
+    Before building FlexUnit you must install the following software and set the
+    corresponding environment variables using absolute file paths.  Relative file paths
+    will result in build errors.
+    
+	==================================================================================
+    SOFTWARE                                    ENVIRONMENT VARIABLE (absolute paths)
+    ==================================================================================
+    
+    Java SDK 1.6 or greater (*1)                JAVA_HOME
+        (for Java 1.7 see note at (*2))
+        
+    Ant 1.7.1 or greater (*1)                   ANT_HOME
+        (for Java 1.7 see note at (*2))
+    
+    Apache Flex (*3)                            FLEX_HOME 
+    
+    ==================================================================================
+	
+	*1) The bin directories for ANT_HOME and JAVA_HOME should be added to your PATH.
+        
+        On Windows, set PATH to
+            
+            PATH=%PATH%;%ANT_HOME%\bin;%JAVA_HOME%\bin
+            
+        On the Mac (bash), set PATH to
+            
+            export PATH="$PATH:$ANT_HOME/bin:$JAVA_HOME/bin"
+            
+         On Linux make sure you path include ANT_HOME and JAVA_HOME.
+
+    *2)  If you are using Java SDK 1.7 or greater on a Mac you must use Ant 1.8 or 
+         greater.
+         
+         If you use Java 1.7 with Ant 1.7, ant reports the java version as 1.6 
+         so the JVM args for the data model (-d32/-d64) will not be set correctly and
+         you will get compile errors.
+         
+         Also if you use Java SDK 1.7 you may encounter SSL errors when downloading
+         3rd party files as part of the build process to fix this issue
+         
+         On Windows:
+         
+            create an environment variable called ANT_OPTS with the value
+            -Djsse.enableSNIExtension=false
+            
+         On the Mac (bash):
+         
+             export ANT_OPTS="-Djsse.enableSNIExtension=false"
+         
+   
+    *3) FLEX_HOME should be set to a valid Apache Flex installation.
+	
+	
+Software Dependencies
+---------------------
+
+    Apache Flex FlexUnit uses third-party code that will be downloaded as part of the Apache
+    Flex FlexUnit build.  
+
+    When you have all the prerequisites in place and the environment variables set, 
+    (see Install Prerequisites above), use
+
+        cd <flexunit.dir>
+        ant thirdparty-downloads
+			
+    The Apache Version 2.0 license is in the LICENSE file.
+    
+    The following dependencies have licenses which are, or are compatible with, the Apache 
+    Version 2.0 license.  You will not be prompted to acknowledge the download.  
+	
+		(jars)
+		ant -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant/1.7.1/ant-1.7.1.jar (Apache 2.0 License)
+		ant-contrib - http://search.maven.org/remotecontent?filepath=ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar (Apache 2.0 License)
+		ant-launcher -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar (Apache 2.0 License)
+		ant-testutil -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-testutil/1.7.1/ant-testutil-1.7.1.jar	(Apache 2.0 License)
+		maven-ant-tasks  - http://search.maven.org/remotecontent?filepath=org/apache/maven/maven-ant-tasks/2.1.3/maven-ant-tasks-2.1.3.jar (Apache 2.0 License)
+		dom4j - http://search.maven.org/remotecontent?filepath=dom4j/dom4j/1.6.1/dom4j-1.6.1.jar (BSD License)
+		jaxen - http://search.maven.org/remotecontent?filepath=jaxen/jaxen/1.1-beta-6/jaxen-1.1-beta-6.jar (BSD License)
+		
+		(swcs)
+		coverageagent - https://flexcover.googlecode.com/files/flexcover-0.90.zip (MIT License)
+		fluint - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/fluint-1_2.swc (MIT License)
+		mockolate - http://cloud.github.com/downloads/drewbourne/hamcrest-as3/hamcrest-as3-flex-1.1.3.zip (MIT License)	
+		mock-as - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/mock-as3.swc (BSD License)	
+		hamcrest - http://cloud.github.com/downloads/drewbourne/hamcrest-as3/mockolate-0.9.5.zip (BSD License)
+		flexunit1lib - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/FlexUnit1Lib.swc (BSD License)
+		
+	The following dependencies have licenses which Apache considers to be reciprocal
+    licenses so you will be prompted to acknowledge the license before the software is
+    downloaded to your system.
+	
+		(jars)
+		junit - http://search.maven.org/remotecontent?filepath=junit/junit/3.8.1/junit-3.8.1.jar (License - CPL 1.0)
+		saxon9he - http://search.maven.org/remotecontent?filepath=net/sf/saxon/Saxon-HE/9.4/Saxon-HE-9.4.jar (License - MPL 1.1)
+
+
+Building Apache Flex FlexUnit
+-----------------------------------------------
+
+    When you have all the prerequisites in place and the environment variables set, 
+    (see Install Prerequisites above), to build Apache Flex FlexUnit use:
+
+        cd <flexunit.dir>
+        ant
+	
+	To clean the build use:
+    
+        ant clean 
+        
+ 	To package the build use:
+    
+        ant package   
+        
+For information on setting up FlexUnit, creating tests, using FlexUnit with
+ant or continuous integration please see the FlexUnit section of the Apache
+Flex wiki.
+
+https://cwiki.apache.org/confluence/display/FLEX/FlexUnit
+     
+Thanks for using Apache Flex FlexUnit.  Enjoy!
+
+The Apache Flex Project
+<http://flex.apache.org>

Added: dev/flex/flexunit/4.2.0/rc3/RELEASE_NOTES
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/RELEASE_NOTES (added)
+++ dev/flex/flexunit/4.2.0/rc3/RELEASE_NOTES Sun Mar 30 23:59:23 2014
@@ -0,0 +1,31 @@
+Apache Flex FlexUnit 4.2
+=================
+
+Apache Flex FlexUnit 4.2 is an update to FlexUnit 4.1 and first release under Apache. 
+
+Differences from FlexUnit 4.1 include:
+
+Changes
+-------------
+- Automated sonatype OSS deployment of the Apache Flex (FlexUnit) artifacts
+- Implemented the url property in FlexUnit Ant task to allow use of remote swfs
+
+Bug Fixes
+----------
+ Below is a complete list of all the bug fixes that have been included since
+ the last release, FlexUnit 4.1
+ If you would like specific information about any of the items below, go to
+ https://issues.apache.org and search for the JIRA Issue Number by using the
+ Quick Search.  Details of the bug and its fix will be included on the
+ resulting page.
+
+JIRA Issue Number  Summary                                                                                        
+-------------------------------------------------------------------------------------------------------------------
+FLEX-33572 further implemented the automated sonatype OSS deployment of the FlexUnit artifacts
+
+Please report new issues to our bugbase at:
+
+    https://issues.apache.org/jira/browse/FLEX
+
+The Apache Flex Project
+<http://flex.apache.org/>

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc Sun Mar 30 23:59:23 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTOKreAAoJEODyhZOu6tFRYSAP/REvhjiV/Y7tWtUgVSSofn6L
+kQgfOPd80QEdH1pTQpfAO2wy4NisIQvnDt0E+iCQKCbJ8c4KSgX5XHz5UxKbIoJs
+W45Ujw9b5RP6tMsidcceDorLqn/If3HjCl28T5zccaBVo9RxrddkCbJJ/142Swt/
+TpbXyrXCX5F67hAmhMzp2X57XWUVPo1fyFHfSaseSJ8yAfncViOWnv3saHWeXXNx
+ZyrkfotTB2P2zRFI8/1RugB77PQ9QPvAlWZlP0ydV7X276TKkEzqCbd+ABHuB60s
+hHikEO0FmAi5RB1t7mV4G2Q2MP0AUAMa48y12OxEmBJI5jtslyjoIQhLmEC/B+53
+3ajXsEZm4jyeg4rwh2RkXfavneYCX/QWaHqcgSUztptClBAOwSM2TOkUkYFXLnma
+rQ2SmARo2dImprUyNRZOZ3WIFYRBD4EWBIykyBqVa+2m8t4UKXWP5vKcAxj++NaH
+2okWoP6V7531IMK3qkOszbBdDQOPLvc6JDpwRx0Cq24Gzf0afiOzIUqRq94MjrXJ
+1YoW8yxy4ZW5N2PLgiPVIo2BIy0ullq4OBYt+QYdgq+wH0lyZazE2yQnhnrvYS0P
+HkvTUpgrWfG6JRWYTL8TO7t97J2QMaFwM2ZVlFF1kIdoUhHbXDpeBGdX9h2RQ+Il
+7BDO8jkD4EropwsP0dup
+=jMNK
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 Sun Mar 30 23:59:23 2014
@@ -0,0 +1 @@
+2eb8e01d5533aa2fa27bb28ae4c25ea6

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc Sun Mar 30 23:59:23 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTOKreAAoJEODyhZOu6tFR9XUP/AtVWLnJriBCjOWVPJ78iSMr
+y+NE2MsxQJ/vgqt5EKchhqy0cXXAxYBexmjAQhniCnuMQKAUq3iU3+znorU4hAeZ
+BxSdoxLOhK8qok56Y5A6bS7nL2IDamIU21Fpcn8OhfxZyiXBf2ol0mL/w89VXaX3
+TyAPKVawNKrr7UKHFc8/QHDf+06FcKH+5gWU87r0UAR4NGZYuPsVA51e/ZMt4/pl
+CsrMcaZoRQYa6WwjWH4sNrGrH5QDQoefsgU24YKjsGrpB6FNRpizrzRd9jlNxnFN
+pIC0dneUQPV0JvGjDYslZnE6hrUdFF+jRR3PT1BwvxNhFYu/Q37aNxfAQawUpObM
+W9vYvQQwrZvhqXr/8IOMIUXMrSvy3Kx1eF2fr/S2TGDz2RWSFm1VeuYo64WJoEmK
+gK03sexwlIiED/kIzPl4tKCweblJHDPjCv5HDZ6JypQL3FETGHikFz7SzJSVWgH6
+AhiXIsPkq2kYSkdP03GaOeWrQSVH4hXi4oXcrCNxhaKiQdByUwO03z+vx/jxo/HI
+wJKENEzJsZTMO4VyqdAxjOx8eVaV7URUite6PrRgCLIhvhND7E9FscGA4LdF1Civ
+phrKw9vOlfxtQY41oQrSS0x69YAHawClZY5MAwT323bgd20jNli3Bc0emosRoM7g
+PJdgKDLNbJ5kctM++NlX
+=Cuye
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc3/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 Sun Mar 30 23:59:23 2014
@@ -0,0 +1 @@
+7ba8f276165351094933fd1b4be523b9

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc Sun Mar 30 23:59:23 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTOKreAAoJEODyhZOu6tFR0JAP/1cWPWhoaPfrFOJVnqZO+VTP
+3fFHQ80fhST3xewYlG2o1sbEwDLuyJb2S+MgIseov+iFuXbJtPU+TW7axn/FVo1e
+J27Tt5pZi036e0pP6XlyC3KxIaZYOuOa/47VrpPM9I3SgG3H5IpFziCBpczSorX7
+rV5yYrvh5AjZCEvb8goTrqWb4mM+i39Uh7imudPdQemtjgkqWGkqVWXdr9+6wrwY
+NM4XdBqfvRpGv0fEvollb/8FuqRYqELOmZjPYpyetEK9/hazpHFZCiaxMvJ0qRPC
+GxcxIv8QFRpmTCcAQnW6n83Xqnf83vLMgE8t/M2TnhUFDZF6zVldNe3vNLBMAK1G
+Fkhi/kN4MkWNKBTh3PZSKrDK7yRGsodz6Es4bNzfMbsLpcU65WtZJo6JkxHrr7Da
+ehNPFEdq8rnDFLC59E7WKDYNLhR3XlmJIpfYIWUsIgbqJt7dle2GhaXtTgXFB6fv
+b5zl2GcBWi9rOjKseBgyx4JfrDpzuEzx46oPwNf7GWut4fBofUwCi9K7nxLgp1kV
+9XMv+hRLb6hkcXX8dJoFQfx7wtgknC1wXBQ2IiUds5Agg41jzkNyVnPv1iMCOHmi
+MQLqkCN05aCUnVhwc44xEa4Cq77x5vAtvHoI1d5AEwnl7dEy5lx1EK3joYNyDfOd
+Hv0n1/SbraIMCV0u6z4A
+=1Vo2
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 Sun Mar 30 23:59:23 2014
@@ -0,0 +1 @@
+aab46e468d1f1c6ed9a04f46441a4a37

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc Sun Mar 30 23:59:23 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTOKrdAAoJEODyhZOu6tFRkU0QAJMqYJdHZNGhfYie/11u8+Q3
+B53/DXRtUtDp1kMzCROdFjEdCZGp91HK2mn0KGt5hR5DMI+porkhojN8KDdg+trs
+Ir+/kjSL2yMYSDSBZVwOAVP+OHUeSvcxrkyLh+wcWzfCHXtkZm5T7wh3FsmkFYOB
+muP3DLKt4iJn068AhKnTC9bxWoN7iIRrgHdCqiHFdJ3KSMZuTjw3vVBEuQ1zGSg4
+tv84Hs8I9Fqf2Sy5LYvQrKv56DXq2zWZ571JdrPQo3uhojmz7OohsL62LEb+p3LE
+Z+7uH6RO0HEL/28aBiNer07JHZE8fgXJHiVfOdgqLdbA8ixHNV/a6M54uv4UcQZj
+uDTyKep9ko9cNMZLXp382QS+wHMhiFezSSS8AvRxK/gdzs0bg4J2H6eVvtfD9Pug
+0S7q1aV+9JKQxFVK/on5TXQ8I6owwhJCVXocX7n7EPI7nTPq1n4y3uk0nlEavnM6
+9ZW27TnjGOwbFwZCK9FqEi2i6/1GQ1/f52ZRRzCzybiQSjV2vv6UKqFQonQUv6sd
+h46970fuXTYFrovPlK7hXG3Xy+yKTENHy/V5eWKFaQEWzxhiQN8A0wdlApuqZINK
+yNNHLVq+uK0b+BgVce3ydQF+ebQmAEQmpAyaxGpd/7/PHTsLdbWFiGHXX/f6bOox
+6dwEFbf/YDjhJIZrceyd
+=mI/a
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc3/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 Sun Mar 30 23:59:23 2014
@@ -0,0 +1 @@
+19da68f40ca93de4c2753378117e4c72