forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnconstrainedNoLazyTest.cs
170 lines (146 loc) · 4.15 KB
/
UnconstrainedNoLazyTest.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
using log4net;
using NHibernate.Criterion;
using NUnit.Framework;
namespace NHibernate.Test.Unconstrained
{
[TestFixture]
public class UnconstrainedNoLazyTest : TestCase
{
protected override string MappingsAssembly
{
get { return "NHibernate.Test"; }
}
protected override string[] Mappings
{
get { return new string[] {"Unconstrained.PersonNoLazy.hbm.xml"}; }
}
[Test]
public void UnconstrainedNoCache()
{
ISession session = OpenSession();
ITransaction tx = session.BeginTransaction();
Person p = new Person("gavin");
p.EmployeeId = "123456";
session.Save(p);
tx.Commit();
session.Close();
Sfi.Evict(typeof(Person));
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.Get(typeof(Person), "gavin");
Assert.IsNull(p.Employee);
p.Employee = new Employee("123456");
tx.Commit();
session.Close();
Sfi.Evict(typeof(Person));
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.Get(typeof(Person), "gavin");
Assert.IsNotNull(p.Employee);
Assert.IsTrue(NHibernateUtil.IsInitialized(p.Employee));
session.Delete(p);
tx.Commit();
session.Close();
}
[Test]
public void UnconstrainedOuterJoinFetch()
{
ISession session = OpenSession();
ITransaction tx = session.BeginTransaction();
Person p = new Person("gavin");
p.EmployeeId = "123456";
session.Save(p);
tx.Commit();
session.Close();
Sfi.Evict(typeof(Person));
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.CreateCriteria(typeof(Person))
.Fetch("Employee")
.Add(Expression.Eq("Name", "gavin"))
.UniqueResult();
Assert.IsNull(p.Employee);
p.Employee = new Employee("123456");
tx.Commit();
session.Close();
Sfi.Evict(typeof(Person));
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.CreateCriteria(typeof(Person))
.Fetch("Employee")
.Add(Expression.Eq("Name", "gavin"))
.UniqueResult();
Assert.IsTrue(NHibernateUtil.IsInitialized(p.Employee));
Assert.IsNotNull(p.Employee);
session.Delete(p);
tx.Commit();
session.Close();
}
[Test]
public void Unconstrained()
{
ILog log = LogManager.GetLogger(GetType());
log.Info("Unconstrained - BEGIN");
log.Info("Creating Person#gavin with EmployeeId = 123456 (non-existent)");
ISession session = OpenSession();
ITransaction tx = session.BeginTransaction();
Person p = new Person("gavin");
p.EmployeeId = "123456";
session.Save(p);
tx.Commit();
session.Close();
log.Info("Loading Person#gavin and associating it with a new Employee#123456");
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.Get(typeof(Person), "gavin");
Assert.IsNull(p.Employee);
p.Employee = new Employee("123456");
tx.Commit();
session.Close();
log.Info("Reloading Person#gavin and checking that its Employee is not null");
session = OpenSession();
tx = session.BeginTransaction();
p = (Person) session.Get(typeof(Person), "gavin");
Assert.IsNotNull(p.Employee);
Assert.IsTrue(NHibernateUtil.IsInitialized(p.Employee));
Assert.IsNotNull(p.Employee.Id);
session.Delete(p);
tx.Commit();
session.Close();
}
[Test]
public void ManyToOneUpdateFalse()
{
using (var session = OpenSession())
{
Person p = new Person("gavin");
using (var tx = session.BeginTransaction())
{
p.EmployeeId = "123456";
p.Unrelated = 10;
session.Save(p);
tx.Commit();
}
using (var tx = session.BeginTransaction())
{
p.Employee = new Employee("456123");
p.Unrelated = 235; // Force update of the object
session.Save(p.Employee);
tx.Commit();
}
session.Close();
}
using (var session = OpenSession())
using (var tx = session.BeginTransaction())
{
var p = (Person) session.Load(typeof(Person), "gavin");
// Should be null, not Employee#456123
Assert.IsNull(p.Employee);
session.Delete(p);
session.Delete("from Employee");
tx.Commit();
session.Close();
}
}
}
}