@Deprecated public abstract class DefaultTestResultParserImpl extends TestResultParser implements Serializable
TestResultParser
that handles GLOB dereferencing
and other checks for user errors, such as misconfigured GLOBs, up-to-date checks on test reports.
The instance of the parser will be serialized to the node that performed the build and the parsing will be done remotely on that agent.
Modifier and Type | Field and Description |
---|---|
static boolean |
IGNORE_TIMESTAMP_CHECK
Deprecated.
|
Constructor and Description |
---|
DefaultTestResultParserImpl()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected abstract TestResult |
parse(List<File> reportFiles,
hudson.Launcher launcher,
hudson.model.TaskListener listener)
Deprecated.
This method is executed on the agent that has the report files to parse test reports and builds
TestResult . |
TestResult |
parseResult(String testResultLocations,
hudson.model.Run<?,?> build,
hudson.FilePath workspace,
hudson.Launcher launcher,
hudson.model.TaskListener listener)
Deprecated.
|
all, getDisplayName, getTestResultLocationMessage, parse, parseResult
protected abstract TestResult parse(List<File> reportFiles, hudson.Launcher launcher, hudson.model.TaskListener listener) throws InterruptedException, IOException
TestResult
.reportFiles
- List of files to be parsed. Never be empty nor null.launcher
- Can be used to fork processes on the machine where the build is running. Never null.listener
- Use this to report progress and other problems. Never null.InterruptedException
- If the user cancels the build, it will be received as a thread interruption. Do not catch
it, and instead just forward that through the call stack.IOException
- If you don't care about handling exceptions gracefully, you can just throw IOException
and let the default exception handling in Hudson takes care of it.hudson.AbortException
- If you encounter an error that you handled gracefully, throw this exception and Hudson
will not show a stack trace.public TestResult parseResult(String testResultLocations, hudson.model.Run<?,?> build, hudson.FilePath workspace, hudson.Launcher launcher, hudson.model.TaskListener listener) throws InterruptedException, IOException
parseResult
in class TestResultParser
InterruptedException
IOException
Copyright © 2016–2022. All rights reserved.