Files
Umbraco-CMS/tests/Umbraco.Tests.UnitTests/Umbraco.Tests.Common/Builders/MacroBuilderTests.cs
Nikolaj Geisle 7aeb400fce V10: fix build warnings in test projects (#12509)
* Run code cleanup

* Dotnet format benchmarks project

* Fix up Test.Common

* Run dotnet format + manual cleanup

* Run code cleanup for unit tests

* Run dotnet format

* Fix up errors

* Manual cleanup of Unit test project

* Update tests/Umbraco.Tests.Benchmarks/HexStringBenchmarks.cs

Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>

* Update tests/Umbraco.Tests.Integration/Testing/TestDbMeta.cs

Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>

* Update tests/Umbraco.Tests.Benchmarks/TypeFinderBenchmarks.cs

Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>

* Update tests/Umbraco.Tests.Integration/Testing/UmbracoIntegrationTest.cs

Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>

* Update tests/Umbraco.Tests.Integration/Umbraco.Core/Events/EventAggregatorTests.cs

Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>

* Fix according to review

* Fix after merge

* Fix errors

Co-authored-by: Nikolaj Geisle <niko737@edu.ucl.dk>
Co-authored-by: Mole <nikolajlauridsen@protonmail.ch>
Co-authored-by: Zeegaan <nge@umbraco.dk>
2022-06-21 08:09:38 +02:00

76 lines
2.6 KiB
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
using NUnit.Framework;
using Umbraco.Cms.Tests.Common.Builders;
using Umbraco.Cms.Tests.Common.Builders.Extensions;
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Tests.Common.Builders;
[TestFixture]
public class MacroBuilderTests
{
[Test]
public void Is_Built_Correctly()
{
// Arrange
const int id = 1;
var key = Guid.NewGuid();
const bool useInEditor = true;
const int cacheDuration = 3;
const string alias = "test";
const string name = "Test";
const string source = "~/script.cshtml";
const bool cacheByPage = false;
const bool cacheByMember = true;
const bool dontRender = true;
const int propertyId = 6;
const string propertyAlias = "rewq";
const string propertyName = "REWQ";
const int propertySortOrder = 1;
const string propertyEditorAlias = "asdfasdf";
var builder = new MacroBuilder();
// Act
var macro = builder
.WithId(id)
.WithKey(key)
.WithUseInEditor(useInEditor)
.WithCacheDuration(cacheDuration)
.WithAlias(alias)
.WithName(name)
.WithSource(source)
.WithCacheByPage(cacheByPage)
.WithCacheByMember(cacheByMember)
.WithDontRender(dontRender)
.AddProperty()
.WithId(propertyId)
.WithAlias(propertyAlias)
.WithName(propertyName)
.WithSortOrder(propertySortOrder)
.WithEditorAlias(propertyEditorAlias)
.Done()
.Build();
// Assert
Assert.AreEqual(id, macro.Id);
Assert.AreEqual(key, macro.Key);
Assert.AreEqual(useInEditor, macro.UseInEditor);
Assert.AreEqual(cacheDuration, macro.CacheDuration);
Assert.AreEqual(alias, macro.Alias);
Assert.AreEqual(name, macro.Name);
Assert.AreEqual(source, macro.MacroSource);
Assert.AreEqual(cacheByPage, macro.CacheByPage);
Assert.AreEqual(cacheByMember, macro.CacheByMember);
Assert.AreEqual(dontRender, macro.DontRender);
Assert.AreEqual(1, macro.Properties.Count);
Assert.AreEqual(propertyId, macro.Properties[0].Id);
Assert.AreEqual(propertyAlias, macro.Properties[0].Alias);
Assert.AreEqual(propertyName, macro.Properties[0].Name);
Assert.AreEqual(propertySortOrder, macro.Properties[0].SortOrder);
Assert.AreEqual(propertyEditorAlias, macro.Properties[0].EditorAlias);
}
}