use of org.datanucleus.query.expression.DyadicExpression in project tests by datanucleus.
the class JPQLCompilerTest method testFilterWithNegateExpression.
/**
* Tests for "!(expression)".
*/
public void testFilterWithNegateExpression() {
JavaQueryCompiler compiler = null;
QueryCompilation compilation = null;
try {
compiler = new JPQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Project.class, null, "NOT (budget > 32)", null, null, null, null, null, null, null);
compilation = compiler.compile(new HashMap(), null);
} catch (NucleusException ne) {
NucleusLogger.QUERY.error("Exception during compile", ne);
fail("compilation of filter with valid field threw exception : " + ne.getMessage());
}
Expression expr = compilation.getExprFilter();
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr instanceof DyadicExpression);
DyadicExpression dyExpr = (DyadicExpression) expr;
assertTrue("Compiled left expression should have been DyadicExpression but wasnt", dyExpr.getLeft() instanceof DyadicExpression);
assertNull("Compiled right expression should have been null but wasnt", dyExpr.getRight());
assertEquals("Expression operator is wrong", Expression.OP_NOT, dyExpr.getOperator());
DyadicExpression leftExpr = (DyadicExpression) dyExpr.getLeft();
assertTrue("Left (left) should be PrimaryExpression but isnt", leftExpr.getLeft() instanceof PrimaryExpression);
assertTrue("Left (right) should be Literal but isnt", leftExpr.getRight() instanceof Literal);
assertEquals("Left expression operator is wrong", Expression.OP_GT, leftExpr.getOperator());
PrimaryExpression primExpr = (PrimaryExpression) leftExpr.getLeft();
assertEquals("Left (left) expression has incorrect number of tuples", 1, primExpr.getTuples().size());
assertEquals("Left (left) expression 'id' is incorrect", "budget", primExpr.getId());
Literal lit = (Literal) leftExpr.getRight();
assertTrue("Left (right) expression literal is of incorrect type", lit.getLiteral() instanceof Long);
assertEquals("Left (right) expression literal has incorrect value", 32, ((Long) lit.getLiteral()).longValue());
}
use of org.datanucleus.query.expression.DyadicExpression in project tests by datanucleus.
the class JPQLCompilerTest method testUpdateSimple.
/**
* Test for use of update clause.
*/
public void testUpdateSimple() {
// Test use of UPDATE clause
try {
JPQLCompiler compiler = new JPQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Project.class, null, null, null, null, null, null, null, null, "name = \"Sample Name\"");
QueryCompilation compilation = compiler.compile(null, null);
Expression[] updateExprs = compilation.getExprUpdate();
assertNotNull("Update clause is null but shouldnt be", updateExprs);
assertEquals("Number of update expressions is incorrect", 1, updateExprs.length);
assertTrue("Update expression is of incorrect type " + updateExprs[0].getClass().getName(), updateExprs[0] instanceof DyadicExpression);
DyadicExpression updateExpr = (DyadicExpression) updateExprs[0];
Expression left = updateExpr.getLeft();
Expression right = updateExpr.getRight();
Operator op = updateExpr.getOperator();
assertEquals("Operator in update expression is wrong", op, Expression.OP_EQ);
assertTrue("Left hand side in update is wrong", left instanceof PrimaryExpression);
assertTrue("Right hand side in update is wrong", right instanceof Literal);
PrimaryExpression primExpr = (PrimaryExpression) left;
assertEquals("Left hand side primary is wrong", "name", primExpr.getId());
Literal lit = (Literal) right;
assertEquals("Right hand side literal is wrong", "Sample Name", lit.getLiteral());
} catch (NucleusUserException ne) {
fail("Exception thrown in compile of update clause : " + ne.getMessage());
}
}
use of org.datanucleus.query.expression.DyadicExpression in project tests by datanucleus.
the class JPQLCompilerTest method testFilterComparison.
/**
* Tests for simple field-literal comparison in filter.
*/
public void testFilterComparison() {
JavaQueryCompiler compiler = null;
QueryCompilation compilation = null;
try {
compiler = new JPQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Project.class, null, "budget = 2", null, null, null, null, null, null, null);
compilation = compiler.compile(new HashMap(), null);
} catch (NucleusException ne) {
NucleusLogger.QUERY.error("Exception during compile", ne);
fail("compilation of filter with valid field threw exception : " + ne.getMessage());
}
Expression expr = compilation.getExprFilter();
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr instanceof DyadicExpression);
DyadicExpression dyExpr = (DyadicExpression) expr;
assertTrue("Compiled left expression should be PrimaryExpression but isnt", dyExpr.getLeft() instanceof PrimaryExpression);
assertTrue("Compiled right expression should be Literal but isnt", dyExpr.getRight() instanceof Literal);
assertEquals("Operator between left and right is incorrect", Expression.OP_EQ, dyExpr.getOperator());
PrimaryExpression leftExpr1 = (PrimaryExpression) dyExpr.getLeft();
assertEquals("Compiled left expression has incorrect number of tuples", 1, leftExpr1.getTuples().size());
assertEquals("Compiled left expression 'id' is incorrect", "budget", leftExpr1.getId());
Literal rightExpr1 = (Literal) dyExpr.getRight();
assertTrue("Compiled right expression literal is of incorrect type", rightExpr1.getLiteral() instanceof Long);
assertEquals("Compiled right expression literal has incorrect value", 2, ((Long) rightExpr1.getLiteral()).longValue());
try {
compiler = new JPQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Project.class, null, "100.0 > budget", null, null, null, null, null, null, null);
} catch (NucleusException ne) {
NucleusLogger.QUERY.error("Exception during compile", ne);
fail("compilation of filter with valid field threw exception : " + ne.getMessage());
}
compilation = compiler.compile(new HashMap(), null);
expr = compilation.getExprFilter();
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr instanceof DyadicExpression);
dyExpr = (DyadicExpression) expr;
assertTrue("Compiled right expression should be PrimaryExpression but isnt", dyExpr.getRight() instanceof PrimaryExpression);
assertTrue("Compiled left expression should be Literal but isnt", dyExpr.getLeft() instanceof Literal);
assertEquals("Operator between left and right is incorrect", Expression.OP_GT, dyExpr.getOperator());
PrimaryExpression rightExpr2 = (PrimaryExpression) dyExpr.getRight();
assertEquals("Compiled left expression has incorrect number of tuples", 1, rightExpr2.getTuples().size());
assertEquals("Compiled left expression 'id' is incorrect", "budget", rightExpr2.getId());
Literal leftExpr2 = (Literal) dyExpr.getLeft();
// TODO Why BigDecimal and not Double??
assertTrue("Compiled right expression literal is of incorrect type", leftExpr2.getLiteral() instanceof BigDecimal);
assertEquals("Compiled right expression literal has incorrect value", 100.0, ((BigDecimal) leftExpr2.getLiteral()).longValue(), 0.1);
}
use of org.datanucleus.query.expression.DyadicExpression in project tests by datanucleus.
the class JPQLCompilerTest method testFilterComparisonWithAnd.
/**
* Tests for simple field-literal comparison in filter and AND of another comparison.
*/
public void testFilterComparisonWithAnd() {
JavaQueryCompiler compiler = null;
QueryCompilation compilation = null;
try {
compiler = new JPQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Project.class, null, "budget = 2 AND 'Sales' = name", null, null, null, null, null, null, null);
compilation = compiler.compile(new HashMap(), null);
} catch (NucleusException ne) {
NucleusLogger.QUERY.error("Exception during compile", ne);
fail("compilation of filter with valid field threw exception : " + ne.getMessage());
}
Expression expr = compilation.getExprFilter();
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr instanceof DyadicExpression);
DyadicExpression dyExpr = (DyadicExpression) expr;
assertTrue("Compiled left expression should be DyadicExpression but isnt", dyExpr.getLeft() instanceof DyadicExpression);
assertTrue("Compiled right expression should be DyadicExpression but isnt", dyExpr.getRight() instanceof DyadicExpression);
DyadicExpression dyExpr1 = (DyadicExpression) dyExpr.getLeft();
DyadicExpression dyExpr2 = (DyadicExpression) dyExpr.getRight();
assertEquals("Operator between left and right is incorrect", Expression.OP_AND, dyExpr.getOperator());
assertTrue("Compiled left expression should be PrimaryExpression but isnt", dyExpr1.getLeft() instanceof PrimaryExpression);
assertTrue("Compiled right expression should be Literal but isnt", dyExpr1.getRight() instanceof Literal);
assertEquals("Operator between left (left and right) is incorrect", Expression.OP_EQ, dyExpr1.getOperator());
PrimaryExpression leftExpr1 = (PrimaryExpression) dyExpr1.getLeft();
assertEquals("Compiled left expression has incorrect number of tuples", 1, leftExpr1.getTuples().size());
assertEquals("Compiled left expression 'id' is incorrect", "budget", leftExpr1.getId());
Literal rightExpr1 = (Literal) dyExpr1.getRight();
assertTrue("Compiled right expression literal is of incorrect type", rightExpr1.getLiteral() instanceof Long);
assertEquals("Compiled right expression literal has incorrect value", 2, ((Long) rightExpr1.getLiteral()).longValue());
assertTrue("Compiled right expression should be PrimaryExpression but isnt", dyExpr2.getRight() instanceof PrimaryExpression);
assertTrue("Compiled left expression should be Literal but isnt", dyExpr2.getLeft() instanceof Literal);
assertEquals("Operator between right (left and right) is incorrect", Expression.OP_EQ, dyExpr2.getOperator());
PrimaryExpression rightExpr2 = (PrimaryExpression) dyExpr2.getRight();
assertEquals("Compiled left expression has incorrect number of tuples", 1, rightExpr2.getTuples().size());
assertEquals("Compiled left expression 'id' is incorrect", "name", rightExpr2.getId());
Literal leftExpr2 = (Literal) dyExpr2.getLeft();
assertTrue("Compiled right expression literal is of incorrect type", leftExpr2.getLiteral() instanceof String);
assertEquals("Compiled right expression literal has incorrect value", "Sales", ((String) leftExpr2.getLiteral()));
}
use of org.datanucleus.query.expression.DyadicExpression in project tests by datanucleus.
the class JDOQLCompilerTest method testExpressionSerializable.
/**
* Test for serialisability of Expressions.
*/
public void testExpressionSerializable() {
// Test use of implicit variable in filter
JavaQueryCompiler compiler = null;
QueryCompilation compilation = null;
try {
compiler = new JDOQLCompiler(nucCtx, nucCtx.getClassLoaderResolver(null), null, Product.class, null, "name == param1", null, null, null, null, null, "java.lang.String param1", null, null);
compilation = compiler.compile(null, null);
} catch (NucleusUserException ne) {
// TODO Debatable if this should throw a JDOUserException since the "notaField" is not bound, nor typed
NucleusLogger.QUERY.error("Exception thrown during compilation", ne);
fail("compilation of filter with valid field threw exception : " + ne.getMessage());
}
Expression expr = compilation.getExprFilter();
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr instanceof DyadicExpression);
DyadicExpression dyExpr = (DyadicExpression) expr;
assertTrue("Compiled left expression should be PrimaryExpression but isnt", dyExpr.getLeft() instanceof PrimaryExpression);
assertTrue("Compiled right expression should be ParameterExpression but isnt", dyExpr.getRight() instanceof ParameterExpression);
PrimaryExpression left = (PrimaryExpression) dyExpr.getLeft();
assertEquals("Primary expression name is wrong", left.getId(), "name");
ParameterExpression right = (ParameterExpression) dyExpr.getRight();
assertEquals("ParameterExpression has wrong value", "param1", right.getId());
try {
try {
// Serialise the Expression
FileOutputStream fileStream = new FileOutputStream("expr.ser");
ObjectOutputStream os = new ObjectOutputStream(fileStream);
os.writeObject(expr);
os.close();
} catch (Exception e) {
NucleusLogger.GENERAL.error(">> Exception in serialise", e);
fail("Failed to serialise " + StringUtils.toJVMIDString(expr));
}
try {
// Deserialise the Expression
FileInputStream fileInputStream = new FileInputStream("expr.ser");
ObjectInputStream oInputStream = new ObjectInputStream(fileInputStream);
Object obj = oInputStream.readObject();
if (obj instanceof Expression) {
Expression expr1 = (Expression) obj;
assertTrue("Compiled expression should have been DyadicExpression but wasnt", expr1 instanceof DyadicExpression);
DyadicExpression dyExpr1 = (DyadicExpression) expr1;
assertTrue("Compiled left expression should be PrimaryExpression but isnt", dyExpr1.getLeft() instanceof PrimaryExpression);
assertTrue("Compiled right expression should be ParameterExpression but isnt", dyExpr1.getRight() instanceof ParameterExpression);
PrimaryExpression left1 = (PrimaryExpression) dyExpr1.getLeft();
assertEquals("Primary expression name is wrong", left1.getId(), "name");
ParameterExpression right1 = (ParameterExpression) dyExpr1.getRight();
assertEquals("ParameterExpression has wrong value", "param1", right1.getId());
} else {
fail("Deserialised object is " + obj.getClass().getName() + " not Expression");
}
oInputStream.close();
} catch (Exception e) {
NucleusLogger.GENERAL.error(">> Exception in deserialise", e);
fail("Failed to deserialise " + StringUtils.toJVMIDString(expr));
}
} finally {
// Delete the file
File file = new File("expr.ser");
if (file.exists()) {
file.delete();
}
}
}
Aggregations