diff options
| author | Thomas <> | 2022-02-07 11:37:22 +0100 | 
|---|---|---|
| committer | Thomas <> | 2022-02-08 09:37:25 +0100 | 
| commit | e9bb7aeaf5a9f7a445907ccb2abc96635e5b534c (patch) | |
| tree | 6453daad6e4b81865a5cdde60f15d04de2c40c5f /eidas_modules/authmodule-eIDAS-v2/src/test/java | |
| parent | 1a442f77692a0438cc9d43be563b0ca965ff6c2b (diff) | |
| download | National_eIDAS_Gateway-e9bb7aeaf5a9f7a445907ccb2abc96635e5b534c.tar.gz National_eIDAS_Gateway-e9bb7aeaf5a9f7a445907ccb2abc96635e5b534c.tar.bz2 National_eIDAS_Gateway-e9bb7aeaf5a9f7a445907ccb2abc96635e5b534c.zip | |
chore(szr): remove dummy code for SZR emulation
Diffstat (limited to 'eidas_modules/authmodule-eIDAS-v2/src/test/java')
| -rw-r--r-- | eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/CreateIdentityLinkTaskTest.java | 35 | 
1 files changed, 0 insertions, 35 deletions
| diff --git a/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/CreateIdentityLinkTaskTest.java b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/CreateIdentityLinkTaskTest.java index 8dc106f2..4986d5a7 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/CreateIdentityLinkTaskTest.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/test/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/test/tasks/CreateIdentityLinkTaskTest.java @@ -455,41 +455,6 @@ public class CreateIdentityLinkTaskTest {            authProcessData.getGenericDataFromSession(PvpAttributeDefinitions.BPK_NAME));    } -  @Test -  public void buildDummyIdl() throws Exception { -    //initialize test -    String randomTestSp = RandomStringUtils.randomAlphabetic(10); -    pendingReq.setRawDataToTransaction(MsEidasNodeConstants.DATA_REQUESTERID, randomTestSp); - -    basicConfig.putConfigValue("eidas.ms.auth.eIDAS.szrclient.debug.useDummySolution", "true"); - - -    //perform test -    task.execute(pendingReq, executionContext); - - -    //validate state -    // check if pendingRequest was stored -    IRequest storedPendingReq = requestStorage.getPendingRequest(pendingReq.getPendingRequestId()); -    Assert.assertNotNull("pendingReq not stored", storedPendingReq); - -    //check data in session -    final AuthProcessDataWrapper authProcessData = storedPendingReq.getSessionData(AuthProcessDataWrapper.class); -    Assert.assertNotNull("AuthProcessData", authProcessData); -    Assert.assertNull("eidasBind", authProcessData.getGenericDataFromSession(Constants.EIDAS_BIND, String.class)); - -    String authBlock = authProcessData.getGenericDataFromSession(Constants.SZR_AUTHBLOCK, String.class); -    Assert.assertNull("AuthBlock", authBlock); - -    Assert.assertFalse("EID process", authProcessData.isEidProcess()); -    Assert.assertTrue("foreigner process", authProcessData.isForeigner()); -    Assert.assertEquals("EID-ISSUING_NATION", "LU", -        authProcessData.getGenericDataFromSession(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, String.class)); - -    Assert.assertNotNull("IDL", authProcessData.getIdentityLink()); - -  } -    private void setSzrResponseIdentityLink(String responseXmlPath) throws JAXBException, SZRException_Exception {      final JAXBContext jaxbContext = JAXBContext          .newInstance(szrservices.ObjectFactory.class, org.w3._2001._04.xmldsig_more.ObjectFactory.class, | 
