You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Stefan Guggisberg (JIRA)" <ji...@apache.org> on 2007/08/03 16:01:53 UTC

[jira] Reopened: (JCR-1034) Unable to save session after saving a renamed node

     [ https://issues.apache.org/jira/browse/JCR-1034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stefan Guggisberg reopened JCR-1034:
------------------------------------


reopening, test cases fail legitimately

> Unable to save session after saving a renamed node
> --------------------------------------------------
>
>                 Key: JCR-1034
>                 URL: https://issues.apache.org/jira/browse/JCR-1034
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: core
>            Reporter: Edgar Poce
>            Assignee: Stefan Guggisberg
>            Priority: Minor
>
> 		TransientRepository repo = new TransientRepository(
> 				"applications/test/repository.xml", "applications/test");
> 		Session s = repo.login(new SimpleCredentials("test", "".toCharArray()));
> 		if (s.getRootNode().hasNode("parent")) {
> 			s.getRootNode().getNode("parent").remove();
> 			s.save();
> 		}
> 		// create parent node
> 		Node parent = s.getRootNode().addNode("parent");
> 		
> 		// create node to rename
> 		parent.addNode("newnode");
> 		s.save();
> 		// rename node
> 		s.move("/parent/newnode", "/parent/renamedNewNode");
> 		// save renamed node
> 		s.getRootNode().getNode("parent/renamedNewNode").save();
> 		// try to save session --> FAILS
> 		s.save();
> 		s.logout();

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.