Created with @AChudzik
The idea of this plugin is to perform profiling of your tests. You will be able to see your test execution times sorted in the descending manner together with an information about a module and the class name from which the test was executed.
You have to add jcenter
to buildscript repositories
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.blogspot.toomuchcoding:gradle-test-profiler:0.3.2'
}
}
apply plugin: 'com.blogspot.toomuchcoding.testprofiler'
It's enough to execute
./gradlew clean build profileTests
It's important run both build and profileTests
What this plugin does is:
maxThreshold
is passed:
profileTests
task merges all the per-module sorted test execution data into oneYou have a special section called testprofiler
testprofiler {
/**
* Should TestProfilerPlugin be enabled? If set to false there will be no modification of any Gradle Test classes
* and the task will simply print a message
*/
enabled = true
/**
* Separator of columns in the output report
*/
separator = ';'
/**
* Headers in the report
*/
outputReportHeaders = "module${separator}test class name${separator}test name${separator}test execution time in [s]${separator}test class execution time in [s]\n"
/**
* Closure that will be converted to a Comparator to compare row entries
*/
comparator = DefaultTestExecutionComparator.DEFAULT_TEST_EXECUTION_COMPARATOR // requires Closure<Integer>
/**
* Closure that converts a reporter row entry to a single String
*/
rowFromReport = ReportStorer.DEFAULT_ROW_FROM_REPORT_CONVERTER // requires Closure<String>
/**
* Relative path to the report for a module. Defaults to {@code /reports/test_profiling/testsProfile.csv}
*/
relativeReportPath = new File(...) // requires File
/**
* Path to the merged summary of reports. Defaults to {@code project.rootProject.buildDir/reports/test_profiling/summary.csv"
*/
mergedSummaryPath = new File(...) // requires File
/**
* Milliseconds of test execution above which we will store information about the test. Defaults to 0
*/
minTestThreshold = 0 // requires Integer
/**
* Additional options for build breaking
*/
buildBreaker {
/**
* Milliseconds after which test execution will be terminated with a fail
*/
maxTestThreshold = 30_000 // requires Integer
/**
* List of test class name suffixes (e.g. LoanAmountVerificationTest)
*/
testClassNameSuffixes = ['Test', 'Should', 'Spec'] // requires List<String>
/**
* A method to add additional suffixes
*/
addTestClassNameSuffix 'SomeOtherSuffix'
/**
* List of regexps related to FQN of class that if matched will NOT break the test
*/
testClassRegexpsToIgnore = [] // requires List<String>
/**
* A method to add regexps of classes to ignore
*/
addTestClassRegexpToIgnore('a', 'b', 'c')
/**
* Section to describe what should happen if tests exceed max threshold
*/
ifTestsExceedMaxThreshold {
breakBuild()
}
}
}
If provided as follows then the build will display a default warning message if the test execution time exceeds the provided max one
testprofiler {
buildBreaker {
maxTestThreshold = 30_000
ifTestsExceedMaxThreshold {
displayWarning()
}
}
}
}
If provided as follows then the build will display a custom warning message if the test execution time exceeds the provided max one
testprofiler {
buildBreaker {
maxTestThreshold = 30_000
ifTestsExceedMaxThreshold {
displayWarning { TestDescriptor testDescriptor, TestExecutionResult testExecutionResult ->
"return some string with [$testDescriptor] and [$testExecutionResult] that will be logged"
}
}
}
}
}
If provided as follows then the will break the build if the test takes too long too run.
testprofiler {
buildBreaker {
maxTestThreshold = 30_000
ifTestsExceedMaxThreshold {
breakBuild()
}
}
}
}
If provided as follows then the custom logic will be executed if the test execution time exceeds the provided max one
testprofiler {
buildBreaker {
maxTestThreshold = 30_000
ifTestsExceedMaxThreshold {
act { com.blogspot.toomuchcoding.testprofiler.LoggerProxy,
TestDescriptor testDescriptor,
TestExecutionResult testExecutionResult ->
// do whatever you want to...
}
}
}
}
}
For the time being just enter in your project
if (project.hasProperty('testsProfiling')) {
apply from: 'https://raw.githubusercontent.com/marcingrzejszczak/gradle-test-profiler/0.0.4/test_profiling.gradle'
}
Execute
./gradlew clean build testsProfileSummaryReport -PtestsProfiling