blob: 2430d0198d2d6c95ea5207b6afadcb8924390fd8 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. 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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.customsqlstoredprocedures;
import org.eclipse.persistence.queries.CursoredStream;
import org.eclipse.persistence.queries.ReadAllQuery;
import org.eclipse.persistence.testing.framework.AutoVerifyTestCase;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
/**
* BUG 5367029.
*/
public class CustomSQLCursoredStreamReadTest extends AutoVerifyTestCase {
protected boolean m_exceptionCaughtOnSQLQueryExecution;
protected boolean m_exceptionCaughtOnSizeQueryExecution;
public CustomSQLCursoredStreamReadTest() {
setDescription("Tests that the additionalSizeQueryNotSpecified exception is thrown at the right time for a custom sql query.");
}
@Override
protected void setup() {
m_exceptionCaughtOnSQLQueryExecution = false;
m_exceptionCaughtOnSizeQueryExecution = false;
}
@Override
protected void test() {
ReadAllQuery query = new ReadAllQuery(Employee.class);
query.setSQLString("SELECT * FROM EMPLOYEE");
query.useCursoredStream();
CursoredStream stream = null;
try {
stream = (CursoredStream) getSession().executeQuery(query);
try {
stream.size();
} catch (Exception e) {
m_exceptionCaughtOnSizeQueryExecution = true;
}
} catch (Exception e) {
m_exceptionCaughtOnSQLQueryExecution = true;
} finally {
if (stream != null) {
stream.close();
}
}
}
/**
*
*/
@Override
protected void verify() throws Exception {
if (m_exceptionCaughtOnSQLQueryExecution) {
throw new TestErrorException("The additionalSizeQueryNotSpecified exception was thrown when preparing the custom sql query.");
}
if (! m_exceptionCaughtOnSizeQueryExecution) {
throw new TestErrorException("The additionalSizeQueryNotSpecified exception was not thrown when size was called on the cursored stream.");
}
}
}