1 /*
2  * Copyright (c) 2005, 2017, Oracle and/or its affiliates. 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 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 6469513
27  * @summary Test for the CardPermission class
28  * @author Andreas Sterbenz
29  */
30 
31 import javax.smartcardio.*;
32 
33 public class TestCardPermission {
34 
main(String[] args)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         test(null, null);
51 
52         invalid("");
53         invalid("foo");
54         invalid("connect, reset");
55         invalid("connect,,reset");
56         invalid("connect,");
57         invalid(",connect");
58     }
59 
invalid(String s)60     private static void invalid(String s) throws Exception {
61         try {
62             CardPermission c = new CardPermission("*", s);
63             throw new Exception("Created invalid action: " + c);
64         } catch (IllegalArgumentException e) {
65             System.out.println("OK: " + e);
66         }
67     }
68 
test(String actions)69     private static void test(String actions) throws Exception {
70         test(actions, actions);
71     }
72 
test(String actions, String canon)73     private static void test(String actions, String canon) throws Exception {
74         CardPermission p = new CardPermission("*", actions);
75         System.out.println(p);
76         String a = p.getActions();
77         if (canon != null && canon.equals(a) == false) {
78             throw new Exception("Canonical actions mismatch: " + canon + " != " + a);
79         }
80     }
81 
82 }
83