blob: 90c74b11d8f9886c6646531c380729187d4a34d4 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/**
25 * @test
26 * @bug 6293767
27 * @summary Test for the CommandAPDU class
28 * @author Andreas Sterbenz
29 */
30
31import java.util.*;
32
33import javax.smartcardio.*;
34
35public class TestCommandAPDU {
36
37 private static final Random random = new Random();
38
39 private static void test(int nc, int ne) throws Exception {
40 System.out.println("nc = " + nc + ", ne = " + ne);
41 byte[] data = new byte[nc];
42 random.nextBytes(data);
43 CommandAPDU apdu = new CommandAPDU((byte)0, (byte)0, (byte)0, (byte)0, data, ne);
44 //System.out.println(apdu);
45 if (apdu.getNc() != nc) {
46 throw new Exception("dataLength does not match");
47 }
48 if (Arrays.equals(data, apdu.getData()) == false) {
49 throw new Exception("data does not match");
50 }
51 if (apdu.getNe() != ne) {
52 throw new Exception("ne does not match");
53 }
54 byte[] apduBytes = apdu.getBytes();
55 CommandAPDU apdu2 = new CommandAPDU(apduBytes);
56 //System.out.println(apdu2);
57 if (Arrays.equals(apduBytes, apdu2.getBytes()) == false) {
58 throw new Exception("apduBytes do not match");
59 }
60 if (apdu2.getNc() != nc) {
61 throw new Exception("dataLength does not match");
62 }
63 if (Arrays.equals(data, apdu2.getData()) == false) {
64 throw new Exception("data does not match");
65 }
66 if (apdu2.getNe() != ne) {
67 throw new Exception("ne does not match");
68 }
69 }
70
71 public static void main(String[] args) throws Exception {
72 int[] t = {0, 42, 0x81, 255, 256, 4242, 0x8181, 65535, 65536};
73 for (int nc : t) {
74 if (nc == 65536) {
75 continue;
76 }
77 for (int ne : t) {
78 test(nc, ne);
79 }
80 }
81 System.out.println("OK");
82 }
83}