如何在不创建额外测试模块的情况下使用故障安全和 Junit5 测试 JPMS 服务?
How to test JPMS service with failsafe and Junit5 without creating additional testing module?
我有一个包含包 com.temp
的模块,它具有服务的接口和实现 - ServiceInterface
和 ServiceImpl
。我的模块信息中有:
module temp {
exports com.temp;
provides com.temp.ServiceInterface with com.temp.ServiceImpl;
}
这是我的pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.0</version>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<skipTests>${skip.integration.tests}</skipTests>
</configuration>
</execution>
</executions>
</plugin>
这是我的 TempIT
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class TempIT {
@Test
void tempTest() {
System.out.println("JDKModulePath:" + System.getProperty("jdk.module.path")); //LINE Y
ServiceLoader<ServiceInterface> loader = ServiceLoader.load(ServiceInterface.class);
System.out.println(loader.findFirst().get().getString());//LINE X
}
}
Y 行打印:JDKModulePath:null
。在 LINE X 我得到 java.util.NoSuchElementException: No value present
。
如何对JPMS服务进行集成测试?是否可以在模块外部执行以将模块检查为 one whole
但不创建额外的测试模块?
编辑 1:
这些是实现和接口:
package com.temp;
public class ServiceImpl implements ServiceInterface {
@Override
public String getString() {
return "This is test string";
}
}
package com.temp;
public interface ServiceInterface {
public String getString();
}
这似乎是一个错误,因为故障保护不会将模块放在模块路径上。查看问题 https://issues.apache.org/jira/browse/SUREFIRE-1570
我有一个包含包 com.temp
的模块,它具有服务的接口和实现 - ServiceInterface
和 ServiceImpl
。我的模块信息中有:
module temp {
exports com.temp;
provides com.temp.ServiceInterface with com.temp.ServiceImpl;
}
这是我的pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.0</version>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<skipTests>${skip.integration.tests}</skipTests>
</configuration>
</execution>
</executions>
</plugin>
这是我的 TempIT
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class TempIT {
@Test
void tempTest() {
System.out.println("JDKModulePath:" + System.getProperty("jdk.module.path")); //LINE Y
ServiceLoader<ServiceInterface> loader = ServiceLoader.load(ServiceInterface.class);
System.out.println(loader.findFirst().get().getString());//LINE X
}
}
Y 行打印:JDKModulePath:null
。在 LINE X 我得到 java.util.NoSuchElementException: No value present
。
如何对JPMS服务进行集成测试?是否可以在模块外部执行以将模块检查为 one whole
但不创建额外的测试模块?
编辑 1: 这些是实现和接口:
package com.temp;
public class ServiceImpl implements ServiceInterface {
@Override
public String getString() {
return "This is test string";
}
}
package com.temp;
public interface ServiceInterface {
public String getString();
}
这似乎是一个错误,因为故障保护不会将模块放在模块路径上。查看问题 https://issues.apache.org/jira/browse/SUREFIRE-1570