forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJoinCompositeKeyTest.cs
92 lines (79 loc) · 1.96 KB
/
JoinCompositeKeyTest.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
using log4net;
using NUnit.Framework;
using System;
using System.Collections;
using System.Data;
namespace NHibernate.Test.Join
{
[TestFixture]
public class JoinCompositeKeyTest : TestCase
{
private static ILog log = LogManager.GetLogger(typeof(JoinCompositeKeyTest));
protected override string MappingsAssembly
{
get { return "NHibernate.Test"; }
}
protected override IList Mappings
{
get
{
return new string[] {
"Join.CompositeKey.hbm.xml"
};
}
}
ISession s;
ITransaction t;
protected override void OnSetUp()
{
s = OpenSession();
//t = s.BeginTransaction();
objectsNeedDeleting.Clear();
}
protected override void OnTearDown()
{
s.Flush();
s.Clear();
try
{
// Delete the objects in reverse order because it is
// less likely to violate foreign key constraints.
for (int i = objectsNeedDeleting.Count - 1; i >= 0; i--)
{
s.Delete(objectsNeedDeleting[i]);
}
s.Flush();
}
finally
{
//t.Commit();
s.Close();
}
t = null;
s = null;
}
private IList objectsNeedDeleting = new ArrayList();
[Test]
public void SimpleSaveAndRetrieve()
{
EmployeeWithCompositeKey emp = new EmployeeWithCompositeKey(1, 100);
emp.StartDate = DateTime.Today;
emp.FirstName = "Karl";
emp.Surname = "Chu";
emp.OtherNames = "The Yellow Dart";
emp.Title = "Rock Star";
objectsNeedDeleting.Add(emp);
s.Save(emp);
s.Flush();
s.Clear();
EmployeePk pk = new EmployeePk(1, 100);
EmployeeWithCompositeKey retrieved = s.Get<EmployeeWithCompositeKey>(pk);
Assert.IsNotNull(retrieved);
Assert.AreEqual(emp.StartDate, retrieved.StartDate);
Assert.AreEqual(emp.FirstName, retrieved.FirstName);
Assert.AreEqual(emp.Surname, retrieved.Surname);
Assert.AreEqual(emp.OtherNames, retrieved.OtherNames);
Assert.AreEqual(emp.Title, retrieved.Title);
}
}
}