* Removed obsoletes from IConfigManipulator. * Removed obsolete models builder extensions. * Removed the obsolete ContentDashboardSettings. * Removed the obsolete InstallMissingDatabase setting on GlobalSettings. * Removed obsolete NuCache settings. * Removed obsolete RuntimeMinificationSettings. * Removed obsolete health check constant. * Removed obsolete icon constant. * Removed obsolete telemetry constant. * Removed obsolete property and constructor on UmbracoBuilder. * Removed obsolete constructor on AuditNotificationsHandler. * Removed obsolete constructor on HTTP header health checks. * Removed obsolete constructor on MediaFileManager. * Removed obsolete GetDefaultFileContent on ViewHelper. * Remove obsoleted methods on embed providers. * Fix tests. * Removed obsolete constructors on BlockEditorDataConverter. * Removed obsolete SeedCacheDuration property on CacheSettings. * Removed obsolete PublishCulture on ContentRepositoryExtensions. * Removed obsolete MonitorLock. * Removed obsolete synchronous HasSavedValues from IDataTypeUsageService and IDataTypeUsageRepository. * Removed obsolete HasSavedPropertyValues from IPropertyTypeUsageService and IPropertyTypeUsageRepository. * Removed obsolete methods in ITrackedReferencesService and ITrackedReferencesRepository. * Removed obsolete DateValueEditor constructors. * Removed obsolete GetAutomaticRelationTypesAliases. * Removed obsolete constructor on TextOnlyValueEditor. * Removed obsolete constructors on RegexValidator and RequiredValidator. * Removed obsolete constructs on SliderValueConverter and TagsValueConverter. * Removed obsolete GetContentType methods from IPublishedCache. * Removed ContentFinderByIdPath. * Removed obsolete constructor on DefaultMediaUrlProvider. * Removed obsolete constructor on Domain. * Removed obsolete constructor on PublishedRequest. * Removed obsolete methods on CheckPermissions. * Removed obsolete GetUserId from IBackOfficeSecurity. * Removed obsolete methods on LegacyPasswordSecurity. * Removed obsolete constructors on AuditService. * Removed obsolete methods on IContentEditingService. * Remove obsolete constructors and methods on ContentService/IContentService. * Removed obsolete constructor in ContentTypeEditingService. * Removed obsolete constructor in MediaTypeEditingService. * Removed obsolete constructor in MemberTypeEditingService. * Removed obsolete constructor in ContentTypeService. * Removed obsolete constructors in ContentTypeServiceBase. * Removed obsolete constructors and methods in ContentVersionService. * Removed obsolete constructor in DataTypeUsageService. * Removed obsolete constructor in DomainService. * Removed obsolete constructor in FileService. * Removes obsolete AttemptMove from IContentService. * Removes obsolete SetPreventCleanup from IContentVersionService. * Removes obsolete GetReferences from IDataTypeService. * Removed obsolete SetConsentLevel from IMetricsConsentService. * Removed obsolete methods from IPackageDataInstallation. * Removed obsolete methods from IPackagingService. * Removed obsolete methods on ITwoFactorLoginService. Removed obsolete ITemporaryMediaService. * Removed obsolete constructor from MediaService, MemberTypeService and MediaTypeService. * More obsolete constructors. * Removed obsoleted overloads on IPropertyValidationService. * Fixed build for tests. * Removed obsolete constructor for PublicAccessService, UserService and RelationService. * Removed GetDefaultMemberType. * Removed obsolete user group functionality from IUserService. * Removed obsolete extension methods on IUserService. * Removed obsolete method from ITelemetryService. * Removed obsolete UdiParserServiceConnectors. * Removed obsolete method on ICookieManager. * Removed obsolete DynamicContext. * Removed obsolete XmlHelper. * Fixed failing integration tests. * Removed obsoletes in Umbraco.Cms.Api.Common * Removed obsoletes in Umbraco.Cms.Api.Delivery * Removed obsoletes in Umbraco.Cms.Api.Management * Removed obsoletes in Umbraco.Examine.Lucene * Removed obsoletes in Umbraco.Infrastructure * Fix failing delivery API contract integration test. * Made integration tests internal. * Removed obsoletes from web projects. * Fix build. * Removed Twitter OEmbed provider * Removed obsolete constructor on PublishedDataType. * Removed obsolete constructors on PublishedCacheBase. * Removed the obsolete PropertyEditorTagsExtensions. * Removed obsoletion properties on configuration response models (#18697) * Removed obsolete methods from server-side models. * Update client-side types and sdk. * Update client-side files. * Removed obsoletion of Utf8ToAsciiConverter.ToAsciiString overload. (#18694) * Removed obsolete method in UserService. (#18710) * Removed obsoleted group alias keys from being publicly available. (#18682) * Removed unneceessary ApiVersion attribute. * Clean-up obsoletions on MemberService (#18703) * Removed obsoleted method on MemberService, added future obsoletion to interface and updated all callers. * Removed obsoletion on member service method that's not obsolete on the interface.
362 lines
13 KiB
C#
362 lines
13 KiB
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using NPoco;
|
|
using NUnit.Framework;
|
|
using Umbraco.Cms.Core.Configuration;
|
|
using Umbraco.Cms.Core.Events;
|
|
using Umbraco.Cms.Core.Exceptions;
|
|
using Umbraco.Cms.Core.Migrations;
|
|
using Umbraco.Cms.Core.Services;
|
|
using Umbraco.Cms.Infrastructure.Migrations;
|
|
using Umbraco.Cms.Infrastructure.Migrations.Install;
|
|
using Umbraco.Cms.Infrastructure.Migrations.Notifications;
|
|
using Umbraco.Cms.Infrastructure.Migrations.Upgrade;
|
|
using Umbraco.Cms.Infrastructure.Persistence;
|
|
using Umbraco.Cms.Infrastructure.Persistence.DatabaseAnnotations;
|
|
using Umbraco.Cms.Infrastructure.Scoping;
|
|
using Umbraco.Cms.Tests.Common.Testing;
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Migrations;
|
|
|
|
// These tests depend on the key-value table, so we need a schema to run these tests.
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
|
[TestFixture]
|
|
internal sealed class PartialMigrationsTests : UmbracoIntegrationTest
|
|
{
|
|
public const string TableName = "testTable";
|
|
public const string ColumnName = "testColumn";
|
|
|
|
private IMigrationPlanExecutor MigrationPlanExecutor => GetRequiredService<IMigrationPlanExecutor>();
|
|
|
|
private IKeyValueService KeyValueService => GetRequiredService<IKeyValueService>();
|
|
|
|
[TearDown]
|
|
public void ResetMigration()
|
|
{
|
|
ErrorMigration.ShouldExplode = true;
|
|
UmbracoPlanExecutedTestNotificationHandler.HandleNotification = null;
|
|
}
|
|
|
|
protected override void ConfigureTestServices(IServiceCollection services)
|
|
=> services.AddNotificationHandler<UmbracoPlanExecutedNotification, UmbracoPlanExecutedTestNotificationHandler>();
|
|
|
|
[Test]
|
|
public async Task CanRerunPartiallyCompletedMigration()
|
|
{
|
|
var plan = new MigrationPlan("test")
|
|
.From(string.Empty)
|
|
.To<CreateTableMigration>("a")
|
|
.To<ErrorMigration>("b")
|
|
.To<AddColumnMigration>("c");
|
|
|
|
var upgrader = new Upgrader(plan);
|
|
|
|
var result = await upgrader.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
|
|
Assert.Multiple(() =>
|
|
{
|
|
Assert.IsFalse(result.Successful);
|
|
Assert.AreEqual(string.Empty, result.InitialState);
|
|
Assert.AreEqual("a", result.FinalState);
|
|
Assert.AreEqual(1, result.CompletedTransitions.Count);
|
|
Assert.IsNotNull(result.Exception);
|
|
|
|
// Ensure that the partial success is saved in the keyvalue service so next plan execution starts correctly.
|
|
using var scope = ScopeProvider.CreateScope(autoComplete: true);
|
|
Assert.AreEqual("a", KeyValueService.GetValue(upgrader.StateValueKey));
|
|
// Ensure that the changes from the first migration is persisted
|
|
Assert.IsTrue(scope.Database.HasTable(TableName));
|
|
// But that the final migration wasn't run
|
|
Assert.IsFalse(ColumnExists(TableName, ColumnName, scope));
|
|
});
|
|
|
|
// Now let's simulate that someone came along and fixed the broken migration and we'll now try and rerun
|
|
ErrorMigration.ShouldExplode = false;
|
|
upgrader = new Upgrader(plan);
|
|
result = await upgrader.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
|
|
Assert.Multiple(() =>
|
|
{
|
|
Assert.AreEqual("a", result.InitialState);
|
|
Assert.IsTrue(result.Successful);
|
|
Assert.IsNull(result.Exception);
|
|
Assert.AreEqual(2, result.CompletedTransitions.Count);
|
|
Assert.AreEqual("c", result.FinalState);
|
|
|
|
// Ensure that everything got updated in the database.
|
|
using var scope = ScopeProvider.CreateScope(autoComplete: true);
|
|
Assert.AreEqual("c", KeyValueService.GetValue(upgrader.StateValueKey));
|
|
Assert.IsTrue(scope.Database.HasTable(TableName));
|
|
Assert.IsTrue(ColumnExists(TableName, ColumnName, scope));
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public async Task CanRunMigrationTwice()
|
|
{
|
|
Upgrader? upgrader = new(new SimpleMigrationPlan());
|
|
Upgrader? upgrader2 = new(new SimpleMigrationPlan());
|
|
var result = await upgrader.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
var result2 = await upgrader2.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
|
|
Assert.Multiple(() =>
|
|
{
|
|
Assert.True(result.Successful);
|
|
Assert.AreEqual("SimpleMigrationPlan_InitialState", result.InitialState);
|
|
Assert.AreEqual("SimpleMigrationStep", result.FinalState);
|
|
Assert.AreEqual(1, result.CompletedTransitions.Count);
|
|
Assert.IsNull(result.Exception);
|
|
Assert.True(result2.Successful);
|
|
Assert.IsNull(result2.Exception);
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public async Task StateIsOnlySavedIfAMigrationSucceeds()
|
|
{
|
|
var plan = new MigrationPlan("test")
|
|
.From(string.Empty)
|
|
.To<ErrorMigration>("a")
|
|
.To<CreateTableMigration>("b");
|
|
|
|
var upgrader = new Upgrader(plan);
|
|
var result = await upgrader.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
|
|
Assert.Multiple(() =>
|
|
{
|
|
Assert.IsFalse(result.Successful);
|
|
Assert.IsNotNull(result.Exception);
|
|
Assert.IsInstanceOf<PanicException>(result.Exception);
|
|
Assert.IsEmpty(result.CompletedTransitions);
|
|
Assert.AreEqual(string.Empty, result.InitialState);
|
|
Assert.AreEqual(string.Empty, result.FinalState);
|
|
|
|
using var scope = ScopeProvider.CreateCoreScope();
|
|
Assert.IsNull(KeyValueService.GetValue(upgrader.StateValueKey));
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public async Task ScopesAreCreatedIfNecessary()
|
|
{
|
|
// The migrations have assert to ensure scopes
|
|
var plan = new MigrationPlan("test")
|
|
.From(string.Empty)
|
|
.To<AsserScopeScopedTestMigration>("a")
|
|
.To<AssertScopeUnscopedTestMigration>("b");
|
|
|
|
var upgrader = new Upgrader(plan);
|
|
var result = await upgrader.ExecuteAsync(MigrationPlanExecutor, ScopeProvider, KeyValueService).ConfigureAwait(false);
|
|
|
|
Assert.IsTrue(result.Successful);
|
|
Assert.AreEqual(2, result.CompletedTransitions.Count);
|
|
Assert.AreEqual("b", result.FinalState);
|
|
}
|
|
|
|
[Test]
|
|
[TestCase(true)]
|
|
[TestCase(false)]
|
|
public async Task UmbracoPlanExecutedNotificationIsAlwaysPublished(bool shouldSucceed)
|
|
{
|
|
var notificationPublished = false;
|
|
ErrorMigration.ShouldExplode = shouldSucceed is false;
|
|
|
|
UmbracoPlanExecutedTestNotificationHandler.HandleNotification += notification =>
|
|
{
|
|
notificationPublished = true;
|
|
Assert.Multiple(() =>
|
|
{
|
|
var executedPlan = notification.ExecutedPlan;
|
|
|
|
if (shouldSucceed)
|
|
{
|
|
Assert.IsTrue(executedPlan.Successful);
|
|
Assert.IsNull(executedPlan.Exception);
|
|
Assert.AreEqual("c", executedPlan.FinalState);
|
|
Assert.AreEqual(3, executedPlan.CompletedTransitions.Count);
|
|
}
|
|
else
|
|
{
|
|
Assert.IsFalse(executedPlan.Successful);
|
|
Assert.IsNotNull(executedPlan.Exception);
|
|
Assert.IsInstanceOf<PanicException>(executedPlan.Exception);
|
|
Assert.AreEqual("a", executedPlan.FinalState);
|
|
Assert.AreEqual(1, executedPlan.CompletedTransitions.Count);
|
|
}
|
|
});
|
|
};
|
|
|
|
// We have to use the DatabaseBuilder otherwise the notification isn't published
|
|
var databaseBuilder = GetRequiredService<DatabaseBuilder>();
|
|
var plan = new TestUmbracoPlan(null!);
|
|
await databaseBuilder.UpgradeSchemaAndDataAsync(plan).ConfigureAwait(false);
|
|
|
|
Assert.IsTrue(notificationPublished);
|
|
}
|
|
|
|
private bool ColumnExists(string tableName, string columnName, IScope scope) =>
|
|
scope.Database.SqlContext.SqlSyntax.GetColumnsInSchema(scope.Database)
|
|
.Any(x => x.TableName.Equals(tableName) && x.ColumnName.Equals(columnName));
|
|
}
|
|
|
|
|
|
// This is just some basic migrations to test the migration plans...
|
|
internal class ErrorMigration : MigrationBase
|
|
{
|
|
// Used to determine if an exception should be thrown, used to test re-running migrations
|
|
public static bool ShouldExplode { get; set; } = true;
|
|
|
|
public ErrorMigration(IMigrationContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
protected override void Migrate()
|
|
{
|
|
if (ShouldExplode)
|
|
{
|
|
throw new PanicException();
|
|
}
|
|
}
|
|
}
|
|
|
|
internal class CreateTableMigration : MigrationBase
|
|
{
|
|
public CreateTableMigration(IMigrationContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
protected override void Migrate() => Create.Table<TestDto>().Do();
|
|
}
|
|
|
|
internal class AddColumnMigration : MigrationBase
|
|
{
|
|
public AddColumnMigration(IMigrationContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
protected override void Migrate() => Create
|
|
.Column(PartialMigrationsTests.ColumnName)
|
|
.OnTable(PartialMigrationsTests.TableName)
|
|
.AsString()
|
|
.Do();
|
|
}
|
|
|
|
internal class AssertScopeUnscopedTestMigration : UnscopedAsyncMigrationBase
|
|
{
|
|
private readonly IScopeProvider _scopeProvider;
|
|
private readonly IScopeAccessor _scopeAccessor;
|
|
|
|
public AssertScopeUnscopedTestMigration(
|
|
IMigrationContext context,
|
|
IScopeProvider scopeProvider,
|
|
IScopeAccessor scopeAccessor) : base(context)
|
|
{
|
|
_scopeProvider = scopeProvider;
|
|
_scopeAccessor = scopeAccessor;
|
|
}
|
|
|
|
protected override Task MigrateAsync()
|
|
{
|
|
// Since this is a scopeless migration both ambient scope and the parent scope should be null
|
|
Assert.IsNull(_scopeAccessor.AmbientScope);
|
|
|
|
using var scope = _scopeProvider.CreateScope();
|
|
Assert.IsNull(((Scope)scope).ParentScope);
|
|
|
|
Context.Complete();
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|
|
internal class AsserScopeScopedTestMigration : MigrationBase
|
|
{
|
|
private readonly IScopeProvider _scopeProvider;
|
|
private readonly IScopeAccessor _scopeAccessor;
|
|
|
|
public AsserScopeScopedTestMigration(
|
|
IMigrationContext context,
|
|
IScopeProvider scopeProvider,
|
|
IScopeAccessor scopeAccessor) : base(context)
|
|
{
|
|
_scopeProvider = scopeProvider;
|
|
_scopeAccessor = scopeAccessor;
|
|
}
|
|
|
|
protected override void Migrate()
|
|
{
|
|
Assert.IsNotNull(_scopeAccessor.AmbientScope);
|
|
|
|
using var scope = _scopeProvider.CreateScope();
|
|
|
|
Assert.IsNotNull(((Scope)scope).ParentScope);
|
|
}
|
|
}
|
|
|
|
[TableName(PartialMigrationsTests.TableName)]
|
|
[PrimaryKey("id", AutoIncrement = true)]
|
|
internal class TestDto
|
|
{
|
|
[Column("id")]
|
|
[PrimaryKeyColumn(Name = "PK_testTable")]
|
|
public int Id { get; set; }
|
|
}
|
|
|
|
internal class UmbracoPlanExecutedTestNotificationHandler : INotificationHandler<UmbracoPlanExecutedNotification>
|
|
{
|
|
public static Action<UmbracoPlanExecutedNotification>? HandleNotification { get; set; }
|
|
|
|
public void Handle(UmbracoPlanExecutedNotification notification) => HandleNotification?.Invoke(notification);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// This is a fake UmbracoPlan used for testing of the DatabaseBuilder, this overrides everything to be of type
|
|
/// UmbracoPlan but behave like a normal migration plan.
|
|
/// </summary>
|
|
internal class TestUmbracoPlan : UmbracoPlan
|
|
{
|
|
public TestUmbracoPlan(IUmbracoVersion umbracoVersion) : base(umbracoVersion)
|
|
{
|
|
}
|
|
|
|
public override string InitialState => string.Empty;
|
|
|
|
public override bool IgnoreCurrentState => true;
|
|
|
|
protected override void DefinePlan()
|
|
{
|
|
From(InitialState);
|
|
To<CreateTableMigration>("a");
|
|
To<ErrorMigration>("b");
|
|
To<AddColumnMigration>("c");
|
|
}
|
|
}
|
|
|
|
internal class SimpleMigrationPlan : MigrationPlan
|
|
{
|
|
public SimpleMigrationPlan()
|
|
: base("SimpleMigrationPlan") => DefinePlan();
|
|
|
|
public override string InitialState => "SimpleMigrationPlan_InitialState";
|
|
|
|
private void DefinePlan()
|
|
{
|
|
MigrationPlan plan = From(InitialState)
|
|
.To<SimpleMigrationStep>(nameof(SimpleMigrationStep));
|
|
}
|
|
}
|
|
|
|
internal class SimpleMigrationStep : MigrationBase
|
|
{
|
|
private readonly ILogger<SimpleMigrationStep> _logger;
|
|
|
|
public SimpleMigrationStep(
|
|
IMigrationContext context,
|
|
ILogger<SimpleMigrationStep> logger)
|
|
: base(context) => _logger = logger;
|
|
|
|
protected override void Migrate() => _logger.LogDebug("Here be migration");
|
|
}
|