在 EasyMock 中模拟一个期望值失败的参数
Mock an argument that expects a value fails in EasyMock
我有一个 class 实现了一个接口和一个采用另一个接口的方法。我想知道从那个参数中模拟方法调用;但是,结果为空。
public class LoginAction implements IServerAction {
private static final int HTTP_OK_STATUS = 200;
@Override
public void execute(IServerExchange exchange) throws Exception {
URI uri = exchange.getRequestURI();
exchange.setStatus(HTTP_OK_STATUS);
GeneralHelper.encrypt('some text');
}
这是我的测试:
@PrepareForTest({GeneralHelper.class})
@RunWith(PowerMockRunner.class)
public class LoginActionTest {
@Before
public void setUp() throws Exception {
loginAction = new LoginAction();
iServerExchange = createMock(IServerExchange.class);
}
@Test
public void testExecute_userExistsInScoreList_success() throws Exception {
expect(iServerExchange.getRequestURI()).andReturn(new URI("/254/login"));
expect(GeneralHelper.encrypt('some text').andReturn('my test');
loginAction.execute(iServerExchange);
}
测试中uri为空。此外,作为最终 class 的 GeneralHelper 并没有像我期望的那样完全被嘲笑 return 一个值。
我应该在调用main方法之前考虑replay方法。
我有一个 class 实现了一个接口和一个采用另一个接口的方法。我想知道从那个参数中模拟方法调用;但是,结果为空。
public class LoginAction implements IServerAction {
private static final int HTTP_OK_STATUS = 200;
@Override
public void execute(IServerExchange exchange) throws Exception {
URI uri = exchange.getRequestURI();
exchange.setStatus(HTTP_OK_STATUS);
GeneralHelper.encrypt('some text');
}
这是我的测试:
@PrepareForTest({GeneralHelper.class})
@RunWith(PowerMockRunner.class)
public class LoginActionTest {
@Before
public void setUp() throws Exception {
loginAction = new LoginAction();
iServerExchange = createMock(IServerExchange.class);
}
@Test
public void testExecute_userExistsInScoreList_success() throws Exception {
expect(iServerExchange.getRequestURI()).andReturn(new URI("/254/login"));
expect(GeneralHelper.encrypt('some text').andReturn('my test');
loginAction.execute(iServerExchange);
}
测试中uri为空。此外,作为最终 class 的 GeneralHelper 并没有像我期望的那样完全被嘲笑 return 一个值。
我应该在调用main方法之前考虑replay方法。