-
Notifications
You must be signed in to change notification settings - Fork 4
Create an annotation
In this page, you will learn the principles to create a QuickPerf annotation from scratch. So, after reading it, you should be able to create a QuickPerf annotation in the QuickPerf project or in your own project. In addition, you will learn how to create your own Maven module defining your custom QuickPerf annotations.
Principles to create a QuickPerf annotation
Define your custom annotations in a specific Maven module
The code examples below come from sql-annotations Maven module.
QuickPerf uses the Service Provider Interface (SPI) to dynamically load the configurations of annotations.
A file named org.quickperf.config.library.QuickPerfConfigLoader has to be in src/main/resources/META-INF/services:
The Content of org.quickperf.config.library.QuickPerfConfigLoader file is here: org.quickperf.sql.config.library.SqlConfigLoader
An implementation of QuickPerfConfigLoader has to define three methods:
- loadAnnotationConfigs(): returns the configurations of annotations
- loadRecorderExecutionOrdersBeforeTestMethod(): returns the recorder priorities before the execution of a test method
- loadRecorderExecutionOrdersAfterTestMethod(): returns the recorder priorities after the execution of a test method
public class SqlConfigLoader implements QuickPerfConfigLoader {
@Override
public Collection<AnnotationConfig> loadAnnotationConfigs() {
return Arrays.asList(
// ..
, SqlAnnotationsConfigs.DISABLE_EXACTLY_SAME_SQL_SELECTS
// ...
);
}
@Override
public Collection<RecorderExecutionOrder> loadRecorderExecutionOrdersBeforeTestMethod() {
return Arrays.asList(
new RecorderExecutionOrder(PersistenceSqlRecorder.class, 2000)
);
}
@Override
public Collection<RecorderExecutionOrder> loadRecorderExecutionOrdersAfterTestMethod() {
return Arrays.asList(
new RecorderExecutionOrder(PersistenceSqlRecorder.class, 7000)
);
}
}
The configuration of an annotation is defined with the help of an instance of AnnotationConfig.Builder().
class SqlAnnotationsConfigs {
static final AnnotationConfig DISABLE_EXACTLY_SAME_SQL_SELECTS = new AnnotationConfig.Builder()
.perfRecorderClass(PersistenceSqlRecorder.class)
.perfMeasureExtractor(HasExactlySameSelectExtractor.INSTANCE)
.perfIssueVerifier(HasExactlySameSelectVerifier.INSTANCE)
.build(DisableExactlySameSelects.class);
// ...
}
Let's explain the methods used in the example above:
- perfRecorderClass: to specify a performance recorder, for example the set of SQL statements sent to database during the execution of the test method body
- perfMeasureExtractor: to define the way a performance measure is extracted from the recorder, for example if there exists exactly same SELECT statements sent to the database
- perfIssueVerifier: to evaluate if a performance issue exists
- build: the annotation for which the annotation configuration is built
You can use testHasToBeLaunchedInASpecificJvm() method to specify that the test method has to be executed in a specific JVM. A testHasToBeLaunchedInASpecificJvm(AnnotationToJvmOptionConverter annotationToJvmOptionConverter) method is also available to add some options to the JVM.
An example for @Xmx:
static final AnnotationConfig XMX = new AnnotationConfig.Builder()
.testHasToBeLaunchedInASpecificJvm(XmxAnnotToJvmOptionConverter.INSTANCE)
.build(Xmx.class);
The code of XmxAnnotToJvmOptionConverter can be found here.
You can develop custom QuickPerf annotations and gather them in a Maven module. To use them, you simply have to use this Maven dependency together with one QuickPerf dependency (see here for JUnit4 or here for Spring). Don't hesitate to propose a feature request and a PR to integrate your annotations in the QuickPerf project!
You can add @DebugQuickPerf on a test method to get debug data.
π Β Core
π Β JVM
π Β SQL
π Β Scopes
π Β Create an annotation
π Β JUnit 4
π Β JUnit 5
π Β TestNG
π Β Spring
π Β Detect and fix N+1 SELECT
π Β Maven performance
π Β Spring Boot - JUnit 4
π Β Spring Boot - JUnit 5
π Β Micronaut Data - JUnit 5
π Β Micronaut - Spring - JUnit 5
π Β Quarkus - JUnit 5
π Β FAQ
π Β QuickPerf code