Return-Path: X-Original-To: apmail-jackrabbit-dev-archive@www.apache.org Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8D716749B for ; Thu, 6 Oct 2011 21:05:54 +0000 (UTC) Received: (qmail 96829 invoked by uid 500); 6 Oct 2011 21:05:54 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 96786 invoked by uid 500); 6 Oct 2011 21:05:54 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 96779 invoked by uid 99); 6 Oct 2011 21:05:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2011 21:05:54 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2011 21:05:51 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 195C72ADBB8 for ; Thu, 6 Oct 2011 21:05:30 +0000 (UTC) Date: Thu, 6 Oct 2011 21:05:30 +0000 (UTC) From: "Alex Parvulescu (Updated) (JIRA)" To: dev@jackrabbit.apache.org Message-ID: <644789032.5215.1317935130105.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1275730773.21665.1315915149823.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (JCR-3069) add optional consistency checks to test suite MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/JCR-3069?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Parvulescu updated JCR-3069: --------------------------------- Attachment: JCR-3069-extra-test.patch patch to the patch :) added a unit test not sure about the location, it can change. I moved the consistency check from ConcurrentImportTest to TestHelper. I liked it because it only needed a session, as opposed to the other one that was a bit more complicated. This would allow us to hook in a call to the check(session) after each test. > add optional consistency checks to test suite > --------------------------------------------- > > Key: JCR-3069 > URL: https://issues.apache.org/jira/browse/JCR-3069 > Project: Jackrabbit Content Repository > Issue Type: Wish > Components: jackrabbit-core > Reporter: Julian Reschke > Assignee: Julian Reschke > Attachments: JCR-3069-extra-test.patch, JCR-3069.patch, JCR-3069.patch, JCR-3069.patch > > > We know that certain sequences of calls can cause the persistent state to become inconsistent, such as by producing orphaned nodes. > This usually does not manifest itself in tests failing. However, it can mean (silent) data loss, and become visible at a different point of time in the form of nodes that can be discovered using a query, but which can not compute their path. > Checking the persistence layer's consistency is implementation specific. In Jackrabbit, there is a consistency check call on the PersistenceManager that we could use. It just logs a results and doesn't provide a checkable return value, but it would be a start. > Proposed helper code (thx to Marcel for the proposal): > /** > * Runs a consistency check on the given workspace. > * > * @param name the name of the workspace to perform the consistency check. > * @param repo the repository instance. > * @throws RepositoryException if an error occurs while getting the > * workspace with the given name. > */ > public static void checkConsistency(String name, RepositoryImpl repo) > throws RepositoryException { > RepositoryImpl.WorkspaceInfo wspInfo = repo.getWorkspaceInfo(name); > wspInfo.getPersistenceManager().checkConsistency(null, true, false); > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira