blob: 224c78845b7df6576f263c076aa641f34e6ed496 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jdo.tck.query.jdoql;
import org.apache.jdo.tck.JDO_Test;
import org.apache.jdo.tck.pc.company.CompanyModelReader;
import org.apache.jdo.tck.pc.company.Department;
import org.apache.jdo.tck.pc.company.QDepartment;
import org.apache.jdo.tck.pc.company.QEmployee;
import org.apache.jdo.tck.query.QueryElementHolder;
import org.apache.jdo.tck.query.QueryTest;
import org.apache.jdo.tck.util.BatchTestRunner;
import javax.jdo.JDOQLTypedQuery;
/**
*<B>Title:</B> Navigation Through a Collection Field
*<BR>
*<B>Keywords:</B> query
*<BR>
*<B>Assertion ID:</B> A14.6.2-10.
*<BR>
*<B>Assertion Description: </B>
* Navigation through multi-valued fields (<code>Collection</code> types) is
* specified using a variable declaration and the
* <code>Collection.contains(Object o)</code> method.
*/
public class NavigationThroughACollectionField extends QueryTest {
/** */
private static final String ASSERTION_FAILED =
"Assertion A14.6.2-10 (NavigationThroughACollectionField) failed: ";
/** */
public static final String NAVIGATION_TEST_COMPANY_TESTDATA =
"org/apache/jdo/tck/pc/company/companyForNavigationTests.xml";
/**
* Returns the name of the company test data resource.
* @return name of the company test data resource.
*/
protected String getCompanyTestDataResource() {
return NAVIGATION_TEST_COMPANY_TESTDATA;
}
/**
* The <code>main</code> is called when the class
* is directly executed from the command line.
* @param args The arguments passed to the program.
*/
public static void main(String[] args) {
BatchTestRunner.run(NavigationThroughACollectionField.class);
}
/** */
public void testPositive() {
Object expected = getTransientCompanyModelInstancesAsList(new String[]{"dept1"});
JDOQLTypedQuery<Department> query = getPM().newJDOQLTypedQuery(Department.class);
QDepartment cand = QDepartment.candidate();
QEmployee e = QEmployee.variable("e");
query.filter(cand.employees.contains(e).and(e.firstname.eq("emp1First")));
QueryElementHolder holder = new QueryElementHolder(
/*UNIQUE*/ null,
/*RESULT*/ null,
/*INTO*/ null,
/*FROM*/ Department.class,
/*EXCLUDE*/ null,
/*WHERE*/ "employees.contains(e) && e.firstname == \"emp1First\"",
/*VARIABLES*/ "Employee e",
/*PARAMETERS*/ null,
/*IMPORTS*/ null,
/*GROUP BY*/ null,
/*ORDER BY*/ null,
/*FROM*/ null,
/*TO*/ null,
/*JDOQLTyped*/ query,
/*paramValues*/ null);
executeAPIQuery(ASSERTION_FAILED, holder, expected);
executeSingleStringQuery(ASSERTION_FAILED, holder, expected);
executeJDOQLTypedQuery(ASSERTION_FAILED, holder, expected);
}
/**
* @see org.apache.jdo.tck.JDO_Test#localSetUp()
*/
@Override
protected void localSetUp() {
addTearDownClass(CompanyModelReader.getTearDownClasses());
loadAndPersistCompanyModel(getPM());
}
}