Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestSuite.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7febc1150f5986c3db04108777b62d94ca16a258 (plain)
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
namespace NUnit.Framework 
{
	using System;
	using System.Collections;
	using System.Collections.Specialized;
	using System.Reflection;

	/// <summary>A <c>TestSuite</c> is a <c>Composite</c> of Tests.</summary>
	/// <remarks>It runs a collection of test cases. Here is an example using
	/// the dynamic test definition.
	/// <code>
	/// TestSuite suite= new TestSuite();
	/// suite.AddTest(new MathTest("TestAdd"));
	/// suite.AddTest(new MathTest("TestDivideByZero"));
	/// </code>
	/// Alternatively, a TestSuite can extract the Tests to be run automatically.
	/// To do so you pass the class of your TestCase class to the
	/// TestSuite constructor.
	/// <code>
	/// TestSuite suite= new TestSuite(typeof(MathTest));
	/// </code>
	/// This constructor creates a suite with all the methods
	/// starting with "Test" that take no arguments.</remarks>
	/// <seealso cref="ITest"/>
	public class TestSuite: MarshalByRefObject, ITest
	{
		#region Instance Variables
		private ArrayList fTests= new ArrayList(10);
		private string fName;
		private bool fSupressWarnings = false;
		private string fDynamicConstructionQualifiedName= string.Empty;

		#endregion

		#region Constructors
		/// <summary>Constructs an empty TestSuite with a name.</summary>
		public TestSuite(string name) 
		{
			if(name==null)
				this.fName=String.Empty;
			this.fName = name;
		}

		/// <summary>Constructs an empty TestSuite with no name.</summary>
		public TestSuite() : this(String.Empty){}

		/// <summary>Constructs a TestSuite from the given class.</summary>
		/// <remarks>Adds all the methods starting with "Test" as test cases 
		/// to the suite. Parts of this method was written at 2337 meters in 
		/// the Hüffihütte, Kanton Uri</remarks>
		/// <param name="theClass"></param>
		/// <param name="supressWarnings"></param>
		public TestSuite(Type theClass, bool supressWarnings) : 
			this(theClass.FullName) 
		{
			this.fSupressWarnings = supressWarnings;
			//REFACTOR: these checks are also found in AssemblyTestCollector
			if(    theClass.IsClass
				&& (theClass.IsPublic || theClass.IsNestedPublic)
				&& !theClass.IsAbstract
				&& typeof(ITest).IsAssignableFrom(theClass)
				)
			{
				ConstructorInfo FixtureConstructor = GetConstructor(theClass);
				if(FixtureConstructor != null) 
				{
					{
						MethodInfo[] methods = theClass.GetMethods(
							BindingFlags.Public
							|BindingFlags.NonPublic
							|BindingFlags.Instance
							);
						foreach (MethodInfo method in methods) 
						{
							AddTestMethod(method, FixtureConstructor);
						}
						if (this.fTests.Count == 0)
							AddWarning("No Tests found in "+theClass.ToString());
					}
				}
				else
				{
					AddWarning("Class "+theClass.Name
						+" has no public constructor TestCase(String name)");
				}
			}
			else
			{
				AddWarning("Type '" + theClass.Name
					+"' must be a public, not abstract class that"
					+" implements ITest.");
			}
		}

		/// <summary>
		/// 
		/// </summary>
		/// <param name="theClass"></param>
		public TestSuite(Type theClass) : this(theClass,false){}
		#endregion

		#region Collection Methods
		/// <summary>Adds a test to the suite.</summary>
		public void AddTest(ITest test) 
		{
			fTests.Add(test);
		}
        
		/// <summary>Adds the tests from the given class to the suite</summary>
		public void AddTestSuite(Type testClass) 
		{
			AddTest(new TestSuite(testClass));
		}
		#endregion

		#region Dynamic Test Case Creation
		//private void AddTestMethod(MethodInfo m, StringCollection names, 
		private void AddTestMethod(MethodInfo m,
			ConstructorInfo constructor) 
		{
			string name = m.Name;
			if (IsPublicTestMethod(m)) 
			{
				Object[] args= new Object[]{name};
				try 
				{
					AddTest((ITest)constructor.Invoke(args));
				} 
				catch (TypeLoadException e) 
				{
					AddWarning("Cannot instantiate test case: "+name + "( " + e.ToString() + ")");
				} 
				catch (TargetInvocationException e) 
				{
					AddWarning("Exception in constructor: "+name + "( " + e.ToString() + ")");
				} 
				catch (MemberAccessException e) 
				{
					AddWarning("Cannot access test case: "+name + "( " + e.ToString() + ")");
				}
			} 
			else 
			{ // almost a test method
				if (IsTestMethod(m)) 
					AddWarning("test method isn't public: "+m.Name);
			}
		}

		/// <summary>Gets a constructor which takes a single string as
		/// its argument.</summary>
		private ConstructorInfo GetConstructor(Type theClass) 
		{
			//REFACTOR: these checks are also found in AssemblyTestCollector
			return theClass.GetConstructor(new Type[]{typeof(string)});
		}

		private bool IsPublicTestMethod(MethodInfo methodToCheck) 
		{
			return methodToCheck.IsPublic
				&& IsTestMethod(methodToCheck);
		}

		private bool IsTestMethod(MethodInfo methodToCheck) 
		{
			return
				!methodToCheck.IsAbstract
				&& methodToCheck.GetParameters().Length == 0
				&& methodToCheck.ReturnType.Equals(typeof(void))
				&& methodToCheck.Name.ToLower().StartsWith("test")
				;
		}
		#endregion

		#region Properties
		/// <summary>
		/// Returns the name of the suite. Not all test suites have a name
		/// and this method can return null.
		/// </summary>
		public string Name 
		{
			get { return this.fName; }
		}

		/// <summary>
		/// The number of test cases that will be run by this test.
		/// </summary>
		public int CountTestCases 
		{
			get
			{
				int count= 0;
				foreach (ITest test in this.Tests) 
				{
					count += test.CountTestCases;
				}
				return count;
			}
		}

		/// <value>The number of Tests in this suite.</value>
		public int TestCount 
		{
			get {return this.fTests.Count; }
		}

		/// <value>The test at the given index.</value>
		/// <remarks>Formerly TestAt(int).</remarks>
		public ITest this[int index] 
		{
			get {return (ITest)this.fTests[index]; }
		}
        
		/// <value>The Tests as a Test[].</value>
		public ITest[] Tests 
		{
			get {
				ITest[] ret = new ITest[this.fTests.Count];
				this.fTests.CopyTo(ret);
				return ret;
			}
		}
		#endregion

		#region Utility Methods
		private void AddWarning(string message) 
		{
			if(!this.fSupressWarnings)
				AddTest(new WarningFail(message));
		}    
		#endregion

		#region Run Methods
		/// <summary>Runs the Tests and collects their result in a
		/// TestResult.</summary>
		public virtual void Run(TestResult result) 
		{
			foreach (ITest test in Tests) 
			{
				if (result.ShouldStop )
					break;
				RunTest(test, result);
			}
		}
		/// <summary>
		/// 
		/// </summary>
		/// <param name="test"></param>
		/// <param name="result"></param>
		public virtual void RunTest(ITest test, TestResult result) 
		{
			test.Run(result);
		}
        
		/// <summary>
		/// 
		/// </summary>
		/// <returns></returns>
		#endregion

		#region Overrides
		public override string ToString() 
		{
			return this.Name;
		}
		#endregion

		#region Nested Classes
		/// <summary>A test which will fail and log a warning
		/// message.</summary>
		public class WarningFail : TestCase 
		{
			private string fMessage;
			
			/// <summary>
			/// 
			/// </summary>
			/// <param name="message"></param>
			public WarningFail(string message): base("warning") 
			{
				this.fMessage = message;
			}

			/// <summary>
			/// 
			/// </summary>
			protected override void RunTest() 
			{
				Assertion.Fail(fMessage);
			}         
		}
		#endregion
	}
}