< prev index next >

jdk/test/javax/smartcardio/TestCommandAPDU.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6293767
  27  * @summary Test for the CommandAPDU class
  28  * @author Andreas Sterbenz
  29  * @key randomness
  30  * @compile -addmods java.smartcardio TestCommandAPDU.java
  31  * @run main/othervm -addmods java.smartcardio TestCommandAPDU
  32  */
  33 
  34 import java.util.*;
  35 
  36 import javax.smartcardio.*;
  37 
  38 public class TestCommandAPDU {
  39 
  40     private static final Random random = new Random();
  41 
  42     private static void test(int nc, int ne) throws Exception {
  43         System.out.println("nc = " + nc + ", ne = " + ne);
  44         byte[] data = new byte[nc];
  45         random.nextBytes(data);
  46         CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne);
  47         //System.out.println(apdu);
  48         if (apdu.getNc() != nc) {
  49             throw new Exception("dataLength does not match");
  50         }
  51         if (Arrays.equals(data, apdu.getData()) == false) {




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6293767
  27  * @summary Test for the CommandAPDU class
  28  * @author Andreas Sterbenz
  29  * @key randomness
  30  * @compile --add-modules=java.smartcardio TestCommandAPDU.java
  31  * @run main/othervm --add-modules=java.smartcardio TestCommandAPDU
  32  */
  33 
  34 import java.util.*;
  35 
  36 import javax.smartcardio.*;
  37 
  38 public class TestCommandAPDU {
  39 
  40     private static final Random random = new Random();
  41 
  42     private static void test(int nc, int ne) throws Exception {
  43         System.out.println("nc = " + nc + ", ne = " + ne);
  44         byte[] data = new byte[nc];
  45         random.nextBytes(data);
  46         CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne);
  47         //System.out.println(apdu);
  48         if (apdu.getNc() != nc) {
  49             throw new Exception("dataLength does not match");
  50         }
  51         if (Arrays.equals(data, apdu.getData()) == false) {


< prev index next >