Class TestCompiler
java.lang.Object
org.springframework.aot.test.generator.compile.TestCompiler
Utility that can be used to dynamically compile and test Java source code.
- Since:
- 6.0
- Author:
- Phillip Webb
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidCompile content from this instance.voidcompile(SourceFile sourceFile, Consumer<Compiled> compiled) Compile content from this instance along with the additional provided source file.voidcompile(SourceFiles sourceFiles, Consumer<Compiled> compiled) Compile content from this instance along with the additional provided source files.voidcompile(SourceFiles sourceFiles, ResourceFiles resourceFiles, Consumer<Compiled> compiled) Compile content from this instance along with the additional provided source and resource files.voidcompile(WritableContent content, Consumer<Compiled> compiled) Compile content from this instance along with the additional provided content.static TestCompilerforCompiler(JavaCompiler javaCompiler) Return a newTestCompilerbacked by the givenJavaCompiler.static TestCompilerReturn a newTestCompilerbacked by the system java compiler.printFiles(PrintStream printStream) Print the contents of the source and resource files to the specifiedPrintStream.withFiles(InMemoryGeneratedFiles generatedFiles) Return a newTestCompilerinstance with additional generated source and resource files.withResources(Iterable<ResourceFile> resourceFiles) Return a newTestCompilerinstance with addition source files.withResources(ResourceFile... resourceFiles) Return a newTestCompilerinstance with addition resource files.withResources(ResourceFiles resourceFiles) Return a newTestCompilerinstance with addition resource files.withSources(Iterable<SourceFile> sourceFiles) Return a newTestCompilerinstance with addition source files.withSources(SourceFile... sourceFiles) Return a newTestCompilerinstance with addition source files.withSources(SourceFiles sourceFiles) Return a newTestCompilerinstance with addition source files.
-
Method Details
-
forSystem
Return a newTestCompilerbacked by the system java compiler.- Returns:
- a new
TestCompilerinstance
-
forCompiler
Return a newTestCompilerbacked by the givenJavaCompiler.- Parameters:
javaCompiler- the java compiler to use- Returns:
- a new
TestCompilerinstance
-
withFiles
Return a newTestCompilerinstance with additional generated source and resource files.- Parameters:
generatedFiles- the generated files to add- Returns:
- a new
TestCompilerinstance
-
withSources
Return a newTestCompilerinstance with addition source files.- Parameters:
sourceFiles- the additional source files- Returns:
- a new
TestCompilerinstance
-
withSources
Return a newTestCompilerinstance with addition source files.- Parameters:
sourceFiles- the additional source files- Returns:
- a new
TestCompilerinstance
-
withSources
Return a newTestCompilerinstance with addition source files.- Parameters:
sourceFiles- the additional source files- Returns:
- a new
TestCompilerinstance
-
withResources
Return a newTestCompilerinstance with addition resource files.- Parameters:
resourceFiles- the additional resource files- Returns:
- a new
TestCompilerinstance
-
withResources
Return a newTestCompilerinstance with addition source files.- Parameters:
resourceFiles- the additional source files- Returns:
- a new
TestCompilerinstance
-
withResources
Return a newTestCompilerinstance with addition resource files.- Parameters:
resourceFiles- the additional resource files- Returns:
- a new
TestCompilerinstance
-
compile
Compile content from this instance along with the additional provided content.- Parameters:
content- the additional content to compilecompiled- a consumed used to further assert the compiled code- Throws:
CompilationException- if source cannot be compiled
-
compile
Compile content from this instance along with the additional provided source file.- Parameters:
sourceFile- the additional source file to compilecompiled- a consumed used to further assert the compiled code- Throws:
CompilationException- if source cannot be compiled
-
compile
Compile content from this instance along with the additional provided source files.- Parameters:
sourceFiles- the additional source files to compilecompiled- a consumed used to further assert the compiled code- Throws:
CompilationException- if source cannot be compiled
-
compile
public void compile(SourceFiles sourceFiles, ResourceFiles resourceFiles, Consumer<Compiled> compiled) Compile content from this instance along with the additional provided source and resource files.- Parameters:
sourceFiles- the additional source files to compileresourceFiles- the additional resource files to includecompiled- a consumed used to further assert the compiled code- Throws:
CompilationException- if source cannot be compiled
-
compile
Compile content from this instance.- Parameters:
compiled- a consumed used to further assert the compiled code- Throws:
CompilationException- if source cannot be compiled
-
printFiles
Print the contents of the source and resource files to the specifiedPrintStream.- Parameters:
printStream- the destination print stream- Returns:
- this instance
-