我在Bamboo上进行了一个随机失败的测试。这个比率大约是每10个构建中就有1个失败。它在我当地的环境中从未失败过。
在这里,我的服务被强化了:
public final class TripAdvisorSwitchServiceImpl implements TripAdvisorSwitchService{
private FfxProperties ffxProperties = FfxProperties.getInstance();
private DateTimeFormatter dateTimeFormatter = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ssZ");
@Reference
private DateTimeService dateTimeService;
private static boolean forceEnable;
@Override
public boolean isEnabled() {
if (forceEnable) {
return true;
}
String endDateStr = ffxProperties.get("tripadvisor.endDate");
DateTime endDate;
try {
endDate = dateTimeFormatter.parseDateTime(endDateStr);
} catch (IllegalArgumentException e) {
LOG.error("Date format is wrong: {}", endDateStr);
return true;
}
return dateTimeService.getCurrentDateTime().isBefore(endDate);
}
}
这里是我的随机失败测试:
@RunWith(PowerMockRunner.class)
@PrepareForTest(FfxProperties.class)
public class TripAdvisorSwitchServiceImplTest {
private DateTimeZone utcTimezone = DateTimeZone.forTimeZone(TimeZone.getTimeZone("UTC"));
@InjectMocks
private TripAdvisorSwitchServiceImpl tripAdvisorSwitchService;
@Mock
FfxProperties ffxProperties;
@Mock
DateTimeService dateTimeService;
@Before
public void setup() throws IllegalAccessException {
MockitoAnnotations.initMocks(this);
mockStatic(FfxProperties.class);
when(FfxProperties.getInstance()).thenReturn(ffxProperties);
}
@Test
public void tripAdvisorShouldBeDisabledAfterTheEndDate() {
when(ffxProperties.get("tripadvisor.endDate")).thenReturn("2010-09-14T14:00:00+0000");
when(dateTimeService.getCurrentDateTime()).thenReturn(new DateTime(2016, 9, 14, 14, 1, 0, 0, utcTimezone));
assertFalse("It should be disabled", tripAdvisorSwitchService.isEnabled());
}
}
非常感谢您的帮助。
它究竟是如何失败的?在这个例子中,我没有看到ffxProperties或dateTimeService被注入,我可以确认这只是因为你在发布时简化了问题吗?
我还没有看到这个问题,但通常情况下,当某个东西在我的盒子上总是成功,但在构建盒子上周期性地失败时,时间问题就在起作用,我确实看到了时间,所以我对此持怀疑态度。
但到目前为止,我的第一个猜测是,字段没有被注入,或者以某种方式返回了当前时间——如果速度足够快,也许两个调用返回了相同的日期时间,但失败了?您可以通过设置断点或日志记录来测试这一点,并确认日期时间是您认为的。
此问题是由于使用静态字段forceEnable
(由其他测试操纵)以及并行执行来自Bamboo的测试而引起的。