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/04/10 00:18:07 UTC

svn commit: r5006 - in /dev/flex/flexunit/4.2.0/rc4: ./ binaries/

Author: jmclean
Date: Wed Apr  9 22:18:06 2014
New Revision: 5006

Log:
Apache FlexUnit 4.2.0 RC4

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

Added: dev/flex/flexunit/4.2.0/rc4/README
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/README (added)
+++ dev/flex/flexunit/4.2.0/rc4/README Wed Apr  9 22:18:06 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/rc4/RELEASE_NOTES
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/RELEASE_NOTES (added)
+++ dev/flex/flexunit/4.2.0/rc4/RELEASE_NOTES Wed Apr  9 22:18:06 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/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc4/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/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc Wed Apr  9 22:18:06 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTRcW6AAoJEODyhZOu6tFRYBkQAJ99QOLmTNH7ASH+8SsEZ3uB
+80eEp9ggaI5USHZDQcNiZmtD9dkB0y1SA9jBKDZ3RD+Egi5WakkfdOYVsMglTksh
+i1T3p7Hbymwj7Uo+luZwu8s1kRx27bjRUSFD9jaKbU1FaPaZmc/tpPAqrdNGoTq8
+pJkvh+c/Q/gS3SfAXvN1WrDAhl9GnsZNFAEr9KLGj4uPNjo0i3Ou+UNqI+qD1mTK
+uT6OoTO0vDdyj2v9ynFJH8X7cRmXfwTego4SqREwvyDuIK3rYe70C373NIEccMe7
+FCxGgGKxlJkEj46mE2QkST3osph9di4n1kh4bg8QaEY2ApCToNbczwcFdY7qmGwk
+Hb1LrB6+vcdUDUdA1xyoRrmq6sBL+I5d02Bc8cjEiJ2HIVHgfRjLycx66yyg++Mk
+k0dH8Gy1ahVbqlNIEWxqc/uXnhVj+XoT7MMkJtdfObuwbn2N3qBBohcGVm2/Fljg
+wYBH2VMV6PTuI6d88Z4Ix8NL7bat02aOVOtlUDV9hXrocEhdoaM9NNQR5DWAhb9i
+DLM0xlEO6uCzfUPDpbHPJSawYEUHRQDN2SRaWIjZdU3BxYY4zIqGk5r/rJ23K2RN
+TXFdQ1sdpdQawO7NX5hCnAmAM94DQ8+t5Td8q2lSvC6wRGvE7Zfclc1g4ziNN4ke
+KhMfQYIJdghaethbqOBR
+=i29u
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 Wed Apr  9 22:18:06 2014
@@ -0,0 +1 @@
+02202c44a51d5a3bcd5e6b37d1a1223a

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

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

Added: dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc Wed Apr  9 22:18:06 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTRcW6AAoJEODyhZOu6tFRlXQQAKGPNsIrH2ymR9ZgRWmW/iMd
+eBkg7lvsiMRfl5PmV5nCxfy9iA9/iI7gjB+I4a5etN+uYUvRIXsLJ1Hh6TwKf2q6
+u1YeOajGQaQaDC3KqUhLevHtY9aVnWx1OuOiuHEcwAo+NTZEzh48kmDZr4Lk0WHy
+VLPeNRFdmIgj6JUpKR7PNR9qn8sq30tiNhmAr2i8b5tUfVk3H1SALGZhewe1+AIt
+4MQ5AacmDHUu99RPpao5siXroA9XttqbpfclcvOQ879Tk45Y6gv722Ou9hmS7nD/
+akMt5Fqfq4KMLuV/40R/3ouOhKQTwwiboMyPkr1v7YVSku1fszfeTWswGCFU6baU
+UFb5vKtAtrBGPU3BMbqqEc2VvVibLc0d2m22aavfS5qq/49Ipp8WWDWJDWoF1qWt
+atlTUifn3WREMHMSZEwvxXXj3hCLoeVjv4ubO54a6G/tEWcS5iyoixxt3uOpZamh
+TQMEKz2zMOmFijJPSwU7GhcR7ghszz9REr31hgjYhXDycMseo8s9Fi2WxWw6v6nc
+WhcuFJvIA8G0vMugeceFYuZpJcZYVgkJ+fm7hrtD6I5rNFC7wGwm/opaGKbfc2OA
+Dp+Vo0Pa9+nZ36JWxJy6LRb7FuMZ0eyDt2uyFK3IRgejiOQOlgsDMLg/pASxG4Sh
+8aewWjeb2cEPgpaTFqkK
+=xSw/
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc4/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 Wed Apr  9 22:18:06 2014
@@ -0,0 +1 @@
+1a726c2320267f77f7b7ad3a21bc98f7

Added: dev/flex/flexunit/4.2.0/rc4/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/rc4/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/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc Wed Apr  9 22:18:06 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTRcW6AAoJEODyhZOu6tFRuhoP/RIAwVYBAASWLpbozBqchToT
+1MsV6QuwAX5zLyfm0dGVqHaGGkdR419ScZUOR8tmjCsMu3ujE+0hgTftvfTv2g2z
+Ch8DWsFaQ0hDQkPLrvPvilslPS2eMQ0wBP4TMOztl5aQHSDNiEvyeKcnQUthG9Ym
+fWxL35jDJoLQGFsH5ZN/6x/egKEDi4YPC+v99X64NOPghRjVbgVJsSXjTvOgT84r
+o8GqdVglLskJw4VS+UnLSEamnMiA1VujqLO7Y2u5LpG6/diK/m8+iE2tZtmIS01P
+JXzVluK+xqYJ8AM7OpUCgtIxo10iwxsnElgj39OX+qLTCBiU7PbJlxoxyH/1bBB5
+MIiwdU61LGnd/aE++5JHaR5ndvNnqSzKGs5w5IlNpgwhFA9USZoPtTYE9rCbqSyv
+JrTk5/EAdB0MuXspNzI3Dx8jfEFkh88ECuEwpOC3D3FkHzJ1TwXInqjtZGfkw9C4
+DIskmLVx9Zz617wO0xrzpXkJIabJoP6RdMUMVEqec0viMjqBUTmEtvY0aQ5uNTkW
+tTdB+YvmFrSeWVPrXJ2fV19PqtOqhfKD6Z+oGs8UyytJyqJlOw+eCfW/an3AiU1r
+mkY/wTO0yQP4zyNegg6jugKhjkPkfHVQTlZMfn2UClZoFDNycvKL9TsCmiiunBqC
+LxMDkY6Lkl3BEAsTB23F
+=iShv
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 Wed Apr  9 22:18:06 2014
@@ -0,0 +1 @@
+568a702544059b9c7046a98300701798

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

Propchange: dev/flex/flexunit/4.2.0/rc4/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/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc Wed Apr  9 22:18:06 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTRcW6AAoJEODyhZOu6tFRkgUQAIsLnuylj25LXIfX2yjvNfIS
+uuAkvOQXeoJyxDM8I9zMFm7plHC3nHze3G2EcAu401JCMhR/vK0IC1QhhtX4ygpU
+7IaJwt6XnEp8nWypd/DoBdFox03sKqzrdklUv7zGGk5Pllsc0YakcE//P2S6esbK
+0TeE/5kAgs0qmPWlcWbD5+VtRKXo+Gi7fUNtWxow8zxL7XSlgshXXAhM/QhVQj0W
+dJBBliZzabblapJw/Z8psR4UZonTvTmmUJ3kzJpqTQpbJFNUvJxBEhdtPH6R6UpY
+H485P+0jv6Sz1z/YoNtRNWWeVNSjAFEJb2AAWQmsYlzYqSbezRPIuzvO1u98NPED
+uy0ucLGRjOaYVzC1togWaAgy7vy/G9sZo4bmCY4wJ9cUSaIvVE13VBoNcSoCBN1b
+54K138T5pDPgz3HKJNlEFBQSCEq2jc2JKsFY6r2xmjvnoXHMqJUIy0Pvkp1GKadU
+bD9DbhFstRo/9dhyzmmUIOfm2yW+XfW0ISqv/GeGRF339O4aO2swgFhrZDYZr3ao
+/CfV1KNQE9EnD+SvL85z79nv83VHgj+16qlRi2QlMc4uQx50zCakAJOh1POHGxen
+byf1tYfjYP0hV8hYRU7kQIoGrO7gVYXRwhKYdQLcFBl3rFQHOa7kHpoKCRVshqkG
+YhvPlxhzmRNv1IiatUyB
+=sGOj
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc4/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 Wed Apr  9 22:18:06 2014
@@ -0,0 +1 @@
+9a818a5051b9a71f9670f00fb1fabedd