You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by di...@apache.org on 2010/07/16 19:29:08 UTC

svn commit: r964865 - /openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java

Author: dianner
Date: Fri Jul 16 17:29:08 2010
New Revision: 964865

URL: http://svn.apache.org/viewvc?rev=964865&view=rev
Log:
OPENJPA-1722 Test case for DistinctResultList serialization fix

Added:
    openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java   (with props)

Added: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java?rev=964865&view=auto
==============================================================================
--- openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java (added)
+++ openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java Fri Jul 16 17:29:08 2010
@@ -0,0 +1,60 @@
+/*
+ * 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.openjpa.persistence.query.results;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.apache.openjpa.lib.rop.ListResultList;
+import org.apache.openjpa.lib.rop.ResultList;
+
+import org.apache.openjpa.kernel.DistinctResultList;
+import org.apache.openjpa.persistence.EntityManagerImpl;
+import org.apache.openjpa.persistence.PersistenceExceptions;
+import org.apache.openjpa.persistence.test.SQLListenerTestCase;
+import org.apache.openjpa.util.RuntimeExceptionTranslator;
+
+/**
+ * Test that the DistinctResultList serializes correctly and without error.
+ *
+ * @author Dianne Richards
+ * @since 2.1.0
+ */
+public class TestListResultSerialization extends SQLListenerTestCase {
+    public void setUp() throws Exception {
+        super.setUp();
+        assertNotNull(emf);
+    }
+    
+    public void testRoundtrip() {
+        List<String> list = new ArrayList<String>();
+        list.add("xxx");
+        list.add("yyy");
+        ResultList resultList = new ListResultList(list);
+        EntityManagerImpl em = (EntityManagerImpl)emf.createEntityManager();
+        em.close();
+        RuntimeExceptionTranslator trans = PersistenceExceptions.getRollbackTranslator(em);
+        DistinctResultList distinctResultList = new DistinctResultList(resultList, trans);
+        try {
+            roundtrip(distinctResultList);
+        } catch (Exception e) {
+            e.printStackTrace();
+            fail("unexpected exception - see stack trace in output");
+        }
+    }
+}

Propchange: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/results/TestListResultSerialization.java
------------------------------------------------------------------------------
    svn:eol-style = native