You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2006/07/19 22:13:46 UTC

svn commit: r423585 - in /jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value: ./ BinaryValueTest.java TestAll.java

Author: jukka
Date: Wed Jul 19 13:13:45 2006
New Revision: 423585

URL: http://svn.apache.org/viewvc?rev=423585&view=rev
Log:
JCR-320: Test case for binary value equality.

Added:
    jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/
    jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java   (with props)
    jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java   (with props)

Added: jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java?rev=423585&view=auto
==============================================================================
--- jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java (added)
+++ jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java Wed Jul 19 13:13:45 2006
@@ -0,0 +1,47 @@
+/*
+ * 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.value;
+
+import java.io.ByteArrayInputStream;
+
+import junit.framework.TestCase;
+
+/**
+ * Test cases for binary values.
+ */
+public class BinaryValueTest extends TestCase {
+
+    private static final byte[] DATA = "abc".getBytes();
+
+    public void testBinaryValueEquals() throws Exception {
+        assertFalse(new BinaryValue(DATA).equals(null));
+        assertFalse(new BinaryValue(DATA).equals(new Object()));
+
+        if (Boolean.getBoolean("JCR-320")) {
+            assertTrue(new BinaryValue(DATA).equals(new BinaryValue(DATA)));
+            assertTrue(new BinaryValue(DATA).equals(
+                    new BinaryValue(new ByteArrayInputStream(DATA))));
+            assertTrue(new BinaryValue(new ByteArrayInputStream(DATA)).equals(
+                    new BinaryValue(DATA)));
+            assertTrue(new BinaryValue(DATA).equals(
+                    new BinaryValue(new String(DATA))));
+            assertTrue(new BinaryValue(new String(DATA)).equals(
+                    new BinaryValue(DATA)));
+        }
+    }
+
+}

Propchange: jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/BinaryValueTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java?rev=423585&view=auto
==============================================================================
--- jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java (added)
+++ jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java Wed Jul 19 13:13:45 2006
@@ -0,0 +1,41 @@
+/*
+ * 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.value;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ * Test cases value handling.
+ */
+public class TestAll extends TestCase {
+
+    /**
+     * Returns a <code>Test</code> suite that executes all tests inside this
+     * package.
+     *
+     * @return a <code>Test</code> suite that executes all tests inside this
+     *         package.
+     */
+    public static Test suite() {
+        TestSuite suite = new TestSuite("Value handling");
+        suite.addTestSuite(BinaryValueTest.class);
+        return suite;
+    }
+
+}

Propchange: jackrabbit/trunk/jackrabbit/src/test/java/org/apache/jackrabbit/value/TestAll.java
------------------------------------------------------------------------------
    svn:eol-style = native