# Conflicts: # src/Umbraco.Core/Persistence/Repositories/Implement/ContentRepositoryBase.cs # src/Umbraco.Core/Persistence/Repositories/Implement/DocumentBlueprintRepository.cs # src/Umbraco.Core/Persistence/Repositories/Implement/DocumentRepository.cs # src/Umbraco.Core/Persistence/Repositories/Implement/MediaRepository.cs # src/Umbraco.Core/Persistence/Repositories/Implement/MemberRepository.cs # src/Umbraco.Tests/Persistence/Repositories/ContentTypeRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/DocumentRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/DomainRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/MediaRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/MemberRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/PublicAccessRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/TagRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/TemplateRepositoryTest.cs # src/Umbraco.Tests/Persistence/Repositories/UserRepositoryTest.cs # src/Umbraco.Tests/Published/NestedContentTests.cs # src/Umbraco.Tests/PublishedContent/PublishedContentTestBase.cs # src/Umbraco.Tests/PublishedContent/PublishedContentTests.cs # src/Umbraco.Tests/Services/ContentServicePerformanceTest.cs # src/Umbraco.Tests/Services/ContentServiceTests.cs # src/Umbraco.Tests/Web/TemplateUtilitiesTests.cs # src/Umbraco.Web/PropertyEditors/ContentPickerPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/GridPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/MediaPickerPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/MultiUrlPickerPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/NestedContentPropertyEditor.cs # src/Umbraco.Web/PropertyEditors/RichTextPropertyEditor.cs
179 lines
9.9 KiB
C#
179 lines
9.9 KiB
C#
using System.Threading;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Models;
|
|
using Umbraco.Core.PropertyEditors;
|
|
using Umbraco.Core.PropertyEditors.Validators;
|
|
using Umbraco.Core.Services;
|
|
using Umbraco.Core.Strings;
|
|
using Umbraco.Tests.Testing;
|
|
using Umbraco.Web.PropertyEditors;
|
|
|
|
namespace Umbraco.Tests.Services
|
|
{
|
|
[TestFixture]
|
|
public class PropertyValidationServiceTests : UmbracoTestBase
|
|
{
|
|
private void MockObjects(out PropertyValidationService validationService, out IDataType dt)
|
|
{
|
|
var textService = new Mock<ILocalizedTextService>();
|
|
textService.Setup(x => x.Localize(It.IsAny<string>(), Thread.CurrentThread.CurrentCulture, null)).Returns("Localized text");
|
|
|
|
var dataTypeService = new Mock<IDataTypeService>();
|
|
var dataType = Mock.Of<IDataType>(
|
|
x => x.Configuration == (object)string.Empty //irrelevant but needs a value
|
|
&& x.DatabaseType == ValueStorageType.Nvarchar
|
|
&& x.EditorAlias == Constants.PropertyEditors.Aliases.TextBox);
|
|
dataTypeService.Setup(x => x.GetDataType(It.IsAny<int>())).Returns(() => dataType);
|
|
dt = dataType;
|
|
|
|
//new data editor that returns a TextOnlyValueEditor which will do the validation for the properties
|
|
var dataEditor = Mock.Of<IDataEditor>(
|
|
x => x.Type == EditorType.PropertyValue
|
|
&& x.Alias == Constants.PropertyEditors.Aliases.TextBox);
|
|
Mock.Get(dataEditor).Setup(x => x.GetValueEditor(It.IsAny<object>()))
|
|
.Returns(new CustomTextOnlyValueEditor(Mock.Of<IDataTypeService>(), Mock.Of<ILocalizationService>(), new DataEditorAttribute(Constants.PropertyEditors.Aliases.TextBox, "Test Textbox", "textbox"), textService.Object, Mock.Of<IShortStringHelper>()));
|
|
|
|
var propEditors = new PropertyEditorCollection(new DataEditorCollection(new[] { dataEditor }));
|
|
|
|
validationService = new PropertyValidationService(propEditors, dataTypeService.Object);
|
|
}
|
|
|
|
[Test]
|
|
public void Validate_Invariant_Properties_On_Variant_Default_Culture()
|
|
{
|
|
MockObjects(out var validationService, out var dataType);
|
|
|
|
var p1 = new Property(new PropertyType(ShortStringHelper, dataType, "test1") { Mandatory = true, Variations = ContentVariation.Culture});
|
|
p1.SetValue("Hello", "en-US");
|
|
var p2 = new Property(new PropertyType(ShortStringHelper, dataType, "test2") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p2.SetValue("Hello", null);
|
|
var p3 = new Property(new PropertyType(ShortStringHelper, dataType, "test3") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p3.SetValue(null, "en-US"); //invalid
|
|
var p4 = new Property(new PropertyType(ShortStringHelper, dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p4.SetValue(null, null); //invalid
|
|
|
|
var content = Mock.Of<IContent>(
|
|
x => x.Published == true //set to published, the default culture will validate invariant anyways
|
|
&& x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));
|
|
|
|
var result = validationService.IsPropertyDataValid(content, out var invalid, CultureImpact.Explicit("en-US", true));
|
|
|
|
Assert.IsFalse(result);
|
|
Assert.AreEqual(2, invalid.Length);
|
|
}
|
|
|
|
[Test]
|
|
public void Validate_Invariant_Properties_On_Variant_Non_Default_Culture()
|
|
{
|
|
MockObjects(out var validationService, out var dataType);
|
|
|
|
var p1 = new Property(new PropertyType(ShortStringHelper, dataType, "test1") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p1.SetValue("Hello", "en-US");
|
|
var p2 = new Property(new PropertyType(ShortStringHelper, dataType, "test2") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p2.SetValue("Hello", null);
|
|
var p3 = new Property(new PropertyType(ShortStringHelper, dataType, "test3") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p3.SetValue(null, "en-US"); //invalid
|
|
var p4 = new Property(new PropertyType(ShortStringHelper, dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p4.SetValue(null, null); //invalid
|
|
|
|
var content = Mock.Of<IContent>(
|
|
x => x.Published == false //set to not published, the non default culture will need to validate invariant too
|
|
&& x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));
|
|
|
|
var result = validationService.IsPropertyDataValid(content, out var invalid, CultureImpact.Explicit("en-US", false));
|
|
|
|
Assert.IsFalse(result);
|
|
Assert.AreEqual(2, invalid.Length);
|
|
}
|
|
|
|
[Test]
|
|
public void Validate_Variant_Properties_On_Variant()
|
|
{
|
|
MockObjects(out var validationService, out var dataType);
|
|
|
|
var p1 = new Property(new PropertyType(ShortStringHelper, dataType, "test1") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p1.SetValue(null, "en-US"); //invalid
|
|
var p2 = new Property(new PropertyType(ShortStringHelper, dataType, "test2") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p2.SetValue(null, null); //invalid
|
|
var p3 = new Property(new PropertyType(ShortStringHelper, dataType, "test3") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p3.SetValue(null, "en-US"); //ignored because the impact isn't the default lang + the content is published
|
|
var p4 = new Property(new PropertyType(ShortStringHelper, dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p4.SetValue(null, null); //ignored because the impact isn't the default lang + the content is published
|
|
|
|
var content = Mock.Of<IContent>(
|
|
x => x.Published == true //set to published
|
|
&& x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));
|
|
|
|
var result = validationService.IsPropertyDataValid(content, out var invalid, CultureImpact.Explicit("en-US", false));
|
|
|
|
Assert.IsFalse(result);
|
|
Assert.AreEqual(2, invalid.Length);
|
|
}
|
|
|
|
[Test]
|
|
public void Validate_Invariant_Properties_On_Invariant()
|
|
{
|
|
MockObjects(out var validationService, out var dataType);
|
|
|
|
var p1 = new Property(new PropertyType(ShortStringHelper, dataType, "test1") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p1.SetValue(null, "en-US"); //ignored since this is variant
|
|
var p2 = new Property(new PropertyType(ShortStringHelper, dataType, "test2") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p2.SetValue(null, null); //invalid
|
|
var p3 = new Property(new PropertyType(ShortStringHelper, dataType, "test3") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p3.SetValue("Hello", "en-US"); //ignored since this is variant
|
|
var p4 = new Property(new PropertyType(ShortStringHelper, dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p4.SetValue(null, null); //invalid
|
|
|
|
var content = Mock.Of<IContent>(
|
|
x => x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));
|
|
|
|
var result = validationService.IsPropertyDataValid(content, out var invalid, CultureImpact.Invariant);
|
|
|
|
Assert.IsFalse(result);
|
|
Assert.AreEqual(2, invalid.Length);
|
|
}
|
|
|
|
[Test]
|
|
public void Validate_Properties_On_All()
|
|
{
|
|
MockObjects(out var validationService, out var dataType);
|
|
|
|
var p1 = new Property(new PropertyType(ShortStringHelper, dataType, "test1") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p1.SetValue(null, "en-US"); //invalid
|
|
var p2 = new Property(new PropertyType(ShortStringHelper, dataType, "test2") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p2.SetValue(null, null); //invalid
|
|
var p3 = new Property(new PropertyType(ShortStringHelper, dataType, "test3") { Mandatory = true, Variations = ContentVariation.Culture });
|
|
p3.SetValue(null, "en-US"); //invalid
|
|
var p4 = new Property(new PropertyType(ShortStringHelper, dataType, "test4") { Mandatory = true, Variations = ContentVariation.Nothing });
|
|
p4.SetValue(null, null); //invalid
|
|
|
|
var content = Mock.Of<IContent>(
|
|
x => x.Properties == new PropertyCollection(new[] { p1, p2, p3, p4 }));
|
|
|
|
var result = validationService.IsPropertyDataValid(content, out var invalid, CultureImpact.All);
|
|
|
|
Assert.IsFalse(result);
|
|
Assert.AreEqual(4, invalid.Length);
|
|
}
|
|
|
|
|
|
//used so we can inject a mock - we should fix the base class DataValueEditor to be able to have the ILocalizedTextField passed
|
|
// in to create the Requried and Regex validators so we aren't using singletons
|
|
private class CustomTextOnlyValueEditor : TextOnlyValueEditor
|
|
{
|
|
private readonly ILocalizedTextService _textService;
|
|
|
|
public CustomTextOnlyValueEditor(IDataTypeService dataTypeService, ILocalizationService localizationService, DataEditorAttribute attribute, ILocalizedTextService textService, IShortStringHelper shortStringHelper) : base(dataTypeService, localizationService, attribute, textService, shortStringHelper)
|
|
{
|
|
_textService = textService;
|
|
}
|
|
|
|
public override IValueRequiredValidator RequiredValidator => new RequiredValidator(_textService);
|
|
|
|
public override IValueFormatValidator FormatValidator => new RegexValidator(_textService, null);
|
|
}
|
|
}
|
|
}
|