Source Code Cross Referenced for Permissions2Test.java in  » Apache-Harmony-Java-SE » org-package » org » apache » harmony » security » tests » java » security » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » org package » org.apache.harmony.security.tests.java.security 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* 
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:
018:        package org.apache.harmony.security.tests.java.security;
019:
020:        import java.io.File;
021:        import java.io.FilePermission;
022:        import java.security.Permissions;
023:        import java.util.Enumeration;
024:
025:        public class Permissions2Test extends junit.framework.TestCase {
026:            FilePermission readAllFiles = new FilePermission("<<ALL FILES>>",
027:                    "read");
028:
029:            FilePermission alsoReadAllFiles = new FilePermission(
030:                    "<<ALL FILES>>", "read");
031:
032:            FilePermission allInCurrent = new FilePermission("*",
033:                    "read, write, execute,delete");
034:
035:            FilePermission readInCurrent = new FilePermission("*", "read");
036:
037:            FilePermission readInFile = new FilePermission("aFile.file", "read");
038:
039:            /**
040:             * @tests java.security.Permissions#Permissions()
041:             */
042:            public void test_Constructor() {
043:                // Test for method java.security.Permissions()
044:                new Permissions();
045:            }
046:
047:            /**
048:             * @tests java.security.Permissions#add(java.security.Permission)
049:             */
050:            public void test_addLjava_security_Permission() {
051:                // Test for method void
052:                // java.security.Permissions.add(java.security.Permission)
053:                char s = File.separatorChar;
054:                FilePermission perm[] = new FilePermission[7];
055:                perm[0] = readAllFiles;
056:                perm[1] = allInCurrent;
057:                perm[2] = new FilePermission(s + "tmp" + s + "test" + s + "*",
058:                        "read,write");
059:                perm[3] = new FilePermission(s + "tmp" + s + "test" + s
060:                        + "collection.file", "read");
061:                perm[4] = alsoReadAllFiles;
062:                perm[5] = readInFile;
063:                perm[6] = new FilePermission("hello.file", "write");
064:                Permissions perms = new Permissions();
065:                for (int i = 0; i < perm.length; i++) {
066:                    perms.add(perm[i]);
067:                }
068:
069:                Enumeration e = perms.elements();
070:                FilePermission perm2[] = new FilePermission[10];
071:                int i = 0;
072:                while (e.hasMoreElements()) {
073:                    perm2[i] = (FilePermission) e.nextElement();
074:                    i++;
075:                }
076:                assertEquals(
077:                        "Permissions.elements did not return the correct number "
078:                                + "of permission - called in add() test ", i,
079:                        perm.length);
080:            }
081:
082:            /**
083:             * @tests java.security.Permissions#elements()
084:             */
085:            public void test_elements() {
086:                // Test for method java.util.Enumeration
087:                // java.security.Permissions.elements()
088:                char s = File.separatorChar;
089:                FilePermission perm[] = new FilePermission[7];
090:                perm[0] = readAllFiles;
091:                perm[1] = allInCurrent;
092:                perm[2] = new FilePermission(s + "tmp" + s + "test" + s + "*",
093:                        "read,write");
094:                perm[3] = new FilePermission(s + "tmp" + s + "test" + s
095:                        + "collection.file", "read");
096:                perm[4] = alsoReadAllFiles;
097:                perm[5] = readInFile;
098:                perm[6] = new FilePermission("hello.file", "write");
099:                Permissions perms = new Permissions();
100:                for (int i = 0; i < perm.length; i++) {
101:                    perms.add(perm[i]);
102:                }
103:                Enumeration e = perms.elements();
104:                FilePermission perm2[] = new FilePermission[10];
105:                int i = 0;
106:                while (e.hasMoreElements()) {
107:                    perm2[i] = (FilePermission) e.nextElement();
108:                    i++;
109:                }
110:                assertEquals("Permissions.elements did not return the correct "
111:                        + "number of permission - called in element() test", i,
112:                        perm.length);
113:            }
114:
115:            /**
116:             * @tests java.security.Permissions#implies(java.security.Permission)
117:             */
118:            public void test_impliesLjava_security_Permission() {
119:                // Test for method boolean
120:                // java.security.Permissions.implies(java.security.Permission)
121:                char s = File.separatorChar;
122:                FilePermission perm[] = new FilePermission[7];
123:                perm[0] = new FilePermission("test1.file", "write");
124:                perm[1] = allInCurrent;
125:                perm[2] = new FilePermission(s + "tmp" + s + "test" + s + "*",
126:                        "read,write");
127:                perm[3] = new FilePermission(s + "tmp" + s + "test" + s
128:                        + "collection.file", "read");
129:                perm[4] = new FilePermission(s + "windows" + "*", "delete");
130:                perm[5] = readInFile;
131:                perm[6] = new FilePermission("hello.file", "write");
132:                Permissions perms = new Permissions();
133:                for (int i = 0; i < perm.length; i++) {
134:                    perms.add(perm[i]);
135:                }
136:                assertTrue("Returned true for non-subset of files",
137:                        !perms.implies(new FilePermission("<<ALL FILES>>",
138:                                "execute")));
139:                assertTrue("Returned true for non-subset of action", !perms
140:                        .implies(new FilePermission(s + "tmp" + s + "test" + s
141:                                + "*", "execute")));
142:                assertTrue("Returned false for subset of actions", perms
143:                        .implies(new FilePermission("*", "write")));
144:                assertTrue("Returned false for subset of files", perms
145:                        .implies(new FilePermission(s + "tmp" + s + "test" + s
146:                                + "test.file", "read")));
147:                assertTrue("Returned false for subset of files and actions",
148:                        perms.implies(new FilePermission(s + "tmp" + s + "test"
149:                                + s + "test2.file", "write")));
150:            }
151:        }
ww__w___.__j___a__v___a2___s__.___c_o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.