use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ParameterType_20.
@Test
public final void test_ParameterType_20() throws Exception {
String jpqlQuery = "SELECT c From Customer c where c.home.city IN(:city)";
IQuery namedQuery = new JavaQuery(getPersistenceUnit(), jpqlQuery);
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getParameterType(":city");
assertNotNull("The type of :city should have been found", type);
assertEquals("The wrong type for :city was retrieved", getType(namedQuery, String.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_31.
@Test
public final void test_ResultType_31() throws Exception {
// SELECT INDEX(c) FROM Address a JOIN a.customerList c
IQuery namedQuery = namedQuery("Address", "address.index");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of INDEX(e) should have been found", type);
assertEquals("The wrong type for INDEX(c) was retrieved", getType(namedQuery, Integer.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ParameterType_01.
@Test
public final void test_ParameterType_01() throws Exception {
// select ds from Employee ds, Product ci where ds.empId = :conversationId AND ds.state = 0 AND ds.cikey = ci.cikey AND ci.state <> 2
IQuery namedQuery = namedQuery("Employee", "employee.empId");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getParameterType(":conversationId");
assertNotNull("The type of :conversationId should have been found", type);
assertEquals("The wrong type for :conversationId was retrieved", getType(namedQuery, Long.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_43.
@Test
public final void test_ResultType_43() throws Exception {
// SELECT MOD(e.salary, e.empId) FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.mod");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of MOD(e.salary, e.empId) should have been found", type);
assertEquals("The wrong type for MOD(e.salary, e.empId) was retrieved", getType(namedQuery, Integer.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_48.
@Test
public final void test_ResultType_48() throws Exception {
// SELECT NEW java.lang.Vector(d.empList) FROM Dept d
IQuery namedQuery = namedQuery("Dept", "dept.new1");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of NEW java.lang.Vector(d.empList) should have been found", type);
assertEquals("The wrong type for NEW java.lang.Vector(d.empList) was retrieved", getType(namedQuery, Vector.class), type);
}
Aggregations