* Add a way to configure IUmbracobuilder on a per testcase basis * New logic for invariantVariantMerging * bugfix * Undo formatting changes * Undo more automatic formatting * Last automatic formatting correction * Cleanup ConfigureBuilderAttribute * Made propertyEditor tests internal
448 lines
18 KiB
C#
448 lines
18 KiB
C#
using NUnit.Framework;
|
|
using Umbraco.Cms.Core;
|
|
using Umbraco.Cms.Core.Models;
|
|
using Umbraco.Cms.Core.Models.Blocks;
|
|
using Umbraco.Cms.Core.PropertyEditors;
|
|
using Umbraco.Cms.Core.Serialization;
|
|
using Umbraco.Cms.Core.Services;
|
|
using Umbraco.Cms.Tests.Common.Builders;
|
|
using Umbraco.Cms.Tests.Common.Builders.Extensions;
|
|
using Umbraco.Cms.Tests.Common.Testing;
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.PropertyEditors;
|
|
|
|
[TestFixture]
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
|
|
internal class BlockListPropertyEditorTests : UmbracoIntegrationTest
|
|
{
|
|
private IContentTypeService ContentTypeService => GetRequiredService<IContentTypeService>();
|
|
|
|
private IContentService ContentService => GetRequiredService<IContentService>();
|
|
|
|
private IDataTypeService DataTypeService => GetRequiredService<IDataTypeService>();
|
|
|
|
private IJsonSerializer JsonSerializer => GetRequiredService<IJsonSerializer>();
|
|
|
|
private IConfigurationEditorJsonSerializer ConfigurationEditorJsonSerializer => GetRequiredService<IConfigurationEditorJsonSerializer>();
|
|
|
|
private PropertyEditorCollection PropertyEditorCollection => GetRequiredService<PropertyEditorCollection>();
|
|
|
|
private ILanguageService LanguageService => GetRequiredService<ILanguageService>();
|
|
|
|
[Test]
|
|
public async Task Can_Track_References()
|
|
{
|
|
var textPageContentType = ContentTypeBuilder.CreateTextPageContentType("myContentType");
|
|
textPageContentType.AllowedTemplates = Enumerable.Empty<ITemplate>();
|
|
ContentTypeService.Save(textPageContentType);
|
|
|
|
var textPage = ContentBuilder.CreateTextpageContent(textPageContentType, "My Picked Content", -1);
|
|
ContentService.Save(textPage);
|
|
|
|
var elementType = ContentTypeBuilder.CreateAllTypesContentType("myElementType", "My Element Type");
|
|
elementType.IsElement = true;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var blockListContentType = await CreateBlockListContentType(elementType);
|
|
|
|
var contentElementKey = Guid.NewGuid();
|
|
var blockListValue = new BlockListValue
|
|
{
|
|
Layout = new Dictionary<string, IEnumerable<IBlockLayoutItem>>
|
|
{
|
|
{
|
|
Constants.PropertyEditors.Aliases.BlockList,
|
|
new IBlockLayoutItem[]
|
|
{
|
|
new BlockListLayoutItem { ContentKey = contentElementKey }
|
|
}
|
|
}
|
|
},
|
|
ContentData =
|
|
[
|
|
new()
|
|
{
|
|
Key = contentElementKey,
|
|
ContentTypeAlias = elementType.Alias,
|
|
ContentTypeKey = elementType.Key,
|
|
Values =
|
|
[
|
|
new ()
|
|
{
|
|
Alias = "contentPicker",
|
|
Value = textPage.GetUdi()
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
var blocksPropertyValue = JsonSerializer.Serialize(blockListValue);
|
|
|
|
var content = new ContentBuilder()
|
|
.WithContentType(blockListContentType)
|
|
.WithName("My Blocks")
|
|
.WithPropertyValues(new { blocks = blocksPropertyValue })
|
|
.Build();
|
|
ContentService.Save(content);
|
|
|
|
var valueEditor = await GetValueEditor(blockListContentType);
|
|
|
|
var references = valueEditor.GetReferences(content.GetValue("blocks")).ToArray();
|
|
Assert.AreEqual(1, references.Length);
|
|
var reference = references.First();
|
|
Assert.AreEqual(Constants.Conventions.RelationTypes.RelatedDocumentAlias, reference.RelationTypeAlias);
|
|
Assert.AreEqual(textPage.GetUdi(), reference.Udi);
|
|
}
|
|
|
|
[Test]
|
|
public async Task Can_Track_Tags()
|
|
{
|
|
var elementType = ContentTypeBuilder.CreateAllTypesContentType("myElementType", "My Element Type");
|
|
elementType.IsElement = true;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var blockListContentType = await CreateBlockListContentType(elementType);
|
|
|
|
var contentElementKey = Guid.NewGuid();
|
|
var blockListValue = new BlockListValue
|
|
{
|
|
Layout = new Dictionary<string, IEnumerable<IBlockLayoutItem>>
|
|
{
|
|
{
|
|
Constants.PropertyEditors.Aliases.BlockList,
|
|
new IBlockLayoutItem[]
|
|
{
|
|
new BlockListLayoutItem { ContentKey = contentElementKey }
|
|
}
|
|
}
|
|
},
|
|
ContentData =
|
|
[
|
|
new()
|
|
{
|
|
Key = contentElementKey,
|
|
ContentTypeAlias = elementType.Alias,
|
|
ContentTypeKey = elementType.Key,
|
|
Values =
|
|
[
|
|
new ()
|
|
{
|
|
Alias = "tags",
|
|
// this is a little skewed, but the tags editor expects a serialized array of strings
|
|
Value = JsonSerializer.Serialize(new[] { "Tag One", "Tag Two", "Tag Three" })
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
var blocksPropertyValue = JsonSerializer.Serialize(blockListValue);
|
|
|
|
var content = new ContentBuilder()
|
|
.WithContentType(blockListContentType)
|
|
.WithName("My Blocks")
|
|
.WithPropertyValues(new { blocks = blocksPropertyValue })
|
|
.Build();
|
|
ContentService.Save(content);
|
|
|
|
var valueEditor = await GetValueEditor(blockListContentType);
|
|
|
|
var tags = valueEditor.GetTags(content.GetValue("blocks"), null, null).ToArray();
|
|
Assert.AreEqual(3, tags.Length);
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag One" && tag.LanguageId == null));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Two" && tag.LanguageId == null));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Three" && tag.LanguageId == null));
|
|
}
|
|
|
|
[Test]
|
|
public async Task Can_Track_Tags_For_Block_Level_Variance()
|
|
{
|
|
var result = await LanguageService.CreateAsync(
|
|
new Language("da-DK", "Danish"), Constants.Security.SuperUserKey);
|
|
Assert.IsTrue(result.Success);
|
|
var daDkId = result.Result.Id;
|
|
|
|
var elementType = ContentTypeBuilder.CreateAllTypesContentType("myElementType", "My Element Type");
|
|
elementType.IsElement = true;
|
|
elementType.Variations = ContentVariation.Culture;
|
|
elementType.PropertyTypes.First(p => p.Alias == "tags").Variations = ContentVariation.Culture;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var blockListContentType = await CreateBlockListContentType(elementType);
|
|
blockListContentType.Variations = ContentVariation.Culture;
|
|
ContentTypeService.Save(blockListContentType);
|
|
|
|
var contentElementKey = Guid.NewGuid();
|
|
var blockListValue = new BlockListValue
|
|
{
|
|
Layout = new Dictionary<string, IEnumerable<IBlockLayoutItem>>
|
|
{
|
|
{
|
|
Constants.PropertyEditors.Aliases.BlockList,
|
|
new IBlockLayoutItem[]
|
|
{
|
|
new BlockListLayoutItem { ContentKey = contentElementKey }
|
|
}
|
|
}
|
|
},
|
|
ContentData =
|
|
[
|
|
new()
|
|
{
|
|
Key = contentElementKey,
|
|
ContentTypeAlias = elementType.Alias,
|
|
ContentTypeKey = elementType.Key,
|
|
Values =
|
|
[
|
|
new ()
|
|
{
|
|
Alias = "tags",
|
|
// this is a little skewed, but the tags editor expects a serialized array of strings
|
|
Value = JsonSerializer.Serialize(new[] { "Tag One EN", "Tag Two EN", "Tag Three EN" }),
|
|
Culture = "en-US"
|
|
},
|
|
new ()
|
|
{
|
|
Alias = "tags",
|
|
// this is a little skewed, but the tags editor expects a serialized array of strings
|
|
Value = JsonSerializer.Serialize(new[] { "Tag One DA", "Tag Two DA", "Tag Three DA" }),
|
|
Culture = "da-DK"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
var blocksPropertyValue = JsonSerializer.Serialize(blockListValue);
|
|
|
|
var content = new ContentBuilder()
|
|
.WithContentType(blockListContentType)
|
|
.WithCultureName("en-US", "My Blocks EN")
|
|
.WithCultureName("da-DK", "My Blocks DA")
|
|
.WithPropertyValues(new { blocks = blocksPropertyValue })
|
|
.Build();
|
|
ContentService.Save(content);
|
|
|
|
var valueEditor = await GetValueEditor(blockListContentType);
|
|
|
|
var tags = valueEditor.GetTags(content.GetValue("blocks"), null, null).ToArray();
|
|
Assert.AreEqual(6, tags.Length);
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag One EN" && tag.LanguageId == 1));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Two EN" && tag.LanguageId == 1));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Three EN" && tag.LanguageId == 1));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag One DA" && tag.LanguageId == daDkId));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Two DA" && tag.LanguageId == daDkId));
|
|
Assert.IsNotNull(tags.Single(tag => tag.Text == "Tag Three DA" && tag.LanguageId == daDkId));
|
|
}
|
|
|
|
[Test]
|
|
public async Task Can_Handle_Culture_Variance_Addition()
|
|
{
|
|
var elementType = ContentTypeBuilder.CreateAllTypesContentType("myElementType", "My Element Type");
|
|
elementType.IsElement = true;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var blockListContentType = await CreateBlockListContentType(elementType);
|
|
|
|
var contentElementKey = Guid.NewGuid();
|
|
var blockListValue = new BlockListValue
|
|
{
|
|
Layout = new Dictionary<string, IEnumerable<IBlockLayoutItem>>
|
|
{
|
|
{
|
|
Constants.PropertyEditors.Aliases.BlockList,
|
|
new IBlockLayoutItem[]
|
|
{
|
|
new BlockListLayoutItem { ContentKey = contentElementKey }
|
|
}
|
|
}
|
|
},
|
|
ContentData =
|
|
[
|
|
new()
|
|
{
|
|
Key = contentElementKey,
|
|
ContentTypeAlias = elementType.Alias,
|
|
ContentTypeKey = elementType.Key,
|
|
Values =
|
|
[
|
|
new ()
|
|
{
|
|
Alias = "singleLineText",
|
|
Value = "The single line text"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
Expose =
|
|
[
|
|
new (contentElementKey, null, null)
|
|
]
|
|
};
|
|
var blocksPropertyValue = JsonSerializer.Serialize(blockListValue);
|
|
|
|
var content = new ContentBuilder()
|
|
.WithContentType(blockListContentType)
|
|
.WithName("My Blocks")
|
|
.WithPropertyValues(new { blocks = blocksPropertyValue })
|
|
.Build();
|
|
ContentService.Save(content);
|
|
|
|
elementType.Variations = ContentVariation.Culture;
|
|
elementType.PropertyTypes.First(pt => pt.Alias == "singleLineText").Variations = ContentVariation.Culture;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var valueEditor = await GetValueEditor(blockListContentType);
|
|
var toEditorValue = valueEditor.ToEditor(content.Properties["blocks"]!) as BlockListValue;
|
|
Assert.IsNotNull(toEditorValue);
|
|
Assert.AreEqual(1, toEditorValue.ContentData.Count);
|
|
|
|
var properties = toEditorValue.ContentData.First().Values;
|
|
Assert.AreEqual(1, properties.Count);
|
|
Assert.Multiple(() =>
|
|
{
|
|
var property = properties.First();
|
|
Assert.AreEqual("singleLineText", property.Alias);
|
|
Assert.AreEqual("The single line text", property.Value);
|
|
Assert.AreEqual("en-US", property.Culture);
|
|
});
|
|
|
|
Assert.AreEqual(1, toEditorValue.Expose.Count);
|
|
Assert.Multiple(() =>
|
|
{
|
|
var itemVariation = toEditorValue.Expose[0];
|
|
Assert.AreEqual(contentElementKey, itemVariation.ContentKey);
|
|
Assert.AreEqual("en-US", itemVariation.Culture);
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public async Task Can_Handle_Culture_Variance_Removal()
|
|
{
|
|
var elementType = ContentTypeBuilder.CreateAllTypesContentType("myElementType", "My Element Type");
|
|
elementType.IsElement = true;
|
|
elementType.Variations = ContentVariation.Culture;
|
|
elementType.PropertyTypes.First(pt => pt.Alias == "singleLineText").Variations = ContentVariation.Culture;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var blockListContentType = await CreateBlockListContentType(elementType);
|
|
|
|
var contentElementKey = Guid.NewGuid();
|
|
var blockListValue = new BlockListValue
|
|
{
|
|
Layout = new Dictionary<string, IEnumerable<IBlockLayoutItem>>
|
|
{
|
|
{
|
|
Constants.PropertyEditors.Aliases.BlockList,
|
|
new IBlockLayoutItem[]
|
|
{
|
|
new BlockListLayoutItem { ContentKey = contentElementKey }
|
|
}
|
|
}
|
|
},
|
|
ContentData =
|
|
[
|
|
new()
|
|
{
|
|
Key = contentElementKey,
|
|
ContentTypeAlias = elementType.Alias,
|
|
ContentTypeKey = elementType.Key,
|
|
Values =
|
|
[
|
|
new ()
|
|
{
|
|
Alias = "singleLineText",
|
|
Value = "The single line text",
|
|
Culture = "en-US"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
Expose =
|
|
[
|
|
new (contentElementKey, "en-US", null)
|
|
]
|
|
};
|
|
var blocksPropertyValue = JsonSerializer.Serialize(blockListValue);
|
|
|
|
var content = new ContentBuilder()
|
|
.WithContentType(blockListContentType)
|
|
.WithName("My Blocks")
|
|
.WithPropertyValues(new { blocks = blocksPropertyValue })
|
|
.Build();
|
|
ContentService.Save(content);
|
|
|
|
elementType.PropertyTypes.First(pt => pt.Alias == "singleLineText").Variations = ContentVariation.Nothing;
|
|
elementType.Variations = ContentVariation.Nothing;
|
|
ContentTypeService.Save(elementType);
|
|
|
|
var valueEditor = await GetValueEditor(blockListContentType);
|
|
var toEditorValue = valueEditor.ToEditor(content.Properties["blocks"]!) as BlockListValue;
|
|
Assert.IsNotNull(toEditorValue);
|
|
Assert.AreEqual(1, toEditorValue.ContentData.Count);
|
|
|
|
var properties = toEditorValue.ContentData.First().Values;
|
|
Assert.AreEqual(1, properties.Count);
|
|
Assert.Multiple(() =>
|
|
{
|
|
var property = properties.First();
|
|
Assert.AreEqual("singleLineText", property.Alias);
|
|
Assert.AreEqual("The single line text", property.Value);
|
|
Assert.AreEqual(null, property.Culture);
|
|
});
|
|
|
|
Assert.AreEqual(1, toEditorValue.Expose.Count);
|
|
Assert.Multiple(() =>
|
|
{
|
|
var itemVariation = toEditorValue.Expose[0];
|
|
Assert.AreEqual(contentElementKey, itemVariation.ContentKey);
|
|
Assert.AreEqual(null, itemVariation.Culture);
|
|
});
|
|
}
|
|
|
|
private async Task<IContentType> CreateBlockListContentType(IContentType elementType)
|
|
{
|
|
var blockListDataType = new DataType(PropertyEditorCollection[Constants.PropertyEditors.Aliases.BlockList], ConfigurationEditorJsonSerializer)
|
|
{
|
|
ConfigurationData = new Dictionary<string, object>
|
|
{
|
|
{
|
|
"blocks",
|
|
new BlockListConfiguration.BlockConfiguration[]
|
|
{
|
|
new() { ContentElementTypeKey = elementType.Key }
|
|
}
|
|
}
|
|
},
|
|
Name = "My Block List",
|
|
DatabaseType = ValueStorageType.Ntext,
|
|
ParentId = Constants.System.Root,
|
|
CreateDate = DateTime.UtcNow
|
|
};
|
|
|
|
await DataTypeService.CreateAsync(blockListDataType, Constants.Security.SuperUserKey);
|
|
|
|
var contentType = new ContentTypeBuilder()
|
|
.WithAlias("myPage")
|
|
.WithName("My Page")
|
|
.AddPropertyType()
|
|
.WithAlias("blocks")
|
|
.WithName("Blocks")
|
|
.WithDataTypeId(blockListDataType.Id)
|
|
.Done()
|
|
.Build();
|
|
ContentTypeService.Save(contentType);
|
|
// re-fetch to wire up all key bindings (particularly to the datatype)
|
|
return await ContentTypeService.GetAsync(contentType.Key);
|
|
}
|
|
|
|
private async Task<BlockListPropertyEditorBase.BlockListEditorPropertyValueEditor> GetValueEditor(IContentType contentType)
|
|
{
|
|
var dataType = await DataTypeService.GetAsync(contentType.PropertyTypes.First(propertyType => propertyType.Alias == "blocks").DataTypeKey);
|
|
Assert.IsNotNull(dataType?.Editor);
|
|
var valueEditor = dataType.Editor.GetValueEditor() as BlockListPropertyEditorBase.BlockListEditorPropertyValueEditor;
|
|
Assert.IsNotNull(valueEditor);
|
|
|
|
return valueEditor;
|
|
}
|
|
}
|