blob: e9b362a73d6daec1814a9a8ace5e4a355467c869 [file] [log] [blame]
Stephan Herrmanndcd87c12010-04-25 10:59:27 +00001<!--
2 Copyright (c) 2010 Stephan Herrmann and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Eclipse Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/epl-v10.html
7
8 Contributors:
9 Stephan Herrmann - initial API and implementation
10-->
11<project name="Automated Object Teams Testing" default="all" basedir="." >
12
13 <!--properties file containing the plugin directory name including version number-->
14 <dirname property="_myDir" file="${ant.file}"/>
15 <property file="${_myDir}/test.properties" />
16
17 <!--properties file containing the build information-->
18 <property file="src/label.properties" />
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010019 <property file="src/finalPluginsVersions.properties" />
Stephan Herrmannb2e5abd2015-10-29 17:26:56 +010020 <property name="otequinox.agent.jar" value="${test.root.dir}/eclipse/plugins/org.eclipse.objectteams.otequinox_${org.eclipse.objectteams.otequinox}/otequinoxAgent.jar"/>
Stephan Herrmann5c45fe42015-10-22 20:56:39 +020021
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000022
23 <target name="readFlags">
24 <condition property="really.build.all">
25 <istrue value="${do.build.all}"/>
26 </condition>
27 </target>
28
29 <target name="checkFlags" depends="readFlags" unless="really.build.all">
30 <property name="otdt-eclipse.is.setup" value="true"/>
31 <property name="tests.are.setup" value="true"/>
32 </target>
33
34 <target name="setupOTDTEclipse" depends="checkFlags" unless="otdt-eclipse.is.setup"
35 description="Creates the SUT by extracting a fresh Eclipse SDK and installing the OTDT into it"
36 >
37 <echo message="### Build Test Eclipse ###"/>
38 <echo message="Extracting Eclipse..."/>
39 <untar compression="gzip" src="${eclipse-app.tgz}" dest="${test.root.dir}"/>
40
41 <echo message="Installing OTDT..."/>
42 <ant antfile="${OTScriptDir}/p2helper.xml" target="installOTDT" dir="${test.eclipseDir}"/>
43
44 <property name="otdt-eclipse.is.setup" value="true"/>
45 </target>
46
47 <target name="setupTests" depends="setupOTDTEclipse" unless="tests.are.setup"
48 description="Installes the OTDT-Tests into the OTDT"
49 >
50 <echo message="Setting up tests in ${test.eclipseDir}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000051 <!-- do install using p2: -->
52 <ant antfile="${OTScriptDir}/p2helper.xml" target="installTests" dir="${test.eclipseDir}"/>
53
Stephan Herrmanna1eeb302013-04-29 23:51:25 +020054 <echo message="get library.xml"/>
55 <get src="http://git.eclipse.org/c/platform/eclipse.platform.releng.aggregator.git/plain/eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/library.xml"
Stephan Herrmannbc2361b2013-04-30 00:34:57 +020056 dest="${test.root.dir}/library.xml"/>
Stephan Herrmanna1eeb302013-04-29 23:51:25 +020057
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000058 <property name="tests.are.setup" value="true"/>
59 </target>
60
61 <target name="runtests"
62 description="Runs ant on the test.xml for a specified plugin.
63 Requires a property value setting for testPlugin only if test.properties is not available.
64 The property testPlugin represents a directory name made up of the plugin id and plugin version.
65 This directory must contain a valid test.xml."
66 >
67 <ant antfile="plugins/${testPlugin}/test.xml" dir="${test.eclipseDir}">
68 <property name="eclipse-home" value="${test.eclipseDir}" />
Stephan Herrmannf71123a2013-04-30 01:18:01 +020069 <property name="library-file" value="${test.root.dir}/library.xml"/>
Stephan Herrmannedb0b202017-11-23 18:59:31 +010070 <property name="extraVMargs" value="-XX:+HeapDumpOnOutOfMemoryError -ea --add-modules ALL-SYSTEM
71 --add-opens java.base/jdk.internal.loader=ALL-UNNAMED
72 --add-opens jdk.localedata/sun.util.resources.cldr.provider=ALL-UNNAMED
73 --add-opens jdk.localedata/sun.util.resources.provider=ALL-UNNAMED
74 --add-opens java.security.jgss/sun.security.krb5.internal.ssl=ALL-UNNAMED
75 --add-opens java.base/jdk.internal.module=ALL-UNNAMED
76 --add-opens java.base/java.lang.module=ALL-UNNAMED
77 --add-opens java.base/jdk.internal.reflect=ALL-UNNAMED
78 --add-opens java.base/jdk.internal.ref=ALL-UNNAMED
79 --add-opens java.base/jdk.internal.math=ALL-UNNAMED
80 --add-opens java.base/jdk.internal.misc=ALL-UNNAMED
Stephan Herrmann929e7612018-08-03 23:14:50 +020081 -Djava.io.tmpdir=${test.tmpDir} -Dot.weaving=otdre -javaagent:${otequinox.agent.jar}
Stephan Herrmanne0501852018-10-18 01:18:12 +020082 -Dcompliance=1.4,1.7,1.8,9"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000083 </ant>
84 </target>
85
86 <target name="otdt_tests" description="Runs the org.eclipse.objectteams.otdt.tests test.xml">
87 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010088 <param name="testPlugin" value="org.eclipse.objectteams.otdt.tests_${org.eclipse.objectteams.otdt.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000089 </antcall>
90 </target>
91
92 <target name="jdtcore_compiler_tests" description="Runs the org.eclipse.jdt.core.tests.compiler test.xml">
93 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010094 <param name="testPlugin" value="org.eclipse.jdt.core.tests.compiler_${org.eclipse.jdt.core.tests.compiler}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000095 </antcall>
96 </target>
97
98 <target name="jdtcore_model_tests" description="Runs the org.eclipse.jdt.core.tests.model test.xml">
99 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100100 <param name="testPlugin" value="org.eclipse.jdt.core.tests.model_${org.eclipse.jdt.core.tests.model}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000101 </antcall>
102 </target>
103
104 <target name="jdt_builder_tests" description="Runs the org.eclipse.jdt.core.tests.builder test.xml">
105 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200106 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000107 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100108 <param name="testPlugin" value="org.eclipse.jdt.core.tests.builder_${org.eclipse.jdt.core.tests.builder}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000109 </antcall>
110 </target>
111
112
113 <target name="otdt_ui_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests test.xml">
114 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100115 <param name="testPlugin" value="org.eclipse.objectteams.otdt.ui.tests_${org.eclipse.objectteams.otdt.ui.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000116 </antcall>
117 </target>
118
119 <target name="otdt_dom_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests.dom test.xml">
120 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100121 <param name="testPlugin" value="org.eclipse.objectteams.otdt.ui.tests.dom_${org.eclipse.objectteams.otdt.ui.tests.dom}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000122 </antcall>
123 </target>
124
125 <target name="otdt_ref_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests.refactoring test.xml">
126 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100127 <param name="testPlugin" value="org.eclipse.objectteams.otdt.ui.tests.refactoring_${org.eclipse.objectteams.otdt.ui.tests.refactoring}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000128 </antcall>
129 </target>
130
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200131 <target name="otequinox_tests" description="Runs the OTEquinoxTests test.xml">
132 <antcall target="runtests">
133 <param name="testPlugin" value="OTEquinoxTests_${OTEquinoxTests}" />
134 </antcall>
135 </target>
136
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000137 <target name="jdt_ui_tests" description="Runs the org.eclipse.jdt.ui.tests test.xml">
Stephan Herrmann855fbd72010-09-28 16:00:49 +0000138 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200139 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000140 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100141 <param name="testPlugin" value="org.eclipse.jdt.ui.tests_${org.eclipse.jdt.ui.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000142 </antcall>
143 </target>
144
145 <target name="jdt_ref_tests" description="Runs the org.eclipse.jdt.ui.tests.refactoring test.xml">
Stephan Herrmann855fbd72010-09-28 16:00:49 +0000146 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200147 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000148 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100149 <param name="testPlugin" value="org.eclipse.jdt.ui.tests.refactoring_${org.eclipse.jdt.ui.tests.refactoring}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000150 </antcall>
151 </target>
152
153 <target name="jdt_debug_tests" description="Runs the org.eclipse.jdt.debug.tests test.xml">
154 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200155 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000156 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100157 <param name="testPlugin" value="org.eclipse.jdt.debug.tests_${org.eclipse.jdt.debug.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000158 </antcall>
159 </target>
160
161 <target name="otdt_debug_tests" description="Runs the org.eclipse.objectteams.otdt.debug.tests test.xml">
162 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100163 <param name="testPlugin" value="org.eclipse.objectteams.otdt.debug.tests_${org.eclipse.objectteams.otdt.debug.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000164 </antcall>
165 </target>
166
167 <target name="otdt_builder_tests" description="Runs the org.eclipse.objectteams.otdt.test.builder test.xml">
168 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100169 <param name="testPlugin" value="org.eclipse.objectteams.otdt.test.builder_${org.eclipse.objectteams.otdt.test.builder}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000170 </antcall>
171 </target>
172
173 <target name="all">
174<!-- enable if we want to debug otre/otequinox:
175<property name="extraVMargs" value="-Dot.dump=1 -Dotequinox.debug=OK" />
176-->
177 <!-- debug tests don't like parallelization -->
178 <antcall target="jdt_debug_tests" />
179 <antcall target="otdt_debug_tests" />
Stephan Herrmann5aecfe12010-05-03 23:53:54 +0000180 <!--parallel threadCount="2"-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000181 <!-- "slow", ui tests come first -->
182 <antcall target="jdt_ref_tests" />
183 <antcall target="jdt_ui_tests" />
184 <antcall target="otdt_ui_tests" />
185 <antcall target="otdt_ref_tests" />
186 <antcall target="otdt_dom_tests" />
187 <antcall target="otdt_tests" />
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200188 <antcall target="otequinox_tests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000189 <antcall target="jdt_builder_tests" />
190 <antcall target="jdtcore_compiler_tests" />
191 <antcall target="jdtcore_model_tests" />
192 <antcall target="otdt_builder_tests" />
193 <!-- antcall target="otdt_metrics_tests" / -->
Stephan Herrmann5aecfe12010-05-03 23:53:54 +0000194 <!--/parallel-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000195 </target>
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000196
197 <target name="otdt-tests">
198<!-- enable if we want to debug otre/otequinox:
199<property name="extraVMargs" value="-Dot.dump=1 -Dotequinox.debug=OK" />
200-->
201 <!-- debug tests don't like parallelization -->
202 <antcall target="otdt_debug_tests" />
203 <!--parallel threadCount="2"-->
204 <!-- "slow", ui tests come first -->
205 <antcall target="otdt_ui_tests" />
206 <antcall target="otdt_ref_tests" />
207 <antcall target="otdt_dom_tests" />
208 <antcall target="otdt_tests" />
209 <antcall target="jdt_builder_tests" />
210 <antcall target="jdtcore_compiler_tests" />
211 <antcall target="jdtcore_model_tests" />
212 <antcall target="otdt_builder_tests" />
213 <!-- antcall target="otdt_metrics_tests" / -->
214 <!--/parallel-->
215 </target>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000216
217 <target name="onlyone">
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200218 <antcall target="otequinox_tests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000219 </target>
220
221</project>