Author: thomasm
Date: Thu Mar 13 13:05:15 2014
New Revision: 1577148
URL: http://svn.apache.org/r1577148
Log:
OAK-333 1000 byte path limit in MongoMK (test case)
Added:
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LongPathTest.java
Added:
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LongPathTest.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LongPathTest.java?rev=1577148&view=auto
==============================================================================
---
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LongPathTest.java
(added)
+++
jackrabbit/oak/trunk/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/LongPathTest.java
Thu Mar 13 13:05:15 2014
@@ -0,0 +1,60 @@
+/*
+ * 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.jcr;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.ArrayList;
+
+import javax.jcr.Node;
+import javax.jcr.Session;
+
+import org.junit.Test;
+
+public class LongPathTest extends AbstractRepositoryTest {
+
+ public LongPathTest(NodeStoreFixture fixture) {
+ super(fixture);
+ }
+
+ @Test
+ public void testLongPath() throws Exception {
+ Session s = getAdminSession();
+
+ StringBuilder buff = new StringBuilder();
+ for (int i = 0; i < 10; i++) {
+ buff.append("0123456789");
+ }
+ String longName = "n" + buff.toString();
+ Node n = s.getRootNode();
+ ArrayList<String> paths = new ArrayList<String>();
+ for (int i = 0; i < 30; i++) {
+ n = n.addNode(longName + "_" + i);
+ paths.add(n.getPath());
+ }
+ s.save();
+
+ Session s2 = createAdminSession();
+ Node n2 = s2.getRootNode();
+ for (int i = 0; i < 30; i++) {
+ n2 = n2.getNode(longName + "_" + i);
+ assertEquals(paths.get(i), n2.getPath());
+ }
+ s2.logout();
+ }
+
+}
\ No newline at end of file