forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNamedParametersFixture.cs
67 lines (61 loc) · 1.47 KB
/
NamedParametersFixture.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
using System;
using System.Collections;
using NUnit.Framework;
using NHibernate.Hql.Ast.ANTLR;
namespace NHibernate.Test.QueryTest
{
/// <summary>
/// Tests functionality for named parameter queries.
/// </summary>
[TestFixture]
public class NamedParametersFixture : TestCase
{
protected override IList Mappings
{
get { return new string[] {"Simple.hbm.xml"}; }
}
[Test]
public void TestMissingHQLParameters()
{
ISession s = OpenSession();
ITransaction t = s.BeginTransaction();
try
{
IQuery q = s.CreateQuery("from s in class Simple where s.Name=:Name and s.Count=:Count");
// Just set the Name property not the count
q.SetAnsiString("Name", "Fred");
// Try to execute it
Assert.Throws<QueryException>(() =>q.List());
}
finally
{
t.Rollback();
s.Close();
}
}
/// <summary>
/// Verifying that a <see langword="null" /> value passed into SetParameter(name, val) throws
/// an exception
/// </summary>
[Test]
public void TestNullNamedParameter()
{
if (sessions.Settings.QueryTranslatorFactory is ASTQueryTranslatorFactory)
{
Assert.Ignore("Not supported; The AST parser can guess the type.");
}
ISession s = OpenSession();
try
{
IQuery q = s.CreateQuery("from Simple as s where s.Name=:pName");
q.SetParameter("pName", null);
Assert.Fail("should throw if can't guess the type of parameter");
}
catch (ArgumentNullException) {}
finally
{
s.Close();
}
}
}
}