* check for completed transitions before accessing target state * upgrader should be happy with initial and final state being the same value - only an empty final state should throw * refactor * reduce complexity * Don't check for successfull * Add test that runs migration twice --------- Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com>
357 lines
12 KiB
C#
357 lines
12 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]
|
|
public 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 void 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 = upgrader.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
|
|
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 = upgrader.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
|
|
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 void CanRunMigrationTwice()
|
|
{
|
|
Upgrader? upgrader = new(new SimpleMigrationPlan());
|
|
Upgrader? upgrader2 = new(new SimpleMigrationPlan());
|
|
var result = upgrader.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
var result2 = upgrader2.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
|
|
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 void StateIsOnlySavedIfAMigrationSucceeds()
|
|
{
|
|
var plan = new MigrationPlan("test")
|
|
.From(string.Empty)
|
|
.To<ErrorMigration>("a")
|
|
.To<CreateTableMigration>("b");
|
|
|
|
var upgrader = new Upgrader(plan);
|
|
var result = upgrader.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
|
|
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 void ScopesAreCreatedIfNecessary()
|
|
{
|
|
// The migrations have assert to esnure scopes
|
|
var plan = new MigrationPlan("test")
|
|
.From(string.Empty)
|
|
.To<AsserScopeScopedTestMigration>("a")
|
|
.To<AssertScopeUnscopedTestMigration>("b");
|
|
|
|
var upgrader = new Upgrader(plan);
|
|
var result = upgrader.Execute(MigrationPlanExecutor, ScopeProvider, KeyValueService);
|
|
|
|
Assert.IsTrue(result.Successful);
|
|
Assert.AreEqual(2, result.CompletedTransitions.Count);
|
|
Assert.AreEqual("b", result.FinalState);
|
|
}
|
|
|
|
[Test]
|
|
[TestCase(true)]
|
|
[TestCase(false)]
|
|
public void 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!);
|
|
databaseBuilder.UpgradeSchemaAndData(plan);
|
|
|
|
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 : UnscopedMigrationBase
|
|
{
|
|
private readonly IScopeProvider _scopeProvider;
|
|
private readonly IScopeAccessor _scopeAccessor;
|
|
|
|
public AssertScopeUnscopedTestMigration(
|
|
IMigrationContext context,
|
|
IScopeProvider scopeProvider,
|
|
IScopeAccessor scopeAccessor) : base(context)
|
|
{
|
|
_scopeProvider = scopeProvider;
|
|
_scopeAccessor = scopeAccessor;
|
|
}
|
|
|
|
protected override void Migrate()
|
|
{
|
|
// 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);
|
|
}
|
|
}
|
|
|
|
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");
|
|
} |