-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathVSMEF008ImportContractTypeMismatchAnalyzerTests.cs
More file actions
310 lines (249 loc) · 8.62 KB
/
VSMEF008ImportContractTypeMismatchAnalyzerTests.cs
File metadata and controls
310 lines (249 loc) · 8.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.CodeAnalysis.Text;
using Microsoft.VisualStudio.Composition.Analyzers;
using VerifyCS = CSharpCodeFixVerifier<Microsoft.VisualStudio.Composition.Analyzers.VSMEF008ImportContractTypeMismatchAnalyzer, Microsoft.CodeAnalysis.Testing.EmptyCodeFixProvider>;
public class VSMEF008ImportContractTypeMismatchAnalyzerTests
{
[Fact]
public async Task ImportWithIncompatibleContractType_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[Import(typeof(IService))]
public string {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithContractNameAndIncompatibleType_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[Import("MyContract", typeof(IService))]
public string {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportManyWithIncompatibleContractType_Error()
{
string test = """
using System.ComponentModel.Composition;
using System.Collections.Generic;
interface IService { }
class Foo
{
[ImportMany(typeof(IService))]
public IEnumerable<string> {|VSMEF008:Values|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithLazyWrapper_ContractTypeMismatch_Error()
{
string test = """
using System;
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[Import(typeof(IService))]
public Lazy<string> {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithExportFactoryWrapper_ContractTypeMismatch_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[Import(typeof(IService))]
public ExportFactory<string> {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportManyWithLazyCollection_ContractTypeMismatch_Error()
{
string test = """
using System;
using System.ComponentModel.Composition;
using System.Collections.Generic;
interface IService { }
class Foo
{
[ImportMany(typeof(IService))]
public IEnumerable<Lazy<string>> {|VSMEF008:Values|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportingConstructorParameter_ContractTypeMismatch_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[ImportingConstructor]
public Foo([Import(typeof(IService))] string {|VSMEF008:value|})
{
}
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportField_ContractTypeMismatch_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
class Foo
{
[Import(typeof(IService))]
public string {|VSMEF008:value|};
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithLazyMetadata_ContractTypeMismatch_Error()
{
string test = """
using System;
using System.ComponentModel.Composition;
interface IService { }
interface IMetadata { }
class Foo
{
[Import(typeof(IService))]
public Lazy<string, IMetadata> {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithExportFactoryMetadata_ContractTypeMismatch_Error()
{
string test = """
using System.ComponentModel.Composition;
interface IService { }
interface IMetadata { }
class Foo
{
[Import(typeof(IService))]
public ExportFactory<string, IMetadata> {|VSMEF008:Value|} { get; set; }
}
""";
await VerifyCS.VerifyAnalyzerAsync(test);
}
[Fact]
public async Task ImportWithAllowListedAssignment_NoWarning()
{
string test = """
using System.ComponentModel.Composition;
namespace MyNS
{
interface IServiceBroker { }
class SVsFullAccessServiceBroker { }
class Foo
{
[Import(typeof(SVsFullAccessServiceBroker))]
public IServiceBroker Value { get; set; }
}
}
""";
string allowList = "MyNS.IServiceBroker <= MyNS.SVsFullAccessServiceBroker\n";
var verifier = new VerifyCS.Test { TestCode = test };
verifier.TestState.AdditionalFiles.Add(
("vs-mef.ContractNamesAssignability.txt", SourceText.From(allowList)));
await verifier.RunAsync();
}
[Fact]
public async Task ImportWithAllowListedAssignmentWithComments_NoWarning()
{
string test = """
using System.ComponentModel.Composition;
namespace MyNS
{
interface IServiceBroker { }
class SVsFullAccessServiceBroker { }
class Foo
{
[Import(typeof(SVsFullAccessServiceBroker))]
public IServiceBroker Value { get; set; }
}
}
""";
string allowList = """
# This is a comment
MyNS.IServiceBroker <= MyNS.SVsFullAccessServiceBroker
""";
var verifier = new VerifyCS.Test { TestCode = test };
verifier.TestState.AdditionalFiles.Add(
("vs-mef.ContractNamesAssignability.txt", SourceText.From(allowList)));
await verifier.RunAsync();
}
[Fact]
public async Task ImportWithUnrelatedAllowList_StillReportsWarning()
{
string test = """
using System.ComponentModel.Composition;
namespace MyNS
{
interface IServiceBroker { }
class SVsFullAccessServiceBroker { }
class Foo
{
[Import(typeof(SVsFullAccessServiceBroker))]
public IServiceBroker {|VSMEF008:Value|} { get; set; }
}
}
""";
// The allow-list entry maps a different pair so the warning should still fire
string allowList = "MyNS.IOtherService <= MyNS.SVsFullAccessServiceBroker\n";
var verifier = new VerifyCS.Test { TestCode = test };
verifier.TestState.AdditionalFiles.Add(
("vs-mef.ContractNamesAssignability.txt", SourceText.From(allowList)));
await verifier.RunAsync();
}
[Fact]
public async Task DiagnosticMessage_UsesFullyQualifiedTypeNames()
{
string test = """
using System.ComponentModel.Composition;
namespace MyCompany.Services
{
interface IServiceBroker { }
class SVsServiceProvider { }
class Foo
{
[Import(typeof(SVsServiceProvider))]
public IServiceBroker {|#0:Value|} { get; set; }
}
}
""";
await VerifyCS.VerifyAnalyzerAsync(
test,
VerifyCS.Diagnostic(VSMEF008ImportContractTypeMismatchAnalyzer.Id)
.WithLocation(0)
.WithArguments("MyCompany.Services.SVsServiceProvider", "MyCompany.Services.IServiceBroker"));
}
}