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.
86 lines
3.1 KiB
86 lines
3.1 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using FluentAssertions;
|
|
using Squidex.Domain.Apps.Core.Rules.Actions;
|
|
using Squidex.Infrastructure;
|
|
using Xunit;
|
|
|
|
namespace Squidex.Domain.Apps.Entities.Rules.Guards.Actions
|
|
{
|
|
public class ElasticSearchActionTests
|
|
{
|
|
[Fact]
|
|
public async Task Should_add_error_if_host_is_null()
|
|
{
|
|
var action = new ElasticSearchAction { Host = null, IndexName = "squidex", IndexType = "squidex" };
|
|
|
|
var errors = await RuleActionValidator.ValidateAsync(action);
|
|
|
|
errors.Should().BeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Host is required and must be an absolute URL.", "Host")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_add_error_if_host_is_relative()
|
|
{
|
|
var action = new ElasticSearchAction { Host = new Uri("/rel", UriKind.Relative), IndexName = "squidex", IndexType = "squidex" };
|
|
|
|
var errors = await RuleActionValidator.ValidateAsync(action);
|
|
|
|
errors.Should().BeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Host is required and must be an absolute URL.", "Host")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_add_error_if_index_name_is_null()
|
|
{
|
|
var action = new ElasticSearchAction { Host = new Uri("http://host", UriKind.Absolute), IndexName = null, IndexType = "squidex" };
|
|
|
|
var errors = await RuleActionValidator.ValidateAsync(action);
|
|
|
|
errors.Should().BeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Index name is required.", "IndexName")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_add_error_if_index_type_is_null()
|
|
{
|
|
var action = new ElasticSearchAction { Host = new Uri("http://host", UriKind.Absolute), IndexName = "squidex", IndexType = null };
|
|
|
|
var errors = await RuleActionValidator.ValidateAsync(action);
|
|
|
|
errors.Should().BeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Type name is required.", "IndexType")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Should_not_add_error_if_values_are_valid()
|
|
{
|
|
var action = new ElasticSearchAction { Host = new Uri("http://host", UriKind.Absolute), IndexName = "squidex", IndexType = "squidex" };
|
|
|
|
var errors = await RuleActionValidator.ValidateAsync(action);
|
|
|
|
Assert.Empty(errors);
|
|
}
|
|
}
|
|
}
|
|
|