You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/09/27 13:00:46 UTC

svn commit: r291904 - /directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java

Author: trustin
Date: Tue Sep 27 04:00:40 2005
New Revision: 291904

URL: http://svn.apache.org/viewcvs?rev=291904&view=rev
Log:
Implementing a test case for MaxValueCountFilter...

Added:
    directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java   (with props)

Added: directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java?rev=291904&view=auto
==============================================================================
--- directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java (added)
+++ directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java Tue Sep 27 04:00:40 2005
@@ -0,0 +1,107 @@
+/*
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.ldap.server.authz.support;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Set;
+
+import junit.framework.Assert;
+import junit.framework.TestCase;
+
+import org.apache.ldap.common.aci.ACITuple;
+import org.apache.ldap.common.aci.AuthenticationLevel;
+
+/**
+ * Tests {@link MaxValueCountFilter}.
+ *
+ * @author The Apache Directory Project
+ * @version $Rev$, $Date$
+ */
+public class MaxValueCountFilterTest extends TestCase
+{
+    private static final Collection EMPTY_COLLECTION =
+        Collections.unmodifiableCollection( new ArrayList() );
+    private static final Set EMPTY_SET =
+        Collections.unmodifiableSet( new HashSet() );
+    
+//    private static final ProtectedItem.MaxValueCount DEFAULT_MAX_VALUE_COUNT;
+//    
+//    static
+//    {
+//        Collection mvcItems = new ArrayList();
+//        mcvItems = 
+//        ProtectedItem.MaxValueCount tmpMVC = new ProtectedItem.MaxValueCount()
+//    }
+    
+    public void testWrongScope() throws Exception
+    {
+        MaxValueCountFilter filter = new MaxValueCountFilter();
+        Collection tuples = new ArrayList();
+        tuples.add( new ACITuple(
+                EMPTY_COLLECTION, AuthenticationLevel.NONE, EMPTY_COLLECTION,
+                EMPTY_SET, true, 0 ) );
+        
+        tuples = Collections.unmodifiableCollection( tuples );
+        
+        Assert.assertEquals(
+                tuples, filter.filter(
+                        tuples, OperationScope.ATTRIBUTE_TYPE, null, null, null,
+                        null, null, null, null, null, null, null ) );
+
+        Assert.assertEquals(
+                tuples, filter.filter(
+                        tuples, OperationScope.ENTRY, null, null, null,
+                        null, null, null, null, null, null, null ) );
+    }
+    
+    public void testZeroTuple() throws Exception
+    {
+        MaxValueCountFilter filter = new MaxValueCountFilter();
+        
+        Assert.assertEquals(
+                0, filter.filter(
+                        EMPTY_COLLECTION, OperationScope.ATTRIBUTE_TYPE_AND_VALUE,
+                        null, null, null, null, null, null, null, null, null, null ).size() );
+    }
+    
+//    public void testDenialTuple() throws Exception
+//    {
+//        MaxValueCountFilter filter = new MaxValueCountFilter();
+//        Collection tuples = new ArrayList();
+//        tuples.add( new ACITuple(
+//                EMPTY_COLLECTION, AuthenticationLevel.NONE, EMPTY_COLLECTION,
+//                EMPTY_SET, true, 0 ) );
+//        
+//        tuples = Collections.unmodifiableCollection( tuples );
+//        
+//        Assert.assertEquals(
+//                tuples, filter.filter(
+//                        tuples, OperationScope.ATTRIBUTE_TYPE, null, null, null,
+//                        null, null, null, null, null, null, null ) );
+//
+//        Assert.assertEquals(
+//                tuples, filter.filter(
+//                        tuples, OperationScope.ENTRY, null, null, null,
+//                        null, null, null, null, null, null, null ) );
+//    }
+    
+}

Propchange: directory/apacheds/trunk/core/src/test/org/apache/ldap/server/authz/support/MaxValueCountFilterTest.java
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision