Return-Path: Delivered-To: apmail-openjpa-commits-archive@www.apache.org Received: (qmail 78675 invoked from network); 11 Jul 2007 20:37:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jul 2007 20:37:17 -0000 Received: (qmail 61900 invoked by uid 500); 11 Jul 2007 20:37:20 -0000 Delivered-To: apmail-openjpa-commits-archive@openjpa.apache.org Received: (qmail 61883 invoked by uid 500); 11 Jul 2007 20:37:19 -0000 Mailing-List: contact commits-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list commits@openjpa.apache.org Received: (qmail 61874 invoked by uid 99); 11 Jul 2007 20:37:19 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 13:37:19 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 13:37:16 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 51EE71A981A; Wed, 11 Jul 2007 13:36:56 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r555389 - /openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java Date: Wed, 11 Jul 2007 20:36:56 -0000 To: commits@openjpa.apache.org From: pcl@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070711203656.51EE71A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pcl Date: Wed Jul 11 13:36:55 2007 New Revision: 555389 URL: http://svn.apache.org/viewvc?view=rev&rev=555389 Log: New test case. It works already, so this is mostly just additional coverage. Added: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java Added: openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java?view=auto&rev=555389 ============================================================================== --- openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java (added) +++ openjpa/trunk/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/query/TestEscapedSingleQuotesInJPQL.java Wed Jul 11 13:36:55 2007 @@ -0,0 +1,55 @@ +/* + * 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; + +import java.util.Collection; +import javax.persistence.EntityManager; + +import org.apache.openjpa.persistence.test.SingleEMFTestCase; +import org.apache.openjpa.persistence.simple.AllFieldTypes; +import org.apache.openjpa.persistence.OpenJPAEntityManager; +import org.apache.openjpa.persistence.OpenJPAQuery; + +public class TestEscapedSingleQuotesInJPQL + extends SingleEMFTestCase { + + public void setUp() { + setUp(AllFieldTypes.class, CLEAR_TABLES); + + AllFieldTypes aft = new AllFieldTypes(); + aft.setStringField("foo'bar"); + EntityManager em = emf.createEntityManager(); + em.getTransaction().begin(); + em.persist(aft); + em.getTransaction().commit(); + em.close(); + } + + public void testEscapedSingleQuotesInJPQL() { + OpenJPAEntityManager em = emf.createEntityManager(); + OpenJPAQuery q = em.createQuery("select count(o) " + + "from AllFieldTypes o where o.stringField = 'foo''bar'"); + assertEquals(1, ((Number) q.getSingleResult()).longValue()); + + Collection all = em.createQuery("select o from AllFieldTypes o") + .getResultList(); + q.setCandidateCollection(all); + assertEquals(1, ((Number) q.getSingleResult()).longValue()); + } +}