Skip to content

Commit 9b97aa2

Browse files
authored
Merge pull request #458 from tonyhallett/content-type-changes
remove tracked lines when file type changes to unsupported content ty…
2 parents f32b163 + 42fde60 commit 9b97aa2

File tree

4 files changed

+81
-27
lines changed

4 files changed

+81
-27
lines changed

.github/workflows/push_pull.yaml

+22-21
Original file line numberDiff line numberDiff line change
@@ -67,20 +67,20 @@ jobs:
6767

6868
# above are common steps for push and pull
6969

70-
# pull only
71-
- name: upload vsix
72-
if: github.event_name == 'pull_request' && !github.event.pull_request.draft
73-
uses: actions/upload-artifact@v2
74-
with:
75-
name: FineCodeCoverage ( zipped vsix)
76-
path: ${{env.VSIX}}
70+
# pull only - todo update to v4
71+
# - name: upload vsix
72+
# if: github.event_name == 'pull_request' && !github.event.pull_request.draft
73+
# uses: actions/upload-artifact@v2
74+
# with:
75+
# name: FineCodeCoverage ( zipped vsix)
76+
# path: ${{env.VSIX}}
7777

78-
- name: upload vsix 2022
79-
if: github.event_name == 'pull_request' && !github.event.pull_request.draft
80-
uses: actions/upload-artifact@v2
81-
with:
82-
name: FineCodeCoverage2022 ( zipped vsix)
83-
path: ${{env.VSIX2022}}
78+
# - name: upload vsix 2022
79+
# if: github.event_name == 'pull_request' && !github.event.pull_request.draft
80+
# uses: actions/upload-artifact@v2
81+
# with:
82+
# name: FineCodeCoverage2022 ( zipped vsix)
83+
# path: ${{env.VSIX2022}}
8484

8585
# push only
8686
- name: create release
@@ -134,11 +134,12 @@ jobs:
134134
manifestPath: ${{github.workspace}}\vs-market-place-manifest-2022.json
135135
vsixPath: ${{env.VSIX2022}}
136136

137-
- name: comment - released and added to marketplace
138-
if: github.event_name == 'push'
139-
uses: tonyhallett/[email protected]
140-
env:
141-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
142-
with:
143-
comment: released ${{steps.next-version.outputs.version_tag}} and available on marketplace
144-
addTo: pullandissues
137+
# todo - actions/upload-artifact@v4 now outputs the artifact-url
138+
# - name: comment - released and added to marketplace
139+
# if: github.event_name == 'push'
140+
# uses: tonyhallett/[email protected]
141+
# env:
142+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
143+
# with:
144+
# comment: released ${{steps.next-version.outputs.version_tag}} and available on marketplace
145+
# addTo: pullandissues

FineCodeCoverageTests/Editor/DynamicCoverage/BufferLineCoverage_Tests.cs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using AutoMoq;
22
using FineCodeCoverage.Core.Utilities;
33
using FineCodeCoverage.Editor.DynamicCoverage;
4+
using FineCodeCoverage.Editor.DynamicCoverage.TrackedLinesImpl.Construction;
45
using FineCodeCoverage.Engine;
56
using FineCodeCoverage.Engine.Model;
67
using FineCodeCoverage.Impl;
@@ -290,6 +291,7 @@ public void Should_Have_Null_TrackedLines_If_No_Initial_Coverage()
290291
null,
291292
null,
292293
new Mock<IAppOptionsProvider>().Object,
294+
new CoverageContentTypes(new ICoverageContentType[] { }),
293295
null
294296
);
295297

SharedProject/Editor/DynamicCoverage/Management/BufferLineCoverage.cs

+39-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using FineCodeCoverage.Core.Utilities;
5+
using FineCodeCoverage.Editor.DynamicCoverage.TrackedLinesImpl.Construction;
56
using FineCodeCoverage.Engine;
67
using FineCodeCoverage.Engine.Model;
78
using FineCodeCoverage.Impl;
@@ -11,6 +12,11 @@
1112

1213
namespace FineCodeCoverage.Editor.DynamicCoverage
1314
{
15+
internal interface ICoverageContentTypes
16+
{
17+
bool IsApplicable(string contentTypeName);
18+
}
19+
1420
internal class BufferLineCoverage :
1521
IBufferLineCoverage, IListener<NewCoverageLinesMessage>, IListener<TestExecutionStartingMessage>
1622
{
@@ -19,12 +25,14 @@ internal class BufferLineCoverage :
1925
private readonly ITrackedLinesFactory trackedLinesFactory;
2026
private readonly IDynamicCoverageStore dynamicCoverageStore;
2127
private readonly IAppOptionsProvider appOptionsProvider;
28+
private readonly ICoverageContentTypes coverageContentTypes;
2229
private readonly ILogger logger;
2330
private readonly ITextBuffer2 textBuffer;
2431
private bool? editorCoverageModeOff;
2532
private IFileLineCoverage fileLineCoverage;
2633
private Nullable<DateTime> lastChanged;
2734
private DateTime lastTestExecutionStarting;
35+
private bool applicableContentType = true;
2836

2937
public ITrackedLines TrackedLines { get; set; }
3038

@@ -40,6 +48,7 @@ public BufferLineCoverage(
4048
ITrackedLinesFactory trackedLinesFactory,
4149
IDynamicCoverageStore dynamicCoverageStore,
4250
IAppOptionsProvider appOptionsProvider,
51+
ICoverageContentTypes coverageContentTypes,
4352
ILogger logger
4453
)
4554
{
@@ -50,11 +59,13 @@ ILogger logger
5059
}
5160

5261
this.textBuffer = textInfo.TextBuffer;
62+
this.textBuffer.ContentTypeChanged += this.ContentTypeChanged;
5363
this.textInfo = textInfo;
5464
this.eventAggregator = eventAggregator;
5565
this.trackedLinesFactory = trackedLinesFactory;
5666
this.dynamicCoverageStore = dynamicCoverageStore;
5767
this.appOptionsProvider = appOptionsProvider;
68+
this.coverageContentTypes = coverageContentTypes;
5869
this.logger = logger;
5970
void AppOptionsChanged(IAppOptions appOptions)
6071
{
@@ -79,6 +90,7 @@ void textViewClosedHandler(object s, EventArgs e)
7990
{
8091
this.UpdateDynamicCoverageStore((s as ITextView).TextSnapshot);
8192
this.textBuffer.Changed -= this.TextBuffer_ChangedOnBackground;
93+
this.textBuffer.ContentTypeChanged -= this.ContentTypeChanged;
8294
textInfo.TextView.Closed -= textViewClosedHandler;
8395
appOptionsProvider.OptionsChanged -= AppOptionsChanged;
8496
_ = eventAggregator.RemoveListener(this);
@@ -87,6 +99,25 @@ void textViewClosedHandler(object s, EventArgs e)
8799
textInfo.TextView.Closed += textViewClosedHandler;
88100
}
89101

102+
private void ContentTypeChanged(object sender, ContentTypeChangedEventArgs args)
103+
{
104+
// purpose is so do not create tracked lines for a content type that is not applicable when new coverage
105+
this.applicableContentType = this.coverageContentTypes.IsApplicable(args.AfterContentType.TypeName);
106+
if (this.applicableContentType)
107+
{
108+
// this currently does not work as Roslyn is not ready.
109+
// could fallback to single lines but would have to look at other uses of IFileCodeSpanRangeService
110+
// this is low priority
111+
this.CreateTrackedLinesIfRequired(true);
112+
}
113+
else
114+
{
115+
this.TrackedLines = null;
116+
}
117+
118+
this.SendCoverageChangedMessage();
119+
}
120+
90121
private void UpdateDynamicCoverageStore(ITextSnapshot textSnapshot)
91122
{
92123
if (this.TrackedLines != null)
@@ -116,23 +147,23 @@ private void UpdateDynamicCoverageStore(ITextSnapshot textSnapshot)
116147
private bool FileSystemReflectsTrackedLines(string snapshotText)
117148
=> this.textInfo.GetFileText() == snapshotText;
118149

119-
private void CreateTrackedLinesIfRequired(bool initial)
150+
private void CreateTrackedLinesIfRequired(bool fromStore)
120151
{
121152
if (this.EditorCoverageColouringModeOff())
122153
{
123154
this.TrackedLines = null;
124155
}
125156
else
126157
{
127-
this.TryCreateTrackedLines(initial);
158+
this.TryCreateTrackedLines(fromStore);
128159
}
129160
}
130161

131-
private void TryCreateTrackedLines(bool initial)
162+
private void TryCreateTrackedLines(bool fromStore)
132163
{
133164
try
134165
{
135-
this.CreateTrackedLines(initial);
166+
this.CreateTrackedLines(fromStore);
136167
}
137168
catch (Exception e)
138169
{
@@ -182,11 +213,11 @@ as When is written when the text view is closed it is always - LastWriteTime < W
182213
: (SerializedCoverageState.Ok, serializedCoverageWhen.Serialized);
183214
}
184215

185-
private void CreateTrackedLines(bool initial)
216+
private void CreateTrackedLines(bool fromStore)
186217
{
187218
string filePath = this.textInfo.FilePath;
188219
ITextSnapshot currentSnapshot = this.textBuffer.CurrentSnapshot;
189-
if (initial)
220+
if (fromStore)
190221
{
191222
SerializedCoverageWhen serializedCoverageWhen = this.dynamicCoverageStore.GetSerializedCoverage(
192223
filePath
@@ -266,6 +297,8 @@ public IEnumerable<IDynamicLine> GetLines(int startLineNumber, int endLineNumber
266297

267298
public void Handle(NewCoverageLinesMessage message)
268299
{
300+
if (!this.applicableContentType) return;
301+
269302
this.fileLineCoverage = message.CoverageLines;
270303

271304
bool hadTrackedLines = this.TrackedLines != null;

SharedProject/Editor/DynamicCoverage/Management/BufferLineCoverageFactory.cs

+18
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,45 @@
11
using System.ComponentModel.Composition;
22
using System.Diagnostics.CodeAnalysis;
3+
using System.Linq;
34
using FineCodeCoverage.Core.Utilities;
5+
using FineCodeCoverage.Editor.DynamicCoverage.TrackedLinesImpl.Construction;
46
using FineCodeCoverage.Engine.Model;
57
using FineCodeCoverage.Impl;
68
using FineCodeCoverage.Options;
79

810
namespace FineCodeCoverage.Editor.DynamicCoverage
911
{
12+
internal class CoverageContentTypes : ICoverageContentTypes
13+
{
14+
private readonly ICoverageContentType[] coverageContentTypes;
15+
16+
public CoverageContentTypes(ICoverageContentType[] coverageContentTypes)
17+
=> this.coverageContentTypes = coverageContentTypes;
18+
public bool IsApplicable(string contentTypeName)
19+
=> this.coverageContentTypes.Any(contentType => contentType.ContentTypeName == contentTypeName);
20+
}
21+
1022
[ExcludeFromCodeCoverage]
1123
[Export(typeof(IBufferLineCoverageFactory))]
1224
internal class BufferLineCoverageFactory : IBufferLineCoverageFactory
1325
{
26+
private readonly ICoverageContentTypes coverageContentTypes;
1427
private readonly IDynamicCoverageStore dynamicCoverageStore;
1528
private readonly IAppOptionsProvider appOptionsProvider;
1629
private readonly ILogger logger;
1730

1831
[ImportingConstructor]
1932
public BufferLineCoverageFactory(
33+
[ImportMany]
34+
ICoverageContentType[] coverageContentTypes,
2035
IDynamicCoverageStore dynamicCoverageStore,
2136
IAppOptionsProvider appOptionsProvider,
2237
ILogger logger
2338
)
2439
{
2540
this.appOptionsProvider = appOptionsProvider;
2641
this.logger = logger;
42+
this.coverageContentTypes = new CoverageContentTypes(coverageContentTypes);
2743
this.dynamicCoverageStore = dynamicCoverageStore;
2844
}
2945

@@ -39,7 +55,9 @@ ITrackedLinesFactory trackedLinesFactory
3955
trackedLinesFactory,
4056
this.dynamicCoverageStore,
4157
this.appOptionsProvider,
58+
this.coverageContentTypes,
4259
this.logger
60+
4361
);
4462
}
4563
}

0 commit comments

Comments
 (0)