blob: dafbc8727b5f92a84a37de10a1dd99cc3b261e22 [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:
// tware - initial implementation
package org.eclipse.persistence.testing.tests.collections.map;
import java.util.List;
import org.eclipse.persistence.expressions.Expression;
import org.eclipse.persistence.expressions.ExpressionBuilder;
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.collections.map.DirectEntity1MMapHolder;
public class InMemoryDirectEntity1MTest extends AutoVerifyTestCase {
private List results = null;
@Override
public void test(){
getSession().readAllObjects(DirectEntity1MMapHolder.class);
ReadAllQuery query = new ReadAllQuery(DirectEntity1MMapHolder.class);
ExpressionBuilder holders = query.getExpressionBuilder();
Expression exp = holders.anyOf("directToEntityMap").mapKey().equal(11);
query.checkCacheOnly();
results = (List)getSession().executeQuery(query);
}
@Override
public void verify(){
if (results.size() != 1){
throw new TestErrorException("Incorrect number of results.");
}
}
}