You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by an...@apache.org on 2013/04/12 15:29:32 UTC

svn commit: r1467264 - /jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java

Author: angela
Date: Fri Apr 12 13:29:32 2013
New Revision: 1467264

URL: http://svn.apache.org/r1467264
Log:
OAK-753: add tests for hidden tree

Added:
    jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java

Added: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java?rev=1467264&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java (added)
+++ jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/HiddenTreeTest.java Fri Apr 12 13:29:32 2013
@@ -0,0 +1,72 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.jackrabbit.oak.security.authorization.evaluation;
+
+import org.apache.jackrabbit.oak.api.Tree;
+import org.junit.Before;
+import org.junit.Ignore;
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+
+/**
+ * HiddenTreeTest... TODO
+ */
+public class HiddenTreeTest extends AbstractOakCoreTest {
+
+    private String hiddenParentPath = "/oak:index/nodetype";
+    private String hiddenName = ":index";
+
+    private Tree parent;
+
+    @Override
+    @Before
+    public void before() throws Exception {
+        super.before();
+
+        parent = root.getTree(hiddenParentPath);
+        assertNotNull(parent);
+    }
+
+    @Ignore("OAK-753") // FIXME
+    @Test
+    public void testHasHiddenTree() {
+        assertFalse(parent.hasChild(hiddenName));
+    }
+
+    @Ignore("OAK-753") // FIXME
+    @Test
+    public void testGetHiddenTree() {
+        assertNull(parent.getChild(hiddenName));
+    }
+
+    @Ignore("OAK-753") // FIXME
+    @Test
+    public void testGetHiddenChildren() {
+        Iterable children = parent.getChildren();
+        assertFalse(children.iterator().hasNext());
+    }
+
+    @Ignore("OAK-753") // FIXME
+    @Test
+    public void testGetHiddenChildrenCount() {
+        assertEquals(0, parent.getChildrenCount());
+    }
+}
\ No newline at end of file