author | vromero |
Thu, 05 Jan 2017 11:16:39 -0800 | |
changeset 43033 | c37b643739a7 |
parent 40261 | 86a49ba76f52 |
child 44108 | 8de4ce18c36f |
permissions | -rw-r--r-- |
2 | 1 |
/* |
5506 | 2 |
* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 22 |
*/ |
23 |
||
24 |
/** |
|
25 |
* @test |
|
26 |
* @bug 6293767 |
|
27 |
* @summary Test for the CommandAPDU class |
|
28 |
* @author Andreas Sterbenz |
|
30046 | 29 |
* @key randomness |
40261
86a49ba76f52
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
37779
diff
changeset
|
30 |
* @compile --add-modules=java.smartcardio TestCommandAPDU.java |
86a49ba76f52
8136930: Simplify use of module-system options by custom launchers
mchung
parents:
37779
diff
changeset
|
31 |
* @run main/othervm --add-modules=java.smartcardio TestCommandAPDU |
2 | 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) { |
|
52 |
throw new Exception("data does not match"); |
|
53 |
} |
|
54 |
if (apdu.getNe() != ne) { |
|
55 |
throw new Exception("ne does not match"); |
|
56 |
} |
|
57 |
byte[] apduBytes = apdu.getBytes(); |
|
58 |
CommandAPDU apdu2 = new CommandAPDU(apduBytes); |
|
59 |
//System.out.println(apdu2); |
|
60 |
if (Arrays.equals(apduBytes, apdu2.getBytes()) == false) { |
|
61 |
throw new Exception("apduBytes do not match"); |
|
62 |
} |
|
63 |
if (apdu2.getNc() != nc) { |
|
64 |
throw new Exception("dataLength does not match"); |
|
65 |
} |
|
66 |
if (Arrays.equals(data, apdu2.getData()) == false) { |
|
67 |
throw new Exception("data does not match"); |
|
68 |
} |
|
69 |
if (apdu2.getNe() != ne) { |
|
70 |
throw new Exception("ne does not match"); |
|
71 |
} |
|
72 |
} |
|
73 |
||
74 |
public static void main(String[] args) throws Exception { |
|
75 |
int[] t = {0, 42, 0x81, 255, 256, 4242, 0x8181, 65535, 65536}; |
|
76 |
for (int nc : t) { |
|
77 |
if (nc == 65536) { |
|
78 |
continue; |
|
79 |
} |
|
80 |
for (int ne : t) { |
|
81 |
test(nc, ne); |
|
82 |
} |
|
83 |
} |
|
84 |
System.out.println("OK"); |
|
85 |
} |
|
86 |
} |