我一直在为一个项目使用吊索模型做一些工作,并在此过程中创建了几个自定义注入器。实施时(在 AEM 中使用),一切似乎都运行良好。但是,当我测试自定义注入器时没有运行。
这是我当前设置的示例
//在我的模型中
@Inheritable
@CustomAnnotation("foo")
private String _foo
//在测试中(使用 wcm.io 模拟库进行测试)
@Rule
AemContext context = new AemContext(ResourceResolverType.RESOURCERESOLVER_MOCK);
//required by the injector
@Mock
InheritanceService _inheritanceService;
@Mock
InheritableInjector _inheritanceInjector;
@Before
public void setup() {
context.registerService(InheritanceService.class, _inheritanceService);
context.registerService(InheritableInjector.class, _inheritanceInjector);
context.addModelsForPackage("com.package.example.models");
//use this resource in tests to adaptTo(MyModel.class)
_resource = context.load().json("myJson.json", "/myPath");
}
... tests
测试编译并运行,但注入器没有被执行。我知道它已注册,因为当我没有在上下文中注册 Injector 的依赖服务时,我会收到错误消息。当我通过它进行调试时,没有一个断点被命中。我想知道我是否还需要在某处注册“Inheritable”注释,或者是否有人只有关于如何让自定义注入器执行的一般信息。
谢谢你