Files
Terminal.Gui/Tests/UnitTestsParallelizable/Configuration/ScopeTests.cs

250 lines
9.1 KiB
C#

#nullable enable
using System.Reflection;
namespace UnitTests_Parallelizable.ConfigurationTests;
public class ScopeTests
{
[Fact]
public void Constructor_Scope_Is_Empty ()
{
// Arrange
// Act
var scope = new Scope<object> ();
// Assert
Assert.NotNull (scope);
Assert.Empty (scope);
}
// The property key will be "ScopeTests.BoolProperty"
[ConfigurationProperty (Scope = typeof (ScopeTestsScope))]
public static bool? BoolProperty { get; set; } = true;
// The property key will be "ScopeTests.StringProperty"
[ConfigurationProperty (Scope = typeof (ScopeTestsScope))]
public static string? StringProperty { get; set; } // null
// The property key will be "ScopeTests.KeyProperty"
[ConfigurationProperty (Scope = typeof (ScopeTestsScope))]
public static Key? KeyProperty { get; set; } = Key.A;
// The property key will be "ScopeTests.DictionaryProperty"
[ConfigurationProperty (Scope = typeof (ScopeTestsScope))]
public static Dictionary<string, ConfigProperty>? DictionaryProperty { get; set; }
public class ScopeTestsScope : Scope<ScopeTestsScope>
{
}
// The property key will be "ScopeTests.DictionaryItemProperty1"
[ConfigurationProperty (Scope = typeof (ScopeTestsDictionaryItemScope))]
public static string? DictionaryItemProperty1 { get; set; } // null
// The property key will be "ScopeTests.DictionaryItemProperty2"
[ConfigurationProperty (Scope = typeof (ScopeTestsDictionaryItemScope))]
public static string? DictionaryItemProperty2 { get; set; } // null
public class ScopeTestsDictionaryItemScope : Scope<ScopeTestsDictionaryItemScope>
{
}
[Fact]
public void TestScope_Constructor_Creates_Properties ()
{
// Arrange
// Act
var scope = new ScopeTestsScope ();
scope.LoadHardCodedDefaults ();
var cache = CM.GetHardCodedConfigPropertyCache ();
Assert.NotNull (cache);
// Assert
Assert.NotNull (scope);
Assert.True (scope.ContainsKey ("ScopeTests.BoolProperty"));
Assert.Equal (typeof (ScopeTests).GetProperty ("BoolProperty"), scope ["ScopeTests.BoolProperty"].PropertyInfo);
Assert.True ((bool)scope ["ScopeTests.BoolProperty"].PropertyValue!);
Assert.True (scope ["ScopeTests.BoolProperty"].HasValue);
Assert.Equal (typeof (ScopeTests).GetProperty ("StringProperty"), scope ["ScopeTests.StringProperty"].PropertyInfo);
Assert.Null (scope ["ScopeTests.StringProperty"].PropertyValue);
Assert.True (scope ["ScopeTests.StringProperty"].HasValue);
}
[Fact]
public void UpdateFrom_Unknown_Key_Adds ()
{
// Arrange
var scope = new ScopeTestsScope ();
scope.LoadHardCodedDefaults ();
var scopeWithAddedProperty = new ScopeTestsScope ();
scopeWithAddedProperty.TryAdd ("AddedProperty", new ConfigProperty ()
{
Immutable = false,
PropertyInfo = scope ["ScopeTests.BoolProperty"].PropertyInfo, // cheat and reuse the same PropertyInfo
PropertyValue = false
});
// Act
scope.UpdateFrom (scopeWithAddedProperty);
// Assert
Assert.NotNull (scope);
Assert.NotEmpty (scope);
Assert.True (scope.ContainsKey ("AddedProperty"));
Assert.Equal (false, scopeWithAddedProperty ["AddedProperty"].PropertyValue);
}
[Fact]
public void UpdateFrom_HasValue_Updates ()
{
// Arrange
ScopeTestsScope originalScope = new ScopeTestsScope ();
originalScope.LoadHardCodedDefaults ();
Assert.Equal (Key.A, originalScope ["ScopeTests.KeyProperty"].PropertyValue);
ScopeTestsScope sourceScope = new ScopeTestsScope ();
sourceScope.TryAdd ("ScopeTests.KeyProperty", new ConfigProperty
{
Immutable = false,
PropertyInfo = originalScope ["ScopeTests.KeyProperty"].PropertyInfo,
});
sourceScope ["ScopeTests.KeyProperty"].PropertyValue = Key.B;
// StringProperty is set to null
Assert.DoesNotContain ("ScopeTests.StringProperty", sourceScope);
Assert.True (sourceScope ["ScopeTests.KeyProperty"].HasValue);
// Act
originalScope.UpdateFrom (sourceScope);
// Assert
Assert.True (originalScope ["ScopeTests.StringProperty"].HasValue);
Assert.True (originalScope ["ScopeTests.KeyProperty"].HasValue);
Assert.Equal (Key.B, originalScope ["ScopeTests.KeyProperty"].PropertyValue);
}
[Fact]
public void UpdateFrom_HasValue_Dictionary_Updates ()
{
// Arrange
ScopeTestsScope originalScope = new ScopeTestsScope ();
originalScope.LoadHardCodedDefaults ();
Assert.Null (originalScope ["ScopeTests.DictionaryProperty"].PropertyValue);
// QUESTION: Should this be done automatically?
originalScope ["ScopeTests.DictionaryProperty"].PropertyValue = new Dictionary<string, ConfigProperty> ();
ScopeTestsScope sourceScope = new ScopeTestsScope ();
sourceScope.LoadHardCodedDefaults ();
sourceScope ["ScopeTests.DictionaryProperty"].PropertyValue = new Dictionary<string, ConfigProperty> ()
{
{ "item1", ConfigProperty.GetAllConfigProperties () ["ScopeTests.DictionaryItemProperty1"] },
{ "item2", ConfigProperty.GetAllConfigProperties () ["ScopeTests.DictionaryItemProperty2"] }
};
Assert.True (sourceScope ["ScopeTests.KeyProperty"].HasValue);
Assert.True (sourceScope ["ScopeTests.DictionaryProperty"].HasValue);
Dictionary<string, ConfigProperty>? sourceDict = sourceScope ["ScopeTests.DictionaryProperty"].PropertyValue as Dictionary<string, ConfigProperty>;
sourceDict! ["item1"].Immutable = false;
sourceDict ["item2"].Immutable = false;
Assert.NotNull (sourceDict);
Assert.Equal (2, sourceDict!.Count);
Assert.True (sourceDict.ContainsKey ("item1"));
Assert.True (sourceDict.ContainsKey ("item2"));
Assert.False (sourceDict ["item1"].HasValue);
Assert.False (sourceDict ["item1"].Immutable);
// Update the original scope with the source scope, which has no values
originalScope.UpdateFrom (sourceScope);
// Confirm original is unchanged
Assert.NotNull (originalScope ["ScopeTests.DictionaryProperty"].PropertyValue);
Dictionary<string, ConfigProperty>? destDict = originalScope ["ScopeTests.DictionaryProperty"].PropertyValue as Dictionary<string, ConfigProperty>;
Assert.NotNull (destDict);
Assert.Empty (destDict);
Assert.False (destDict.ContainsKey ("item1"));
Assert.False (destDict.ContainsKey ("item2"));
// Confirm source is unchanged
sourceDict ["item1"].PropertyValue = "hello";
Assert.True (sourceDict ["item1"].HasValue);
Assert.Equal ("hello", sourceDict ["item1"].PropertyValue);
// Now update the original scope with the source scope again
originalScope.UpdateFrom (sourceScope);
// Confirm the original has been updated with only the values in source that have been set
Assert.NotNull (originalScope ["ScopeTests.DictionaryProperty"].PropertyValue);
destDict = originalScope ["ScopeTests.DictionaryProperty"].PropertyValue as Dictionary<string, ConfigProperty>;
// 1 item (item1) should now be in the original scope
Assert.Single (destDict!);
Assert.True (destDict! ["item1"].HasValue);
Assert.Equal ("hello", destDict ["item1"].PropertyValue);
originalScope.Apply ();
// Verify apply worked
Assert.Equal ("hello", DictionaryProperty? ["item1"].PropertyValue);
// The item property should not have had its value set
Assert.Null (DictionaryItemProperty1);
DictionaryItemProperty1 = null;
}
#region Concurrency Testing
[Fact]
public void Scope_Concurrent_Additions ()
{
// Arrange
var scope = new Scope<object> ();
int threadCount = 10;
int itemsPerThread = 100;
var tasks = new List<Task> ();
// Act
for (int t = 0; t < threadCount; t++)
{
int threadId = t;
tasks.Add (Task.Run (() =>
{
for (int i = 0; i < itemsPerThread; i++)
{
string key = $"Thread{threadId}_Item{i}";
scope.TryAdd (key, new ConfigProperty { PropertyValue = i });
}
}));
}
#pragma warning disable xUnit1031
Task.WaitAll (tasks.ToArray ());
#pragma warning restore xUnit1031
// Assert
Assert.Equal (threadCount * itemsPerThread, scope.Count);
for (int t = 0; t < threadCount; t++)
{
for (int i = 0; i < itemsPerThread; i++)
{
string key = $"Thread{t}_Item{i}";
Assert.True (scope.ContainsKey (key));
Assert.Equal (i, scope [key].PropertyValue);
}
}
}
#endregion
}