blob: c70d95385f48e85b63c37dfe58331539bec61ce6 [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.AggregateEntity1MMapHolder;
import org.eclipse.persistence.testing.tests.queries.report.ReportQueryTestCase;
public class MapKeyAggregateEntity1MReportQueryTestCase extends ReportQueryTestCase{
@Override
protected void buildExpectedResults() {
Vector holders = getSession().readAllObjects(AggregateEntity1MMapHolder.class);
for (Enumeration e = holders.elements(); e.hasMoreElements(); ) {
AggregateEntity1MMapHolder holder = (AggregateEntity1MMapHolder)e.nextElement();
Iterator i = holder.getAggregateToEntityMap().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(AggregateEntity1MMapHolder.class);
reportQuery.addAttribute("key", reportQuery.getExpressionBuilder().anyOf("aggregateToEntityMap").mapKey());
}
}