blob: 64b3c2b2b8d839a5a26b005d7a958a74b2102baf [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 ###"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000038
39 <echo message="Installing OTDT..."/>
Stephan Herrmann31101742019-05-23 19:11:12 +020040 <ant antfile="${OTScriptDir}/p2helper.xml" target="installOTDT" dir="${test.eclipseDir}"/>
41
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000042 <property name="otdt-eclipse.is.setup" value="true"/>
43 </target>
44
45 <target name="setupTests" depends="setupOTDTEclipse" unless="tests.are.setup"
46 description="Installes the OTDT-Tests into the OTDT"
47 >
48 <echo message="Setting up tests in ${test.eclipseDir}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000049 <!-- do install using p2: -->
Stephan Herrmann31101742019-05-23 19:11:12 +020050 <ant antfile="${OTScriptDir}/p2helper.xml" target="installTests" dir="${test.eclipseDir}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000051
Stephan Herrmanna1eeb302013-04-29 23:51:25 +020052 <echo message="get library.xml"/>
53 <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 +020054 dest="${test.root.dir}/library.xml"/>
Stephan Herrmanna1eeb302013-04-29 23:51:25 +020055
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000056 <property name="tests.are.setup" value="true"/>
57 </target>
58
59 <target name="runtests"
60 description="Runs ant on the test.xml for a specified plugin.
61 Requires a property value setting for testPlugin only if test.properties is not available.
62 The property testPlugin represents a directory name made up of the plugin id and plugin version.
63 This directory must contain a valid test.xml."
64 >
65 <ant antfile="plugins/${testPlugin}/test.xml" dir="${test.eclipseDir}">
66 <property name="eclipse-home" value="${test.eclipseDir}" />
Stephan Herrmannf71123a2013-04-30 01:18:01 +020067 <property name="library-file" value="${test.root.dir}/library.xml"/>
Stephan Herrmannedb0b202017-11-23 18:59:31 +010068 <property name="extraVMargs" value="-XX:+HeapDumpOnOutOfMemoryError -ea --add-modules ALL-SYSTEM
69 --add-opens java.base/jdk.internal.loader=ALL-UNNAMED
70 --add-opens jdk.localedata/sun.util.resources.cldr.provider=ALL-UNNAMED
71 --add-opens jdk.localedata/sun.util.resources.provider=ALL-UNNAMED
72 --add-opens java.security.jgss/sun.security.krb5.internal.ssl=ALL-UNNAMED
73 --add-opens java.base/jdk.internal.module=ALL-UNNAMED
74 --add-opens java.base/java.lang.module=ALL-UNNAMED
75 --add-opens java.base/jdk.internal.reflect=ALL-UNNAMED
76 --add-opens java.base/jdk.internal.ref=ALL-UNNAMED
77 --add-opens java.base/jdk.internal.math=ALL-UNNAMED
78 --add-opens java.base/jdk.internal.misc=ALL-UNNAMED
Stephan Herrmann929e7612018-08-03 23:14:50 +020079 -Djava.io.tmpdir=${test.tmpDir} -Dot.weaving=otdre -javaagent:${otequinox.agent.jar}
Stephan Herrmanne0501852018-10-18 01:18:12 +020080 -Dcompliance=1.4,1.7,1.8,9"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000081 </ant>
82 </target>
83
84 <target name="otdt_tests" description="Runs the org.eclipse.objectteams.otdt.tests test.xml">
85 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010086 <param name="testPlugin" value="org.eclipse.objectteams.otdt.tests_${org.eclipse.objectteams.otdt.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000087 </antcall>
88 </target>
89
90 <target name="jdtcore_compiler_tests" description="Runs the org.eclipse.jdt.core.tests.compiler test.xml">
91 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010092 <param name="testPlugin" value="org.eclipse.jdt.core.tests.compiler_${org.eclipse.jdt.core.tests.compiler}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000093 </antcall>
94 </target>
95
96 <target name="jdtcore_model_tests" description="Runs the org.eclipse.jdt.core.tests.model test.xml">
97 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +010098 <param name="testPlugin" value="org.eclipse.jdt.core.tests.model_${org.eclipse.jdt.core.tests.model}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000099 </antcall>
100 </target>
101
102 <target name="jdt_builder_tests" description="Runs the org.eclipse.jdt.core.tests.builder test.xml">
103 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200104 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000105 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100106 <param name="testPlugin" value="org.eclipse.jdt.core.tests.builder_${org.eclipse.jdt.core.tests.builder}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000107 </antcall>
108 </target>
109
110
111 <target name="otdt_ui_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests test.xml">
112 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100113 <param name="testPlugin" value="org.eclipse.objectteams.otdt.ui.tests_${org.eclipse.objectteams.otdt.ui.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000114 </antcall>
115 </target>
116
117 <target name="otdt_dom_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests.dom test.xml">
118 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100119 <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 +0000120 </antcall>
121 </target>
122
123 <target name="otdt_ref_tests" description="Runs the org.eclipse.objectteams.otdt.ui.tests.refactoring test.xml">
124 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100125 <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 +0000126 </antcall>
127 </target>
128
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200129 <target name="otequinox_tests" description="Runs the OTEquinoxTests test.xml">
130 <antcall target="runtests">
131 <param name="testPlugin" value="OTEquinoxTests_${OTEquinoxTests}" />
132 </antcall>
133 </target>
134
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000135 <target name="jdt_ui_tests" description="Runs the org.eclipse.jdt.ui.tests test.xml">
Stephan Herrmann855fbd72010-09-28 16:00:49 +0000136 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200137 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000138 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100139 <param name="testPlugin" value="org.eclipse.jdt.ui.tests_${org.eclipse.jdt.ui.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000140 </antcall>
141 </target>
142
143 <target name="jdt_ref_tests" description="Runs the org.eclipse.jdt.ui.tests.refactoring test.xml">
Stephan Herrmann855fbd72010-09-28 16:00:49 +0000144 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200145 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000146 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100147 <param name="testPlugin" value="org.eclipse.jdt.ui.tests.refactoring_${org.eclipse.jdt.ui.tests.refactoring}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000148 </antcall>
149 </target>
150
151 <target name="jdt_debug_tests" description="Runs the org.eclipse.jdt.debug.tests test.xml">
152 <property name="library-file"
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200153 value="${test.root.dir}/library.xml"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000154 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100155 <param name="testPlugin" value="org.eclipse.jdt.debug.tests_${org.eclipse.jdt.debug.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000156 </antcall>
157 </target>
158
159 <target name="otdt_debug_tests" description="Runs the org.eclipse.objectteams.otdt.debug.tests test.xml">
160 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100161 <param name="testPlugin" value="org.eclipse.objectteams.otdt.debug.tests_${org.eclipse.objectteams.otdt.debug.tests}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000162 </antcall>
163 </target>
164
165 <target name="otdt_builder_tests" description="Runs the org.eclipse.objectteams.otdt.test.builder test.xml">
166 <antcall target="runtests">
Stephan Herrmann32ed6af2014-01-05 02:44:25 +0100167 <param name="testPlugin" value="org.eclipse.objectteams.otdt.test.builder_${org.eclipse.objectteams.otdt.test.builder}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000168 </antcall>
169 </target>
170
171 <target name="all">
172<!-- enable if we want to debug otre/otequinox:
173<property name="extraVMargs" value="-Dot.dump=1 -Dotequinox.debug=OK" />
174-->
175 <!-- debug tests don't like parallelization -->
176 <antcall target="jdt_debug_tests" />
177 <antcall target="otdt_debug_tests" />
Stephan Herrmann5aecfe12010-05-03 23:53:54 +0000178 <!--parallel threadCount="2"-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000179 <!-- "slow", ui tests come first -->
180 <antcall target="jdt_ref_tests" />
181 <antcall target="jdt_ui_tests" />
182 <antcall target="otdt_ui_tests" />
183 <antcall target="otdt_ref_tests" />
184 <antcall target="otdt_dom_tests" />
185 <antcall target="otdt_tests" />
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200186 <antcall target="otequinox_tests" />
Stephan Herrmann16fd6492019-03-05 19:28:47 +0100187 <antcall target="otdt_builder_tests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000188 <antcall target="jdt_builder_tests" />
189 <antcall target="jdtcore_compiler_tests" />
190 <antcall target="jdtcore_model_tests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000191 <!-- antcall target="otdt_metrics_tests" / -->
Stephan Herrmann5aecfe12010-05-03 23:53:54 +0000192 <!--/parallel-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000193 </target>
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000194
195 <target name="otdt-tests">
196<!-- enable if we want to debug otre/otequinox:
197<property name="extraVMargs" value="-Dot.dump=1 -Dotequinox.debug=OK" />
198-->
199 <!-- debug tests don't like parallelization -->
200 <antcall target="otdt_debug_tests" />
201 <!--parallel threadCount="2"-->
202 <!-- "slow", ui tests come first -->
203 <antcall target="otdt_ui_tests" />
204 <antcall target="otdt_ref_tests" />
205 <antcall target="otdt_dom_tests" />
206 <antcall target="otdt_tests" />
Stephan Herrmann16fd6492019-03-05 19:28:47 +0100207 <antcall target="otequinox_tests" />
208 <antcall target="otdt_builder_tests" />
209 <antcall target="jdt_builder_tests" />
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000210 <antcall target="jdtcore_compiler_tests" />
211 <antcall target="jdtcore_model_tests" />
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000212 <!-- antcall target="otdt_metrics_tests" / -->
213 <!--/parallel-->
214 </target>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000215
216 <target name="onlyone">
Stephan Herrmanneb0f2922018-08-09 13:27:26 +0200217 <antcall target="otequinox_tests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000218 </target>
219
220</project>