Benedek Farkas 2024-11-28 16:42:04 +01:00
parent 4c1afb119b
commit f3e9f9550d
4 changed files with 36 additions and 13 deletions

View File

@ -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)
}; };
} }
} }

View File

@ -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]

View File

@ -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]

View File

@ -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")]