forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigurationFixture.cs
483 lines (425 loc) · 14.9 KB
/
ConfigurationFixture.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
using System;
using System.Collections;
using System.IO;
using System.Linq;
using System.Xml;
using NHibernate.Cfg;
using NHibernate.DomainModel;
using NHibernate.Engine;
using NHibernate.Linq;
using NHibernate.Tool.hbm2ddl;
using NHibernate.Util;
using NUnit.Framework;
using Environment = NHibernate.Cfg.Environment;
namespace NHibernate.Test.CfgTest
{
/// <summary>
/// Summary description for ConfigurationFixture.
/// </summary>
[TestFixture]
public class ConfigurationFixture
{
/// <summary>
/// Verify that NHibernate can read the configuration from any hibernate.cfg.xml
/// file and that the values override what is in the app.config.
/// </summary>
[Test]
public void ReadCfgXmlFromDefaultFile()
{
Configuration cfg = new Configuration();
cfg.Configure(Path.Combine(TestContext.CurrentContext.TestDirectory, "TestEmbeddedConfig.cfg.xml"));
Assert.IsTrue(cfg.Properties.ContainsKey(Environment.ShowSql));
Assert.IsTrue(cfg.Properties.ContainsKey(Environment.UseQueryCache));
Assert.IsFalse(cfg.Properties.ContainsKey(Environment.PrepareSql),
"Our default conf should not include override the possible Dialect default configuration.");
Assert.IsTrue(cfg.Properties.ContainsKey(Environment.Isolation));
Assert.AreEqual("true 1, false 0, yes 1, no 0", cfg.Properties[Environment.QuerySubstitutions]);
Assert.AreEqual("Server=localhost;initial catalog=nhibernate;User Id=;Password=",
cfg.Properties[Environment.ConnectionString]);
}
/// <summary>
/// Received sample code that Configuration could not be configured manually. It can be configured
/// manually just need to set all of the properties before adding classes
/// </summary>
[Test, Explicit]
public void ManualConfiguration()
{
//log4net.Config.DOMConfigurator.ConfigureAndWatch( new FileInfo("log4net.cfg.xml") ); //use xml file instead of config
Configuration cfg = new Configuration();
IDictionary props = new Hashtable();
props[Environment.ConnectionProvider] = "NHibernate.Connection.DriverConnectionProvider";
props[Environment.Dialect] = "NHibernate.Dialect.MsSql2000Dialect";
props[Environment.ConnectionDriver] = "NHibernate.Driver.SqlClientDriver";
props[Environment.ConnectionString] =
"Server=localhost;initial catalog=nhibernate;Integrated Security=SSPI";
foreach (DictionaryEntry de in props)
{
cfg.SetProperty(de.Key.ToString(), de.Value.ToString());
}
cfg.AddClass(typeof(Simple));
new SchemaExport(cfg).Create(true, true);
ISessionFactory factory = cfg.BuildSessionFactory();
}
/// <summary>
/// Verify that NHibernate can read the configuration from a manifest resource in an
/// Assembly and that the values override what is in the app.config.
/// </summary>
[Test]
public void ReadCfgXmlFromAssembly()
{
Configuration cfg = new Configuration();
cfg.Configure(this.GetType().Assembly, "NHibernate.Test.TestEmbeddedConfig.cfg.xml");
Assert.AreEqual("true 1, false 0, yes 1, no 0", cfg.Properties[Environment.QuerySubstitutions]);
Assert.AreEqual("Server=localhost;initial catalog=nhibernate;User Id=;Password=",
cfg.Properties[Environment.ConnectionString]);
}
/// <summary>
/// Verify that NHibernate properly releases resources when an Exception occurs
/// during the reading of config files.
/// </summary>
[Test]
public void InvalidXmlInCfgFile()
{
XmlDocument cfgXml = new XmlDocument();
cfgXml.Load(Path.Combine(TestContext.CurrentContext.TestDirectory, "TestEmbeddedConfig.cfg.xml"));
// this should put us at the first <property> element
XmlElement propElement = cfgXml.DocumentElement.GetElementsByTagName("property")[0] as XmlElement;
// removing this will cause it not to validate
propElement.RemoveAttribute("name");
string FileNameForInvalidCfg = Path.Combine(TestContext.CurrentContext.TestDirectory, "hibernate.invalid.cfg.xml");
cfgXml.Save(FileNameForInvalidCfg);
Configuration cfg = new Configuration();
try
{
cfg.Configure(FileNameForInvalidCfg);
}
catch (HibernateException)
{
// just absorb it - not what we are testing
}
finally
{
// clean up the bad file - if the Configure method cleans up after
// itself we should be able to do this without problem. If it does
// property release the resource then this won't be able to access
// the file to delete.
File.Delete(FileNameForInvalidCfg);
}
}
[Test]
public void EmptyPropertyTag()
{
string xml =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory name='NHibernate.Test'>
<property name='connection.provider'></property>
</session-factory>
</hibernate-configuration>";
XmlDocument cfgXml = new XmlDocument();
cfgXml.LoadXml(xml);
Configuration cfg = new Configuration();
XmlTextReader xtr = new XmlTextReader(xml, XmlNodeType.Document, null);
cfg.Configure(xtr);
}
[Test]
public void NH1334()
{
string xml =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory name='NHibernate.Test'>
<property name='current_session_context_class'>
web
</property>
</session-factory>
</hibernate-configuration>";
XmlDocument cfgXml = new XmlDocument();
cfgXml.LoadXml(xml);
Configuration cfg = new Configuration();
XmlTextReader xtr = new XmlTextReader(xml, XmlNodeType.Document, null);
cfg.Configure(xtr);
Assert.AreEqual("web", PropertiesHelper.GetString(Environment.CurrentSessionContextClass, cfg.Properties, null));
}
[Test]
public void CacheConfigurationForUnmappedClass()
{
string cfgString =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory>
<class-cache class='NHibernate.DomainModel.A, NHibernate.DomainModel' usage='read-write' region='xx' />
</session-factory>
</hibernate-configuration>";
Configuration cfg = new Configuration();
Assert.Throws<HibernateConfigException>(()=>cfg.Configure(new XmlTextReader(cfgString, XmlNodeType.Document, null)));
}
[Test]
public void CacheConfigurationForUnmappedCollection()
{
string cfgString =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory>
<mapping resource='NHibernate.DomainModel.ABC.hbm.xml' assembly='NHibernate.DomainModel' />
<collection-cache collection='NHibernate.DomainModel.B.XX' usage='nonstrict-read-write' region='yy' />
</session-factory>
</hibernate-configuration>";
Configuration cfg = new Configuration();
Assert.Throws<HibernateConfigException>(()=>cfg.Configure(new XmlTextReader(cfgString, XmlNodeType.Document, null)));
}
[Test]
public void NoSessionFactoriesInConfiguration()
{
string cfgString = @"<?xml version='1.0' encoding='utf-8' ?><someElement />";
Configuration cfg = new Configuration();
Assert.Throws<HibernateConfigException>(()=>cfg.Configure(new XmlTextReader(cfgString, XmlNodeType.Document, null)));
}
[Test]
public void CacheConfiguration()
{
string cfgString =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory>
<mapping resource='NHibernate.DomainModel.ABC.hbm.xml' assembly='NHibernate.DomainModel' />
<class-cache class='NHibernate.DomainModel.A, NHibernate.DomainModel' usage='read-write' region='xx' />
<collection-cache collection='NHibernate.DomainModel.B.Map' usage='nonstrict-read-write' region='yy' />
</session-factory>
</hibernate-configuration>";
Configuration cfg = new Configuration();
cfg.Configure(new XmlTextReader(cfgString, XmlNodeType.Document, null)).BuildSessionFactory();
}
[Test]
public void InvalidXmlInHbmFile()
{
string filename = Path.Combine(TestContext.CurrentContext.TestDirectory, "invalid.hbm.xml");
// it's missing the class name - won't validate
string hbm =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class table='a'></class>
</hibernate-mapping>";
XmlDocument hbmDoc = new XmlDocument();
hbmDoc.LoadXml(hbm);
hbmDoc.Save(filename);
Configuration cfg = new Configuration();
try
{
cfg.Configure();
cfg.AddXmlFile("invalid.hbm.xml");
}
catch (HibernateException)
{
// just absorb it - not what we are testing
}
finally
{
// clean up the bad file - if the AddXmlFile method cleans up after
// itself we should be able to do this without problem. If it does
// property release the resource then this won't be able to access
// the file to delete.
File.Delete(filename);
}
}
[Test]
public void ProxyWithDefaultNamespaceAndAssembly()
{
string hbm =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'
namespace='NHibernate.DomainModel'
assembly='NHibernate.DomainModel'>
<class name='A' proxy='A'>
<id name='Id'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
cfg.AddXmlString(hbm)
.BuildSessionFactory();
}
[Test]
public void PersisterWithDefaultNamespaceAndAssembly()
{
string hbm =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'
namespace='NHibernate.DomainModel'
assembly='NHibernate.DomainModel'>
<class name='A' persister='A'>
<id name='Id'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
cfg.AddXmlString(hbm); //.BuildSessionFactory();
}
[Test]
public void AddDocument()
{
string hbm =
@"<?xml version='1.0' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class name='NHibernate.DomainModel.A, NHibernate.DomainModel'>
<id name='Id' column='somecolumn'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
XmlDocument doc = new XmlDocument();
doc.LoadXml(hbm);
cfg.AddDocument(doc);
}
[Test]
public void ProxyValidator()
{
string hbm =
@"<?xml version='1.0' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class name='NHibernate.DomainModel.NHSpecific.InvalidProxyClass, NHibernate.DomainModel'
lazy='true'>
<id name='Id' column='somecolumn'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
try
{
cfg.AddXmlString(hbm).BuildSessionFactory();
Assert.Fail("Validation should have failed");
}
catch (MappingException e)
{
Assert.IsTrue(e is InvalidProxyTypeException);
}
}
[Test]
public void DisabledProxyValidator()
{
string hbm =
@"<?xml version='1.0' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class name='NHibernate.DomainModel.NHSpecific.InvalidProxyClass, NHibernate.DomainModel'
lazy='true'>
<id name='Id' column='somecolumn'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
cfg.Properties[Environment.UseProxyValidator] = "false";
cfg.AddXmlString(hbm).BuildSessionFactory();
}
/// <summary>
/// Verify that setting the default assembly and namespace through
/// <see cref="Configuration" /> works as intended.
/// </summary>
[Test]
public void SetDefaultAssemblyAndNamespace()
{
string hbmFromDomainModel =
@"<?xml version='1.0' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class name='A'>
<id name='Id' column='somecolumn'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
string hbmFromTest =
@"<?xml version='1.0' ?>
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<class name='LocatedInTestAssembly' lazy='false'>
<id name='Id' column='somecolumn'>
<generator class='native' />
</id>
</class>
</hibernate-mapping>";
Configuration cfg = new Configuration();
cfg
.SetDefaultAssembly("NHibernate.DomainModel")
.SetDefaultNamespace("NHibernate.DomainModel")
.AddXmlString(hbmFromDomainModel);
cfg
.SetDefaultAssembly("NHibernate.Test")
.SetDefaultNamespace(typeof(LocatedInTestAssembly).Namespace)
.AddXmlString(hbmFromTest);
cfg.BuildSessionFactory().Close();
}
[Test]
public void NH1348()
{
string xml =
@"<?xml version='1.0' encoding='utf-8' ?>
<hibernate-configuration xmlns='urn:nhibernate-configuration-2.2'>
<session-factory name='NHibernate.Test'>
<event type='flush'>
<listener class='NHibernate.Event.Default.DefaultFlushEventListener, NHibernate'/>
</event>
</session-factory>
</hibernate-configuration>";
XmlDocument cfgXml = new XmlDocument();
cfgXml.LoadXml(xml);
Configuration cfg = new Configuration();
XmlTextReader xtr = new XmlTextReader(xml, XmlNodeType.Document, null);
cfg.Configure(xtr);
// No exception expected
}
public class SampleQueryProvider : DefaultQueryProvider
{
public SampleQueryProvider(ISessionImplementor session) : base(session)
{
}
protected SampleQueryProvider(ISessionImplementor session, object collection, NhQueryableOptions options) : base(session, collection, options)
{
}
protected override IQueryProvider CreateWithOptions(NhQueryableOptions options)
{
return new SampleQueryProvider(Session, Collection, options);
}
}
[Test]
public void NH2890Standard()
{
var cfg = new Configuration();
cfg.Configure(Path.Combine(TestContext.CurrentContext.TestDirectory, "TestEmbeddedConfig.cfg.xml"))
.LinqQueryProvider<SampleQueryProvider>()
.SetDefaultAssembly("NHibernate.DomainModel")
.SetDefaultNamespace("NHibernate.DomainModel");
using (var sessionFactory = cfg.BuildSessionFactory())
{
using (var session = sessionFactory.OpenSession())
{
var query = session.Query<NHibernate.DomainModel.A>();
Assert.IsInstanceOf(typeof(SampleQueryProvider), query.Provider);
}
using (var session = sessionFactory.OpenSession())
{
var query = session.Query<NHibernate.DomainModel.A>().WithOptions(x => x.SetReadOnly(true));
Assert.IsInstanceOf(typeof(SampleQueryProvider), query.Provider);
}
}
}
[Test]
public void NH2890Xml()
{
var cfg = new Configuration();
cfg.Configure(Path.Combine(TestContext.CurrentContext.TestDirectory, "TestEmbeddedConfig.cfg.xml"))
.SetDefaultAssembly("NHibernate.DomainModel")
.SetDefaultNamespace("NHibernate.DomainModel");
using (var sessionFactory = cfg.BuildSessionFactory())
{
using (var session = sessionFactory.OpenSession())
{
var query = session.Query<NHibernate.DomainModel.A>();
Assert.IsInstanceOf(typeof(SampleQueryProvider), query.Provider);
}
}
}
}
}