blob: 416cf5e5da74874e7fe30d1de46efba724fd65c1 [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.tests.collections.map;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Vector;
import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.queries.ReportQuery;
import org.eclipse.persistence.testing.models.collections.map.EntityEntity1MMapHolder;
import org.eclipse.persistence.testing.tests.queries.report.ReportQueryTestCase;
public class MapKeyEntityEntity1MReportQueryTestCase extends ReportQueryTestCase{
@Override
protected void buildExpectedResults() {
Vector holders = getSession().readAllObjects(EntityEntity1MMapHolder.class);
for (Enumeration e = holders.elements(); e.hasMoreElements(); ) {
EntityEntity1MMapHolder holder = (EntityEntity1MMapHolder)e.nextElement();
Iterator i = holder.getEntityToEntityMap().keySet().iterator();
while (i.hasNext()){
Object[] result = new Object[1];
result[0] = i.next();
addResult(result, null);
}
}
}
@Override
protected void setup() throws Exception {
super.setup();
reportQuery = new ReportQuery(new ExpressionBuilder());
reportQuery.setReferenceClass(EntityEntity1MMapHolder.class);
reportQuery.addAttribute("key", reportQuery.getExpressionBuilder().anyOf("entityToEntityMap").mapKey());
}
}