1

这是我的服务类:

@Path("/foo")
@RequestScoped
public class FooService {

    @Inject @Log
    Logger logger;

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String ping() {
        return "pong";
    }
}

在同一个模块中,我有一个 util 类,它使用带有@Qualifier注释的 Log 接口提供记录器

public class WebResources {

    @Produces
    @RequestScoped
    public FacesContext produceFacesContext() {
        return FacesContext.getCurrentInstance();
    }


    @Produces @Log
    public Logger produceLog(InjectionPoint injectionPoint) {
        return Logger.getLogger(injectionPoint.getMember().getDeclaringClass().getName());
    }
}

然后我使用 JUnit 5 + Weld SE 编写了一个 UnitTest

@EnableWeld
public class FooTest {

    @WeldSetup
    public WeldInitiator weld = WeldInitiator.from(FooService.class)
            .activate(RequestScoped.class)
            .build();


    @Test
    public void ping(FooService fooService) {

        fooService.ping();

    }

}

这会产生以下错误:

org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type Logger with qualifiers @Log
  at injection point [BackedAnnotatedField] @Inject @Log it.infocert.shop.rest.FooService.logger
  at it.infocert.shop.rest.FooService.logger(FooService.java:0)

如何在单元测试中正确地将 @Log 依赖项添加到 Weld SE?

4

1 回答 1

2

WebResources问题是一旦启动容器进行测试,Weld 就不知道该类。它的工作方式是您定义容器中的 bean - 您可以添加类、包等。

在您的情况下,像这样更改创建应该就足够了WeldInitiator

@WeldSetup
public WeldInitiator weld = WeldInitiator.from(FooService.class, WebResources.class)
        .activate(RequestScoped.class)
        .build();

WeldInitiator请注意,从最简单的一种(例如您使用的一种)到提供您自己的完全配置的org.jboss.weld.environment.se.Weld对象,有多种方法可以开始范围。

于 2019-07-19T12:17:31.560 回答