forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
integration-tests.bat
164 lines (127 loc) · 4.62 KB
/
integration-tests.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@echo off
REM ======================================================================
REM
REM This is the main entry point for the build system.
REM
REM Users should be sure to execute this file rather than 'mvn' to ensure
REM the correct version is being used with the correct configuration.
REM
REM ======================================================================
REM
REM $Id: build.bat 105735 2010-06-04 19:45:13Z pgier $
REM
REM Authors:
REM Jason Dillon <[email protected]>
REM Sacha Labourey <[email protected]>
REM
REM ******************************************************
REM Ignore the MAVEN_HOME variable: we want to use *our*
REM Maven version and associated JARs.
REM ******************************************************
REM Ignore the users classpath, cause it might mess
REM things up
REM ******************************************************
SETLOCAL
set PROGNAME=%0
set DIRNAME=%~p0
set CLASSPATH=
set M2_HOME=
set MAVEN_HOME=
set MAVEN_OPTS=%MAVEN_OPTS% -Xmx768M
powershell -noprofile -executionpolicy bypass -file "tools\download-maven.ps1"
REM ******************************************************
REM - "for" loops have been unrolled for compatibility
REM with some WIN32 systems.
REM ******************************************************
set NAMES=tools;tools\maven;tools\apache\maven
set SUBFOLDERS=.;..;..\..;..\..\..;..\..\..\..
REM ******************************************************
REM ******************************************************
SET EXECUTED=FALSE
for %%i in (%NAMES%) do call :subLoop %%i %1 %2 %3 %4 %5 %6
goto :EOF
REM ******************************************************
REM ********* Search for names in the subfolders *********
REM ******************************************************
:subLoop
for %%j in (%SUBFOLDERS%) do call :testIfExists %%j\%1\bin\mvn.bat %2 %3 %4 %5 %6 %7
goto :EOF
REM ******************************************************
REM *** Test if Maven batch file exists. ***
REM ******************************************************
:testIfExists
if exist %1 call :BatchFound %1 %2 %3 %4 %5 %6 %7 %8
goto :EOF
REM ******************************************************
REM *** Batch file has been found. ***
REM ******************************************************
:BatchFound
if (%EXECUTED%)==(FALSE) call :ExecuteBatch %1 %2 %3 %4 %5 %6 %7 %8
set EXECUTED=TRUE
goto :EOF
REM ******************************************************
REM *** Execute batch file only once. ***
REM ******************************************************
:ExecuteBatch
REM Support for testsuite profile processing
set CMD_LINE_PARAMS=
set TESTS_SPECIFIED=N
REM Each test module executes a different type of test
set INTEGRATION_TESTS=-Dintegration.module -Dbasic.integration.tests -Dcompat.integration.tests -Dclustering.integration.tests -Dtimerservice.integration.tests
set SMOKE_TESTS=-Dintegration.module -Dsmoke.integration.tests
set DOMAIN_TESTS=-Ddomain.module
set COMPAT_TESTS=-Dcompat.module
set MVN=%1%
set GOAL=%2
if "%GOAL%"=="" set GOAL=install
REM Process test directives before calling maven
call :processTestDirectives %GOAL% %3 %4 %5 %6 %7 %8
REM Change to testsuite directory before executing mvn.
cd %DIRNAME%\testsuite
echo Calling ..\%MVN% %CMD_LINE_PARAMS%
call ..\%MVN% %CMD_LINE_PARAMS%
cd %DIRNAME%
REM Pause the batch script when maven terminates.
if "%NOPAUSE%" == "" pause
goto :EOF
REM ******************************************************
REM *** Function to process testsuite directives. ***
REM ******************************************************
:processTestDirectives
REM echo "Calling processTestDirectives %*"
:loop
REM Check if we have no more parameters to process.
if "%1" == "" (
if "%TESTS_SPECIFIED%" == "N" set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %SMOKE_TESTS%"
goto :eof
)
REM Replace occurrences of directives with corresponding maven profiles
REM -DallTests
if "%1" == "-DallTests" (
set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %INTEGRATION_TESTS% %DOMAIN_TESTS% %COMPAT_TESTS% %SMOKE_TESTS%"
set "TESTS_SPECIFIED=Y"
goto processed
)
REM -Ddomain-tests
if "%1" == "-Ddomain-tests" (
set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %DOMAIN_TESTS%"
set "TESTS_SPECIFIED=Y"
goto processed
)
REM -Dcompat-tests
if "%1" == "-Dcompat-tests" (
set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %COMPAT_TESTS%"
set "TESTS_SPECIFIED=Y"
goto processed
)
REM -Dsmoke-tests
if "%1" == "-Dsmoke-tests" (
set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %SMOKE_TESTS%"
set "TESTS_SPECIFIED=Y"
goto processed
)
REM Pass through other params.
set "CMD_LINE_PARAMS=%CMD_LINE_PARAMS% %1"
:processed
shift
goto loop