org.apache.jackrabbit.test.api
Class BinaryPropertyTest

java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.apache.jackrabbit.test.JUnitTest
              extended by org.apache.jackrabbit.test.AbstractJCRTest
                  extended by org.apache.jackrabbit.test.api.BinaryPropertyTest
All Implemented Interfaces:
junit.framework.Test

public class BinaryPropertyTest
extends AbstractJCRTest

Tests a binary property. If the workspace does not contain a node with a binary property a NotExecutableException is thrown.


Field Summary
protected  boolean multiple
          true if the property is multi valued
protected  Property prop
           
protected  Session session
          A read only session
protected static String UTF8
          String encoding in a stream
 
Fields inherited from class org.apache.jackrabbit.test.AbstractJCRTest
helper, isReadOnly, jcrBaseVersion, jcrCreated, jcrFrozenNode, jcrFrozenUuid, jcrlockIsDeep, jcrLockOwner, jcrMergeFailed, jcrMixinTypes, jcrPredecessors, jcrPrimaryType, jcrRootVersion, jcrSuccessors, jcrSystem, jcrUUID, jcrVersionHistory, mixLockable, mixReferenceable, mixVersionable, nodeName1, nodeName2, nodeName3, nodeName4, NS_JCR_URI, NS_MIX_URI, NS_NT_URI, NS_SV_URI, ntBase, ntFrozenNode, ntQuery, ntVersion, ntVersionHistory, ntVersionLabels, propertyName1, propertyName2, superuser, testNodeType, testNodeTypeNoChildren, testPath, testRoot, testRootNode, workspaceName
 
Fields inherited from class org.apache.jackrabbit.test.JUnitTest
log
 
Constructor Summary
BinaryPropertyTest()
           
 
Method Summary
protected  void cleanUp()
           
protected  Boolean getPropertyIsMultivalued()
          Returns "does not matter" (null).
protected  int getPropertyType()
          Returns PropertyType.BINARY.
protected  void setUp()
          Sets up the fixture for the tests.
protected  void tearDown()
          Releases the session aquired in setUp().
 void testAsReference()
          Tests the conversion from Binary type to Reference type.
 void testGetBoolean()
          Tests conversion from Binary type to Boolean type.
 void testGetDate()
          Tests conversion from Binary type to Date type.
 void testGetDouble()
          Tests conversion from Binary type to Double type.
 void testGetLength()
          Tests the Property.getLength() method.
 void testGetLengths()
          Tests the Property.getLengths() method.
 void testGetLong()
          Tests conversion from Binary type to Long type.
 void testGetType()
          Tests if Value.getType() returns the same as Property.getType() and also tests that prop.getDefinition().getRequiredType() returns the same type in case it is not of Undefined type.
 void testMultiValue()
          Tests the failure of calling Property.getStream() on a multivalue property.
 void testSameStream()
          Tests that when Value.getStream() is called a second time the same Stream object is returned.
 void testValue()
          Tests that Property.getStream() delivers the same as Value.getStream().
 
Methods inherited from class org.apache.jackrabbit.test.AbstractJCRTest
cleanUpTestRoot, createRandomString, ensureCanSetProperty, ensureCanSetProperty, ensureCanSetProperty, ensureMultipleWorkspacesSupported, getNonExistingWorkspaceName, getProperty, getSize, isSupported, needsMixin, run
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, runBare, runTest, setName, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

UTF8

protected static String UTF8
String encoding in a stream


session

protected Session session
A read only session


prop

protected Property prop

multiple

protected boolean multiple
true if the property is multi valued

Constructor Detail

BinaryPropertyTest

public BinaryPropertyTest()
Method Detail

getPropertyType

protected int getPropertyType()
Returns PropertyType.BINARY.

Returns:
PropertyType.BINARY.

getPropertyIsMultivalued

protected Boolean getPropertyIsMultivalued()
Returns "does not matter" (null).

Returns:
null.

testSameStream

public void testSameStream()
                    throws RepositoryException,
                           IOException
Tests that when Value.getStream() is called a second time the same Stream object is returned. Also tests that when a new Value object is requested also a new Stream object is returned by calling getStream() on the new Value object.

Throws:
RepositoryException
IOException

testMultiValue

public void testMultiValue()
                    throws RepositoryException,
                           IOException
Tests the failure of calling Property.getStream() on a multivalue property.

Throws:
RepositoryException
IOException

testValue

public void testValue()
               throws IOException,
                      RepositoryException
Tests that Property.getStream() delivers the same as Value.getStream(). We check this by reading each byte of the two streams and assuring that they are equal.

Throws:
IOException
RepositoryException

testGetBoolean

public void testGetBoolean()
                    throws RepositoryException
Tests conversion from Binary type to Boolean type. This is done via String conversion.

Throws:
RepositoryException

testGetDate

public void testGetDate()
                 throws RepositoryException
Tests conversion from Binary type to Date type. This is done via String conversion.

Throws:
RepositoryException

testGetDouble

public void testGetDouble()
                   throws RepositoryException
Tests conversion from Binary type to Double type. This is done via String conversion.

Throws:
RepositoryException

testGetLong

public void testGetLong()
                 throws RepositoryException
Tests conversion from Binary type to Long type. This is done via String conversion.

Throws:
RepositoryException

testGetType

public void testGetType()
                 throws RepositoryException
Tests if Value.getType() returns the same as Property.getType() and also tests that prop.getDefinition().getRequiredType() returns the same type in case it is not of Undefined type.

Throws:
RepositoryException

testAsReference

public void testAsReference()
                     throws RepositoryException,
                            NotExecutableException
Tests the conversion from Binary type to Reference type. This conversion passes through previous String conversion.

Throws:
RepositoryException
NotExecutableException

testGetLength

public void testGetLength()
                   throws RepositoryException
Tests the Property.getLength() method.

Throws:
RepositoryException

testGetLengths

public void testGetLengths()
                    throws RepositoryException
Tests the Property.getLengths() method. The test is successful, if either -1 is returned

Throws:
RepositoryException

setUp

protected void setUp()
              throws Exception
Sets up the fixture for the tests.

Overrides:
setUp in class AbstractJCRTest
Throws:
Exception

cleanUp

protected void cleanUp()
                throws Exception
Overrides:
cleanUp in class AbstractJCRTest
Throws:
Exception

tearDown

protected void tearDown()
                 throws Exception
Releases the session aquired in setUp().

Overrides:
tearDown in class AbstractJCRTest
Throws:
Exception


Copyright © 2004-2008 The Apache Software Foundation. All Rights Reserved.