Headless CMS and Content Managment Hub
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.
 
 
 
 
 

136 lines
4.0 KiB

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using FakeItEasy;
using Squidex.Domain.Apps.Core.Assets;
using Squidex.Domain.Apps.Entities.Assets.Commands;
using Squidex.Infrastructure.Assets;
using Squidex.Infrastructure.Json.Objects;
using Xunit;
namespace Squidex.Domain.Apps.Entities.Assets
{
public class ImageAssetMetadataSourceTests
{
private readonly IAssetThumbnailGenerator assetThumbnailGenerator = A.Fake<IAssetThumbnailGenerator>();
private readonly HashSet<string> tags = new HashSet<string>();
private readonly MemoryStream stream = new MemoryStream();
private readonly AssetFile file;
private readonly ImageAssetMetadataSource sut;
public ImageAssetMetadataSourceTests()
{
file = new AssetFile("MyImage.png", "image/png", 1024, () => stream);
sut = new ImageAssetMetadataSource(assetThumbnailGenerator);
}
[Fact]
public async Task Should_not_enhance_if_type_already_found()
{
var command = new CreateAsset { File = file, Type = AssetType.Image };
await sut.EnhanceAsync(command, tags);
A.CallTo(() => assetThumbnailGenerator.GetImageInfoAsync(A<Stream>._))
.MustNotHaveHappened();
}
[Fact]
public async Task Should_not_add_tag_if_no_image()
{
var command = new CreateAsset { File = file };
await sut.EnhanceAsync(command, tags);
Assert.Empty(tags);
}
[Fact]
public async Task Should_add_image_tag_if_small()
{
var command = new CreateAsset { Type = AssetType.Image };
command.Metadata.SetPixelWidth(100);
command.Metadata.SetPixelWidth(100);
await sut.EnhanceAsync(command, tags);
Assert.Contains("image", tags);
Assert.Contains("image/small", tags);
}
[Fact]
public async Task Should_add_image_tag_if_medium()
{
var command = new CreateAsset { Type = AssetType.Image };
command.Metadata.SetPixelWidth(800);
command.Metadata.SetPixelWidth(600);
await sut.EnhanceAsync(command, tags);
Assert.Contains("image", tags);
Assert.Contains("image/medium", tags);
}
[Fact]
public async Task Should_add_image_tag_if_large()
{
var command = new CreateAsset { Type = AssetType.Image };
command.Metadata.SetPixelWidth(1200);
command.Metadata.SetPixelWidth(1400);
await sut.EnhanceAsync(command, tags);
Assert.Contains("image", tags);
Assert.Contains("image/large", tags);
}
[Fact]
public void Should_format_image()
{
var source = new AssetEntity
{
Metadata = new AssetMetadata()
{
["pixelWidth"] = JsonValue.Create(128),
["pixelHeight"] = JsonValue.Create(55),
},
Type = AssetType.Image
};
var formatted = sut.Format(source);
Assert.Equal(new[] { "128x55px" }, formatted);
}
[Fact]
public void Should_not_format_video()
{
var source = new AssetEntity { Type = AssetType.Video };
var formatted = sut.Format(source);
Assert.Empty(formatted);
}
[Fact]
public void Should_not_format_audio()
{
var source = new AssetEntity { Type = AssetType.Audio };
var formatted = sut.Format(source);
Assert.Empty(formatted);
}
}
}