* Provides an abstraction for creating the JavaScriptEncoder used in SystemTextConfigurationEditorJsonSerializer. * Generalised JSON serialization encoder factory to work for all System.Tex.Json serializers. Added the serializer's name as a parameter to allow for different encodings per serializer if required. * Fixed tests by removing use of obsolete constructors. * Removed name parameter and used a generic type instead.
25 lines
731 B
C#
25 lines
731 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Moq;
|
|
using Umbraco.Cms.Core.IO;
|
|
using Umbraco.Cms.Core.PropertyEditors;
|
|
using Umbraco.Cms.Core.Strings;
|
|
using Umbraco.Cms.Infrastructure.Serialization;
|
|
|
|
namespace Umbraco.Cms.Tests.Common.TestHelpers;
|
|
|
|
public class MockedValueEditors
|
|
{
|
|
public static DataValueEditor CreateDataValueEditor(string name)
|
|
{
|
|
var valueType = ValueTypes.IsValue(name) ? name : ValueTypes.String;
|
|
|
|
return new DataValueEditor(
|
|
Mock.Of<IShortStringHelper>(),
|
|
new SystemTextJsonSerializer(new DefaultJsonSerializerEncoderFactory()),
|
|
Mock.Of<IIOHelper>(),
|
|
new DataEditorAttribute(name) { ValueType = valueType });
|
|
}
|
|
}
|