org.apache.jackrabbit.test.api.PropertyTest Maven / Gradle / Ivy
/*
* 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.test.api;
import org.apache.jackrabbit.test.AbstractJCRTest;
import javax.jcr.RepositoryException;
import javax.jcr.Node;
import javax.jcr.Property;
import javax.jcr.Session;
/**
* PropertyTest
contains all test cases for the
* javax.jcr.Property
that are related to writing, modifying or
* deleting properties (level 2 of the specification).
*
* - {@code nodetype} name of a node type. The node at
testroot
* must allow child nodes with this node.
* - {@code nodename1} name of a child node at
testroot
.
* - {@code propertyname1} name of a string property in
*
nodetype
.
*
*/
public class PropertyTest extends AbstractJCRTest {
/**
* Tests if Item.isSame(Item otherItem)
will return true when
* two Property
objects representing the same actual repository
* item have been retrieved through two different sessions and one has been
* modified.
*
* @since JCR 2.0
*/
public void testIsSameMustNotCompareStates()
throws RepositoryException {
// create a node, add a property and save it
Node testNode1 = testRootNode.addNode(nodeName1, testNodeType);
Property prop1 = testNode1.setProperty(propertyName1, "value1");
testRootNode.getSession().save();
// accuire the same property through a different session
Session session = getHelper().getSuperuserSession();
try {
Property prop2 = session.getProperty(prop1.getPath());
// change the value of prop2
prop2.setValue("value2");
assertTrue("Two references of same property must return true for " +
"property1.isSame(property2)", prop1.isSame(prop2));
} finally {
session.logout();
}
}
}