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.
102 lines
3.5 KiB
102 lines
3.5 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using FakeItEasy;
|
|
using Orleans;
|
|
using Squidex.Domain.Apps.Entities.Apps.Commands;
|
|
using Squidex.Domain.Apps.Entities.Apps.State;
|
|
using Squidex.Domain.Apps.Entities.TestHelpers;
|
|
using Squidex.Infrastructure.Assets;
|
|
using Squidex.Infrastructure.Commands;
|
|
using Squidex.Infrastructure.Validation;
|
|
using Xunit;
|
|
|
|
#pragma warning disable IDE0067 // Dispose objects before losing scope
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Apps
|
|
{
|
|
public class AppCommandMiddlewareTests : HandlerTestBase<AppState>
|
|
{
|
|
private readonly IContextProvider contextProvider = A.Fake<IContextProvider>();
|
|
private readonly IAssetStore assetStore = A.Fake<IAssetStore>();
|
|
private readonly IAssetThumbnailGenerator assetThumbnailGenerator = A.Fake<IAssetThumbnailGenerator>();
|
|
private readonly Guid appId = Guid.NewGuid();
|
|
private readonly Context requestContext = Context.Anonymous();
|
|
private readonly AppCommandMiddleware sut;
|
|
|
|
public sealed class MyCommand : SquidexCommand
|
|
{
|
|
}
|
|
|
|
protected override Guid Id
|
|
{
|
|
get { return appId; }
|
|
}
|
|
|
|
public AppCommandMiddlewareTests()
|
|
{
|
|
A.CallTo(() => contextProvider.Context)
|
|
.Returns(requestContext);
|
|
|
|
sut = new AppCommandMiddleware(A.Fake<IGrainFactory>(), assetStore, assetThumbnailGenerator, contextProvider);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_replace_context_app_with_grain_result()
|
|
{
|
|
var result = A.Fake<IAppEntity>();
|
|
|
|
var command = CreateCommand(new MyCommand());
|
|
var context = CreateContextForCommand(command);
|
|
|
|
context.Complete(result);
|
|
|
|
await sut.HandleAsync(context);
|
|
|
|
Assert.Same(result, requestContext.App);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_upload_image_to_store()
|
|
{
|
|
var stream = new MemoryStream();
|
|
|
|
var file = new AssetFile("name.jpg", "image/jpg", 1024, () => stream);
|
|
|
|
var command = CreateCommand(new UploadAppImage { AppId = appId, File = file });
|
|
var context = CreateContextForCommand(command);
|
|
|
|
A.CallTo(() => assetThumbnailGenerator.GetImageInfoAsync(stream))
|
|
.Returns(new ImageInfo(100, 100));
|
|
|
|
await sut.HandleAsync(context);
|
|
|
|
A.CallTo(() => assetStore.UploadAsync(appId.ToString(), stream, true, A<CancellationToken>.Ignored))
|
|
.MustHaveHappened();
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_throw_exception_when_file_to_upload_is_not_an_image()
|
|
{
|
|
var stream = new MemoryStream();
|
|
|
|
var file = new AssetFile("name.jpg", "image/jpg", 1024, () => stream);
|
|
|
|
var command = CreateCommand(new UploadAppImage { AppId = appId, File = file });
|
|
var context = CreateContextForCommand(command);
|
|
|
|
A.CallTo(() => assetThumbnailGenerator.GetImageInfoAsync(stream))
|
|
.Returns(Task.FromResult<ImageInfo>(null));
|
|
|
|
await Assert.ThrowsAsync<ValidationException>(() => sut.HandleAsync(context));
|
|
}
|
|
}
|
|
}
|
|
|