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.
61 lines
1.8 KiB
61 lines
1.8 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using Squidex.Domain.Apps.Core;
|
|
using Squidex.Domain.Apps.Entities.Assets.Queries.Steps;
|
|
using Squidex.Domain.Apps.Entities.TestHelpers;
|
|
using Squidex.Infrastructure.Json;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Assets.Queries;
|
|
|
|
public class CalculateTokensTests : GivenContext
|
|
{
|
|
private readonly IJsonSerializer serializer = A.Fake<IJsonSerializer>();
|
|
private readonly IUrlGenerator urlGenerator = A.Fake<IUrlGenerator>();
|
|
private readonly CalculateTokens sut;
|
|
|
|
public CalculateTokensTests()
|
|
{
|
|
sut = new CalculateTokens(urlGenerator, serializer);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_not_enrich_asset_edit_tokens_if_disabled()
|
|
{
|
|
var asset = CreateAsset();
|
|
|
|
await sut.EnrichAsync(ApiContext.Clone(b => b.WithNoAssetEnrichment()), Enumerable.Repeat(asset, 1), default);
|
|
|
|
Assert.Null(asset.EditToken);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_compute_ui_tokens()
|
|
{
|
|
var asset = CreateAsset();
|
|
|
|
await sut.EnrichAsync(ApiContext, new[] { asset }, CancellationToken);
|
|
|
|
Assert.NotNull(asset.EditToken);
|
|
|
|
A.CallTo(() => urlGenerator.Root())
|
|
.MustHaveHappened();
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_also_compute_ui_tokens_for_frontend()
|
|
{
|
|
var asset = CreateAsset();
|
|
|
|
await sut.EnrichAsync(FrontendContext, new[] { asset }, CancellationToken);
|
|
|
|
Assert.NotNull(asset.EditToken);
|
|
|
|
A.CallTo(() => urlGenerator.Root())
|
|
.MustHaveHappened();
|
|
}
|
|
}
|
|
|