use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ParameterType_03.
@Test
public final void test_ParameterType_03() throws Exception {
// SELECT Distinct Object(c) From Customer c, IN(c.home.phones) p where p.area LIKE :area
IQuery namedQuery = namedQuery("Customer", "customer.area");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getParameterType(":area");
assertNotNull("The type of :area should have been found", type);
assertEquals("The wrong type for :area 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_07.
@Test
public final void test_ResultType_07() throws Exception {
// SELECT e.name + 2 FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.addition4");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of e.name + 2 should have been found", type);
assertEquals("The wrong type for e.name + 2 was retrieved", getType(namedQuery, Object.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_47.
@Test
public final void test_ResultType_47() throws Exception {
// SELECT e.name * 2 FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.multiplication4");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of e.name * 2 should have been found", type);
assertEquals("The wrong type for e.name * 2 was retrieved", getType(namedQuery, Object.class), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_12.
@Test
public final void test_ResultType_12() throws Exception {
// SELECT e FROM Employee E
IQuery namedQuery = namedQuery("Employee", "employee.caseInsensitive");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of e should have been found", type);
assertEquals("The wrong type for e was retrieved", mappedType(namedQuery, "Employee"), type);
}
use of org.eclipse.persistence.jpa.jpql.tools.spi.IQuery in project eclipselink by eclipse-ee4j.
the class AbstractJPQLQueryHelperTest method test_ResultType_45.
@Test
public final void test_ResultType_45() throws Exception {
// SELECT AVG(e.salary) * 2E2 FROM Employee e
IQuery namedQuery = namedQuery("Employee", "employee.multiplication2");
AbstractJPQLQueryHelper helper = buildQueryHelper(namedQuery);
IType type = helper.getResultType();
assertNotNull("The type of AVG(salary) * 2E2 should have been found", type);
assertEquals("The wrong type for AVG(salary) * 2E2 was retrieved", getType(namedQuery, Double.class), type);
}
Aggregations