Package org.apache.jackrabbit.oak.plugins.mongomk.impl

Source Code of org.apache.jackrabbit.oak.plugins.mongomk.impl.MongoMKGetRevisionHistoryTest

/*
* 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.mongomk.impl;

import static org.junit.Assert.assertEquals;

import org.apache.jackrabbit.oak.plugins.mongomk.AbstractMongoConnectionTest;
import org.json.simple.JSONArray;
import org.junit.Ignore;
import org.junit.Test;

/**
* Tests for getRevisionHistory
*/
@Ignore("MongoMK does not implement getRevisionHistory()")
public class MongoMKGetRevisionHistoryTest extends AbstractMongoConnectionTest {

    @Test
    public void maxEntriesZero() throws Exception {
        mk.commit("/", "+\"a\" : {}", null, null);
        JSONArray array = parseJSONArray(mk.getRevisionHistory(0, 0, "/"));
        assertEquals(0, array.size());
    }

    @Test
    public void maxEntriesLimitless() throws Exception {
        int count = 10;
        for (int i = 0; i < count; i++) {
            mk.commit("/", "+\"a" + i + "\" : {}", null, null);
        }
        JSONArray array = parseJSONArray(mk.getRevisionHistory(0, -1, "/"));
        assertEquals(count + 1, array.size());
    }

    @Test
    public void maxEntriesLimited() throws Exception {
        int count = 10;
        int limit = 4;

        for (int i = 0; i < count; i++) {
            mk.commit("/", "+\"a" + i + "\" : {}", null, null);
        }
        JSONArray array = parseJSONArray(mk.getRevisionHistory(0, limit, "/"));
        assertEquals(limit, array.size());
    }

    @Test
    public void path() throws Exception {
        int count1 = 5;
        for (int i = 0; i < count1; i++) {
            mk.commit("/", "+\"a" + i + "\" : {}", null, null);
        }
        JSONArray array = parseJSONArray(mk.getRevisionHistory(0, -1, "/"));
        assertEquals(count1 + 1, array.size());


        int count2 = 5;
        for (int i = 0; i < count2; i++) {
            mk.commit("/a1", "+\"b" + i + "\" : {}", null, null);
        }
        array = parseJSONArray(mk.getRevisionHistory(0, -1, "/"));
        assertEquals(count1 + 1 + count2, array.size());

        array = parseJSONArray(mk.getRevisionHistory(0, -1, "/a1"));
        assertEquals(count2 + 1, array.size());
    }

    @Test
    public void since() throws Exception {
        // To make sure there's a little delay since the initial commit.
        Thread.sleep(100);
        long since1 = System.currentTimeMillis();
        int count1 = 6;
        for (int i = 0; i < count1; i++) {
            mk.commit("/", "+\"a" + i + "\" : {}", null, null);
        }
        JSONArray array = parseJSONArray(mk.getRevisionHistory(since1, -1, "/"));
        assertEquals(count1, array.size());

        Thread.sleep(100);

        long since2 = System.currentTimeMillis();
        int count2 = 4;
        for (int i = 0; i < count2; i++) {
            mk.commit("/", "+\"b" + i + "\" : {}", null, null);
        }
        array = parseJSONArray(mk.getRevisionHistory(since2, -1, "/"));
        assertEquals(count2, array.size());

        array = parseJSONArray(mk.getRevisionHistory(since1, -1, "/"));
        assertEquals(count1 + count2, array.size());
    }
}
TOP

Related Classes of org.apache.jackrabbit.oak.plugins.mongomk.impl.MongoMKGetRevisionHistoryTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.