forked from utPLSQL/utPLSQL-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunCommand.java
More file actions
249 lines (211 loc) · 9.7 KB
/
RunCommand.java
File metadata and controls
249 lines (211 loc) · 9.7 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
package org.utplsql.cli;
import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;
import org.utplsql.api.*;
import org.utplsql.api.exception.SomeTestsFailedException;
import org.utplsql.api.reporter.Reporter;
import org.utplsql.api.reporter.ReporterFactory;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
/**
* Created by vinicius.moreira on 19/04/2017.
*/
@Parameters(separators = "=", commandDescription = "run tests")
public class RunCommand {
@Parameter(
required = true, converter = ConnectionStringConverter.class,
arity = 1,
description = "user/pass@[[host][:port]/]db")
private List<ConnectionInfo> connectionInfoList = new ArrayList<>();
@Parameter(
names = {"-p", "--path"},
description = "run suites/tests by path, format: " +
"-p=[schema|schema:[suite ...][.test]|schema[.suite ...][.test]")
private List<String> testPaths = new ArrayList<>();
@Parameter(
names = {"-f", "--format"},
variableArity = true,
description = "-f=reporter_name [-o=output_file [-s]] - enables specified format reporting to specified " +
"output file (-o) and to screen (-s)")
private List<String> reporterParams = new ArrayList<>();
@Parameter(
names = {"-c", "--color"},
description = "enables printing of test results in colors as defined by ANSICONSOLE standards")
private boolean colorConsole = false;
@Parameter(
names = {"--failure-exit-code"},
description = "override the exit code on failure, default = 1")
private int failureExitCode = 1;
@Parameter(
names = {"-source_path"},
variableArity = true,
description = "-source_path [-owner=\"owner\" -regex_expression=\"pattern\" " +
"-type_mapping=\"matched_string=TYPE/matched_string=TYPE\" " +
"-owner_subexpression=0 -type_subexpression=0 -name_subexpression=0] - path to project source files")
private List<String> sourcePathParams = new ArrayList<>();
@Parameter(
names = {"-test_path"},
variableArity = true,
description = "-test_path [-regex_expression=\"pattern\" -owner_subexpression=0 -type_subexpression=0 " +
"-name_subexpression=0] - path to project test files")
private List<String> testPathParams = new ArrayList<>();
public ConnectionInfo getConnectionInfo() {
return connectionInfoList.get(0);
}
public List<String> getTestPaths() {
return testPaths;
}
public int run() throws Exception {
final ConnectionInfo ci = getConnectionInfo();
final List<ReporterOptions> reporterOptionsList = getReporterOptionsList();
final List<String> testPaths = getTestPaths();
final List<Reporter> reporterList = new ArrayList<>();
final File baseDir = new File("").getAbsoluteFile();
final FileMapperOptions[] sourceMappingOptions = {null};
final FileMapperOptions[] testMappingOptions = {null};
final int[] returnCode = {0};
if (!this.sourcePathParams.isEmpty()) {
String sourcePath = this.sourcePathParams.get(0);
List<String> sourceFiles = new FileWalker().getFileList(baseDir, sourcePath);
sourceMappingOptions[0] = getMapperOptions(this.sourcePathParams, sourceFiles);
}
if (!this.testPathParams.isEmpty()) {
String testPath = this.testPathParams.get(0);
List<String> testFiles = new FileWalker().getFileList(baseDir, testPath);
testMappingOptions[0] = getMapperOptions(this.testPathParams, testFiles);
}
if (testPaths.isEmpty()) testPaths.add(ci.getUser());
// Do the reporters initialization, so we can use the id to run and gather results.
try (Connection conn = ci.getConnection()) {
for (ReporterOptions ro : reporterOptionsList) {
Reporter reporter = ReporterFactory.createReporter(ro.getReporterName());
reporter.init(conn);
ro.setReporterObj(reporter);
reporterList.add(reporter);
}
} catch (SQLException e) {
System.out.println(e.getMessage());
return Cli.DEFAULT_ERROR_CODE;
}
ExecutorService executorService = Executors.newFixedThreadPool(1 + reporterList.size());
// Run tests.
executorService.submit(() -> {
try (Connection conn = ci.getConnection()) {
new TestRunner()
.addPathList(testPaths)
.addReporterList(reporterList)
.sourceMappingOptions(sourceMappingOptions[0])
.testMappingOptions(testMappingOptions[0])
.colorConsole(this.colorConsole)
.failOnErrors(true)
.run(conn);
} catch (SomeTestsFailedException e) {
returnCode[0] = this.failureExitCode;
} catch (SQLException e) {
System.out.println(e.getMessage());
returnCode[0] = Cli.DEFAULT_ERROR_CODE;
executorService.shutdownNow();
}
});
// Gather each reporter results on a separate thread.
for (ReporterOptions ro : reporterOptionsList) {
executorService.submit(() -> {
List<PrintStream> printStreams = new ArrayList<>();
PrintStream fileOutStream = null;
try (Connection conn = ci.getConnection()) {
if (ro.outputToScreen()) {
printStreams.add(System.out);
}
if (ro.outputToFile()) {
fileOutStream = new PrintStream(new FileOutputStream(ro.getOutputFileName()));
printStreams.add(fileOutStream);
}
new OutputBuffer(ro.getReporterObj()).printAvailable(conn, printStreams);
} catch (SQLException | FileNotFoundException e) {
System.out.println(e.getMessage());
returnCode[0] = Cli.DEFAULT_ERROR_CODE;
executorService.shutdownNow();
} finally {
if (fileOutStream != null)
fileOutStream.close();
}
});
}
executorService.shutdown();
executorService.awaitTermination(60, TimeUnit.MINUTES);
return returnCode[0];
}
public List<ReporterOptions> getReporterOptionsList() {
List<ReporterOptions> reporterOptionsList = new ArrayList<>();
ReporterOptions reporterOptions = null;
for (String p : reporterParams) {
if (reporterOptions == null || !p.startsWith("-")) {
reporterOptions = new ReporterOptions(p);
reporterOptionsList.add(reporterOptions);
}
else
if (p.startsWith("-o=")) {
reporterOptions.setOutputFileName(p.substring(3));
}
else
if (p.equals("-s")) {
reporterOptions.forceOutputToScreen(true);
}
}
// If no reporter parameters were passed, use default reporter.
if (reporterOptionsList.isEmpty()) {
reporterOptionsList.add(new ReporterOptions(CustomTypes.UT_DOCUMENTATION_REPORTER));
}
return reporterOptionsList;
}
public FileMapperOptions getMapperOptions(List<String> mappingParams, List<String> filePaths) {
FileMapperOptions mapperOptions = new FileMapperOptions(filePaths);
final String OPT_OWNER="-owner=";
final String OPT_REGEX="-regex_expression=";
final String OPT_TYPE_MAPPING="-type_mapping=";
final String OPT_OWNER_SUBEX="-owner_subexpression=";
final String OPT_NAME_SUBEX="-name_subexpression=";
final String OPT_TYPE_SUBEX="-type_subexpression=";
for (String p : mappingParams) {
if (p.startsWith(OPT_OWNER)) {
mapperOptions.setObjectOwner(p.substring(OPT_OWNER.length()));
}
else
if (p.startsWith(OPT_REGEX)) {
mapperOptions.setRegexPattern(p.substring(OPT_REGEX.length()));
}
else
if (p.startsWith(OPT_TYPE_MAPPING)) {
String typeMappingsParam = p.substring(OPT_TYPE_MAPPING.length());
List<KeyValuePair> typeMappings = new ArrayList<>();
for (String mapping : typeMappingsParam.split("/")) {
String[] values = mapping.split("=");
typeMappings.add(new KeyValuePair(values[0], values[1]));
}
mapperOptions.setTypeMappings(typeMappings);
}
else
if (p.startsWith(OPT_OWNER_SUBEX)) {
mapperOptions.setOwnerSubExpression(Integer.parseInt(p.substring(OPT_OWNER_SUBEX.length())));
}
else
if (p.startsWith(OPT_NAME_SUBEX)) {
mapperOptions.setNameSubExpression(Integer.parseInt(p.substring(OPT_NAME_SUBEX.length())));
}
else
if (p.startsWith(OPT_TYPE_SUBEX)) {
mapperOptions.setTypeSubExpression(Integer.parseInt(p.substring("-type_subexpression=".length())));
}
}
return mapperOptions;
}
}