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.
154 lines
4.9 KiB
154 lines
4.9 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using FakeItEasy;
|
|
using Squidex.Domain.Apps.Core.Tags;
|
|
using Squidex.Domain.Apps.Entities.TestHelpers;
|
|
using Squidex.Infrastructure;
|
|
using Xunit;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Assets.Queries
|
|
{
|
|
public class AssetEnricherTests
|
|
{
|
|
private readonly ITagService tagService = A.Fake<ITagService>();
|
|
private readonly IAssetMetadataSource assetMetadataSource1 = A.Fake<IAssetMetadataSource>();
|
|
private readonly IAssetMetadataSource assetMetadataSource2 = A.Fake<IAssetMetadataSource>();
|
|
private readonly NamedId<Guid> appId = NamedId.Of(Guid.NewGuid(), "my-app");
|
|
private readonly Context requestContext = Context.Anonymous();
|
|
private readonly AssetEnricher sut;
|
|
|
|
public AssetEnricherTests()
|
|
{
|
|
var assetMetadataSources = new[]
|
|
{
|
|
assetMetadataSource1,
|
|
assetMetadataSource2
|
|
};
|
|
|
|
sut = new AssetEnricher(tagService, assetMetadataSources);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_not_enrich_if_asset_contains_null_tags()
|
|
{
|
|
var source = new AssetEntity { AppId = appId };
|
|
|
|
var result = await sut.EnrichAsync(source, requestContext);
|
|
|
|
Assert.Empty(result.TagNames);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_enrich_asset_with_tag_names()
|
|
{
|
|
var source = new AssetEntity
|
|
{
|
|
Tags = new HashSet<string>
|
|
{
|
|
"id1",
|
|
"id2"
|
|
},
|
|
AppId = appId
|
|
};
|
|
|
|
A.CallTo(() => tagService.DenormalizeTagsAsync(appId.Id, TagGroups.Assets, A<HashSet<string>>.That.Has("id1", "id2")))
|
|
.Returns(new Dictionary<string, string>
|
|
{
|
|
["id1"] = "name1",
|
|
["id2"] = "name2"
|
|
});
|
|
|
|
var result = await sut.EnrichAsync(source, requestContext);
|
|
|
|
Assert.Equal(new HashSet<string> { "name1", "name2" }, result.TagNames);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_not_enrich_asset_with_tag_names_if_disabled()
|
|
{
|
|
var source = new AssetEntity
|
|
{
|
|
Tags = new HashSet<string>
|
|
{
|
|
"id1",
|
|
"id2"
|
|
},
|
|
AppId = appId
|
|
};
|
|
|
|
var result = await sut.EnrichAsync(source, requestContext.Clone().WithNoAssetEnrichment());
|
|
|
|
Assert.Null(result.TagNames);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_enrich_asset_with_metadata()
|
|
{
|
|
var source = new AssetEntity
|
|
{
|
|
FileSize = 2 * 1024,
|
|
Tags = new HashSet<string>
|
|
{
|
|
"id1",
|
|
"id2"
|
|
},
|
|
AppId = appId
|
|
};
|
|
|
|
A.CallTo(() => assetMetadataSource1.Format(A<IAssetEntity>.Ignored))
|
|
.Returns(new[] { "metadata1" });
|
|
|
|
A.CallTo(() => assetMetadataSource2.Format(A<IAssetEntity>.Ignored))
|
|
.Returns(new[] { "metadata2", "metadata3" });
|
|
|
|
var result = await sut.EnrichAsync(source, requestContext);
|
|
|
|
Assert.Equal("metadata1, metadata2, metadata3, 2 kB", result.MetadataText);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_enrich_multiple_assets_with_tag_names()
|
|
{
|
|
var source1 = new AssetEntity
|
|
{
|
|
Tags = new HashSet<string>
|
|
{
|
|
"id1",
|
|
"id2"
|
|
},
|
|
AppId = appId
|
|
};
|
|
|
|
var source2 = new AssetEntity
|
|
{
|
|
Tags = new HashSet<string>
|
|
{
|
|
"id2",
|
|
"id3"
|
|
},
|
|
AppId = appId
|
|
};
|
|
|
|
A.CallTo(() => tagService.DenormalizeTagsAsync(appId.Id, TagGroups.Assets, A<HashSet<string>>.That.Has("id1", "id2", "id3")))
|
|
.Returns(new Dictionary<string, string>
|
|
{
|
|
["id1"] = "name1",
|
|
["id2"] = "name2",
|
|
["id3"] = "name3"
|
|
});
|
|
|
|
var result = await sut.EnrichAsync(new[] { source1, source2 }, requestContext);
|
|
|
|
Assert.Equal(new HashSet<string> { "name1", "name2" }, result[0].TagNames);
|
|
Assert.Equal(new HashSet<string> { "name2", "name3" }, result[1].TagNames);
|
|
}
|
|
}
|
|
}
|
|
|