File: AddUsingActionTests.cs

package info (click to toggle)
monodevelop 4.0.12%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 219,596 kB
  • ctags: 253,200
  • sloc: cs: 1,486,058; xml: 952,347; java: 60,981; makefile: 4,213; sh: 1,727; ansic: 867; objc: 302; sql: 111
file content (320 lines) | stat: -rw-r--r-- 5,854 bytes parent folder | download | duplicates (5)
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
311
312
313
314
315
316
317
318
319
320
using ICSharpCode.NRefactory.CSharp.CodeIssues;
using NUnit.Framework;
using ICSharpCode.NRefactory.CSharp.CodeActions;
using ICSharpCode.NRefactory.CSharp.Refactoring;
using System.Linq;

namespace ICSharpCode.NRefactory.CSharp.CodeActions.AddUsing
{
	[TestFixture]
	public class AddUsingActionTests : ContextActionTestBase
	{
		void UnresolvedTypeName(string code, string typeName, params string[] namespaces)
		{
			TestActionDescriptions(
				new AddUsingAction(), code,
				namespaces.SelectMany(ns => new[] {
				                      	"using " + ns + ";",
				                      	ns + "." + typeName
				                      }).ToArray());
		}
		
		#region Field Declarations
		[Test]
		public void ShouldReturnAnIssueForUnresolvedFieldDeclarations()
		{
			UnresolvedTypeName(@"class Foo {
	private $TextWriter textWriter;
}", "TextWriter", "System.IO");
		}

		[Test]
		public void ShouldNotReturnAnyIssuesIfFieldTypeIsResolved()
		{
			TestWrongContext<AddUsingAction>(@"using System.IO;
class Foo {
	private $TextWriter textWriter;
}");
		}

		[Test]
		public void ShouldReturnAnIssueIfFieldTypeArgumentIsNotResolvable()
		{
			UnresolvedTypeName(
				@"using System.Collections.Generic;

class Foo
{
	private List<$AttributeTargets> targets;
}", "AttributeTargets", "System");
		}

		[Test]
		public void ShouldNotReturnAnIssueIfFieldTypeArgumentIsResolvable()
		{
			TestWrongContext<AddUsingAction>(
				@"using System;
using System.Collections.Generic;

class Foo
{
	private List<$AttributeTargets> notifiers;
}");
		}
		
		[Test]
		public void ShouldNotReturnAnIssueIfFieldTypeArgumentIsPrimitiveType()
		{
			TestWrongContext<AddUsingAction>(
				@"using System.Collections.Generic;

class Foo
{
	private List<$string> notifiers;
}");
		}
		#endregion

		#region Method Return Types
		[Test]
		public void ShouldReturnIssueForUnresolvedReturnType()
		{
			UnresolvedTypeName(
				@"class Foo
{
	$TextWriter Bar ()
	{
		return null;
	}
}", "TextWriter", "System.IO");
		}

		[Test]
		public void ShouldNotReturnIssueForResolvedReturnType()
		{
			TestWrongContext<AddUsingAction>(
				@"using System.IO;

class Foo
{
	$TextWriter Bar ()
	{
		return null;
	}
}");
		}
		#endregion

		#region Local Variables
		[Test]
		public void ShouldReturnIssueForUnresolvedLocalVariableDeclaration()
		{
			UnresolvedTypeName(
				@"class Foo
{
	void Bar ()
	{
		$TextWriter writer;
	}
}", "TextWriter", "System.IO");
		}

		[Test]
		public void ShouldNotReturnIssueForResolvedLocalVariableDeclaration()
		{
			TestWrongContext<AddUsingAction>(
				@"using System.IO;

class Foo
{
	void Bar ()
	{
		$TextWriter writer;
	}
}");
		}
		#endregion

		#region Method Parameters
		[Test]
		public void ShouldReturnIssueIfMethodParameterIsNotResolvable()
		{
			UnresolvedTypeName(
				@"class Foo
{
	void Bar ($TextWriter writer)
	{
	}
}", "TextWriter", "System.IO");
		}

		[Test]
		public void ShouldNotReturnAnIssueIfMethodParameterIsResolvable()
		{
			TestWrongContext<AddUsingAction>(
				@"using System.IO;

class Foo
{
	void Bar ($TextWriter writer)
	{
	}
}");
		}
		#endregion

		#region Base Types
		[Test]
		public void ShouldReturnIssueIfBaseClassIsNotResolvable()
		{
			UnresolvedTypeName(
				@"class Foo : $List<string>
{
}", "List<>", "System.Collections.Generic");
		}

		[Test]
		public void ShouldNotReturnIssueIfBaseClassIsResolvable()
		{
			TestWrongContext<AddUsingAction>(
				@"using System.Collections.Generic;

class Foo : $List<string>
{
}");
		}
		
		[Test]
		public void ShouldReturnIssueIfGenericInterfaceIsMissingButNonGenericIsPresent()
		{
			UnresolvedTypeName(
				@"using System.Collections;
class Foo : $IEnumerable<string>
{
}", "IEnumerable<>", "System.Collections.Generic");
		}

		[Test]
		public void ShouldReturnIssueIfNonGenericInterfaceIsMissingButGenericIsPresent()
		{
			UnresolvedTypeName(
				@"using System.Collections.Generic;
class Foo : $IEnumerable
{
}", "IEnumerable", "System.Collections");
		}

		#endregion

		#region Member Access
		[Test]
		public void ShouldReturnIssueIfEnumValueIsNotResolvable()
		{
			UnresolvedTypeName(
				@"class Foo
{
	void Bar ()
	{
		var support = $AttributeTargets.Assembly;
	}
}", "AttributeTargets", "System");
		}

		[Test]
		public void ShouldNotReturnIssueIfEnumValueIsResolvable()
		{
			TestWrongContext<AddUsingAction>(
				@"using System;
class Foo
{
	void Bar ()
	{
		var support = $AttributeTargets.Assembly;
	}
}");
		}
		#endregion

		[Test]
		public void ShouldReturnIssueIfAttributeIsNotResolvable()
		{
			UnresolvedTypeName(
				@"[$Serializable]
class Foo
{
}", "SerializableAttribute", "System");
		}

		[Test]
		public void ShouldNotReturnIssueIfAttributeIsResolvable()
		{
			TestWrongContext<AddUsingAction>(
				@"using System;

[$Serializable]
class Foo
{
}");
		}

		[Test]
		public void ShouldReturnIssueIfTypeArgumentIsNotResolvable()
		{
			UnresolvedTypeName(
				@"using System.Collections.Generic;

class Test
{
	void TestMethod()
	{
		var list = new List<$Stream>();
	}
}", "Stream", "System.IO");
		}

		[Test]
		public void ShouldReturnIssueForUnresolvedExtensionMethod()
		{
			TestActionDescriptions(
				new AddUsingAction(),
				@"using System.Collections.Generic;

class Test
{
	void TestMethod()
	{
		var list = new List<string>();
		var first = list.$First();
	}
}", "using System.Linq;");
		}

		[Test]
		public void ShouldReturnMultipleNamespaceSuggestions()
		{
			UnresolvedTypeName(
				@"namespace A { public class TestClass { } }
namespace B { public class TestClass { } }
namespace C
{
	public class Test
	{
		private $TestClass testClass;
	}
}", "TestClass", "A", "B");
		}
		
		[Test]
		public void InnerTypeCanOnlyBeReferredToByFullName()
		{
			TestActionDescriptions(
				new AddUsingAction(),
				@"class Outer { public class Inner {} }
public class Test
{
	private $Inner t;
}
", "Outer.Inner");
		}
	}
}