mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Adapting unit tests to NHibernate breaking change
https://github.com/nhibernate/nhibernate-core/issues/1106 https://github.com/nhibernate/nhibernate-core/issues/1095
This commit is contained in:
parent
4c1afb119b
commit
f3e9f9550d
@ -15,6 +15,7 @@ using Orchard.ContentManagement.MetaData.Services;
|
|||||||
using Orchard.ContentManagement.Records;
|
using Orchard.ContentManagement.Records;
|
||||||
using Orchard.Core.Settings.Handlers;
|
using Orchard.Core.Settings.Handlers;
|
||||||
using Orchard.Core.Settings.Metadata;
|
using Orchard.Core.Settings.Metadata;
|
||||||
|
using Orchard.Core.Settings.Metadata.Records;
|
||||||
using Orchard.Core.Settings.Models;
|
using Orchard.Core.Settings.Models;
|
||||||
using Orchard.Core.Settings.Services;
|
using Orchard.Core.Settings.Services;
|
||||||
using Orchard.DisplayManagement;
|
using Orchard.DisplayManagement;
|
||||||
@ -110,7 +111,12 @@ namespace Orchard.Tests.Modules.Users.Controllers {
|
|||||||
return new[] { typeof(UserPartRecord),
|
return new[] { typeof(UserPartRecord),
|
||||||
typeof(ContentTypeRecord),
|
typeof(ContentTypeRecord),
|
||||||
typeof(ContentItemRecord),
|
typeof(ContentItemRecord),
|
||||||
typeof(ContentItemVersionRecord),
|
typeof(ContentItemVersionRecord),
|
||||||
|
typeof(ContentPartDefinitionRecord),
|
||||||
|
typeof(ContentPartFieldDefinitionRecord),
|
||||||
|
typeof(ContentFieldDefinitionRecord),
|
||||||
|
typeof(ContentTypeDefinitionRecord),
|
||||||
|
typeof(ContentTypePartDefinitionRecord)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,7 @@ using Orchard.ContentManagement.MetaData.Services;
|
|||||||
using Orchard.ContentManagement.Records;
|
using Orchard.ContentManagement.Records;
|
||||||
using Orchard.Core.Settings.Handlers;
|
using Orchard.Core.Settings.Handlers;
|
||||||
using Orchard.Core.Settings.Metadata;
|
using Orchard.Core.Settings.Metadata;
|
||||||
|
using Orchard.Core.Settings.Metadata.Records;
|
||||||
using Orchard.Core.Settings.Services;
|
using Orchard.Core.Settings.Services;
|
||||||
using Orchard.Data;
|
using Orchard.Data;
|
||||||
using Orchard.DisplayManagement;
|
using Orchard.DisplayManagement;
|
||||||
@ -54,7 +55,12 @@ namespace Orchard.Tests.Modules.Users.Services
|
|||||||
typeof(UserPartRecord),
|
typeof(UserPartRecord),
|
||||||
typeof(ContentItemVersionRecord),
|
typeof(ContentItemVersionRecord),
|
||||||
typeof(ContentItemRecord),
|
typeof(ContentItemRecord),
|
||||||
typeof(ContentTypeRecord));
|
typeof(ContentTypeRecord),
|
||||||
|
typeof(ContentPartDefinitionRecord),
|
||||||
|
typeof(ContentPartFieldDefinitionRecord),
|
||||||
|
typeof(ContentFieldDefinitionRecord),
|
||||||
|
typeof(ContentTypeDefinitionRecord),
|
||||||
|
typeof(ContentTypePartDefinitionRecord));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestFixtureTearDown]
|
[TestFixtureTearDown]
|
||||||
|
@ -14,6 +14,7 @@ using Orchard.ContentManagement.MetaData.Services;
|
|||||||
using Orchard.ContentManagement.Records;
|
using Orchard.ContentManagement.Records;
|
||||||
using Orchard.Core.Settings.Handlers;
|
using Orchard.Core.Settings.Handlers;
|
||||||
using Orchard.Core.Settings.Metadata;
|
using Orchard.Core.Settings.Metadata;
|
||||||
|
using Orchard.Core.Settings.Metadata.Records;
|
||||||
using Orchard.Core.Settings.Services;
|
using Orchard.Core.Settings.Services;
|
||||||
using Orchard.Data;
|
using Orchard.Data;
|
||||||
using Orchard.DisplayManagement;
|
using Orchard.DisplayManagement;
|
||||||
@ -59,7 +60,12 @@ namespace Orchard.Tests.Modules.Users.Services
|
|||||||
typeof(UserPartRecord),
|
typeof(UserPartRecord),
|
||||||
typeof(ContentItemVersionRecord),
|
typeof(ContentItemVersionRecord),
|
||||||
typeof(ContentItemRecord),
|
typeof(ContentItemRecord),
|
||||||
typeof(ContentTypeRecord));
|
typeof(ContentTypeRecord),
|
||||||
|
typeof(ContentPartDefinitionRecord),
|
||||||
|
typeof(ContentPartFieldDefinitionRecord),
|
||||||
|
typeof(ContentFieldDefinitionRecord),
|
||||||
|
typeof(ContentTypeDefinitionRecord),
|
||||||
|
typeof(ContentTypePartDefinitionRecord));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestFixtureTearDown]
|
[TestFixtureTearDown]
|
||||||
|
@ -12,6 +12,7 @@ using Orchard.ContentManagement.MetaData;
|
|||||||
using Orchard.ContentManagement.MetaData.Services;
|
using Orchard.ContentManagement.MetaData.Services;
|
||||||
using Orchard.ContentManagement.Records;
|
using Orchard.ContentManagement.Records;
|
||||||
using Orchard.Core.Settings.Metadata;
|
using Orchard.Core.Settings.Metadata;
|
||||||
|
using Orchard.Core.Settings.Metadata.Records;
|
||||||
using Orchard.Data;
|
using Orchard.Data;
|
||||||
using Orchard.Environment;
|
using Orchard.Environment;
|
||||||
using Orchard.Projections.Handlers;
|
using Orchard.Projections.Handlers;
|
||||||
@ -61,15 +62,21 @@ namespace Orchard.Projections.Tests.Services {
|
|||||||
protected override IEnumerable<Type> DatabaseTypes {
|
protected override IEnumerable<Type> DatabaseTypes {
|
||||||
get {
|
get {
|
||||||
return new[] {
|
return new[] {
|
||||||
typeof(ContentItemRecord),
|
typeof(ContentPartDefinitionRecord),
|
||||||
typeof(ContentItemVersionRecord),
|
typeof(ContentPartFieldDefinitionRecord),
|
||||||
typeof(ContentTypeRecord),
|
typeof(ContentFieldDefinitionRecord),
|
||||||
|
typeof(ContentTypeDefinitionRecord),
|
||||||
|
typeof(ContentTypePartDefinitionRecord),
|
||||||
|
|
||||||
|
typeof(ContentItemRecord),
|
||||||
|
typeof(ContentItemVersionRecord),
|
||||||
|
typeof(ContentTypeRecord),
|
||||||
|
|
||||||
|
typeof(FieldIndexPartRecord),
|
||||||
|
|
||||||
typeof(FieldIndexPartRecord),
|
typeof(StringFieldIndexRecord),
|
||||||
|
typeof(IntegerFieldIndexRecord),
|
||||||
typeof(StringFieldIndexRecord),
|
typeof(DecimalFieldIndexRecord),
|
||||||
typeof(IntegerFieldIndexRecord),
|
|
||||||
typeof(DecimalFieldIndexRecord),
|
|
||||||
typeof(DoubleFieldIndexRecord)
|
typeof(DoubleFieldIndexRecord)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -113,8 +120,6 @@ namespace Orchard.Projections.Tests.Services {
|
|||||||
SaveObject(0m);
|
SaveObject(0m);
|
||||||
SaveObject(-42m);
|
SaveObject(-42m);
|
||||||
SaveObject(42m);
|
SaveObject(42m);
|
||||||
// SaveObject(decimal.MaxValue);
|
|
||||||
// SaveObject(decimal.MinValue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test, Ignore("SqlCe exception")]
|
[Test, Ignore("SqlCe exception")]
|
||||||
|
Loading…
Reference in New Issue
Block a user