KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > security > test > PermissionNameUnitTestCase


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.test.security.test;
23
24 import java.io.FilePermission JavaDoc;
25 import java.net.URL JavaDoc;
26 import java.security.CodeSource JavaDoc;
27 import java.security.Permission JavaDoc;
28 import java.security.PermissionCollection JavaDoc;
29 import java.security.Policy JavaDoc;
30
31 /**
32  * A JUnit TestCase for the PermissionNames class.
33  *
34  @author Scott.Stark@jboss.org
35  @version $Revision: 37406 $
36  */

37 public class PermissionNameUnitTestCase
38    extends junit.framework.TestCase
39 {
40    public PermissionNameUnitTestCase(String JavaDoc name)
41    {
42       super(name);
43    }
44
45    /**
46     * This method caueses errors, because newer junit this is a static.
47     * and thus can not be overridden.
48     *
49    protected void assertEquals(String msg, boolean expected, boolean actual)
50    {
51       assertTrue(msg, (expected == actual));
52    }
53    */

54    
55    /**
56     * Test the order of PermissionNames
57     */

58    public void testOrdering()
59    {
60       String JavaDoc s0 = "starksm/Project1/Documents/readme.html";
61       String JavaDoc s1 = "starksm/Project1/Documents/Folder1/readme.html";
62       String JavaDoc s2 = "starksm/Project1/Documents";
63       PermissionName n0 = new PermissionName(s0);
64       PermissionName n1 = new PermissionName(s1);
65       PermissionName n2 = new PermissionName(s2);
66
67       assertTrue(n0.toString(), s0.equals(n0.toString()));
68       assertTrue(n1.toString(), s1.equals(n1.toString()));
69       assertEquals(s0, 4, n0.size());
70       assertEquals(s1, 5, n1.size());
71       assertEquals(s2, 3, n2.size());
72       assertEquals("n0 < n1", true, (n0.compareTo(n1) < 0));
73       assertEquals("n0 > n2", true, (n0.compareTo(n2) > 0));
74    }
75 }
76
Popular Tags