|
| 1 | +// Copyright (c) 2026 SIL International |
| 2 | +// This software is licensed under the LGPL, version 2.1 or later |
| 3 | +// (http://www.gnu.org/licenses/lgpl-2.1.html) |
| 4 | + |
| 5 | +usingSystem.Linq; |
| 6 | +usingSystem.Windows.Forms; |
| 7 | +usingNUnit.Framework; |
| 8 | +usingSIL.FieldWorks.Common.FwUtils; |
| 9 | +usingSIL.LCModel; |
| 10 | +usingSIL.LCModel.Core.Text; |
| 11 | +usingXCore; |
| 12 | + |
| 13 | +namespaceSIL.FieldWorks.Common.Framework.DetailControls |
| 14 | +{ |
| 15 | +/// <summary> |
| 16 | +/// Regression tests for the DoNotRefresh + m_postponePropChanged interaction (LT-22414). |
| 17 | +/// |
| 18 | +/// Root cause: when <c>m_postponePropChanged=true</c> (default since LT-22018), |
| 19 | +/// <see cref="DataTree.PropChanged"/> defers refresh via <c>BeginInvoke</c>. |
| 20 | +/// This means <see cref="DataTree.RefreshListNeeded"/> is never set during a |
| 21 | +/// <c>DoNotRefresh</c> window, so releasing <c>DoNotRefresh</c> does not trigger |
| 22 | +/// a synchronous refresh. Code that brackets LCModel changes with DoNotRefresh |
| 23 | +/// (like <c>MorphTypeAtomicLauncher.SwapValues</c>) must explicitly set |
| 24 | +/// <c>RefreshListNeeded=true</c> before releasing <c>DoNotRefresh</c>. |
| 25 | +/// </summary> |
| 26 | +[TestFixture] |
| 27 | +publicclassMorphTypeSwapRefreshTests:MemoryOnlyBackendProviderRestoredForEachTestTestBase |
| 28 | +{ |
| 29 | +privateInventorym_parts; |
| 30 | +privateInventorym_layouts; |
| 31 | +privateILexEntrym_entry; |
| 32 | +privateMediatorm_mediator; |
| 33 | +privatePropertyTablem_propertyTable; |
| 34 | +privateDataTreem_dtree; |
| 35 | +privateFormm_parent; |
| 36 | + |
| 37 | + #region Fixture Setup and Teardown |
| 38 | + |
| 39 | +publicoverridevoidFixtureSetup() |
| 40 | +{ |
| 41 | +base.FixtureSetup(); |
| 42 | +m_layouts=DataTreeTests.GenerateLayouts(); |
| 43 | +m_parts=DataTreeTests.GenerateParts(); |
| 44 | +} |
| 45 | + |
| 46 | + #endregion |
| 47 | + |
| 48 | + #region Test Setup and Teardown |
| 49 | + |
| 50 | +publicoverridevoidTestSetup() |
| 51 | +{ |
| 52 | +base.TestSetup(); |
| 53 | + |
| 54 | +m_entry=Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); |
| 55 | +m_entry.CitationForm.VernacularDefaultWritingSystem= |
| 56 | +TsStringUtils.MakeString("test",Cache.DefaultVernWs); |
| 57 | +m_entry.Bibliography.SetAnalysisDefaultWritingSystem("bib content"); |
| 58 | +m_entry.Bibliography.SetVernacularDefaultWritingSystem("bib content"); |
| 59 | + |
| 60 | +m_dtree=newDataTree(); |
| 61 | +m_mediator=newMediator(); |
| 62 | +m_propertyTable=newPropertyTable(m_mediator); |
| 63 | +m_dtree.Init(m_mediator,m_propertyTable,null); |
| 64 | +m_parent=newForm(); |
| 65 | +m_parent.Controls.Add(m_dtree); |
| 66 | +} |
| 67 | + |
| 68 | +publicoverridevoidTestTearDown() |
| 69 | +{ |
| 70 | +if(m_parent!=null) |
| 71 | +{ |
| 72 | +m_parent.Close(); |
| 73 | +m_parent.Dispose(); |
| 74 | +} |
| 75 | +if(m_propertyTable!=null) |
| 76 | +{ |
| 77 | +m_propertyTable.Dispose(); |
| 78 | +m_propertyTable=null; |
| 79 | +} |
| 80 | +if(m_mediator!=null) |
| 81 | +{ |
| 82 | +m_mediator.Dispose(); |
| 83 | +m_mediator=null; |
| 84 | +} |
| 85 | + |
| 86 | +base.TestTearDown(); |
| 87 | +} |
| 88 | + |
| 89 | + #endregion |
| 90 | + |
| 91 | +/// <summary> |
| 92 | +/// LT-22414 regression: after clearing bibliography data inside a |
| 93 | +/// DoNotRefresh window, the ifdata bibliography slice should disappear. |
| 94 | +/// |
| 95 | +/// With m_postponePropChanged=true (default since LT-22018), PropChanged |
| 96 | +/// defers via BeginInvoke and never sets RefreshListNeeded during the |
| 97 | +/// DoNotRefresh window. Callers (like SwapValues) must explicitly set |
| 98 | +/// RefreshListNeeded=true before releasing DoNotRefresh. |
| 99 | +/// |
| 100 | +/// RED phase: comment out RefreshListNeeded=true → test FAILS (stale slices). |
| 101 | +/// GREEN phase: RefreshListNeeded=true present → test PASSES. |
| 102 | +/// </summary> |
| 103 | +[Test] |
| 104 | +publicvoidDoNotRefresh_SlicesMustReflectChanges_AfterRelease_LT22414() |
| 105 | +{ |
| 106 | +// Arrange: show entry with CfAndBib layout (CitationForm + Bibliography ifdata) |
| 107 | +m_dtree.Initialize(Cache,false,m_layouts,m_parts); |
| 108 | +m_dtree.ShowObject(m_entry,"CfAndBib",null,m_entry,false); |
| 109 | + |
| 110 | +// Verify initial state: both slices visible (bib has data) |
| 111 | +Assert.That(m_dtree.Controls.Count,Is.EqualTo(2), |
| 112 | +"Setup: should have CitationForm + Bibliography"); |
| 113 | + |
| 114 | +// Act: simulate the DoNotRefresh pattern from SwapValues |
| 115 | +m_dtree.DoNotRefresh=true; |
| 116 | + |
| 117 | +// Make changes that should affect visible slices: |
| 118 | +// clearing bibliography data should cause the ifdata slice to disappear on refresh |
| 119 | +m_entry.Bibliography.SetVernacularDefaultWritingSystem(""); |
| 120 | +m_entry.Bibliography.SetAnalysisDefaultWritingSystem(""); |
| 121 | + |
| 122 | +// LT-22414 FIX: callers must explicitly set RefreshListNeeded=true. |
| 123 | +// Without this line, the test FAILS (proving the bug exists). |
| 124 | +// >>> COMMENT OUT THIS LINE TO SEE THE BUG <<< |
| 125 | +m_dtree.RefreshListNeeded=true; |
| 126 | + |
| 127 | +m_dtree.DoNotRefresh=false; |
| 128 | + |
| 129 | +// Assert: after refresh, bibliography slice should be gone (no data → ifdata hides it) |
| 130 | +Assert.That(m_dtree.Controls.Count,Is.EqualTo(1), |
| 131 | +"LT-22414: After DoNotRefresh=false, slices should reflect data changes. "+ |
| 132 | +"Bibliography has no data so ifdata should hide it. "+ |
| 133 | +"If this fails with count=2, no refresh occurred."); |
| 134 | +Assert.That((m_dtree.Controls[0]asSlice).Label,Is.EqualTo("CitationForm")); |
| 135 | +} |
| 136 | + |
| 137 | +/// <summary> |
| 138 | +/// Complementary test: verify that WITHOUT RefreshListNeeded=true, |
| 139 | +/// releasing DoNotRefresh does NOT trigger a refresh (the bug behavior). |
| 140 | +/// This documents the root cause of LT-22414. |
| 141 | +/// </summary> |
| 142 | +[Test] |
| 143 | +publicvoidDoNotRefresh_WithoutRefreshListNeeded_DoesNotRefresh_LT22414_BugDemo() |
| 144 | +{ |
| 145 | +// Arrange: show entry with CfAndBib layout |
| 146 | +m_dtree.Initialize(Cache,false,m_layouts,m_parts); |
| 147 | +m_dtree.ShowObject(m_entry,"CfAndBib",null,m_entry,false); |
| 148 | +Assert.That(m_dtree.Controls.Count,Is.EqualTo(2)); |
| 149 | + |
| 150 | +varoriginalSlice=m_dtree.Slices[0]; |
| 151 | + |
| 152 | +// Act: DoNotRefresh without setting RefreshListNeeded |
| 153 | +m_dtree.DoNotRefresh=true; |
| 154 | +m_entry.Bibliography.SetVernacularDefaultWritingSystem(""); |
| 155 | +m_entry.Bibliography.SetAnalysisDefaultWritingSystem(""); |
| 156 | +// Intentionally NOT setting RefreshListNeeded (simulates buggy SwapValues) |
| 157 | +m_dtree.DoNotRefresh=false; |
| 158 | + |
| 159 | +// Assert: slices are STALE — bibliography still visible despite no data |
| 160 | +Assert.That(m_dtree.Controls.Count,Is.EqualTo(2), |
| 161 | +"Without RefreshListNeeded, DoNotRefresh=false does not trigger refresh; "+ |
| 162 | +"slices remain stale (bibliography still visible despite no data)."); |
| 163 | +} |
| 164 | +} |
| 165 | +} |
0 commit comments