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.
104 lines
3.6 KiB
104 lines
3.6 KiB
// ==========================================================================
|
|
// StringFieldPropertiesTests.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using Squidex.Domain.Apps.Core.Schemas;
|
|
using Squidex.Infrastructure;
|
|
using Xunit;
|
|
|
|
namespace Squidex.Domain.Apps.Write.Schemas.Guards.FieldProperties
|
|
{
|
|
public class StringFieldPropertiesTests
|
|
{
|
|
[Fact]
|
|
public void Should_add_error_if_min_greater_than_max()
|
|
{
|
|
var sut = new StringFieldProperties { MinLength = 10, MaxLength = 5 };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Max length must be greater than min length.", "MinLength", "MaxLength")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_add_error_if_allowed_values_and_max_value_is_specified()
|
|
{
|
|
var sut = new StringFieldProperties { MinLength = 10, AllowedValues = new[] { "4" } };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Either allowed values or min and max length can be defined.", "AllowedValues", "MinLength", "MaxLength")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_add_error_if_allowed_values_and_min_value_is_specified()
|
|
{
|
|
var sut = new StringFieldProperties { MaxLength = 10, AllowedValues = new string[] { "4" } };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Either allowed values or min and max length can be defined.", "AllowedValues", "MinLength", "MaxLength")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_add_error_if_radio_button_has_no_allowed_values()
|
|
{
|
|
var sut = new StringFieldProperties { Editor = StringFieldEditor.Radio };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Radio buttons or dropdown list need allowed values.", "AllowedValues")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_add_error_if_editor_is_not_valid()
|
|
{
|
|
var sut = new StringFieldProperties { Editor = (StringFieldEditor)123 };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Editor is not a valid value.", "Editor")
|
|
});
|
|
}
|
|
|
|
[Fact]
|
|
public void Should_add_error_if_pattern_is_not_valid_regex()
|
|
{
|
|
var sut = new StringFieldProperties { Pattern = "[0-9{1}" };
|
|
|
|
var errors = FieldPropertiesValidator.Validate(sut).ToList();
|
|
|
|
errors.ShouldBeEquivalentTo(
|
|
new List<ValidationError>
|
|
{
|
|
new ValidationError("Pattern is not a valid expression.", "Pattern")
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|