blob: e3cf5151013e1d9bb30d576dc808869512bc0c48 [file] [log] [blame]
/*
* Copyright (c) 2014, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2014, 2018 IBM Corporation. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// 08/11/2014-2.5 Rick Curtis
// - 440594: Tolerate invalid NamedQuery at EntityManager creation.
package org.eclipse.persistence.testing.tests.jpa.advanced;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceException;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.persistence.exceptions.EclipseLinkException;
import org.eclipse.persistence.testing.framework.junit.JUnitTestCase;
public class InvalidNamedQueryTest extends JUnitTestCase {
public InvalidNamedQueryTest() {
}
public InvalidNamedQueryTest(String s) {
super(s);
}
public static Test suite() {
TestSuite suite = new TestSuite(InvalidNamedQueryTest.class);
return suite;
}
public void testInvalidNamedQuery() {
try {
EntityManager em = createEntityManager("invalid-named-query");
fail("Shouldn't have got here!");
} catch (PersistenceException re) {
// expected
} finally {
closeEntityManagerFactory();
}
}
/**
* When eclipselink.tolerate-invalid-jpql=true and an invalid NamedQuery exists, em creation should succeed.
*/
public void testEmCreateWithInvalidNamedQuery() {
EntityManager em = null;
try {
em = createEntityManager("invalid-named-query-tolerate");
assertNotNull(em);
} finally {
if (em != null) {
em.close();
}
closeEntityManagerFactory();
}
}
/**
* When eclipselink.validation-only=true, em creation should fail due to invalid NamedQuery.
*/
public void testEmCreateWithInvalidNamedQueryValidationOnly() {
EntityManager em = null;
try {
em = createEntityManager("invalid-named-query-validation-only");
assertNull(em);
}catch(PersistenceException pe){
// expected
} finally {
if (em != null) {
em.close();
}
closeEntityManagerFactory();
}
}
/**
* When eclipselink.tolerate-invalid-jpql=true em creation should be successful but an exception should
* be thrown when trying to create that NamedQuery.
*/
public void testQueryCreateInvalidNamedQuery() {
EntityManager em = null;
try {
em = createEntityManager("invalid-named-query-tolerate");
assertNotNull(em);
try {
em.createNamedQuery("non-existant-entity");
fail();
}catch(IllegalArgumentException pe){
// Expected
}
// Ensure that we fail again.
try {
em.createNamedQuery("non-existant-entity");
fail();
}catch(IllegalArgumentException pe){
// Expected
}
} finally {
if (em != null) {
em.close();
}
closeEntityManagerFactory();
}
}
}