diff options
| author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2022-02-08 08:18:35 +0000 | 
|---|---|---|
| committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2022-02-08 08:18:35 +0000 | 
| commit | b81ef7a782278cb941d3b424ccbe1ccc976c54f3 (patch) | |
| tree | 220622592c0e49e1bf8ca60d3f16b4881b9b8ce1 /eidas_modules/authmodule-eIDAS-v2/src/test/java/at | |
| parent | 07b71d26fb481859548b597aa43d7312608220d9 (diff) | |
| parent | 884f208b5f4152a13e3f77d64ce0d4adec481700 (diff) | |
| download | National_eIDAS_Gateway-b81ef7a782278cb941d3b424ccbe1ccc976c54f3.tar.gz National_eIDAS_Gateway-b81ef7a782278cb941d3b424ccbe1ccc976c54f3.tar.bz2 National_eIDAS_Gateway-b81ef7a782278cb941d3b424ccbe1ccc976c54f3.zip | |
Merge branch 'feature/matching_search_address' into 'feature/matching_base'
add SOAP client to search addresses and add first simple test to request...
See merge request egiz/eidas_at_proxy!15
Diffstat (limited to 'eidas_modules/authmodule-eIDAS-v2/src/test/java/at')
2 files changed, 247 insertions, 104 deletions
| diff --git a/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/ZmrAddressSearchClientProductionTest.java b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/ZmrAddressSearchClientProductionTest.java new file mode 100644 index 00000000..a6ff234b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/clients/ZmrAddressSearchClientProductionTest.java @@ -0,0 +1,169 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.test.clients; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; + +import org.junit.BeforeClass; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.annotation.IfProfileValue; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.TestPropertySource; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrAddressSoapClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrAddressSoapClient.AddressInfo; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrAddressSoapClient.DetailLevel; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.LoggingHandler; +import at.gv.bmi.namespace.zmr_su.zrm._20040201_.address.Adressdaten; +import at.gv.e_government.reference.namespace.persondata.de._20040201.PostAdresseTyp; +import at.gv.e_government.reference.namespace.persondata.de._20040201.ZustelladresseTyp; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import ch.qos.logback.classic.Level; +import ch.qos.logback.classic.Logger; + +@IfProfileValue(name = "spring.profiles.active", value = "devEnvironment") +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration(locations = { +    "/SpringTest-context_tasks_test.xml", +    "/SpringTest-context_basic_realConfig.xml" }) +@TestPropertySource(locations = { +    // "classpath:/application.properties", +    "file:/home/tlenz/Projekte/config/ms_connector/default_config.properties", +}) +public class ZmrAddressSearchClientProductionTest { + +   +  @Autowired ZmrAddressSoapClient client; +  @Autowired IConfiguration basicConfig; +   +  @BeforeClass +  public static void classInitializer() { +    final Logger logger1 = (Logger) LoggerFactory.getLogger(LoggingHandler.class); +    logger1.setLevel(Level.TRACE); + +    final Logger logger2 = (Logger) LoggerFactory.getLogger(ZmrAddressSoapClient.class); +    logger2.setLevel(Level.TRACE); + +    final Logger rootLogger = (Logger) LoggerFactory.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME); +    rootLogger.setLevel(Level.INFO); + +  } +   +  @Test +  public void gemeinde() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setGemeinde("Frohnl*"); +    req.setPostAdresse(address); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.CITY, resp.getLevel()); +     +     +  } +   +  @Test +  public void ortschaftAndGemeinde() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setGemeinde("Frohnleiten"); +    address.setOrtschaft("Wannersdorf"); +    req.setPostAdresse(address); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.STREET, resp.getLevel()); +     +  } +  +  @Test +  public void ortschaftAndGemeindeAndStreet() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setGemeinde("Frohnleiten"); +    address.setOrtschaft("Wannersdorf"); +    req.setPostAdresse(address); +     +    ZustelladresseTyp addressDetail = new ZustelladresseTyp(); +    addressDetail.setStrassenname("Wannersdorf");  +    address.setZustelladresse(addressDetail); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.NUMBER, resp.getLevel()); +     +  } +   +   +  @Test +  public void ortschaftAndGemeinde2() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setGemeinde("Fro*"); +    address.setOrtschaft("Wannersdorf"); +    req.setPostAdresse(address); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.CITY, resp.getLevel()); +     +  } +   +  @Test +  public void ortschaftAndGemeinde3() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setGemeinde("Eggelsberg"); +    address.setOrtschaft("Wannersdorf"); +    req.setPostAdresse(address); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.STREET, resp.getLevel()); +     +  } +   +   +  @Test +  public void ortschaft() throws EidasSAuthenticationException { +    // build dummy request +    Adressdaten req = new Adressdaten(); +    PostAdresseTyp address = new PostAdresseTyp(); +    address.setOrtschaft("Wannersdorf"); +    req.setPostAdresse(address); +         +    // execute test +    AddressInfo resp = client.searchAddress(req); +     +    // validate state +    assertFalse("no results", resp.getPersonResult().isEmpty()); +    assertEquals("wrong detail level", DetailLevel.CITY, resp.getLevel()); +     +  } +   +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/GenerateOtherLoginMethodGuiTaskTest.java b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/GenerateOtherLoginMethodGuiTaskTest.java index 7c4f8a41..f17f69c3 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/GenerateOtherLoginMethodGuiTaskTest.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/GenerateOtherLoginMethodGuiTaskTest.java @@ -1,12 +1,15 @@  package at.asitplus.eidas.specific.modules.auth.eidas.v2.test.tasks; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; - -import java.io.UnsupportedEncodingException; -import java.text.MessageFormat; -import java.util.Locale; - +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SelectedLoginMethod; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateOtherLoginMethodGuiTask; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.module.test.TestRequestImpl; +import at.gv.egiz.eaaf.core.impl.idp.process.ExecutionContextImpl; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.json.JsonMapper; +import lombok.SneakyThrows;  import org.apache.commons.lang3.RandomStringUtils;  import org.junit.Assert;  import org.junit.Before; @@ -23,17 +26,12 @@ import org.springframework.test.context.web.WebAppConfiguration;  import org.springframework.web.context.request.RequestContextHolder;  import org.springframework.web.context.request.ServletRequestAttributes; -import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.json.JsonMapper; +import java.io.UnsupportedEncodingException; +import java.text.MessageFormat; +import java.util.Locale; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SelectedLoginMethod; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateOtherLoginMethodGuiTask; -import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; -import at.gv.egiz.eaaf.core.impl.idp.module.test.TestRequestImpl; -import at.gv.egiz.eaaf.core.impl.idp.process.ExecutionContextImpl; -import lombok.SneakyThrows; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue;  @RunWith(SpringJUnit4ClassRunner.class)  @ContextConfiguration(locations = { @@ -44,27 +42,27 @@ import lombok.SneakyThrows;  @WebAppConfiguration  public class GenerateOtherLoginMethodGuiTaskTest { -  private static final String TEST_PATTER_REQ_PARAM =  +  private static final String TEST_PATTER_REQ_PARAM =        "<input type=\"hidden\" name=\"loginSelection\" value=\"{0}\">"; -   +    private static ObjectMapper mapper = new ObjectMapper(); -   -  @Autowired GenerateOtherLoginMethodGuiTask task; -   + +  @Autowired +  GenerateOtherLoginMethodGuiTask task; +    private ExecutionContextImpl executionContext = new ExecutionContextImpl();    private TestRequestImpl pendingReq;    private MockHttpServletRequest httpReq;    private MockHttpServletResponse httpResp; -   +    @BeforeClass    public static void classInitializer() {      Locale.setDefault(Locale.ENGLISH); -    +    } -   +    /**     * jUnit test set-up. -   *      */    @Before    public void initialize() { @@ -72,130 +70,106 @@ public class GenerateOtherLoginMethodGuiTaskTest {      httpResp = new MockHttpServletResponse();      RequestContextHolder.resetRequestAttributes();      RequestContextHolder.setRequestAttributes(new ServletRequestAttributes(httpReq, httpResp)); -     +      pendingReq = new TestRequestImpl();      pendingReq.setAuthUrl("https://localhost/ms_connector");      pendingReq.setPendingReqId(RandomStringUtils.randomAlphanumeric(10)); -     +      LocaleContextHolder.resetLocaleContext();    } -   -   + +    @Test    @SneakyThrows -  public void jsonResponse() throws TaskExecutionException, UnsupportedEncodingException {     -        +  public void jsonResponse() throws TaskExecutionException, UnsupportedEncodingException { +      executionContext.put(Constants.CONTEXT_FLAG_ADVANCED_MATCHING_FAILED, true);      httpReq.addHeader("Accept", "application/json"); -     +      task.execute(pendingReq, executionContext); -     +      //result validation      Assert.assertEquals("httpStausCode", 200, httpResp.getStatus());      Assert.assertEquals("http ContentType", "application/json;charset=UTF-8", httpResp.getContentType());      final String content = httpResp.getContentAsString();      assertNotNull("response body is null", content);      Assert.assertFalse("response body is empty", content.isEmpty()); -    final JsonNode json = new JsonMapper().readTree(content);     -    assertNotNull("response body is null", json);     +    final JsonNode json = new JsonMapper().readTree(content); +    assertNotNull("response body is null", json);      assertNotNull("advancedMatchFailed", json.get(Constants.HTML_FORM_ADVANCED_MATCHING_FAILED));      assertTrue("advancedMatchFailed", json.get(Constants.HTML_FORM_ADVANCED_MATCHING_FAILED).asBoolean()); -     +    } -   +    @Test -  public void advancedMatchingFailedMsg() throws TaskExecutionException, UnsupportedEncodingException {     -        +  public void advancedMatchingFailedMsg() throws TaskExecutionException, UnsupportedEncodingException { +      executionContext.put(Constants.CONTEXT_FLAG_ADVANCED_MATCHING_FAILED, true); -     +      task.execute(pendingReq, executionContext); -     -    //result validation -    String html = doBasicValidation(); -     -    Assert.assertTrue("No english text",  -        html.contains("Matching of further information failed")); -     + +    doBasicValidation(); +    } -   +    @Test -  public void validHtmlResponseWithOutLocale() throws TaskExecutionException, UnsupportedEncodingException {     -        +  public void validHtmlResponseWithOutLocale() throws TaskExecutionException, UnsupportedEncodingException { +      task.execute(pendingReq, executionContext); -     -    //result validation -    String html = doBasicValidation(); -     -    Assert.assertTrue("No english text",  -        html.contains("Information on Logins with European eIDs")); -    Assert.assertFalse("No english text",  -        html.contains("Matching of further information failed")); -     + +    doBasicValidation(); +    } -   +    @Test -  public void validHtmlResponseWithDE() throws TaskExecutionException, UnsupportedEncodingException {     +  public void validHtmlResponseWithDE() throws TaskExecutionException, UnsupportedEncodingException {      LocaleContextHolder.setLocale(Locale.GERMAN);      httpReq.addHeader("Accept-Language", "de"); -     +      task.execute(pendingReq, executionContext); -     -    //result validation -    String html = doBasicValidation(); -     -    Assert.assertTrue("No english text",  -        html.contains("Information zur Anmeldung über Europäische eIDs")); -     + +    doBasicValidation(); +    } -   +    @Test -  public void validHtmlResponseWithEN() throws TaskExecutionException, UnsupportedEncodingException {     +  public void validHtmlResponseWithEN() throws TaskExecutionException, UnsupportedEncodingException {      LocaleContextHolder.setLocale(Locale.ENGLISH); -     +      task.execute(pendingReq, executionContext); -     -    //result validation -    String html = doBasicValidation(); -     -    Assert.assertTrue("No english text",  -        html.contains("Information on Logins with European eIDs")); -     + +    doBasicValidation(); +    } -   +    @Test -  public void validHtmlResponseWithFR() throws TaskExecutionException, UnsupportedEncodingException {     +  public void validHtmlResponseWithFR() throws TaskExecutionException, UnsupportedEncodingException {      LocaleContextHolder.setLocale(Locale.FRANCE);      httpReq.addHeader("Accept-Language", "fr"); -     +      task.execute(pendingReq, executionContext); -     -    //result validation -    String html = doBasicValidation(); -     -    Assert.assertTrue("No english text",  -        html.contains("Information on Logins with European eIDs")); -     + +    doBasicValidation(); +    } -   -  private String doBasicValidation() throws UnsupportedEncodingException { + +  private void doBasicValidation() throws UnsupportedEncodingException {      Assert.assertEquals("Wrong http StatusCode", 200, httpResp.getStatus());      Assert.assertEquals("Wrong http ContentType", "text/html;charset=UTF-8", httpResp.getContentType()); -     +      String html = httpResp.getContentAsString();      Assert.assertNotNull("html result is null", html); -    Assert.assertFalse("html result is empty", html.isEmpty());     -     -    Assert.assertTrue("Missing IDA Login",  +    Assert.assertFalse("html result is empty", html.isEmpty()); + +    Assert.assertTrue("Missing IDA Login",          html.contains(MessageFormat.format(TEST_PATTER_REQ_PARAM, SelectedLoginMethod.MOBILE_PHONE_SIGNATURE_LOGIN))); -    Assert.assertTrue("Missing residence infos",  +    Assert.assertTrue("Missing residence infos",          html.contains(MessageFormat.format(TEST_PATTER_REQ_PARAM, SelectedLoginMethod.NO_OTHER_LOGIN))); -         -    Assert.assertTrue("No language selector with pendingRequestId",  + +    Assert.assertTrue("No language selector with pendingRequestId",          html.contains("/otherLoginMethod?pendingid=" + pendingReq.getPendingRequestId())); -    Assert.assertTrue("No country-selection form",  -        html.contains("<form class=\"block\" method=\"post\" action=\"/otherLoginMethod\">")); -         -    return html; -     +    Assert.assertTrue("No country-selection form", +        html.contains("<form method=\"post\" action=\"/otherLoginMethod\">")); +    }  } | 
