2
|
1 |
/*
|
|
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 CardPermission class
|
|
28 |
* @author Andreas Sterbenz
|
|
29 |
*/
|
|
30 |
|
|
31 |
import javax.smartcardio.*;
|
|
32 |
|
|
33 |
public class TestCardPermission {
|
|
34 |
|
|
35 |
public static void main(String[] args) throws Exception {
|
|
36 |
CardPermission perm;
|
|
37 |
|
|
38 |
test("*");
|
|
39 |
test("connect");
|
|
40 |
test("reset");
|
|
41 |
test("exclusive");
|
|
42 |
test("transmitControl");
|
|
43 |
test("getBasicChannel");
|
|
44 |
test("openLogicalChannel");
|
|
45 |
|
|
46 |
test("connect,reset");
|
|
47 |
test("Reset,coNnect", "connect,reset");
|
|
48 |
test("exclusive,*,connect", "*");
|
|
49 |
test("connect,reset,exclusive,transmitControl,getBasicChannel,openLogicalChannel", "*");
|
|
50 |
|
|
51 |
invalid(null);
|
|
52 |
invalid("");
|
|
53 |
invalid("foo");
|
|
54 |
invalid("connect, reset");
|
|
55 |
invalid("connect,,reset");
|
|
56 |
invalid("connect,");
|
|
57 |
invalid(",connect");
|
|
58 |
invalid("");
|
|
59 |
}
|
|
60 |
|
|
61 |
private static void invalid(String s) throws Exception {
|
|
62 |
try {
|
|
63 |
CardPermission c = new CardPermission("*", s);
|
|
64 |
throw new Exception("Created invalid action: " + c);
|
|
65 |
} catch (IllegalArgumentException e) {
|
|
66 |
System.out.println("OK: " + e);
|
|
67 |
}
|
|
68 |
}
|
|
69 |
|
|
70 |
private static void test(String actions) throws Exception {
|
|
71 |
test(actions, actions);
|
|
72 |
}
|
|
73 |
|
|
74 |
private static void test(String actions, String canon) throws Exception {
|
|
75 |
CardPermission p = new CardPermission("*", actions);
|
|
76 |
System.out.println(p);
|
|
77 |
String a = p.getActions();
|
|
78 |
if (canon.equals(a) == false) {
|
|
79 |
throw new Exception("Canonical actions mismatch: " + canon + " != " + a);
|
|
80 |
}
|
|
81 |
}
|
|
82 |
|
|
83 |
}
|