2017-09-29 15:51:33 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Moq;
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
using Umbraco.Core;
|
|
|
|
|
|
using Umbraco.Core.Cache;
|
2018-02-08 16:08:52 +01:00
|
|
|
|
using Umbraco.Core.Logging;
|
|
|
|
|
|
using Umbraco.Core.Models;
|
2017-09-29 15:51:33 +02:00
|
|
|
|
using Umbraco.Core.Models.PublishedContent;
|
|
|
|
|
|
using Umbraco.Core.PropertyEditors;
|
2018-02-08 16:08:52 +01:00
|
|
|
|
using Umbraco.Core.Services;
|
|
|
|
|
|
using Umbraco.Tests.TestHelpers;
|
2017-09-29 15:51:33 +02:00
|
|
|
|
using Umbraco.Web;
|
|
|
|
|
|
using Umbraco.Web.PublishedCache;
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
namespace Umbraco.Tests.Published
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
[TestFixture]
|
|
|
|
|
|
public class PropertyCacheLevelTests
|
|
|
|
|
|
{
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.None, 2)]
|
2017-10-31 12:48:24 +01:00
|
|
|
|
[TestCase(PropertyCacheLevel.Element, 1)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Elements, 1)]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
[TestCase(PropertyCacheLevel.Snapshot, 1)]
|
|
|
|
|
|
public void CacheLevelTest(PropertyCacheLevel cacheLevel, int interConverts)
|
|
|
|
|
|
{
|
|
|
|
|
|
var converter = new CacheConverter1(cacheLevel);
|
|
|
|
|
|
|
|
|
|
|
|
var converters = new PropertyValueConverterCollection(new IPropertyValueConverter[]
|
|
|
|
|
|
{
|
|
|
|
|
|
converter,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2018-02-08 16:08:52 +01:00
|
|
|
|
var dataTypeService = new TestObjects.TestDataTypeService(
|
|
|
|
|
|
new DataType(new VoidEditor(Mock.Of<ILogger>())) { Id = 1 });
|
|
|
|
|
|
|
|
|
|
|
|
var publishedContentTypeFactory = new PublishedContentTypeFactory(Mock.Of<IPublishedModelFactory>(), converters, dataTypeService);
|
2017-10-17 17:43:15 +02:00
|
|
|
|
var setType1 = publishedContentTypeFactory.CreateContentType(1000, "set1", new[]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
2018-02-08 16:08:52 +01:00
|
|
|
|
publishedContentTypeFactory.CreatePropertyType("prop1", 1),
|
2017-09-29 15:51:33 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// PublishedElementPropertyBase.GetCacheLevels:
|
|
|
|
|
|
//
|
|
|
|
|
|
// if property level is > reference level, or both are None
|
|
|
|
|
|
// use None for property & new reference
|
|
|
|
|
|
// else
|
|
|
|
|
|
// use Content for property, & keep reference
|
|
|
|
|
|
//
|
|
|
|
|
|
// PublishedElement creates properties with reference being None
|
|
|
|
|
|
// if converter specifies None, keep using None
|
|
|
|
|
|
// anything else is not > None, use Content
|
|
|
|
|
|
//
|
|
|
|
|
|
// for standalone elements, it's only None or Content
|
|
|
|
|
|
|
|
|
|
|
|
var set1 = new PublishedElement(setType1, Guid.NewGuid(), new Dictionary<string, object> { { "prop1", "1234" } }, false);
|
|
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
Assert.AreEqual(1, converter.InterConverts);
|
|
|
|
|
|
|
|
|
|
|
|
// source is always converted once and cached per content
|
|
|
|
|
|
// inter conversion depends on the specified cache level
|
|
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
Assert.AreEqual(interConverts, converter.InterConverts);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// property is not cached, converted cached at Content, exept
|
|
|
|
|
|
// /None = not cached at all
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.None, PropertyCacheLevel.None, 2, 0, 0, 0, 0)]
|
2017-10-31 12:48:24 +01:00
|
|
|
|
[TestCase(PropertyCacheLevel.None, PropertyCacheLevel.Element, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.None, PropertyCacheLevel.Elements, 1, 0, 0, 0, 0)]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
[TestCase(PropertyCacheLevel.None, PropertyCacheLevel.Snapshot, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// property is cached at element level, converted cached at
|
2017-09-29 15:51:33 +02:00
|
|
|
|
// /None = not at all
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// /Element = in element
|
2017-09-29 15:51:33 +02:00
|
|
|
|
// /Snapshot = in snapshot
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// /Elements = in elements
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Element, PropertyCacheLevel.None, 2, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Element, PropertyCacheLevel.Element, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Element, PropertyCacheLevel.Elements, 1, 1, 0, 1, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Element, PropertyCacheLevel.Snapshot, 1, 0, 1, 0, 1)]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// property is cached at elements level, converted cached at Element, exept
|
2017-09-29 15:51:33 +02:00
|
|
|
|
// /None = not cached at all
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// /Snapshot = cached in snapshot
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Elements, PropertyCacheLevel.None, 2, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Elements, PropertyCacheLevel.Element, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Elements, PropertyCacheLevel.Elements, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Elements, PropertyCacheLevel.Snapshot, 1, 0, 1, 0, 1)]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
// property is cached at snapshot level, converted cached at Element, exept
|
2017-09-29 15:51:33 +02:00
|
|
|
|
// /None = not cached at all
|
2017-10-31 12:48:24 +01:00
|
|
|
|
[TestCase(PropertyCacheLevel.Snapshot, PropertyCacheLevel.None, 2, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Snapshot, PropertyCacheLevel.Element, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Snapshot, PropertyCacheLevel.Elements, 1, 0, 0, 0, 0)]
|
|
|
|
|
|
[TestCase(PropertyCacheLevel.Snapshot, PropertyCacheLevel.Snapshot, 1, 0, 0, 0, 0)]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
public void CachePublishedSnapshotTest(PropertyCacheLevel referenceCacheLevel, PropertyCacheLevel converterCacheLevel, int interConverts,
|
|
|
|
|
|
int elementsCount1, int snapshotCount1, int elementsCount2, int snapshotCount2)
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
var converter = new CacheConverter1(converterCacheLevel);
|
|
|
|
|
|
|
|
|
|
|
|
var converters = new PropertyValueConverterCollection(new IPropertyValueConverter[]
|
|
|
|
|
|
{
|
|
|
|
|
|
converter,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2018-02-08 16:08:52 +01:00
|
|
|
|
var dataTypeService = new TestObjects.TestDataTypeService(
|
|
|
|
|
|
new DataType(new VoidEditor(Mock.Of<ILogger>())) { Id = 1 });
|
|
|
|
|
|
|
|
|
|
|
|
var publishedContentTypeFactory = new PublishedContentTypeFactory(Mock.Of<IPublishedModelFactory>(), converters, dataTypeService);
|
2017-10-17 17:43:15 +02:00
|
|
|
|
var setType1 = publishedContentTypeFactory.CreateContentType(1000, "set1", new[]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
2018-02-08 16:08:52 +01:00
|
|
|
|
publishedContentTypeFactory.CreatePropertyType("prop1", 1),
|
2017-09-29 15:51:33 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
var elementsCache = new DictionaryCacheProvider();
|
2017-09-29 15:51:33 +02:00
|
|
|
|
var snapshotCache = new DictionaryCacheProvider();
|
|
|
|
|
|
|
2018-04-27 11:38:50 +10:00
|
|
|
|
var publishedSnapshot = new Mock<IPublishedSnapshot>();
|
2017-10-31 12:48:24 +01:00
|
|
|
|
publishedSnapshot.Setup(x => x.SnapshotCache).Returns(snapshotCache);
|
|
|
|
|
|
publishedSnapshot.Setup(x => x.ElementsCache).Returns(elementsCache);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
var publishedSnapshotAccessor = new Mock<IPublishedSnapshotAccessor>();
|
|
|
|
|
|
publishedSnapshotAccessor.Setup(x => x.PublishedSnapshot).Returns(publishedSnapshot.Object);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
|
|
|
|
|
// pretend we're creating this set as a value for a property
|
|
|
|
|
|
// referenceCacheLevel is the cache level for this fictious property
|
|
|
|
|
|
// converterCacheLevel is the cache level specified by the converter
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
var set1 = new PublishedElement(setType1, Guid.NewGuid(), new Dictionary<string, object> { { "prop1", "1234" } }, false, referenceCacheLevel, publishedSnapshotAccessor.Object);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
Assert.AreEqual(1, converter.InterConverts);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual(elementsCount1, elementsCache.Items.Count);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
Assert.AreEqual(snapshotCount1, snapshotCache.Items.Count);
|
|
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
Assert.AreEqual(interConverts, converter.InterConverts);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual(elementsCount2, elementsCache.Items.Count);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
Assert.AreEqual(snapshotCount2, snapshotCache.Items.Count);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
var oldSnapshotCache = snapshotCache;
|
|
|
|
|
|
snapshotCache.Items.Clear();
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual(elementsCount2, elementsCache.Items.Count);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
Assert.AreEqual(snapshotCount2, snapshotCache.Items.Count);
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual(snapshotCount2, oldSnapshotCache.Items.Count);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual((interConverts == 1 ? 1 : 3) + snapshotCache.Items.Count, converter.InterConverts);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
var oldElementsCache = elementsCache;
|
|
|
|
|
|
elementsCache.Items.Clear();
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1234, set1.Value("prop1"));
|
|
|
|
|
|
Assert.AreEqual(1, converter.SourceConverts);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual(elementsCount2, elementsCache.Items.Count);
|
|
|
|
|
|
Assert.AreEqual(elementsCount2, oldElementsCache.Items.Count);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
Assert.AreEqual(snapshotCount2, snapshotCache.Items.Count);
|
|
|
|
|
|
|
2017-10-31 12:48:24 +01:00
|
|
|
|
Assert.AreEqual((interConverts == 1 ? 1 : 4) + snapshotCache.Items.Count + elementsCache.Items.Count, converter.InterConverts);
|
2017-09-29 15:51:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
|
public void CacheUnknownTest()
|
|
|
|
|
|
{
|
|
|
|
|
|
var converter = new CacheConverter1(PropertyCacheLevel.Unknown);
|
|
|
|
|
|
|
|
|
|
|
|
var converters = new PropertyValueConverterCollection(new IPropertyValueConverter[]
|
|
|
|
|
|
{
|
|
|
|
|
|
converter,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2018-02-08 16:08:52 +01:00
|
|
|
|
var dataTypeService = new TestObjects.TestDataTypeService(
|
|
|
|
|
|
new DataType(new VoidEditor(Mock.Of<ILogger>())) { Id = 1 });
|
|
|
|
|
|
|
|
|
|
|
|
var publishedContentTypeFactory = new PublishedContentTypeFactory(Mock.Of<IPublishedModelFactory>(), converters, dataTypeService);
|
2017-10-17 17:43:15 +02:00
|
|
|
|
var setType1 = publishedContentTypeFactory.CreateContentType(1000, "set1", new[]
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
2018-02-08 16:08:52 +01:00
|
|
|
|
publishedContentTypeFactory.CreatePropertyType("prop1", 1),
|
2017-09-29 15:51:33 +02:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Assert.Throws<Exception>(() =>
|
|
|
|
|
|
{
|
|
|
|
|
|
var unused = new PublishedElement(setType1, Guid.NewGuid(), new Dictionary<string, object> { { "prop1", "1234" } }, false);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private class CacheConverter1 : IPropertyValueConverter
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly PropertyCacheLevel _cacheLevel;
|
|
|
|
|
|
|
|
|
|
|
|
public CacheConverter1(PropertyCacheLevel cacheLevel)
|
|
|
|
|
|
{
|
|
|
|
|
|
_cacheLevel = cacheLevel;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int SourceConverts { get; private set; }
|
|
|
|
|
|
public int InterConverts { get; private set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool IsConverter(PublishedPropertyType propertyType)
|
2018-02-08 16:08:52 +01:00
|
|
|
|
=> propertyType.EditorAlias.InvariantEquals("Umbraco.Void");
|
2017-09-29 15:51:33 +02:00
|
|
|
|
|
|
|
|
|
|
public Type GetPropertyValueType(PublishedPropertyType propertyType)
|
|
|
|
|
|
=> typeof(int);
|
|
|
|
|
|
|
|
|
|
|
|
public PropertyCacheLevel GetPropertyCacheLevel(PublishedPropertyType propertyType)
|
|
|
|
|
|
=> _cacheLevel;
|
|
|
|
|
|
|
2017-12-07 13:22:32 +01:00
|
|
|
|
public object ConvertSourceToIntermediate(IPublishedElement owner, PublishedPropertyType propertyType, object source, bool preview)
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
SourceConverts++;
|
|
|
|
|
|
return int.TryParse(source as string, out int i) ? i : 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-07 13:22:32 +01:00
|
|
|
|
public object ConvertIntermediateToObject(IPublishedElement owner, PublishedPropertyType propertyType, PropertyCacheLevel referenceCacheLevel, object inter, bool preview)
|
2017-09-29 15:51:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
InterConverts++;
|
|
|
|
|
|
return (int) inter;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-12-07 13:22:32 +01:00
|
|
|
|
public object ConvertIntermediateToXPath(IPublishedElement owner, PublishedPropertyType propertyType, PropertyCacheLevel referenceCacheLevel, object inter, bool preview)
|
2017-09-29 15:51:33 +02:00
|
|
|
|
=> ((int) inter).ToString();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|