Files
Umbraco-CMS/tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/KeyValueServiceTests.cs
Paul Johnson 00133e880d Move test projects from src/ to tests/ (#11357)
* Update gitignore

* Move csproj

* Update project references

* Update solutions

* Update build scripts

* Tests used to share editorconfig with projects in src

* Fix broken tests.

* Stop copying around .editorconfig

merged root one with linting

* csharp_style_expression_bodied -> suggestion

* Move StyleCop rulesets to matching directories and update shared build properties

* Remove legacy build files, update NuGet.cofig and solution files

* Restore myget source

* Clean up .gitignore

* Update .gitignore

* Move new test classes to tests after merge

* Gitignore + nuget config

* Move new test

Co-authored-by: Ronald Barendse <ronald@barend.se>
2021-10-18 08:14:04 +01:00

107 lines
3.2 KiB
C#

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System.Collections.Generic;
using System.Threading;
using NUnit.Framework;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Tests.Common.Testing;
using Umbraco.Cms.Tests.Integration.Testing;
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services
{
/// <summary>
/// Tests covering methods in the KeyValueService class.
/// </summary>
[TestFixture]
[UmbracoTest(Database = UmbracoTestOptions.Database.NewSchemaPerTest)]
public class KeyValueServiceTests : UmbracoIntegrationTest
{
private IKeyValueService KeyValueService => GetRequiredService<IKeyValueService>();
[Test]
public void Can_Query_For_Key_Prefix()
{
// Arrange
KeyValueService.SetValue("test1", "hello1");
KeyValueService.SetValue("test2", "hello2");
KeyValueService.SetValue("test3", "hello3");
KeyValueService.SetValue("test4", "hello4");
KeyValueService.SetValue("someotherprefix1", "helloagain1");
// Act
IReadOnlyDictionary<string, string> value = KeyValueService.FindByKeyPrefix("test");
// Assert
Assert.AreEqual(4, value.Count);
Assert.AreEqual("hello1", value["test1"]);
Assert.AreEqual("hello2", value["test2"]);
Assert.AreEqual("hello3", value["test3"]);
Assert.AreEqual("hello4", value["test4"]);
}
[Test]
public void GetValue_ForMissingKey_ReturnsNull()
{
// Act
string value = KeyValueService.GetValue("foo");
// Assert
Assert.IsNull(value);
}
[Test]
public void GetValue_ForExistingKey_ReturnsValue()
{
KeyValueService.SetValue("foo", "bar");
// Act
string value = KeyValueService.GetValue("foo");
// Assert
Assert.AreEqual("bar", value);
}
[Test]
public void SetValue_ForExistingKey_SavesValue()
{
KeyValueService.SetValue("foo", "bar");
// Act
KeyValueService.SetValue("foo", "buzz");
string value = KeyValueService.GetValue("foo");
// Assert
Assert.AreEqual("buzz", value);
}
[Test]
public void TrySetValue_ForExistingKeyWithProvidedValue_ReturnsTrueAndSetsValue()
{
KeyValueService.SetValue("foo", "bar");
// Act
bool result = KeyValueService.TrySetValue("foo", "bar", "buzz");
string value = KeyValueService.GetValue("foo");
// Assert
Assert.IsTrue(result);
Assert.AreEqual("buzz", value);
}
[Test]
public void TrySetValue_ForExistingKeyWithoutProvidedValue_ReturnsFalseAndDoesNotSetValue()
{
KeyValueService.SetValue("foo", "bar");
// Act
bool result = KeyValueService.TrySetValue("foo", "bang", "buzz");
string value = KeyValueService.GetValue("foo");
// Assert
Assert.IsFalse(result);
Assert.AreEqual("bar", value);
}
}
}