* Rename Umbraco.Core namespace to Umbraco.Cms.Core * Move extension methods in core project to Umbraco.Extensions * Move extension methods in core project to Umbraco.Extensions * Rename Umbraco.Examine namespace to Umbraco.Cms.Examine * Move examine extensions to Umbraco.Extensions namespace * Reflect changed namespaces in Builder and fix unit tests * Adjust namespace in Umbraco.ModelsBuilder.Embedded * Adjust namespace in Umbraco.Persistence.SqlCe * Adjust namespace in Umbraco.PublishedCache.NuCache * Align namespaces in Umbraco.Web.BackOffice * Align namespaces in Umbraco.Web.Common * Ensure that SqlCeSupport is still enabled after changing the namespace * Align namespaces in Umbraco.Web.Website * Align namespaces in Umbraco.Web.UI.NetCore * Align namespaces in Umbraco.Tests.Common * Align namespaces in Umbraco.Tests.UnitTests * Align namespaces in Umbraco.Tests.Integration * Fix errors caused by changed namespaces * Fix integration tests * Undo the Umbraco.Examine.Lucene namespace change This breaks integration tests on linux, since the namespace wont exists there because it's only used on windows. * Fix merge * Fix Merge
80 lines
2.8 KiB
C#
80 lines
2.8 KiB
C#
using System;
|
|
using System.IO;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using Moq;
|
|
using NPoco;
|
|
using NUnit.Framework;
|
|
using Umbraco.Cms.Core.Cache;
|
|
using Umbraco.Cms.Core.Composing;
|
|
using Umbraco.Cms.Core.DependencyInjection;
|
|
using Umbraco.Cms.Core.Logging;
|
|
using Umbraco.Cms.Persistence.SqlCe;
|
|
using Umbraco.Core.Persistence;
|
|
using Umbraco.Core.Persistence.Mappers;
|
|
using Umbraco.Extensions;
|
|
using Umbraco.Web;
|
|
using Umbraco.Web.Composing;
|
|
using Constants = Umbraco.Cms.Core.Constants;
|
|
|
|
namespace Umbraco.Tests.TestHelpers
|
|
{
|
|
[TestFixture]
|
|
public abstract class BaseUsingSqlCeSyntax
|
|
{
|
|
protected IMapperCollection Mappers { get; private set; }
|
|
|
|
protected ISqlContext SqlContext { get; private set; }
|
|
|
|
internal TestObjects TestObjects = new TestObjects();
|
|
|
|
protected Sql<ISqlContext> Sql()
|
|
{
|
|
return NPoco.Sql.BuilderFor(SqlContext);
|
|
}
|
|
|
|
[SetUp]
|
|
public virtual void Initialize()
|
|
{
|
|
var services = TestHelper.GetRegister();
|
|
|
|
var ioHelper = TestHelper.IOHelper;
|
|
var logger = new ProfilingLogger(Mock.Of<ILogger<ProfilingLogger>>(), Mock.Of<IProfiler>());
|
|
var typeFinder = TestHelper.GetTypeFinder();
|
|
var typeLoader = new TypeLoader(typeFinder, NoAppCache.Instance,
|
|
new DirectoryInfo(ioHelper.MapPath(Constants.SystemDirectories.TempData)),
|
|
Mock.Of<ILogger<TypeLoader>>(),
|
|
logger,
|
|
false);
|
|
|
|
var composition = new UmbracoBuilder(services, Mock.Of<IConfiguration>(), TestHelper.GetMockedTypeLoader());
|
|
|
|
|
|
services.AddUnique<ILogger>(_ => Mock.Of<ILogger>());
|
|
services.AddUnique<ILoggerFactory>(_ => NullLoggerFactory.Instance);
|
|
services.AddUnique<IProfiler>(_ => Mock.Of<IProfiler>());
|
|
services.AddUnique(typeLoader);
|
|
|
|
composition.WithCollectionBuilder<MapperCollectionBuilder>()
|
|
.AddCoreMappers();
|
|
|
|
services.AddUnique<ISqlContext>(_ => SqlContext);
|
|
|
|
var factory = Current.Factory = composition.CreateServiceProvider();
|
|
|
|
var pocoMappers = new NPoco.MapperCollection { new PocoMapper() };
|
|
var pocoDataFactory = new FluentPocoDataFactory((type, iPocoDataFactory) => new PocoDataBuilder(type, pocoMappers).Init());
|
|
var sqlSyntax = new SqlCeSyntaxProvider();
|
|
SqlContext = new SqlContext(sqlSyntax, DatabaseType.SQLCe, pocoDataFactory, new Lazy<IMapperCollection>(() => factory.GetRequiredService<IMapperCollection>()));
|
|
Mappers = factory.GetRequiredService<IMapperCollection>();
|
|
|
|
SetUp();
|
|
}
|
|
|
|
public virtual void SetUp()
|
|
{}
|
|
}
|
|
}
|