/* * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.api.writing; import org.exoplatform.services.jcr.JcrAPIBaseTest; import org.exoplatform.services.jcr.impl.core.SessionImpl; import java.io.ByteArrayInputStream; import java.util.GregorianCalendar; import javax.jcr.Node; import javax.jcr.Property; import javax.jcr.RepositoryException; import javax.jcr.Value; /** * Created by The eXo Platform SAS. * * @author <a href="mailto:geaz@users.sourceforge.net">Gennady Azarenkov</a> * @version $Id: TestValue.java 11907 2008-03-13 15:36:21Z ksm $ */ public class TestValue extends JcrAPIBaseTest { public void initRepository() throws RepositoryException { Node root = session.getRootNode(); Node propDef = root.addNode("propertyDefNode", "nt:unstructured"); // Unknown Property Type. Should set something! propDef.setProperty("jcr:defaultValue", "testString"); root.addNode("childNodeDefNode", "nt:unstructured"); session.save(); } public void tearDown() throws Exception { session = (SessionImpl)repository.login(credentials, WORKSPACE); Node root = session.getRootNode(); root.getNode("propertyDefNode").remove(); root.getNode("childNodeDefNode").remove(); session.save(); super.tearDown(); } public void testSetValue() throws RepositoryException { Node root = session.getRootNode(); Property property = root.getNode("propertyDefNode").getProperty("jcr:defaultValue"); property.setValue("haha"); property.setValue("default"); property.setValue(new ByteArrayInputStream(new String("default").getBytes())); property.setValue(true); property.setValue(new GregorianCalendar()); property.setValue(20D); property.setValue(20L); assertFalse("Property '" + property.getPath() + "' must be single-valued", property.getDefinition().isMultiple()); } public void testSetMuliValue() throws RepositoryException { Node root = session.getRootNode(); Node propertyDefNode = root.getNode("propertyDefNode"); Property singleValuedProperty = propertyDefNode.getProperty("jcr:defaultValue"); // remove initially created property singleValuedProperty.setValue((String)null); propertyDefNode.save(); Property multiValuedProperty = propertyDefNode.setProperty("jcr:defaultValue", new String[]{null, null}); Value[] values = {session.getValueFactory().createValue("not"), session.getValueFactory().createValue("in")}; multiValuedProperty.setValue(values); assertTrue("Property '" + multiValuedProperty.getPath() + "' must be multi-valued", multiValuedProperty .getDefinition().isMultiple()); } }