|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface TestResultsDao
Dao for retrieving and manipulating Test Results (e.g TestClassResult, TestCaseResult)
Method Summary | |
---|---|
long |
countTestCaseResultErrors()
Count all TestCaseResultErrors |
long |
countTestCaseResults()
Count all TestCaseResults |
long |
countTestClassResults()
Count all TestClassResults |
long |
countTestClassResults(PlanKey planKey)
Count TestClassResults for a Plan |
java.util.List<TestCaseResultStatisticsProvider> |
getResultStatisticsForTestCase(TestCase testCase)
Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case, for use by e.g. |
java.util.List<TestCaseResultStatisticsProvider> |
getResultStatisticsForTestCaseAndBuilds(TestCase testCase,
java.util.List<BuildResultsSummary> buildResults)
Returns a list of wrapped TestCaseResult and BuildResultSummary for a particular test case and contained within a specific span of build result summaries. |
BuildResultsSummary |
getSucceedingSinceBuildResultSummary(TestCase testCase)
Find the build in which the given test has been successful since. |
TestCaseResult |
getTestCaseResult(TestCase testCase,
long buildNumber)
Find a specific run of a testCase |
TestCaseResult |
getTestCaseResultById(long testCaseResultId)
Find a specific testCaseResult by id |
java.util.List<TestCaseResult> |
getTestCaseResultsForTestCase(TestCase testCase)
Return a list of TestCaseResults for a given TestCase |
java.util.List<TestCaseResult> |
getTestCaseResultsForTestCaseAndBuilds(TestCase testCase,
java.util.List<BuildResultsSummary> buildResults)
Return a list of TestCaseResults for a given TestCase constrained to a specific set of Build Result Summaries |
TestClassResult |
getTestClassResultById(long testClassResultId)
Find a specific testClassResult by id |
java.util.List<TestClassResult> |
getTestClassResults(PlanResultKey planResultKey)
Retrieves a list of all testClassResults for a BuildResultSummary |
java.util.List<TestCaseResult> |
getTestsForBuildResultByDeltaState(ResultsSummary summary,
TestDeltaState deltaState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their delta state (e.g BROKEN, FIXED) |
java.util.List<TestCaseResult> |
getTestsForBuildResultByState(ResultsSummary summary,
TestState state)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS) |
java.util.List<TestCaseResult> |
getTestsForBuildResultByState(ResultsSummary summary,
TestState state,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a BuildResultSummary based on their state (e.f FAILED or SUCCESS). |
java.util.List<TestCaseResult> |
getTestsForBuildResultSummary(BuildResultsSummary summary)
Retrieves a list of all testCaseResults for a BuildResultSummary |
java.util.List<TestCaseResult> |
getTestsForChainResultByDeltaStates(ChainResultsSummary summary,
TestDeltaState[] deltaStates,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their delta state (e.g BROKEN, FIXED) |
java.util.List<TestCaseResult> |
getTestsForChainResultByState(ChainResultsSummary summary,
TestState testState,
int firstResult,
int maxCount)
Retrieves a list of testCaseResults for a ChainResultSummary based on their TestState |
int |
removeTestClassResultsByPlan(PlanKey planKey)
Remove all TestClassResult objects referenced by ResultsSummary objects identified by planKey |
long |
scrollTestCaseResultErrorsForExport(com.google.common.base.Function<TestCaseResultError,java.lang.Void> function)
Scroll through and execute function for each of TestCaseResultErrors Objects passed to function are not fully initialized. |
long |
scrollTestCaseResultsForExport(com.google.common.base.Function<TestCaseResult,java.lang.Void> function)
Scroll through and execute function for each of TestCaseResults Objects passed to function are not fully initialized. |
long |
scrollTestClassResultsForExport(com.google.common.base.Function<TestClassResult,java.lang.Void> function)
Scroll through and execute function for each of TestClassResults Objects passed to function are not fully initialized. |
Methods inherited from interface com.atlassian.bamboo.persistence.BambooObjectDao |
---|
findById |
Methods inherited from interface bucket.core.persistence.ObjectDao |
---|
findAll, findAllSorted, getPersistentClass, refresh, remove, replicate, save, saveRaw |
Method Detail |
---|
@NotNull java.util.List<TestCaseResult> getTestsForBuildResultByState(ResultsSummary summary, TestState state)
summary
- the BuildResultsSaummary to get the tests forstate
- - The TestState to search for.
@NotNull java.util.List<TestCaseResult> getTestsForBuildResultByState(ResultsSummary summary, TestState state, int firstResult, int maxCount)
summary
- the BuildResultsSummary to get the tests forstate
- the TestState to search for.firstResult
- the first record to be retrieved. Negative values are treated as 0.maxCount
- maximum amount of records to be retrieved. Values less than or equal to 0 are ignored.
@NotNull java.util.List<TestCaseResult> getTestsForBuildResultByDeltaState(ResultsSummary summary, TestDeltaState deltaState, int firstResult, int maxCount)
summary
- the BuildResultsSummary to get the tests fordeltaState
- the TestDeltaState to search for.firstResult
- the first record to be retrieved. Negative values are treated as 0.maxCount
- maximum amount of records to be retrieved. Values less than or equal to 0 are ignored.
@NotNull java.util.List<TestCaseResult> getTestsForChainResultByDeltaStates(ChainResultsSummary summary, TestDeltaState[] deltaStates, int firstResult, int maxCount)
summary
- deltaStates
- firstResult
- - index of the first resultmaxCount
- - maximum amount of records returned
@NotNull java.util.List<TestCaseResult> getTestsForChainResultByState(@NotNull ChainResultsSummary summary, @NotNull TestState testState, int firstResult, int maxCount)
TestState
summary
- testState
- firstResult
- maxCount
-
long countTestClassResults()
long countTestCaseResults()
long countTestCaseResultErrors()
long countTestClassResults(@NotNull PlanKey planKey)
planKey
- the Plan to count TestClassResults for
long scrollTestClassResultsForExport(@NotNull com.google.common.base.Function<TestClassResult,java.lang.Void> function)
function
- function to be executed on each of the TestClassResults
long scrollTestCaseResultsForExport(@NotNull com.google.common.base.Function<TestCaseResult,java.lang.Void> function)
function
- function to be executed on each of the TestClassResults
long scrollTestCaseResultErrorsForExport(@NotNull com.google.common.base.Function<TestCaseResultError,java.lang.Void> function)
function
- function to be executed on each of the TestClassResults
@NotNull java.util.List<TestClassResult> getTestClassResults(@NotNull PlanResultKey planResultKey)
planResultKey
- key of the BuildResultsSummary to get the tests class results for
@NotNull java.util.List<TestCaseResult> getTestsForBuildResultSummary(BuildResultsSummary summary)
summary
- the BuildResultsSummary to get the tests for
TestCaseResult getTestCaseResultById(long testCaseResultId)
testCaseResultId
- of the test you want to find
TestClassResult getTestClassResultById(long testClassResultId)
testClassResultId
- of the test you want to find
@NotNull java.util.List<TestCaseResultStatisticsProvider> getResultStatisticsForTestCase(@NotNull TestCase testCase)
testCase
- to find the results for
@NotNull java.util.List<TestCaseResultStatisticsProvider> getResultStatisticsForTestCaseAndBuilds(@NotNull TestCase testCase, @NotNull java.util.List<BuildResultsSummary> buildResults)
testCase
- to find the results forbuildResults
- to contain search to (this list must not be empty)
@NotNull java.util.List<TestCaseResult> getTestCaseResultsForTestCase(@NotNull TestCase testCase)
testCase
- to look for
@NotNull java.util.List<TestCaseResult> getTestCaseResultsForTestCaseAndBuilds(@NotNull TestCase testCase, @NotNull java.util.List<BuildResultsSummary> buildResults)
testCase
- to look forbuildResults
- to contain search to
@Nullable TestCaseResult getTestCaseResult(TestCase testCase, long buildNumber)
testCase
- to look forbuildNumber
- of the build the run should have occured in
@Nullable BuildResultsSummary getSucceedingSinceBuildResultSummary(TestCase testCase)
testCase
- to search history for.
int removeTestClassResultsByPlan(@NotNull PlanKey planKey)
TestClassResult
objects referenced by ResultsSummary
objects identified by planKey
planKey
- plan identifier
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |