copyright messages updated in all java filees.
[utils] / security / src / test / java / org / wamblee / security / authorization / DefaultOperationRegistryTest.java
index 3dcfe2d286480e4ce607e31b888b18e811e882d8..e09f7fa1cd52ff93535143dc829ab49dcd41e16f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005 the original author or authors.
+ * Copyright 2005-2010 the original author or authors.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */ 
-
 package org.wamblee.security.authorization;
 
 import junit.framework.TestCase;
 
 /**
- * Test of the operation registry. 
- *
+ * Test of the operation registry.
+ * 
  * @author Erik Brakkee
  */
 public class DefaultOperationRegistryTest extends TestCase {
-    
-    private OperationRegistry _registry; 
-    
-    /* (non-Javadoc)
+    private OperationRegistry registry;
+
+    /*
+     * (non-Javadoc)
+     * 
      * @see junit.framework.TestCase#setUp()
      */
     @Override
     protected void setUp() throws Exception {
-        
-        _registry = new DefaultOperationRegistry(new Operation[] {
-                new AllOperation(), 
-                new ReadOperation(), 
-                new WriteOperation(), 
-                new DeleteOperation(), 
-                new CreateOperation()
-        });     
+        registry = new DefaultOperationRegistry(new Operation[] {
+            new AllOperation(), new ReadOperation(), new WriteOperation(),
+            new DeleteOperation(), new CreateOperation() });
     }
-    
+
     /**
-     * Tests encoding and decoding of no operations. 
-     *
+     * Tests encoding and decoding of no operations.
      */
-    public void testEncodeDecodeNooperations() { 
-        assertEquals("", _registry.encode(new Operation[0]));
-        assertEquals(0, _registry.decode(Object.class, "").length);
+    public void testEncodeDecodeNooperations() {
+        assertEquals("", registry.encode(new Operation[0]));
+        assertEquals(0, registry.decode(Object.class, "").length);
     }
-    
+
     /**
-     * Verifies that encoding of operations into a string works. 
-     *
+     * Verifies that encoding of operations into a string works.
      */
-    public void testEncode() { 
-        assertEquals("read,write", _registry.encode(new Operation[] { new ReadOperation(), new WriteOperation() })); 
+    public void testEncode() {
+        assertEquals("read,write", registry.encode(new Operation[] {
+            new ReadOperation(), new WriteOperation() }));
     }
-    
+
     /**
-     * Verifies that decoding of operation from a string works. 
-     *
+     * Verifies that decoding of operation from a string works.
      */
-    public void testDecode() { 
-        Operation[] operations = _registry.decode(Object.class, "read,write");
-        assertTrue( operations[0] instanceof ReadOperation); 
-        assertTrue( operations[1] instanceof WriteOperation); 
+    public void testDecode() {
+        Operation[] operations = registry.decode(Object.class, "read,write");
+        assertTrue(operations[0] instanceof ReadOperation);
+        assertTrue(operations[1] instanceof WriteOperation);
     }
-    
+
     /**
-     * Verifies that an IllegalArgumentException occurs when attempting to decode
-     * an operation that is not known. 
-     *
+     * Verifies that an IllegalArgumentException occurs when attempting to
+     * decode an operation that is not known.
      */
-    public void testDecodeUnknownOperation() { 
-        try {  
-            _registry.decode(Object.class, "bla"); 
-            fail(); 
-        } catch (IllegalArgumentException e) { 
+    public void testDecodeUnknownOperation() {
+        try {
+            registry.decode(Object.class, "bla");
+            fail();
+        } catch (IllegalArgumentException e) {
             // ok
         }
     }