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

Examples of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario


*/
public class DocumentMKNodeExistsTest extends BaseDocumentMKTest {

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

        boolean exists = mk.nodeExists("/a", revisionId);
        assertTrue(exists);

        exists = mk.nodeExists("/a/b", revisionId);
        assertTrue(exists);

        revisionId = scenario.deleteA();

        exists = mk.nodeExists("/a", revisionId);
        assertFalse(exists);

        exists = mk.nodeExists("/a/b", revisionId);
View Full Code Here


        assertFalse(exists);
    }

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

        boolean exists = mk.nodeExists("/a", null);
        assertTrue(exists);

        scenario.deleteA();

        exists = mk.nodeExists("/a", null);
        assertFalse(exists);
    }
View Full Code Here

        assertFalse(exists);
    }

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

        try {
            mk.nodeExists("/a", "123456789");
            fail("Expected: Invalid revision id exception");
        } catch (Exception expected) {
View Full Code Here

        }
    }

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

        boolean exists = mk.nodeExists("/a/b", null);
        assertTrue(exists);

        scenario.deleteA();
        exists = mk.nodeExists("/a/b", null);
        assertFalse(exists);
    }
View Full Code Here

        assertTrue("The node a is not found in the head revision!", exists);
    }

    @Test
    public void existsInOldRevNotInNewRev() throws Exception {
        SimpleNodeScenario scenario = new SimpleNodeScenario(mk);
        String rev1 = scenario.create();
        String rev2 = scenario.deleteA();

        boolean exists = mk.nodeExists("/a", rev1);
        assertTrue(exists);

        exists = mk.nodeExists("/a", rev2);
View Full Code Here

        assertFalse(exists);
    }

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

        scenario.deleteB();
        boolean exists = mk.nodeExists("/a/b", null);
        assertFalse(exists);

        exists = mk.nodeExists("/a/c", null);
        assertTrue(exists);
View Full Code Here

*/
public class DocumentMKGetHeadRevisionTest extends BaseDocumentMKTest {

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

        String rev2 = mk.getHeadRevision();
        assertEquals(rev1, rev2);

        String rev3 = scenario.deleteA();
        assertFalse(rev3.equals(rev2));
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario

Copyright © 2018 www.massapicom. 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.