Author: angela
Date: Fri Apr 12 13:11:09 2013
New Revision: 1467257
URL: http://svn.apache.org/r1467257
Log:
OAK-753: added test for hidden property TreeImpl#OAK_CHILD_ORDER
Added:
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/ChildOrderPropertyTest.java
Added:
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/ChildOrderPropertyTest.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/ChildOrderPropertyTest.java?rev=1467257&view=auto
==============================================================================
---
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/ChildOrderPropertyTest.java
(added)
+++
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/authorization/evaluation/ChildOrderPropertyTest.java
Fri Apr 12 13:11:09 2013
@@ -0,0 +1,86 @@
+/*
+ * 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 java.util.Set;
+
+import com.google.common.collect.Sets;
+import org.apache.jackrabbit.JcrConstants;
+import org.apache.jackrabbit.oak.api.PropertyState;
+import org.apache.jackrabbit.oak.api.Tree;
+import org.apache.jackrabbit.oak.core.TreeImpl;
+import org.junit.Before;
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * Test for the hidden {@link TreeImpl#OAK_CHILD_ORDER} property
+ *
+ * TODO: review if this shouldn't be moved to o.a.jackrabbit.oak.core tests.
+ */
+public class ChildOrderPropertyTest extends AbstractOakCoreTest {
+
+ @Override
+ @Before
+ public void before() throws Exception {
+ super.before();
+
+ Tree a = root.getTree("/a");
+ a.setOrderableChildren(true);
+ root.commit();
+ }
+
+ @Test
+ public void testHasProperty() {
+ Tree a = root.getTree("/a");
+ assertFalse(a.hasProperty(TreeImpl.OAK_CHILD_ORDER));
+ }
+
+ @Test
+ public void testGetProperty() {
+ Tree a = root.getTree("/a");
+ assertNull(a.getProperty(TreeImpl.OAK_CHILD_ORDER));
+ }
+
+ @Test
+ public void testGetProperties() {
+ Set<String> propertyNames =
Sets.newHashSet(JcrConstants.JCR_PRIMARYTYPE, "aProp");
+
+ Tree a = root.getTree("/a");
+ for (PropertyState prop : a.getProperties()) {
+ assertTrue(propertyNames.remove(prop.getName()));
+ }
+ assertTrue(propertyNames.isEmpty());
+ }
+
+ @Test
+ public void testGetPropertyCount() {
+ Tree a = root.getTree("/a");
+ assertEquals(2, a.getPropertyCount());
+ }
+
+ @Test
+ public void testGetPropertyStatus() {
+ Tree a = root.getTree("/a");
+ assertNull(a.getPropertyStatus(TreeImpl.OAK_CHILD_ORDER));
+ }
+
+}
\ No newline at end of file