diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 1506a206c0a5e3b593c4c61a62b8805b64e98daf (patch) | |
tree | e20fe3eb0f693e87649fff1ce75e3f23330f69f8 /eclipse/plugins/com.android.ide.eclipse.tests/test.xml | |
download | sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.zip sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.tar.gz sdk-1506a206c0a5e3b593c4c61a62b8805b64e98daf.tar.bz2 |
Initial Contribution
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests/test.xml')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.tests/test.xml | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/test.xml b/eclipse/plugins/com.android.ide.eclipse.tests/test.xml new file mode 100644 index 0000000..792ebc2 --- /dev/null +++ b/eclipse/plugins/com.android.ide.eclipse.tests/test.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- test launcher file for Android Eclipse functional tests --> +<project name="testsuite" default="run" basedir="."> + <!--The following properties should be passed into this script, set to some default value for now --> + <property name="eclipse.home" value="/opt/eclipse" /> + <property name="sdk_home" value="/tmp/sdk" /> + <property name="eclipse_test" value="${eclipse.home}/plugins/org.eclipse.test_3.2.0" /> + + <!-- eclipse scripts use an annoying mixture of eclipse-home and eclipse.home --> + <!-- lets define both...--> + <property name="eclipse-home" value="${eclipse.home}" /> + <property name="test-folder" value="${eclipse.home}/test_folder" /> + + <!-- sets the properties eclipse.home, and library-file --> + <property name="plugin-name" value="com.android.ide.eclipse.tests" /> + <property name="library-file" value="${eclipse_test}/library.xml" /> + + <!-- location of adt preference file (within workspace) --> + <property name="prefs_path" value="${test-folder}/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs" /> + <!-- location of pref template file relative to this file --> + + <property name="prefs_template" value="prefs.template" /> + + <!-- This target holds all initialization code that needs to be done for --> + <!-- all tests that are to be run. --> + <target name="init"> + <tstamp /> + <echo message="eclipse.home: ${eclipse.home}" /> + <echo message="libfile: ${library-file}" /> + + <!-- delete test eclipse workspace --> + <delete dir="${test-folder}" quiet="true" /> + + <!-- delete test results dir --> + <delete dir="${eclipse.home}/results" quiet="true" /> + + <!-- Copy a preference file into the test workspace. --> + <!-- This is done to ensure Android SDK preference is set on startup --> + <copy file="${prefs_template}" tofile="${prefs_path}" /> + <!-- replace sdk path placeholder token with actual sdk path --> + <replace file="${prefs_path}" token="sdk_home" value="${sdk_home}" />
+
+ <!-- if this is on windows, escape the drive and file separators -->
+ <replace file="${prefs_path}" token="\" value="\\" />
+ <replace file="${prefs_path}" token=":" value="\:" /> + </target> + + <!-- This target defines the tests that need to be run. --> + <target name="suite"> + <!-- launch as ui-test ie as a test which needs Eclipse workbench --> + <ant target="ui-test" antfile="${library-file}" dir="${eclipse.home}"> + <property name="data-dir" value="${test-folder}" /> + <property name="plugin-name" value="${plugin-name}" /> + <property name="classname" value="com.android.ide.eclipse.tests.FuncTests" /> + <!-- pass extra vm arg to set sdk_home env variable --> + <property name="extraVMargs" value="-Dsdk_home=${sdk_home}" /> + </ant> + </target> + + <!-- This target holds code to cleanup the testing environment after --> + <!-- after all of the tests have been run. You can use this target to --> + <!-- delete temporary files that have been created. --> + <target name="cleanup"> + </target> + + <!-- This target runs the test suite. Any actions that need to happen --> + <!-- after all the tests have been run should go here. --> + <target name="run" depends="init,suite,cleanup"> + <ant target="collect" antfile="${library-file}" dir="${eclipse.home}/results"> + <property name="includes" value="com*.xml" /> + <property name="output-file" value="${plugin-name}.xml" /> + </ant> + </target> +</project> + |