Как я могу проверить ни один источник.java, сгенерированный процессором аннотаций?
Я занимался обработкой аннотаций с использованием Java APT, и я смог сгенерировать файлы.java из аннотированных классов в соответствии с практикой TDD, все пошло так хорошо, пока я генерирую файлы.java, для тестирования я использовал Google -компилирование-тестирование и вот как я делал тестирование для сгенерированных источников:
@Test
public void testGeneratedSource() throws Exception {
Truth.assert_().about(javaSource()).that(JavaFileObjects.forResource("source class .java goes here"))
.processedWith(new UiFormProcessor()).compilesWithoutError()
.and()
.generatesSources(JavaFileObjects.forSourceString("","expected generated class content goes here"));
}
с этим я смог проверить и проверить сгенерированные файлы.java.
но затем я хотел сгенерировать некоторые файлы.html и хотел иметь возможность протестировать мой сгенерированный контент html.
но использование вышеупомянутого метода не удается, так как он ожидает файлы.java и выдает следующую ошибку подтверждения
java.lang.AssertionError: Did not find a generated file corresponding to .java
at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:27)
at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:23)
at com.google.testing.compile.JavaSourcesSubject$SuccessfulCompilationBuilder.generatesFiles(JavaSourcesSubject.java:491)
at com.progressoft.annotation.processor.UiFormsTest.emptyAnnotatedClass_shouldGenerateEmptyHtmlFormTemplate(UiFormsTest.java:39)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:117)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:262)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:84)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
ошибка указывает на то, что я должен генерировать файлы.java, но я знаю, что с помощью APT вы можете генерировать любой вид исходного кода, но я думаю, что проблема здесь заключается в вызовах или параметрах, которые я использую для тестирования, я пытался выяснить, как использовать https://github.com/google/compile-testing, чтобы проверить ни один сгенерированный Java-источник, но безуспешно.
Кто-нибудь знает, как проверить.html или любой другой контент, другой источник Java с https://github.com/google/compile-testing?
1 ответ
Может быть, это поможет использовать другой метод JavaFileObjects: .forResource (URL)
Я думаю, что это может сработать: (пути являются примерами)
URL urlPersonJava = getResourceURL("src/test/java/",
"com/github/funthomas424242/domain/Person.java");
URL urlPersonBuilderHtml = getResourceURL("src/test/expectations/",
"PersonBuilder.html");
assertAbout(javaSource())
.that(JavaFileObjects.forResource(urlPersonJava))
.processedWith(processor1)
.compilesWithoutError()
.and()
.generatesSources(JavaFileObjects.forResource(urlPersonBuilderHtml));