【发布时间】:2015-08-04 15:31:41
【问题描述】:
我尝试编写这个单元测试
@Test
public void setUserNamePropertyFromMultiThreadsUpdatesCorrectly() throws Exception {
boolean oldVal = UsersConfig.s.NO_DB_MODE;
final List<String> lastName = new ArrayList<String>();
UsersConfig.s.NO_DB_MODE = true;
String user1 = testUtils.generateUserName();
final Long createdId = testUtils.createUserWithProperties(ImmutableMap.of("username", user1, "A", "A1",
"isStaff", "true"));
List<Callable<Void>> callables = new ArrayList<Callable<Void>>();
for (int i = 0; i < 20; i++) {
callables.add(new Callable<Void>() {
@Override
public Void call() throws Exception {
String user2 = testUtils.generateUserName();
boolean isSuccess = usersServerAccess.setProperties(createdId,
ImmutableMap.of("isStaff", "dont_know", "username", user2),
1, "test set", someTimeOut);
assertTrue(isSuccess);
synchronized (lastName) {
lastName.add(user2);
}
return null;
}
});
ExecutorService executorService = Executors.newFixedThreadPool(10);
try {
executorService.invokeAll(callables);
executorService.shutdown();
executorService.awaitTermination(1, TimeUnit.MINUTES);
} catch (InterruptedException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
User returnedUser = usersServerAccess.getUser(createdId, "get test", someTimeOut);
assertThat(returnedUser.getProperty("username"), equalTo(lastName.get(0)));
assertThat(returnedUser.getProperty("A"), equalTo("A1"));
assertThat(returnedUser.getProperty("isStaff"), equalTo("dont_know"));
}
但是我的测试失败了。
用户名没有改变。 你会添加“睡眠”吗?还有什么?
【问题讨论】:
标签: java multithreading unit-testing thread-safety