Files
Umbraco-CMS/src/Umbraco.Tests/Testing/UmbracoTestAttribute.cs

71 lines
3.6 KiB
C#
Raw Normal View History

2016-11-05 19:23:55 +01:00
using System;
2016-11-07 19:12:09 +01:00
using Umbraco.Core;
2016-11-05 19:23:55 +01:00
2016-12-16 10:40:14 +01:00
namespace Umbraco.Tests.Testing
2016-11-05 19:23:55 +01:00
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, /*AllowMultiple = false,*/ Inherited = false)]
2017-09-19 18:47:07 +02:00
public class UmbracoTestAttribute : TestOptionAttributeBase
2016-11-05 19:23:55 +01:00
{
/// <summary>
/// Gets or sets a value indicating whether tests are "WithApplication".
/// </summary>
/// <remarks>
/// <para>Default is false.</para>
/// <para>This is for tests that inherited from TestWithApplicationBase.</para>
/// <para>Implies AutoMapper = true (, ResetPluginManager = false).</para>
/// </remarks>
2017-05-12 14:49:44 +02:00
public bool WithApplication { get => _withApplication.ValueOrDefault(false); set => _withApplication.Set(value); }
private readonly Settable<bool> _withApplication = new Settable<bool>();
/// <summary>
/// Gets or sets a value indicating whether to compose and initialize AutoMapper.
/// </summary>
/// <remarks>Default is false unless WithApplication is true, in which case default is true.</remarks>
2017-05-12 14:49:44 +02:00
public bool AutoMapper { get => _autoMapper.ValueOrDefault(WithApplication); set => _autoMapper.Set(value); }
2016-11-05 19:23:55 +01:00
private readonly Settable<bool> _autoMapper = new Settable<bool>();
/// <summary>
/// Gets or sets a value indicating ... FIXME to be completed
/// </summary>
2017-05-12 14:49:44 +02:00
public bool FacadeServiceRepositoryEvents { get => _facadeServiceRepositoryEvents.ValueOrDefault(false); set => _facadeServiceRepositoryEvents.Set(value); }
private readonly Settable<bool> _facadeServiceRepositoryEvents = new Settable<bool>();
2016-11-05 19:23:55 +01:00
/// <summary>
/// Gets or sets a value indicating the required logging support.
/// </summary>
/// <remarks>Default is to mock logging.</remarks>
2017-05-12 14:49:44 +02:00
public UmbracoTestOptions.Logger Logger { get => _logger.ValueOrDefault(UmbracoTestOptions.Logger.Mock); set => _logger.Set(value); }
private readonly Settable<UmbracoTestOptions.Logger> _logger = new Settable<UmbracoTestOptions.Logger>();
2016-11-05 19:23:55 +01:00
/// <summary>
/// Gets or sets a value indicating the required database support.
/// </summary>
/// <remarks>Default is no database support.</remarks>
2017-05-12 14:49:44 +02:00
public UmbracoTestOptions.Database Database { get => _database.ValueOrDefault(UmbracoTestOptions.Database.None); set => _database.Set(value); }
private readonly Settable<UmbracoTestOptions.Database> _database = new Settable<UmbracoTestOptions.Database>();
2017-05-30 15:33:13 +02:00
/// <summary>
/// Gets or sets a value indicating the required plugin manager support.
/// </summary>
/// <remarks>Default is to use the global tests plugin manager.</remarks>
public UmbracoTestOptions.PluginManager PluginManager { get => _pluginManager.ValueOrDefault(UmbracoTestOptions.PluginManager.Default); set => _pluginManager.Set(value); }
private readonly Settable<UmbracoTestOptions.PluginManager> _pluginManager = new Settable<UmbracoTestOptions.PluginManager>();
2017-09-19 18:47:07 +02:00
protected override TestOptionAttributeBase Merge(TestOptionAttributeBase other)
2016-11-05 19:23:55 +01:00
{
2017-09-19 18:47:07 +02:00
if (!(other is UmbracoTestAttribute attr))
throw new ArgumentException(nameof(other));
2016-11-05 19:23:55 +01:00
2017-09-19 18:47:07 +02:00
base.Merge(other);
2016-11-05 19:23:55 +01:00
2017-09-19 18:47:07 +02:00
_autoMapper.Set(attr._autoMapper);
_facadeServiceRepositoryEvents.Set(attr._facadeServiceRepositoryEvents);
_logger.Set(attr._logger);
_database.Set(attr._database);
_pluginManager.Set(attr._pluginManager);
2016-11-05 19:23:55 +01:00
return this;
}
}
}