Author: mreutegg
Date: Mon Jun 19 12:35:54 2017
New Revision: 1799199

URL: http://svn.apache.org/viewvc?rev=1799199&view=rev
Log:
OAK-6368: Builder options not picked up after MongoDB is set

Add ignored test

Added:
    
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java
   (with props)

Added: 
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java?rev=1799199&view=auto
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java
 (added)
+++ 
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java
 Mon Jun 19 12:35:54 2017
@@ -0,0 +1,65 @@
+/*
+ * 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.plugins.document;
+
+import com.google.common.collect.Iterables;
+import com.mongodb.DB;
+
+import org.apache.jackrabbit.oak.cache.CacheStats;
+import org.junit.Ignore;
+import org.junit.Test;
+
+import static 
org.apache.jackrabbit.oak.plugins.document.DocumentMK.Builder.DEFAULT_CHILDREN_CACHE_PERCENTAGE;
+import static 
org.apache.jackrabbit.oak.plugins.document.DocumentMK.Builder.DEFAULT_DIFF_CACHE_PERCENTAGE;
+import static 
org.apache.jackrabbit.oak.plugins.document.DocumentMK.Builder.DEFAULT_NODE_CACHE_PERCENTAGE;
+import static 
org.apache.jackrabbit.oak.plugins.document.DocumentMK.Builder.DEFAULT_PREV_DOC_CACHE_PERCENTAGE;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+@Ignore
+public class DocumentMKBuilderTest extends AbstractMongoConnectionTest {
+
+    private static final long CACHE_SIZE = 8 * 1024 * 1024;
+    private static final long PREV_DOC_CACHE_SIZE = 
cacheSize(DEFAULT_PREV_DOC_CACHE_PERCENTAGE);
+    private static final long DOC_CACHE_SIZE = CACHE_SIZE -
+            cacheSize(DEFAULT_CHILDREN_CACHE_PERCENTAGE) -
+            cacheSize(DEFAULT_DIFF_CACHE_PERCENTAGE) -
+            cacheSize(DEFAULT_NODE_CACHE_PERCENTAGE) -
+            cacheSize(DEFAULT_PREV_DOC_CACHE_PERCENTAGE);
+
+    @Override
+    protected DocumentMK.Builder newBuilder(DB db) throws Exception {
+        return super.newBuilder(db).memoryCacheSize(CACHE_SIZE);
+    }
+
+    @Test
+    public void lazyInit() throws Exception {
+        Iterable<CacheStats> cacheStats = 
mk.getDocumentStore().getCacheStats();
+        assertNotNull(cacheStats);
+        assertEquals(2, Iterables.size(cacheStats));
+        CacheStats docCacheStats = Iterables.get(cacheStats, 0);
+        CacheStats prevDocCacheStats = Iterables.get(cacheStats, 1);
+        assertEquals("Document-Documents", docCacheStats.getName());
+        assertEquals("Document-PrevDocuments", prevDocCacheStats.getName());
+        assertEquals(DOC_CACHE_SIZE, docCacheStats.getMaxTotalWeight());
+        assertEquals(PREV_DOC_CACHE_SIZE, 
prevDocCacheStats.getMaxTotalWeight());
+    }
+
+    private static long cacheSize(int percentage) {
+        return CACHE_SIZE * percentage / 100;
+    }
+}

Propchange: 
jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/document/DocumentMKBuilderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to