mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using FakeItEasy;
|
|
using Squidex.Domain.Apps.Entities.Apps.Commands;
|
|
using Squidex.Domain.Apps.Entities.Schemas.Commands;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.Commands;
|
|
using Xunit;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Apps.Templates
|
|
{
|
|
public class TemplatesTests
|
|
{
|
|
private readonly ICommandBus commandBus = A.Fake<ICommandBus>();
|
|
|
|
public static readonly IEnumerable<object[]> TemplateTests = new[]
|
|
{
|
|
new object[] { new CreateBlog() },
|
|
new object[] { new CreateProfile() }
|
|
};
|
|
|
|
[Theory]
|
|
[MemberData(nameof(TemplateTests))]
|
|
public async Task Should_create_schemas(ITemplate template)
|
|
{
|
|
var appId = NamedId.Of(DomainId.NewGuid(), "my-app");
|
|
|
|
var command = new CreateApp { AppId = appId.Id, Name = appId.Name, Template = template.Name };
|
|
|
|
var context =
|
|
new CommandContext(command, commandBus)
|
|
.Complete();
|
|
|
|
var sut = new TemplateCommandMiddleware(Enumerable.Repeat(template, 1));
|
|
|
|
await sut.HandleAsync(context);
|
|
|
|
A.CallTo(() => commandBus.PublishAsync(A<CreateSchema>.That.Matches(x => x.AppId == appId)))
|
|
.MustHaveHappened();
|
|
}
|
|
}
|
|
}
|
|
|