diff options
| author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-03-27 17:33:11 +0000 | 
|---|---|---|
| committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2009-03-27 17:33:11 +0000 | 
| commit | 616e06910051528674165319a1d6d161dff5859c (patch) | |
| tree | c5295e32d65bf5895b2b6c1e9662d5fe358091ce /smcc/src/test | |
| parent | 2a1df5e58e44f8d77f34eb80df74e8c0d27caceb (diff) | |
| download | mocca-616e06910051528674165319a1d6d161dff5859c.tar.gz mocca-616e06910051528674165319a1d6d161dff5859c.tar.bz2 mocca-616e06910051528674165319a1d6d161dff5859c.zip | |
1.1-RC6 (pinpad, pinmgmt, secureviewer)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@323 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'smcc/src/test')
| -rw-r--r-- | smcc/src/test/java/at/gv/egiz/smcc/ACOSCardTest.java | 135 | ||||
| -rw-r--r-- | smcc/src/test/java/at/gv/egiz/smcc/STARCOSCardTest.java | 267 | 
2 files changed, 402 insertions, 0 deletions
| diff --git a/smcc/src/test/java/at/gv/egiz/smcc/ACOSCardTest.java b/smcc/src/test/java/at/gv/egiz/smcc/ACOSCardTest.java new file mode 100644 index 00000000..5839d14a --- /dev/null +++ b/smcc/src/test/java/at/gv/egiz/smcc/ACOSCardTest.java @@ -0,0 +1,135 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ + +package at.gv.egiz.smcc; + +import at.gv.egiz.smcc.SignatureCard.KeyboxName; +import at.gv.egiz.smcc.util.SMCCHelper; +import java.util.List; +import java.util.Locale; +import javax.smartcardio.ResponseAPDU; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.Test; +import static org.junit.Assert.*; + +/** + * + * @author clemens + */ +@Ignore +public class ACOSCardTest { + +  static ACOSCard card; +  static PINSpec infPin, decPin, sigPin; + +    public ACOSCardTest() { +    } + +  @BeforeClass +  public static void setUpClass() throws Exception { +    SMCCHelper smccHelper = new SMCCHelper(); +      switch (smccHelper.getResultCode()) { +        case SMCCHelper.CARD_FOUND: +          SignatureCard sigCard = smccHelper.getSignatureCard(Locale.GERMAN); +          if (sigCard instanceof ACOSCard) { +            System.out.println("ACOS card found"); +            card = (ACOSCard) sigCard; +            List<PINSpec> pinSpecs = card.getPINSpecs(); +            infPin = pinSpecs.get(ACOSCard.PINSPEC_INF); +            decPin = pinSpecs.get(ACOSCard.PINSPEC_DEC); +            sigPin = pinSpecs.get(ACOSCard.PINSPEC_SIG); +          } else { +            throw new Exception("not STARCOS card: " + sigCard.toString()); +          } +          break; +        default: +          throw new Exception("no card found"); +      } +  } + +  @AfterClass +  public static void tearDownClass() throws Exception { +  } + +    @Before +    public void setUp() { +    } + +    @After +    public void tearDown() { +    } + + + +  /** +   * Test of verifyPIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testVerifyPIN_pinpad() throws Exception { +    System.out.println("verifyPIN (pinpad)"); +    assertNotNull(card); + +    card.verifyPIN(decPin, new PINProvider() { + +      @Override +      public char[] providePIN(PINSpec spec, int retries) { +        return null; +      } +    }); +  } + +  /** +   * Test of verifyPIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testVerifyPIN_internal() throws Exception { +    System.out.println("verifyPIN (internal)"); +    assertNotNull(card); + +    card.reset(); + +    card.getCard().beginExclusive(); + +    // 0x6700 without sending an APDU prior to send CtrlCmd +    System.out.println("WARNING: this command will fail if no card " + +            "communication took place prior to sending the CtrlCommand"); +    int retries = card.verifyPIN(decPin.getKID(), null); //"1397".toCharArray()); + +    System.out.println("VERIFY PIN returned " + retries); +    card.getCard().endExclusive(); +  } + +  /** +   * Test of changePIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testChangePIN() throws Exception { +    System.out.println("changePIN"); +    assertNotNull(card); + +    card.reset(); +    int retries = card.changePIN(decPin.getKID(), null, null); + +    System.out.println("CHANGE PIN returned " + retries); +  } + +  /** +   * Test of reset method, of class STARCOSCard. +   */ +  @Test +  public void testReset() throws Exception { +    System.out.println("reset"); +    assertNotNull(card); +    card.reset(); +  } + +}
\ No newline at end of file diff --git a/smcc/src/test/java/at/gv/egiz/smcc/STARCOSCardTest.java b/smcc/src/test/java/at/gv/egiz/smcc/STARCOSCardTest.java new file mode 100644 index 00000000..9be8db00 --- /dev/null +++ b/smcc/src/test/java/at/gv/egiz/smcc/STARCOSCardTest.java @@ -0,0 +1,267 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ + +package at.gv.egiz.smcc; + +import at.gv.egiz.smcc.SignatureCard.KeyboxName; +import at.gv.egiz.smcc.util.SMCCHelper; +import java.util.List; +import java.util.Locale; +import javax.smartcardio.ResponseAPDU; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.Test; +import static org.junit.Assert.*; + +/** + * + * @author clemens + */ +@Ignore +public class STARCOSCardTest { + +  static STARCOSCard card; +  static PINSpec cardPin, ssPin; + +    public STARCOSCardTest() { +    } + +  @BeforeClass +  public static void setUpClass() throws Exception { +    SMCCHelper smccHelper = new SMCCHelper(); +      switch (smccHelper.getResultCode()) { +        case SMCCHelper.CARD_FOUND: +          SignatureCard sigCard = smccHelper.getSignatureCard(Locale.GERMAN); +          if (sigCard instanceof STARCOSCard) { +            System.out.println("STARCOS card found"); +            card = (STARCOSCard) sigCard; +            List<PINSpec> pinSpecs = card.getPINSpecs(); +            cardPin = pinSpecs.get(STARCOSCard.PINSPEC_CARD); +            ssPin = pinSpecs.get(STARCOSCard.PINSPEC_SS); + +          } else { +            throw new Exception("not STARCOS card: " + sigCard.toString()); +          } +          break; +        default: +          throw new Exception("no card found"); +      } +  } + +  @AfterClass +  public static void tearDownClass() throws Exception { +  } + +    @Before +    public void setUp() { +    } + +    @After +    public void tearDown() { +    } + +  /** +   * Test of getCertificate method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testGetCertificate() throws Exception { +    System.out.println("getCertificate"); +    KeyboxName keyboxName = null; +    STARCOSCard instance = new STARCOSCard(); +    byte[] expResult = null; +    byte[] result = instance.getCertificate(keyboxName); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of getInfobox method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testGetInfobox() throws Exception { +    System.out.println("getInfobox"); +    String infobox = ""; +    PINProvider provider = null; +    String domainId = ""; +    STARCOSCard instance = new STARCOSCard(); +    byte[] expResult = null; +    byte[] result = instance.getInfobox(infobox, provider, domainId); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of createSignature method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testCreateSignature() throws Exception { +    System.out.println("createSignature"); +    byte[] hash = null; +    KeyboxName keyboxName = null; +    PINProvider provider = null; +    STARCOSCard instance = new STARCOSCard(); +    byte[] expResult = null; +    byte[] result = instance.createSignature(hash, keyboxName, provider); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of selectFileFID method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testSelectFileFID() throws Exception { +    System.out.println("selectFileFID"); +    byte[] fid = null; +    STARCOSCard instance = new STARCOSCard(); +    ResponseAPDU expResult = null; +    ResponseAPDU result = instance.selectFileFID(fid); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of verifyPIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testVerifyPIN_pinpad() throws Exception { +    System.out.println("verifyPIN (pinpad)"); +    assertNotNull(card); + +    card.verifyPIN(cardPin, new PINProvider() { + +      @Override +      public char[] providePIN(PINSpec spec, int retries) { +        return null; +      } +    }); +  } + +  /** +   * Test of verifyPIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testVerifyPIN_internal() throws Exception { +    System.out.println("verifyPIN (internal)"); +    assertNotNull(card); + +    card.reset(); + +    card.getCard().beginExclusive(); + +    // 0x6700 without sending an APDU prior to send CtrlCmd +    System.out.println("WARNING: this command will fail if no card " + +            "communication took place prior to sending the CtrlCommand"); +    int retries = card.verifyPIN(cardPin.getKID(), null); //"1397".toCharArray()); + +    System.out.println("VERIFY PIN returned " + retries); +    card.getCard().endExclusive(); +  } + +  /** +   * Test of verifyPIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testVerifyPIN_byte() throws Exception { +    System.out.println("verifyPIN"); +    byte kid = 0; +    STARCOSCard instance = new STARCOSCard(); +    int expResult = 0; +    int result = instance.verifyPIN(kid); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of changePIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testChangePIN() throws Exception { +    System.out.println("changePIN"); +    assertNotNull(card); + +    card.reset(); +    int retries = card.changePIN(cardPin.getKID(), null, null); + +    System.out.println("CHANGE PIN returned " + retries); +  } + +  /** +   * Test of activatePIN method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testActivatePIN() throws Exception { +    System.out.println("activatePIN"); +    assertNotNull(card); + +    card.reset(); +    card.activatePIN(cardPin, new PINProvider() { + +      @Override +      public char[] providePIN(PINSpec spec, int retries) throws CancelledException, InterruptedException { +        return null; +      } +    }); +  } + +  /** +   * Test of encodePINBlock method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testEncodePINBlock() throws Exception { +    System.out.println("encodePINBlock"); +    char[] pin = null; +    STARCOSCard instance = new STARCOSCard(); +    byte[] expResult = null; +    byte[] result = instance.encodePINBlock(pin); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +  /** +   * Test of reset method, of class STARCOSCard. +   */ +  @Test +  public void testReset() throws Exception { +    System.out.println("reset"); +    assertNotNull(card); +    card.reset(); +  } + +  /** +   * Test of toString method, of class STARCOSCard. +   */ +  @Test +  @Ignore +  public void testToString() { +    System.out.println("toString"); +    STARCOSCard instance = new STARCOSCard(); +    String expResult = ""; +    String result = instance.toString(); +    assertEquals(expResult, result); +    // TODO review the generated test code and remove the default call to fail. +    fail("The test case is a prototype."); +  } + +}
\ No newline at end of file | 
