forked from utPLSQL/utPLSQL-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunAction.java
More file actions
292 lines (238 loc) · 11.9 KB
/
RunAction.java
File metadata and controls
292 lines (238 loc) · 11.9 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package org.utplsql.cli;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.utplsql.api.*;
import org.utplsql.api.compatibility.CompatibilityProxy;
import org.utplsql.api.compatibility.OptionalFeatures;
import org.utplsql.api.db.DefaultDatabaseInformation;
import org.utplsql.api.exception.DatabaseNotCompatibleException;
import org.utplsql.api.exception.OracleCreateStatmenetStuckException;
import org.utplsql.api.exception.SomeTestsFailedException;
import org.utplsql.api.exception.UtPLSQLNotInstalledException;
import org.utplsql.api.reporter.Reporter;
import org.utplsql.api.reporter.ReporterFactory;
import org.utplsql.cli.config.FileMapperConfig;
import org.utplsql.cli.config.RunCommandConfig;
import org.utplsql.cli.exception.DatabaseConnectionFailed;
import org.utplsql.cli.exception.ReporterTimeoutException;
import org.utplsql.cli.log.StringBlockFormatter;
import javax.sql.DataSource;
import java.io.File;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.*;
/**
* Starts a test-runner and gathers the results based on the given Configuration
*
* @author pesse
*/
public class RunAction {
private static final Logger logger = LoggerFactory.getLogger(RunAction.class);
private RunCommandConfig config;
private CompatibilityProxy compatibilityProxy;
private ReporterFactory reporterFactory;
private ReporterManager reporterManager;
public RunAction(RunCommandConfig config) {
this.config = config;
}
void init() {
LoggerConfiguration.configure(config.getLogConfigLevel());
LocaleInitializer.initLocale();
}
public RunCommandConfig getConfig() {
return config;
}
public int doRun() throws OracleCreateStatmenetStuckException {
init();
outputMainInformation();
DataSource dataSource = null;
int returnCode = 0;
try {
final List<Reporter> reporterList;
dataSource = DataSourceProvider.getDataSource(config.getConnectString(), getReporterManager().getNumberOfReporters() + 2);
initDatabase(dataSource);
reporterList = initReporters(dataSource);
checkForCompatibility(compatibilityProxy.getUtPlsqlVersion());
ExecutorService executorService = Executors.newFixedThreadPool(1 + reporterList.size());
// Run tests.
Future<Boolean> future = executorService.submit(new RunTestRunnerTask(dataSource, newTestRunner(reporterList), config.isDbmsOutput()));
// Gather each reporter results on a separate thread.
getReporterManager().startReporterGatherers(executorService, dataSource);
try {
future.get(config.getTimeoutInMinutes(), TimeUnit.MINUTES);
} catch (TimeoutException e) {
executorService.shutdownNow();
throw new ReporterTimeoutException(config.getTimeoutInMinutes());
} catch (ExecutionException e) {
if (e.getCause() instanceof SomeTestsFailedException) {
returnCode = config.getFailureExitCode();
} else {
executorService.shutdownNow();
throw e.getCause();
}
} catch (InterruptedException e) {
executorService.shutdownNow();
throw e;
} finally {
executorService.shutdown();
if (!executorService.awaitTermination(config.getTimeoutInMinutes(), TimeUnit.MINUTES)) {
throw new ReporterTimeoutException(config.getTimeoutInMinutes());
}
}
logger.info("--------------------------------------");
logger.info("All tests done.");
} catch (OracleCreateStatmenetStuckException e) {
throw e;
} catch (DatabaseNotCompatibleException | UtPLSQLNotInstalledException | DatabaseConnectionFailed | ReporterTimeoutException e) {
System.out.println(e.getMessage());
returnCode = Cli.DEFAULT_ERROR_CODE;
} catch (Throwable e) {
e.printStackTrace();
returnCode = Cli.DEFAULT_ERROR_CODE;
}
return returnCode;
}
public int run() {
for (int i = 1; i < 5; i++) {
try {
return doRun();
} catch (OracleCreateStatmenetStuckException e) {
logger.warn("WARNING: Caught Oracle stuck during creation of Runner-Statement. Retrying ({})", i);
}
}
return Cli.DEFAULT_ERROR_CODE;
}
private void checkForCompatibility(Version utPlSqlVersion) {
if (!OptionalFeatures.FAIL_ON_ERROR.isAvailableFor(utPlSqlVersion) && config.getFailureExitCode() != null) {
System.out.println("You specified option `--failure-exit-code` but your database framework version (" +
utPlSqlVersion.getNormalizedString() + ") is not able to " +
"redirect failureCodes. Please upgrade to a newer version if you want to use that feature.");
}
if (!OptionalFeatures.RANDOM_EXECUTION_ORDER.isAvailableFor(utPlSqlVersion) && config.isRandomTestOrder()) {
System.out.println("You specified option `-random` but your database framework version (" +
utPlSqlVersion.getNormalizedString() + ") is not able to " +
"redirect failureCodes. Please upgrade to a newer version if you want to use that feature.");
}
if (!OptionalFeatures.RANDOM_EXECUTION_ORDER.isAvailableFor(utPlSqlVersion) && config.getRandomTestOrderSeed() != null) {
System.out.println("You specified option `-seed` but your database framework version (" +
utPlSqlVersion.getNormalizedString() + ") is not able to " +
"redirect failureCodes. Please upgrade to a newer version if you want to use that feature.");
}
}
TestRunner newTestRunner(List<Reporter> reporterList) {
final File baseDir = new File("").getAbsoluteFile();
return new TestRunner()
.addPathList(Arrays.asList(config.getSuitePaths()))
.addReporterList(reporterList)
.sourceMappingOptions(getFileMapperOptionsByParamListItem(config.getSourceMapping(), baseDir))
.testMappingOptions(getFileMapperOptionsByParamListItem(config.getTestMapping(), baseDir))
.colorConsole(config.isOutputAnsiColor())
.failOnErrors(true)
.skipCompatibilityCheck(config.isSkipCompatibilityCheck())
.includeObjects(Arrays.asList(config.getIncludePackages()))
.excludeObjects(Arrays.asList(config.getExcludePackages()))
.randomTestOrder(config.isRandomTestOrder())
.randomTestOrderSeed(config.getRandomTestOrderSeed())
.addTags(Arrays.asList(config.getTags()))
.addCoverageSchemes(Arrays.asList(config.getCoverageSchemes()));
}
private void outputMainInformation() {
StringBlockFormatter formatter = new StringBlockFormatter("utPLSQL cli");
formatter.appendLine(CliVersionInfo.getInfo());
formatter.appendLine(JavaApiVersionInfo.getInfo());
formatter.appendLine("Java-Version: " + System.getProperty("java.version"));
formatter.appendLine("ORACLE_HOME: " + EnvironmentVariableUtil.getEnvValue("ORACLE_HOME"));
formatter.appendLine("NLS_LANG: " + EnvironmentVariableUtil.getEnvValue("NLS_LANG"));
formatter.appendLine("");
formatter.appendLine("Thanks for testing!");
logger.info(formatter.toString());
logger.info("");
}
private void initDatabase(DataSource dataSource) throws SQLException {
try (Connection conn = dataSource.getConnection()) {
checkOracleI18nExists(conn);
compatibilityProxy = checkFrameworkCompatibility(conn);
logger.info("Successfully connected to database. UtPLSQL core: {}", compatibilityProxy.getVersionDescription());
logger.info("Oracle-Version: {}", new DefaultDatabaseInformation().getOracleVersion(conn));
} catch (SQLException e) {
if (e.getErrorCode() == 1017 || e.getErrorCode() == 12514) {
throw new DatabaseConnectionFailed(e);
} else {
throw e;
}
}
}
/**
* Checks that orai18n library exists and show a warning if not
*/
private void checkOracleI18nExists(Connection con) throws SQLException {
if (!OracleLibraryChecker.checkOrai18nExists()) {
System.out.println("WARNING: Could not find Oracle i18n driver in classpath. Depending on the database charset " +
"utPLSQL-cli, especially code coverage, might not run properly. It is recommended you download " +
"the i18n driver from the Oracle website and copy it to the 'lib' folder of your utPLSQL-cli installation.");
System.out.println("Download from http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html");
}
}
private List<Reporter> initReporters(DataSource dataSource) throws SQLException {
try (Connection conn = dataSource.getConnection()) {
reporterFactory = ReporterFactoryProvider.createReporterFactory(compatibilityProxy);
return getReporterManager().initReporters(conn, reporterFactory, compatibilityProxy);
}
}
/**
* Returns FileMapperOptions for the first item of a given param list in a baseDir
*
* @param fileMapperConfig
* @param baseDir
* @return FileMapperOptions or null
*/
private FileMapperOptions getFileMapperOptionsByParamListItem(FileMapperConfig fileMapperConfig, File baseDir) {
if (fileMapperConfig != null) {
String sourcePath = fileMapperConfig.getPath();
logger.debug("BaseDir: {}", baseDir);
logger.debug("SourcePath: {}", sourcePath);
List<String> files = new FileWalker().getFileList(baseDir, sourcePath);
logger.debug("Getting FileMapperOptions - Files: ");
files.forEach(logger::debug);
FileMapperOptions options = new FileMapperOptions(files);
options.setObjectOwner(fileMapperConfig.getOwner());
options.setRegexPattern(fileMapperConfig.getRegexExpression());
options.setTypeSubExpression(fileMapperConfig.getTypeSubexpression());
options.setOwnerSubExpression(fileMapperConfig.getOwnerSubexpression());
options.setNameSubExpression(fileMapperConfig.getNameSubexpression());
List<KeyValuePair> mappings = new ArrayList<>();
fileMapperConfig.getTypeMapping().forEach((k, v) -> mappings.add(new KeyValuePair(v, k)));
options.setTypeMappings(mappings);
return options;
}
return null;
}
/**
* Checks whether cli is compatible with the database framework
*
* @param conn Active Connection
* @throws SQLException
*/
private CompatibilityProxy checkFrameworkCompatibility(Connection conn) throws SQLException {
CompatibilityProxy proxy = new CompatibilityProxy(conn, config.isSkipCompatibilityCheck());
if (!config.isSkipCompatibilityCheck()) {
proxy.failOnNotCompatible();
} else {
System.out.println("Skipping Compatibility check with framework version, expecting the latest version " +
"to be installed in database");
}
return proxy;
}
private ReporterManager getReporterManager() {
if (reporterManager == null) {
reporterManager = new ReporterManager(config.getReporters());
}
return reporterManager;
}
List<ReporterOptions> getReporterOptionsList() {
return getReporterManager().getReporterOptionsList();
}
}