mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* touching publish.yml * ColorScheme->Scheme * ColorScheme->Scheme 2 * Prototype of GetAttributeForRole * Badly broke CM * Further Badly broke CM * Refactored CM big-time. View still broken * All unit test pass again. Tons added. CM is still WIP, but Schemes is not mostly refactored and working. * Actually: All unit test pass again. Tons added. CM is still WIP, but Schemes is not mostly refactored and working. * Bug fixes. DeepMemberWiseClone cleanup * Further cleanup of Scope<T>, ConfigProperty, etc. * Made ConfigManager thread safe. * WIP: Broken * WIP: new deep clone impl * WIP: new deep clone impl is done. Now fixing CM * WIP: - config.md - Working on AOT clean up - Core CM is broken; but known. * WIP * Merged. Removed CM from Application.Init * WIP * More WIP; Less broke * All CM unit tests pass... Not sure if it actually works though * All unit tests pass... Themes are broken though in UI Cat * CM Ready for review? * Fixed failures due to TextStyles PR * Working on Scheme/Attribute * Working on Scheme/Attribute 2 * Working on Scheme/Attribute 3 * Working on Scheme/Attribute 4 * Working on Scheme/Attribute 5 * Working on Scheme/Attribute 6 * Added test to show how awful memory usage is * Improved schema. Updated config.json * Nade Scope<T> concurrentdictionary and added test to prove * Made Themes ConcrurrentDictionary. Added bunches of tests * Code cleanup * Code cleanup 2 * Code cleanup 3 * Tweaking Scheme * ClearJsonErrors * ClearJsonErrors2 * Updated Attribute API * It all (mostly) works! * Skip odd unit test * Messed with Themes * Theme tweaks * Code reorg. New .md stuff * Fixed Enabled. Added mock driver * Fixed a bunch of View.Enabled related issues * Scheme -> Get/SetScheme() * Cleanup * Cleanup2 * Broke something * Fixed everything * Made CM.Enable better * Text Style Scenario * Added comments * Fixed UI Catalog Theme Changing * Fixed more dynamic CM update stuff * Warning cleanup * New Default Theme * fixed unit test * Refactoring Scheme and Attribute to fix inheritance * more unit tests * ConfigProperty is not updating schemes correctly * All unit tests pass. Code cleanup * All unit tests pass. Code cleanup2 * Fixed unit tests * Upgraded TextField and TextView * Fixed TextView !Enabled bug * More updates to TextView. More unit tests for SchemeManager * Upgraded CharMap * API docs * Fixe HexView API * upgrade HexView * Fixed shortcut KeyView * Fixed more bugs. Added new themes * updated themes * upgraded Border * Fixed themes memory usage...mostly * Fixed themes memory usage...mostly2 * Fixed themes memory usage...2 * Fixed themes memory usage...3 * Added new colors * Fixed GetHardCodedConfig bug * Added Themes Scenario - WIP * Added Themes Scenario * Tweaked Themes Scenario * Code cleanup * Fixed json schmea * updated deepdives * updated deepdives * Tweaked Themes Scenario * Made Schemes a concurrent dict * Test cleanup * Thread safe ConfigProperty tests * trying to make things more thread safe * more trying to make things more thread safe * Fixing bugs in shadowview * Fixing bugs in shadowview 2 * Refactored GetViewsUnderMouse to GetViewsUnderLocation etc... * Fixed dupe unit tests? * Added better description of layout and coordiantes to deep dive * Added better description of layout and coordiantes to deep dive * Modified tests that call v2.AddTimeout; they were returning true which means restart the timer! This was causing mac/linux unit test failures. I think * Fixed auto scheme. Broke TextView/TextField selection * Realized Attribute.IsExplicitlySet is stupid; just use nullable * Fixed Attribute. Simplified. MOre theme testing * Updated themes again * GetViewsUnderMouse to GetViewsUnderLocation broke TransparentMouse. * Fixing mouseunder bugs * rewriting... * All working again. Shadows are now slick as snot. GetViewsUnderLocation is rewritten to actually work and be readable. Tons more low-level unit tests. Margin is now actually ViewportSettings.Transparent. * Code cleanup * Code cleanup * Code cleanup of color apis * Fixed Hover/Highlight * Update Examples/UICatalog/Scenarios/AllViewsTester.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Examples/UICatalog/Scenarios/CharacterMap/CharacterMap.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update Examples/UICatalog/Scenarios/Clipping.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fixed race condition? * reverted * Simplified Attribute API by removing events from SetAttributeForRole * Removed recursion from GetViewsAtLocation * Removed unneeded code * Code clean up. Fixed Scheme bug. * reverted temporary disable * Adjusted scheme algo * Upgraded TextValidateField * Fixed TextValidate bugs * Tweaks * Frameview rounded border by default * API doc cleanup * Readme fix * Addressed tznind feeback * Fixed more unit test issues by protecting Application statics from being set if Application.Initialized is not true * Fixed more unit test issues by protecting Application statics from being set if Application.Initialized is not true 2 * cleanup --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
248 lines
9.1 KiB
C#
248 lines
9.1 KiB
C#
#nullable enable
|
|
using System.Reflection;
|
|
|
|
namespace Terminal.Gui.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 });
|
|
}
|
|
}));
|
|
}
|
|
|
|
Task.WaitAll (tasks.ToArray ());
|
|
|
|
// 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
|
|
|
|
}
|