Package org.apache.jackrabbit.mongomk

Source Code of org.apache.jackrabbit.mongomk.MongoMKGetNodesTest

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

import static org.junit.Assert.fail;

import org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario;
import org.json.simple.JSONObject;
import org.junit.Ignore;
import org.junit.Test;

/**
* Tests for getNodes().
*/
public class MongoMKGetNodesTest extends BaseMongoMKTest {

    @Test
    public void nonExistingRevision() throws Exception {
        try {
            mk.getNodes("/", "123", 1, 0, -1, null);
            fail("Exception expected");
        } catch (Exception expected) {
            // expected
        }
    }

    @Test
    public void invalidRevision() throws Exception {
        try {
            mk.getNodes("/", "invalid", 1, 0, -1, null);
            fail("Exception expected");
        } catch (Exception expected) {
            // expected
        }
    }

    @Test
    public void afterDelete() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        scenario.create();

        JSONObject root = parseJSONObject(mk.getNodes("/", null, 0, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 1L);

        JSONObject a = parseJSONObject(mk.getNodes("/a", null, 0, 0, -1, null));
        assertPropertyValue(a, ":childNodeCount", 2L);

        scenario.deleteA();
        root = parseJSONObject(mk.getNodes("/", null, 0, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 0L);
    }

    @Test
    @Ignore   
    public void depthNegative() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        scenario.create();

        JSONObject root = parseJSONObject(mk.getNodes("/", null, -1, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 1L);
    }

    @Test
    public void depthZero() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        scenario.create();

        JSONObject root = parseJSONObject(mk.getNodes("/", null, 0, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 1L);

        JSONObject a = resolveObjectValue(root, "a");
        assertPropertyNotExists(a, "int");
    }

    @Test
    @Ignore   
    public void depthOne() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        scenario.create();

        JSONObject root = parseJSONObject(mk.getNodes("/", null, 1, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 1L);

        JSONObject a = resolveObjectValue(root, "a");
        assertPropertyValue(a, ":childNodeCount", 2L);
        assertPropertyValue(a, "int", 1L);

        JSONObject b = resolveObjectValue(a, "b");
        assertPropertyNotExists(b, "string");

        JSONObject c = resolveObjectValue(a, "c");
        assertPropertyNotExists(c, "bool");
    }

    @Test
    @Ignore   
    public void depthLimitless() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        scenario.create();

        JSONObject root = parseJSONObject(mk.getNodes("/", null, -1, 0, -1, null));
        assertPropertyValue(root, ":childNodeCount", 1L);

        JSONObject a = resolveObjectValue(root, "a");
        assertPropertyValue(a, ":childNodeCount", 2L);
        assertPropertyValue(a, "int", 1L);

        JSONObject b = resolveObjectValue(a, "b");
        assertPropertyValue(b, "string", "foo");

        JSONObject c = resolveObjectValue(a, "c");
        assertPropertyValue(c, "bool", true);
    }
}
TOP

Related Classes of org.apache.jackrabbit.mongomk.MongoMKGetNodesTest

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.