forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleExpressionFixture.cs
84 lines (68 loc) · 2.25 KB
/
SimpleExpressionFixture.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using System;
using NHibernate.DomainModel;
using NHibernate.DomainModel.NHSpecific;
using NHibernate.Criterion;
using NHibernate.SqlCommand;
using NUnit.Framework;
namespace NHibernate.Test.ExpressionTest
{
/// <summary>
/// Test the SimpleExpression class.
/// </summary>
/// <remarks>
/// There are no need for the subclasses EqExpression, GeExpression,
/// LeExpression, LikeExpression, or LtExpression to have their own
/// TestFixtures because all they do is override one property.
/// </remarks>
[TestFixture]
public class SimpleExpressionFixture : BaseExpressionFixture
{
[Test]
public void SimpleSqlStringTest()
{
ISession session = factory.OpenSession();
CreateObjects(typeof(Simple), session);
ICriterion andExpression = Expression.Eq("Address", "12 Adress");
SqlString sqlString = andExpression.ToSqlString(criteria, criteriaQuery);
string expectedSql = "sql_alias.address = ?";
CompareSqlStrings(sqlString, expectedSql, 1);
session.Close();
}
[Test]
public void TestQuoting()
{
using (ISession session = factory.OpenSession())
{
DateTime now = DateTime.Now;
CreateObjects(typeof(SimpleComponent), session);
ICriterion andExpression = Expression.Eq("Date", now);
SqlString sqlString = andExpression.ToSqlString(criteria, criteriaQuery);
string quotedColumn = dialect.QuoteForColumnName("d[at]e_");
string expectedSql = "sql_alias." + quotedColumn + " = ?";
CompareSqlStrings(sqlString, expectedSql);
}
}
[Test]
public void SimpleDateExpression()
{
using (ISession session = factory.OpenSession())
{
CreateObjects(typeof(Simple), session);
ICriterion andExpression = Expression.Ge("Date", DateTime.Now);
SqlString sqlString = andExpression.ToSqlString(criteria, criteriaQuery);
string expectedSql = "sql_alias.date_ >= ?";
CompareSqlStrings(sqlString, expectedSql, 1);
}
}
[Test]
public void MisspelledPropertyWithNormalizedEntityPersister()
{
using (ISession session = factory.OpenSession())
{
CreateObjects(typeof(NHibernate.DomainModel.Multi), session);
ICriterion expression = Expression.Eq("MisspelledProperty", DateTime.Now);
Assert.Throws<QueryException>(() =>expression.ToSqlString(criteria, criteriaQuery));
}
}
}
}