Ejemplo n.º 1
0
  @Test
  public void testBindCallPhone() throws Exception {

    String verificationcode = "verificationcode1212121";
    String phone = "13121710713";

    EacheKeyConstant.setPhoneVerificationcodeCache(cacheManager, phone, verificationcode);

    request.setParameter("callPhone", phone);
    request.setParameter("verificationcode", verificationcode);
    result = controller.bindCallPhone(request, response);
    Assert.isTrue("ok".equalsIgnoreCase(result.getCode()));
  }