Examples of deleteA()


Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

        String rev1 = scenario.create();

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

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

Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

        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
View Full Code Here

Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

        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

Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

        scenario.create();

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

        scenario.deleteA();

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

Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

        scenario.create();

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

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

    @Test
View Full Code Here

Examples of org.apache.jackrabbit.mongomk.impl.SimpleNodeScenario.deleteA()

    @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

Examples of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario.deleteA()

        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
View Full Code Here

Examples of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario.deleteA()

        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
View Full Code Here

Examples of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario.deleteA()

        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

Examples of org.apache.jackrabbit.oak.plugins.document.impl.SimpleNodeScenario.deleteA()

        scenario.create();

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

        scenario.deleteA();

        exists = mk.nodeExists("/a", null);
        assertFalse(exists);
    }
View Full Code Here
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.