Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/javax/smartcardio/TestCardPermission.java
38833 views
1
/*
2
* Copyright (c) 2005, 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
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
}
84
85