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