blob: cfc0a9fe2c5ab95509afcee52fbfaad5066c957e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.queries;
import org.eclipse.persistence.queries.*;
import java.util.*;
public class OneToManyMaxRowsSettingTest extends org.eclipse.persistence.testing.framework.AutoVerifyTestCase {
private Vector employees;
private Vector ssns;
public OneToManyMaxRowsSettingTest() {
setDescription("Tests setup the limit for the maximum number of rows the query returns");
}
public void reset() {
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
}
public void setup() {
}
public void test() {
ReadAllQuery query = new ReadAllQuery();
query.setReferenceClass(org.eclipse.persistence.testing.models.employee.domain.Employee.class);
query.setMaxRows(5);
employees = (Vector)getSession().executeQuery(query);
DirectReadQuery query2 = new DirectReadQuery();
query2.setSQLString("SELECT SSN FROM HOLDER");
query2.setMaxRows(3);
ssns = (Vector)getSession().executeQuery(query2);
}
public void verify() {
if (employees.size() != 5) {
throw new org.eclipse.persistence.testing.framework.TestErrorException("ReadAllQuery with setMaxRows test failed. mismatched objects returned");
}
if (ssns.size() != 3) {
throw new org.eclipse.persistence.testing.framework.TestErrorException("DirectReadQuery with setMaxRows test fails, mismatched objects returned");
}
}
}