blob: 665b5a1a1f6e7ff40cdda8aeb4f66a90d4ce241d [file] [log] [blame]
/*
* 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 java.util.Collections;
import java.util.List;
import java.util.Map;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.apache.jackrabbit.oak.plugins.document.memory.MemoryDocumentStore;
import org.apache.jackrabbit.oak.plugins.document.mongo.MongoDocumentStore;
import org.apache.jackrabbit.oak.plugins.document.rdb.RDBDocumentStore;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import static java.util.Collections.singletonList;
import static org.apache.jackrabbit.oak.plugins.document.NodeDocument.MODIFIED_IN_SECS;
import static org.apache.jackrabbit.oak.plugins.document.NodeDocument.getModifiedInSecs;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeFalse;
import static org.mockito.ArgumentMatchers.anyBoolean;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.ArgumentMatchers.anyLong;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
@SuppressWarnings("Duplicates")
public class DocumentStoreStatsIT extends AbstractDocumentStoreTest {
private DocumentStoreStatsCollector stats = mock(DocumentStoreStatsCollector.class);
@Rule
public TestName testName = new TestName();
public DocumentStoreStatsIT(DocumentStoreFixture dsf) {
super(dsf);
configureStatsCollector(stats);
}
@Before
public void checkSupportedStores() throws Exception{
assumeFalse(ds instanceof MemoryDocumentStore);
}
@Test
public void create() throws Exception{
String id = testName.getMethodName();
UpdateOp up = new UpdateOp(id, true);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
verify(stats).doneCreate(anyLong(), eq(Collection.NODES), eq(singletonList(id)), eq(true));
}
@Test
public void findCached_Uncached() throws Exception{
String id = testName.getMethodName();
UpdateOp up = new UpdateOp(id, true);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
ds.find(Collection.NODES, id);
verify(stats).doneFindCached(eq(Collection.NODES), eq(id));
ds.invalidateCache();
ds.find(Collection.NODES, id);
verify(stats).doneFindUncached(anyLong(), eq(Collection.NODES), eq(id), eq(true), anyBoolean());
}
@Test
public void findMissing() throws Exception {
String id = testName.getMethodName();
ds.find(Collection.NODES, id);
verify(stats).doneFindUncached(anyLong(), eq(Collection.NODES), eq(id), eq(false), anyBoolean());
}
@Test
public void query() throws Exception{
// create ten documents
String base = testName.getMethodName();
for (int i = 0; i < 10; i++) {
String id = base + i;
UpdateOp up = new UpdateOp(id, true);
boolean success = super.ds.create(Collection.NODES, Collections.singletonList(up));
assertTrue("document with " + id + " not created", success);
removeMe.add(id);
}
ds.query(Collection.NODES, base, base + "A", 5);
verify(stats).doneQuery(anyLong(), eq(Collection.NODES), eq(base), eq(base + "A"),
eq(false), //indexedProperty
eq(5) , // resultSize
anyLong(), //lockTime
anyBoolean() //isSlaveOk
);
}
@Test
public void findAndModify() throws Exception{
String id = testName.getMethodName();
UpdateOp up = new UpdateOp(id, true);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
DocumentStoreStatsCollector coll = mock(DocumentStoreStatsCollector.class);
configureStatsCollector(coll);
up = new UpdateOp(id, true);
up.max("_modified", 122L);
ds.findAndUpdate(Collection.NODES, up);
verify(coll).doneFindAndModify(anyLong(), eq(Collection.NODES), eq(id), eq(false), eq(true), anyInt());
}
@Test
public void removeSingle() throws Exception {
String id = testName.getMethodName();
UpdateOp up = new UpdateOp(id, true);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
DocumentStoreStatsCollector coll = mock(DocumentStoreStatsCollector.class);
configureStatsCollector(coll);
ds.remove(Collection.NODES, id);
verify(coll).doneRemove(anyLong(), eq(Collection.NODES), eq(1));
}
@Test
public void removeMultiple() throws Exception {
List<String> ids = Lists.newArrayList();
for (int i = 0; i < 10; i++) {
String id = testName.getMethodName() + "-" + i;
ids.add(id);
UpdateOp up = new UpdateOp(id, true);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
}
DocumentStoreStatsCollector coll = mock(DocumentStoreStatsCollector.class);
configureStatsCollector(coll);
ds.remove(Collection.NODES, ids);
verify(coll).doneRemove(anyLong(), eq(Collection.NODES), eq(10));
}
@Test
public void removeConditional() throws Exception {
Revision r = Revision.newRevision(1);
long modified = getModifiedInSecs(r.getTimestamp());
Map<String, Long> ids = Maps.newHashMap();
for (int i = 0; i < 10; i++) {
String id = testName.getMethodName() + "-" + i;
ids.put(id, modified);
UpdateOp up = new UpdateOp(id, true);
NodeDocument.setModified(up, r);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
}
DocumentStoreStatsCollector coll = mock(DocumentStoreStatsCollector.class);
configureStatsCollector(coll);
ds.remove(Collection.NODES, ids);
verify(coll).doneRemove(anyLong(), eq(Collection.NODES), eq(10));
}
@Test
public void removeIndexProperty() throws Exception {
Revision r = new Revision(123456, 0, 1);
long mod = NodeDocument.getModifiedInSecs(r.getTimestamp());
for (int i = 0; i < 10; i++) {
String id = testName.getMethodName() + "-" + i;
UpdateOp up = new UpdateOp(id, true);
NodeDocument.setModified(up, r);
ds.create(Collection.NODES, singletonList(up));
removeMe.add(id);
}
DocumentStoreStatsCollector coll = mock(DocumentStoreStatsCollector.class);
configureStatsCollector(coll);
ds.remove(Collection.NODES, MODIFIED_IN_SECS, mod - 1, mod + 1);
verify(coll).doneRemove(anyLong(), eq(Collection.NODES), eq(10));
}
private void configureStatsCollector(DocumentStoreStatsCollector stats) {
if (ds instanceof MongoDocumentStore){
((MongoDocumentStore) ds).setStatsCollector(stats);
}
if (ds instanceof RDBDocumentStore){
((RDBDocumentStore) ds).setStatsCollector(stats);
}
}
}