- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 @BeforeStep 函数的自定义读取器,用于初始化一些数据。这些数据来自外部数据库。
@Component
public class CustomReader implements ItemReader<SomeDTO> {
private RestApiService restApiService;
private SomeDTO someDTO;
@BeforeStep
private void initialize() {
someDTO = restApiService.getData();
}
@Override
public SomeDTO read() {
...
return someDTO
}
}
在我的单元测试中,我需要模拟对外部数据库的调用。
@RunWith(SpringRunner.class)
@SpringBootTest(classes = NedBatchApplication.class)
public class CustomReaderTest {
@Autowired
CustomReader customReader;
@Mock
RestApiService restApiService;
@Before
private void setup() {
MockitoAnnotations.initMocks(this);
ReflectionTestUtils.setField(customReader, "restApiService", restApiService);
Mockito.when(restApiService.getData().thenReturn(expectedData);
}
}
我面临的问题是,当我启动测试时,@BeforeStep 在单元测试中的 @Before 之前执行。因此restApiService.getData()返回null而不是expectedData。
有没有办法实现我想要的,或者我需要用不同的方法来实现它?
最佳答案
经过与同事的反射(reflection),他给了我一个解决方案:
@RunWith(SpringRunner.class)
@SpringBootTest(classes = NedBatchApplication.class)
public class CustomReaderTest {
CustomReader customReader;
@Mock
RestApiService restApiService;
@Before
private void setup() {
MockitoAnnotations.initMocks(this);
Mockito.when(restApiService.getData().thenReturn(expectedData);
this.customReader = new CustomReader(restApiService);
}
@Test
public void test() {
customReader.initialize();
(...)
}
}
关于java - 在 @BeforeStep 之前初始化测试中的 Mock,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57853877/
我有自己的 ItemReader 实现,有两种方法。 public class Reader implements ItemReader { private final Logger logg
我正在写一个 Spring 批处理作业。但是在加载这个实现tasklet接口(interface)的Archive类时,注释@BeforeStep下的方法不会被调用。谁能帮我这个 ? 谢谢你 impo
我一直在使用同步的 ItemProcessor 和 Writer,但现在我将其移至异步,如下面的代码: @Bean public Job importFraudCodeJob(Step compute
我有一个带有 @BeforeStep 函数的自定义读取器,用于初始化一些数据。这些数据来自外部数据库。 @Component public class CustomReader implements
我们正在尝试使用 spring 批处理分区来实现批处理作业。在“步骤 2”中是一个分区步骤,我需要步骤 1 中的一些数据进行处理。我使用了 StepExecutionContext ,它将被提升为作业
有没有办法让MultiResourceItemReader处理的currentResource在beforeStep方法中可用。请给我一个>工作代码示例。 我尝试将 multiresourceread
Specflow 查询 - 我想使用 BeforeStep 将一行放入日志报告中,因此我需要一种方法来获取当前步骤的名称。 最佳答案 查看面向方面设计产品 - http://www.postsharp
在我的 Java 和 maven 项目中,我使用 Cucumber 进行 BDD 测试。 这是我使用的依赖项: io.cucumber cucumber-ja
我正在使用 Spring Batch 版本 2.2.4.RELEASE我尝试用有状态的 ItemReader、ItemProcessor 和 ItemWriter bean 编写一个简单的示例。 pu
我希望能够在达到时间阈值时停止作业。我正在考虑两种方法。首先是在 afterStep 中停止工作。但是,如果它在最后一步完成时,我不希望它具有已停止状态。因此,我将在 beforeStep 中停止它。
我正在尝试使用 Cucumber 测试 Multi-Tenancy PostgreSQL 应用程序。似乎每一步都重置数据库连接,因此需要在每一步设置schema_search_path。我知道钩子(H
我是一名优秀的程序员,十分优秀!