Merge pull request #2057 from directhex/monolite-on-jenkins
[mono.git] / mcs / class / corlib / Test / System.Reflection / MethodInfoTest.cs
1 //
2 // System.Reflection.MethodInfo Test Cases
3 //
4 // Authors:
5 //  Zoltan Varga (vargaz@gmail.com)
6 //
7 // (c) 2003 Ximian, Inc. (http://www.ximian.com)
8 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using NUnit.Framework;
31 using System;
32 using System.Threading;
33 using System.Reflection;
34 #if !MONOTOUCH
35 using System.Reflection.Emit;
36 #endif
37 using System.Runtime.InteropServices;
38 using System.Runtime.CompilerServices;
39
40 using System.Collections.Generic;
41
42 namespace A.B.C {
43         // Disable expected warning
44 #pragma warning disable 169
45         public struct MethodInfoTestStruct {
46                 int p;
47         }
48 #pragma warning restore 169
49 }
50 namespace MonoTests.System.Reflection
51 {
52         [TestFixture]
53         public class MethodInfoTest
54         {
55                 [DllImport ("libfoo", EntryPoint="foo", CharSet=CharSet.Unicode, ExactSpelling=false, PreserveSig=true, SetLastError=true, BestFitMapping=true, ThrowOnUnmappableChar=true)]
56                 public static extern void dllImportMethod ();
57                 [MethodImplAttribute(MethodImplOptions.PreserveSig)]
58                 public void preserveSigMethod ()
59                 {
60                 }
61
62                 [MethodImplAttribute(MethodImplOptions.Synchronized)]
63                 public void synchronizedMethod ()
64                 {
65                 }
66
67                 public interface InterfaceTest
68                 {
69                         void Clone ();
70                 }
71
72                 [Test]
73                 public void IsDefined_AttributeType_Null ()
74                 {
75                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo");
76
77                         try {
78                                 mi.IsDefined ((Type) null, false);
79                                 Assert.Fail ("#1");
80                         } catch (ArgumentNullException ex) {
81                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
82                                 Assert.IsNull (ex.InnerException, "#3");
83                                 Assert.IsNotNull (ex.Message, "#4");
84                                 Assert.IsNotNull (ex.ParamName, "#5");
85                                 Assert.AreEqual ("attributeType", ex.ParamName, "#6");
86                         }
87                 }
88
89                 [Test]
90                 public void TestInvokeByRefReturnMethod ()
91                 {
92                         try {
93                                 MethodInfo m = typeof (int[]).GetMethod ("Address");
94                                 m.Invoke (new int[1], new object[] { 0 });
95                                 Assert.Fail ("#1");
96                         } catch (NotSupportedException e) {
97                                 Assert.AreEqual (typeof (NotSupportedException), e.GetType (), "#2");
98                                 Assert.IsNull (e.InnerException, "#3");
99                                 Assert.IsNotNull (e.Message, "#4");
100                         }
101                 }
102
103                 [Test]
104                 public void PseudoCustomAttributes ()
105                 {
106                         Type t = typeof (MethodInfoTest);
107
108                         DllImportAttribute attr = (DllImportAttribute)((t.GetMethod ("dllImportMethod").GetCustomAttributes (typeof (DllImportAttribute), true)) [0]);
109
110                         Assert.AreEqual (CallingConvention.Winapi, attr.CallingConvention, "#1");
111                         Assert.AreEqual ("foo", attr.EntryPoint, "#2");
112                         Assert.AreEqual ("libfoo", attr.Value, "#3");
113                         Assert.AreEqual (CharSet.Unicode, attr.CharSet, "#4");
114                         Assert.AreEqual (false, attr.ExactSpelling, "#5");
115                         Assert.AreEqual (true, attr.PreserveSig, "#6");
116                         Assert.AreEqual (true, attr.SetLastError, "#7");
117                         Assert.AreEqual (true, attr.BestFitMapping, "#8");
118                         Assert.AreEqual (true, attr.ThrowOnUnmappableChar, "#9");
119
120                         PreserveSigAttribute attr2 = (PreserveSigAttribute)((t.GetMethod ("preserveSigMethod").GetCustomAttributes (true)) [0]);
121
122                         // This doesn't work under MS.NET
123                         /*
124                           MethodImplAttribute attr3 = (MethodImplAttribute)((t.GetMethod ("synchronizedMethod").GetCustomAttributes (true)) [0]);
125                         */
126                 }
127
128                 [return: MarshalAs (UnmanagedType.Interface)]
129                 public void ReturnTypeMarshalAs ()
130                 {
131                 }
132
133                 [Test]
134                 public void ReturnTypePseudoCustomAttributes ()
135                 {
136                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ReturnTypeMarshalAs");
137
138                         Assert.IsTrue (mi.ReturnTypeCustomAttributes.GetCustomAttributes (typeof (MarshalAsAttribute), true).Length == 1);
139                 }
140
141                 public static int foo (int i, int j)
142                 {
143                         return i + j;
144                 }
145
146                 [Test]
147                 public void StaticInvokeWithObject ()
148                 {
149                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo");
150                         
151                         mi.Invoke (new Object (), new object [] { 1, 2 });
152                 }
153
154                 [Test]
155                 public void ByRefInvoke ()
156                 {
157                         MethodInfo met = typeof(MethodInfoTest).GetMethod ("ByRefTest");
158                         object[] parms = new object[] {1};
159                         met.Invoke (null, parms);
160                         Assert.AreEqual (2, parms[0]);
161                 }
162
163                 public static void ByRefTest (ref int a1)
164                 {
165                         if (a1 == 1)
166                                 a1 = 2;
167                 }
168
169                 static int byref_arg;
170
171                 public static void ByrefVtype (ref int i) {
172                         byref_arg = i;
173                         i = 5;
174                 }
175
176                 [Test]
177                 public void ByrefVtypeInvoke ()
178                 {
179                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ByrefVtype");
180
181                         object o = 1;
182                         object[] args = new object [] { o };
183                         mi.Invoke (null, args);
184                         Assert.AreEqual (1, byref_arg, "#A1");
185                         Assert.AreEqual (1, o, "#A2");
186                         Assert.AreEqual (5, args[0], "#A3");
187
188                         args [0] = null;
189                         mi.Invoke (null, args);
190                         Assert.AreEqual (0, byref_arg, "#B1");
191                         Assert.AreEqual (5, args[0], "#B2");
192                 }
193
194                 public void HeyHey (out string out1, ref DateTime ref1)
195                 {
196                         out1 = null;
197                 }
198
199                 public void SignatureTest (__arglist)
200                 {
201                 }
202                 
203                 public static unsafe int* PtrFunc (int* a)
204                 {
205                         return (int*) 0;
206                 }
207
208                 [Test] // bug #81538
209                 public void InvokeThreadAbort ()
210                 {
211                         MethodInfo method = typeof (MethodInfoTest).GetMethod ("AbortIt");
212                         try {
213                                 method.Invoke (null, new object [0]);
214                                 Assert.Fail ("#1");
215                         }
216                         catch (ThreadAbortException ex) {
217                                 Thread.ResetAbort ();
218                                 Assert.IsNull (ex.InnerException, "#2");
219                         }
220                 }
221
222                 public static void AbortIt ()
223                 {
224                         Thread.CurrentThread.Abort ();
225                 }
226
227                 [Test] // bug #76541
228                 public void ToStringByRef ()
229                 {
230                         Assert.AreEqual ("Void HeyHey(System.String ByRef, System.DateTime ByRef)",
231                                 this.GetType ().GetMethod ("HeyHey").ToString ());
232                 }
233                 
234                 [Test]
235                 public void ToStringArgList ()
236                 {
237                         Assert.AreEqual ("Void SignatureTest(...)",
238                                 this.GetType ().GetMethod ("SignatureTest").ToString ());
239                 }
240
241                 [Test]
242                 public void ToStringWithPointerSignatures () //bug #409583
243                 {
244                         Assert.AreEqual ("Int32* PtrFunc(Int32*)", this.GetType ().GetMethod ("PtrFunc").ToString ());
245                 }
246
247                 public struct SimpleStruct
248                 {
249                         public int a;
250                 }
251
252                 public static unsafe SimpleStruct* PtrFunc2 (SimpleStruct* a, A.B.C.MethodInfoTestStruct *b)
253                 {
254                         return (SimpleStruct*) 0;
255                 }
256
257                 [Test]
258                 public void ToStringWithPointerSignaturesToNonPrimitiveType ()
259                 {
260                         Assert.AreEqual ("SimpleStruct* PtrFunc2(SimpleStruct*, A.B.C.MethodInfoTestStruct*)", 
261                                 this.GetType ().GetMethod ("PtrFunc2").ToString ());
262                 }       
263                 [Test]
264                 public void ToStringGenericMethod ()
265                 {
266                         Assert.AreEqual ("System.Collections.ObjectModel.ReadOnlyCollection`1[T] AsReadOnly[T](T[])",
267                                 typeof (Array).GetMethod ("AsReadOnly").ToString ());
268                 }
269
270                 class GBD_A         { public virtual     void f () {} }
271                 class GBD_B : GBD_A { public override    void f () {} }
272                 class GBD_C : GBD_B { public override    void f () {} }
273                 class GBD_D : GBD_C { public new virtual void f () {} }
274                 class GBD_E : GBD_D { public override    void f () {} }
275
276                 [Test]
277                 public void GetBaseDefinition ()
278                 {
279                         Assert.AreEqual (typeof (GBD_A), typeof (GBD_C).GetMethod ("f").GetBaseDefinition ().DeclaringType);
280                         Assert.AreEqual (typeof (GBD_D), typeof (GBD_D).GetMethod ("f").GetBaseDefinition ().DeclaringType);
281                         Assert.AreEqual (typeof (GBD_D), typeof (GBD_E).GetMethod ("f").GetBaseDefinition ().DeclaringType);
282                 }
283
284                 class TestInheritedMethodA {
285                         private void TestMethod ()
286                         {
287                         }
288
289                         public void TestMethod2 ()
290                         {
291                         }
292                 }
293
294                 class TestInheritedMethodB : TestInheritedMethodA {
295                 }
296
297                 [Test]
298                 public void InheritanceTestGetMethodTest ()
299                 {
300                         MethodInfo inheritedMethod = typeof(TestInheritedMethodB).GetMethod("TestMethod", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
301                         MethodInfo baseMethod = typeof(TestInheritedMethodB).GetMethod("TestMethod", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
302                         Assert.AreSame (inheritedMethod, baseMethod);
303
304                         MethodInfo inheritedMethod2 = typeof(TestInheritedMethodB).GetMethod("TestMethod2", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
305                         MethodInfo baseMethod2 = typeof(TestInheritedMethodB).GetMethod("TestMethod2", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
306                         Assert.AreSame (inheritedMethod, baseMethod);
307                 }
308
309                 [Test]
310                 public void GetMethodBody_Abstract ()
311                 {
312                         MethodBody mb = typeof (InterfaceTest).GetMethod ("Clone").GetMethodBody ();
313                         Assert.IsNull (mb);
314                 }
315
316                 [Test]
317                 public void GetMethodBody_Runtime ()
318                 {
319                         MethodBody mb = typeof (AsyncCallback).GetMethod ("Invoke").GetMethodBody ();
320                         Assert.IsNull (mb);
321                 }
322
323                 [Test]
324                 public void GetMethodBody_Pinvoke ()
325                 {
326                         MethodBody mb = typeof (MethodInfoTest).GetMethod ("dllImportMethod").GetMethodBody ();
327                         Assert.IsNull (mb);
328                 }
329
330                 [Test]
331                 public void GetMethodBody_Icall ()
332                 {
333                         foreach (MethodInfo mi in typeof (object).GetMethods (BindingFlags.Public|BindingFlags.NonPublic|BindingFlags.Instance))
334                                 if ((mi.GetMethodImplementationFlags () & MethodImplAttributes.InternalCall) != 0) {
335                                         MethodBody mb = mi.GetMethodBody ();
336                                         Assert.IsNull (mb);
337                                 }
338                 }
339
340                 public static void locals_method ()
341                 {
342                         byte[] b = new byte [10];
343
344                         unsafe {
345                                 /* This generates a pinned local */
346                                 fixed (byte *p = &b [0]) {
347                                 }
348                         }
349                 }
350
351                 [Test]
352                 public void GetMethodBody ()
353                 {
354 #if MONOTOUCH && !DEBUG
355                         Assert.Ignore ("Release app (on devices) are stripped of (managed) IL so this test would fail");
356 #endif
357                         MethodBody mb = typeof (MethodInfoTest).GetMethod ("locals_method").GetMethodBody ();
358
359                         Assert.IsTrue (mb.InitLocals, "#1");
360                         Assert.IsTrue (mb.LocalSignatureMetadataToken > 0, "#2");
361
362                         IList<LocalVariableInfo> locals = mb.LocalVariables;
363
364                         bool foundPinnedBytePointer = false;
365                         unsafe {
366                                 foreach (LocalVariableInfo lvi in locals) {
367                                         if (lvi.LocalType == typeof (byte[]))
368                                                 // This is optimized out by CSC in .NET 4.6
369                                                 Assert.IsFalse (lvi.IsPinned, "#3-1");
370
371                                         if (/* mcs */ lvi.LocalType == typeof (byte*) || /* csc */ lvi.LocalType == typeof (byte).MakeByRefType ()) {
372                                                 foundPinnedBytePointer = true;
373                                                 Assert.IsTrue (lvi.IsPinned, "#3-2");
374                                         }
375                                 }
376                         }
377                         Assert.IsTrue (foundPinnedBytePointer, "#4");
378                 }
379
380                 public int return_parameter_test ()
381                 {
382                         return 0;
383                 }
384
385                 [Test]
386                 public void GetMethodFromHandle_Generic ()
387                 {
388                         MethodHandleTest<int> test = new MethodHandleTest<int> ();
389                         RuntimeMethodHandle mh = test.GetType ().GetProperty ("MyList")
390                                 .GetGetMethod ().MethodHandle;
391                         MethodBase mb = MethodInfo.GetMethodFromHandle (mh,
392                                 typeof (MethodHandleTest<int>).TypeHandle);
393                         Assert.IsNotNull (mb, "#1");
394                         List<int> list = (List<int>) mb.Invoke (test, null);
395                         Assert.IsNotNull (list, "#2");
396                         Assert.AreEqual (1, list.Count, "#3");
397                 }
398
399                 [Test]
400                 public void ReturnParameter ()
401                 {
402                         ParameterInfo pi = typeof (MethodInfoTest).GetMethod ("return_parameter_test").ReturnParameter;
403                         Assert.AreEqual (typeof (int), pi.ParameterType, "#1");
404                         Assert.AreEqual (-1, pi.Position, "#2");
405                         // MS always return false here
406                         //Assert.IsTrue (pi.IsRetval, "#3");
407                 }
408
409                 [Test]
410                 public void MethodInfoModule ()
411                 {
412                         Type type = typeof (MethodInfoTest);
413                         MethodInfo me = type.GetMethod ("return_parameter_test");
414
415                         Assert.AreEqual (type.Module, me.Module);
416                 }
417
418                 [Test]
419                         public void InvokeOnRefOnlyAssembly ()
420                 {
421                         Assembly a = Assembly.ReflectionOnlyLoad (typeof (MethodInfoTest).Assembly.FullName);
422                         Type t = a.GetType (typeof (RefOnlyMethodClass).FullName);
423                         MethodInfo m = t.GetMethod ("RefOnlyMethod", BindingFlags.Static | BindingFlags.NonPublic);
424                         try {
425                                 m.Invoke (null, new object [0]);
426                                 Assert.Fail ("#1");
427                         } catch (InvalidOperationException ex) {
428                                 // The requested operation is invalid in the
429                                 // ReflectionOnly context
430                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
431                                 Assert.IsNull (ex.InnerException, "#3");
432                                 Assert.IsNotNull (ex.Message, "#4");
433                         }
434                 }
435
436                 [Test]
437                 [ExpectedException (typeof (TargetInvocationException))]
438                 public void InvokeInvalidOpExceptionThrow () {
439                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ThrowMethod");
440                         mi.Invoke(null, null);
441                 }
442
443                 public static void ThrowMethod () {
444                         throw new InvalidOperationException ();
445                 }
446
447                 [Test]
448                 public void InvokeGenericVtype ()
449                 {
450                         KeyValuePair<string, uint> kvp = new KeyValuePair<string, uint> ("a", 21);
451                         Type type = kvp.GetType ();
452                         Type [] arguments = type.GetGenericArguments ();
453                         MethodInfo method = typeof (MethodInfoTest).GetMethod ("Go");
454                         MethodInfo generic_method = method.MakeGenericMethod (arguments);
455                         kvp = (KeyValuePair<string, uint>)generic_method.Invoke (null, new object [] { kvp });
456
457                         Assert.AreEqual ("a", kvp.Key, "#1");
458                         Assert.AreEqual (21, kvp.Value, "#2");
459                 }
460
461                 public static KeyValuePair<T1, T2> Go <T1, T2> (KeyValuePair <T1, T2> kvp)
462                 {
463                         return kvp;
464                 }
465
466                 [Test] // bug #81997
467                 public void InvokeGenericInst ()
468                 {
469                         List<string> str = null;
470
471                         object [] methodArgs = new object [] { str };
472                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("GenericRefMethod");
473                         mi.Invoke (null, methodArgs);
474                         Assert.IsNotNull (methodArgs [0], "#A1");
475                         Assert.IsNull (str, "#A2");
476                         Assert.IsTrue (methodArgs [0] is List<string>, "#A3");
477
478                         List<string> refStr = methodArgs [0] as List<string>;
479                         Assert.IsNotNull (refStr, "#B1");
480                         Assert.AreEqual (1, refStr.Count, "#B2");
481                         Assert.AreEqual ("test", refStr [0], "#B3");
482                 }
483
484                 public static void GenericRefMethod (ref List<string> strArg)
485                 {
486                         strArg = new List<string> ();
487                         strArg.Add ("test");
488                 }
489
490                 public void MakeGenericMethodArgsMismatchFoo<T> ()
491                 {
492                 }
493
494                 [Test]
495                 public void MakeGenericMethodArgsMismatch ()
496                 {
497                         MethodInfo gmi = this.GetType ().GetMethod (
498                                 "MakeGenericMethodArgsMismatchFoo");
499                         try {
500                                 gmi.MakeGenericMethod ();
501                                 Assert.Fail ("#1");
502                         } catch (ArgumentException ex) {
503                                 // The type or method has 1 generic parameter(s),
504                                 // but 0 generic argument(s) were provided. A
505                                 // generic argument must be provided for each
506                                 // generic parameter
507                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
508                                 Assert.IsNull (ex.InnerException, "#3");
509                                 Assert.IsNotNull (ex.Message, "#4");
510                                 Assert.IsNull (ex.ParamName, "#5");
511                         }
512                 }
513
514                 public void SimpleGenericMethod<TFoo, TBar> () {}
515
516                 [Test]
517                 public void MakeGenericMethodWithNullArray ()
518                 {
519                         MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
520                         try {
521                                 gmi.MakeGenericMethod ((Type []) null);
522                                 Assert.Fail ("#1");
523                         } catch (ArgumentNullException ex) {
524                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
525                                 Assert.IsNull (ex.InnerException, "#3");
526                                 Assert.IsNotNull (ex.Message, "#4");
527                                 Assert.AreEqual ("methodInstantiation", ex.ParamName, "#5");
528                         }
529                 }
530
531                 [Test]
532                 public void MakeGenericMethodWithNullValueInTypesArray ()
533                 {
534                         MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
535                         try {
536                                 gmi.MakeGenericMethod (new Type [] { typeof (int), null });
537                                 Assert.Fail ("#1");
538                         } catch (ArgumentNullException ex) {
539                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
540                                 Assert.IsNull (ex.InnerException, "#3");
541                                 Assert.IsNotNull (ex.Message, "#4");
542                                 Assert.IsNull (ex.ParamName, "#5");
543                         }
544                 }
545
546                 [Test]
547                 public void MakeGenericMethodWithNonGenericMethodDefinitionMethod ()
548                 {
549                         MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
550                         MethodInfo inst = gmi.MakeGenericMethod (typeof (int), typeof (double));
551                         try {
552                                 inst.MakeGenericMethod (typeof (int), typeof (double));
553                                 Assert.Fail ("#1");
554                         } catch (InvalidOperationException ex) {
555                         }
556                 }
557 #if !MONOTOUCH
558                 public TFoo SimpleGenericMethod2<TFoo, TBar> () { return default (TFoo); }
559                 /*Test for the uggly broken behavior of SRE.*/
560                 [Test]
561                 public void MakeGenericMethodWithSreTypeResultsInStupidMethodInfo ()
562                 {
563                         AssemblyName assemblyName = new AssemblyName ();
564                         assemblyName.Name = "MonoTests.System.Reflection.Emit.MethodInfoTest";
565                         AssemblyBuilder assembly = Thread.GetDomain ().DefineDynamicAssembly (assemblyName, AssemblyBuilderAccess.RunAndSave, ".");
566                         ModuleBuilder module = assembly.DefineDynamicModule ("module1", "tst.dll");
567                         TypeBuilder tb = module.DefineType ("Test", TypeAttributes.Public);
568
569                         MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod2");
570                         MethodInfo ins = gmi.MakeGenericMethod (typeof (int), tb);
571
572                         Assert.AreSame (tb, ins.GetGenericArguments () [1], "#1");
573                         /*broken ReturnType*/
574                         Assert.AreSame (gmi.GetGenericArguments () [0], ins.ReturnType, "#2");
575                 }
576 #endif
577                 public static int? pass_nullable (int? i)
578                 {
579                         return i;
580                 }
581
582                 [Test]
583                 public void NullableTests ()
584                 {
585                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("pass_nullable");
586                         Assert.AreEqual (102, mi.Invoke (null, new object [] { 102 }), "#1");
587                         Assert.AreEqual (null, mi.Invoke (null, new object [] { null }), "#2");
588
589                         // Test conversion of vtype to a nullable type for the this argument
590                         PropertyInfo pi = typeof (Nullable <int>).GetProperty ("HasValue");
591                         Assert.AreEqual (true, pi.GetGetMethod ().Invoke (10, null));
592                         PropertyInfo pi2 = typeof (Nullable <int>).GetProperty ("Value");
593                         Assert.AreEqual (10, pi2.GetGetMethod ().Invoke (10, null));
594                 }
595
596                 public static void foo_generic<T> ()
597                 {
598                 }
599
600                 [Test]
601                 public void IsGenericMethod ()
602                 {
603                         MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo_generic");
604                         Assert.AreEqual (true, mi.IsGenericMethod, "#1");
605                         MethodInfo mi2 = mi.MakeGenericMethod (new Type[] { typeof (int) });
606                         Assert.AreEqual (true, mi2.IsGenericMethod, "#2");
607                         MethodInfo mi3 = typeof (GenericHelper<int>).GetMethod ("Test");
608                         Assert.AreEqual (false, mi3.IsGenericMethod, "#3");
609                 }
610
611                 class A<T>
612                 {
613                         public static void Foo<T2> (T2 i)
614                         {
615                         }
616
617                         public static void Bar ()
618                         {
619                         }
620
621                         public class B
622                         {
623                                 public static void Baz ()
624                                 {
625                                 }
626                         }
627                 }
628
629                 [Test]
630                 public void ContainsGenericParameters ()
631                 {
632                         // Non-generic method in open generic type
633                         Assert.IsTrue (typeof (A<int>).GetGenericTypeDefinition ().GetMethod ("Bar").ContainsGenericParameters);
634                         // open generic method in closed generic type
635                         Assert.IsTrue (typeof (A<int>).GetMethod ("Foo").ContainsGenericParameters);
636                         // non-generic method in closed generic type
637                         Assert.IsFalse (typeof (A<int>).GetMethod ("Bar").ContainsGenericParameters);
638                         // closed generic method in closed generic type
639                         Assert.IsFalse (typeof (A<int>).GetMethod ("Foo").MakeGenericMethod (new Type [] { typeof (int) }).ContainsGenericParameters);
640                         // non-generic method in non-generic nested type of closed generic type
641                         Assert.IsFalse (typeof (A<int>.B).GetMethod ("Baz").ContainsGenericParameters);
642                         // non-generic method in non-generic nested type of open generic type
643                         Assert.IsTrue (typeof (A<int>.B).GetGenericTypeDefinition ().GetMethod ("Baz").ContainsGenericParameters);
644                 }
645
646                 [Test]
647                 public void IsGenericMethodDefinition ()
648                 {
649                         MethodInfo m1 = typeof (A<>).GetMethod ("Foo");
650                         Assert.IsTrue (m1.IsGenericMethod, "#A1");
651                         Assert.IsTrue (m1.IsGenericMethodDefinition, "#A2");
652
653                         MethodInfo m2 = typeof (A<int>).GetMethod ("Foo");
654                         Assert.IsTrue (m2.IsGenericMethod, "#B1");
655                         Assert.IsTrue (m2.IsGenericMethodDefinition, "#B2");
656
657                         MethodInfo m3 = m2.MakeGenericMethod (typeof (int));
658                         Assert.IsTrue (m3.IsGenericMethod, "#C1");
659                         Assert.IsFalse (m3.IsGenericMethodDefinition, "#C2");
660                 }
661
662                 [Test]
663                 public void GetGenericMethodDefinition ()
664                 {
665                         MethodInfo mi1 = typeof (MyList<>).GetMethod ("ConvertAll");
666                         MethodInfo mi2 = typeof (MyList<int>).GetMethod ("ConvertAll");
667
668                         Assert.AreEqual ("MonoTests.System.Reflection.MethodInfoTest+Foo`2[T,TOutput]",
669                                          mi1.GetParameters () [0].ParameterType.ToString (), "#A1");
670                         Assert.AreEqual ("MonoTests.System.Reflection.MethodInfoTest+Foo`2[System.Int32,TOutput]",
671                                          mi2.GetParameters () [0].ParameterType.ToString (), "#A2");
672                         Assert.IsTrue (mi1.IsGenericMethod, "#A3");
673                         Assert.IsTrue (mi1.IsGenericMethodDefinition, "#A4");
674                         Assert.IsTrue (mi2.IsGenericMethod, "#A5");
675                         Assert.IsTrue (mi2.IsGenericMethodDefinition, "#A6");
676
677                         MethodInfo mi3 = mi2.GetGenericMethodDefinition ();
678
679                         Assert.IsTrue (mi3.IsGenericMethod, "#B1");
680                         Assert.IsTrue (mi3.IsGenericMethodDefinition, "#B2");
681                         Assert.AreSame (mi2, mi3, "#B3");
682
683                         MethodInfo mi4 = mi2.MakeGenericMethod (typeof (short));
684                         Assert.IsTrue (mi4.IsGenericMethod, "#C1");
685                         Assert.IsFalse (mi4.IsGenericMethodDefinition, "#C2");
686                         Assert.AreSame (mi2, mi4.GetGenericMethodDefinition (), "#C3");
687                 }
688
689                 public void TestMethod123(int a, int b) {}
690
691                 [Test]
692                 public void GetParametersDontReturnInternedArray ()
693                 {
694                         var method = typeof (MethodInfoTest).GetMethod ("TestMethod123");
695                         var parms = method.GetParameters ();
696                         Assert.AreNotSame (parms, method.GetParameters (), "#1");
697
698                         parms [0] = null;
699                         Assert.IsNotNull (method.GetParameters () [0], "#2");
700                 }
701
702                 [Test]
703                 public void Bug354757 ()
704                 {
705                         MethodInfo gmd = (typeof (MyList <int>)).GetMethod ("ConvertAll");
706                         MethodInfo oi = gmd.MakeGenericMethod (gmd.GetGenericArguments ());
707                         Assert.AreSame (gmd, oi);
708                 }
709
710                 [Test]
711                 [ExpectedException (typeof (ArgumentException))]
712 #if MOBILE
713                 [Category ("NotWorking")] // #10552
714 #endif
715                 public void MakeGenericMethodRespectConstraints ()
716                 {
717                         var m = typeof (MethodInfoTest).GetMethod ("TestMethod");
718                         m.MakeGenericMethod (typeof (Type));
719                 }
720
721                 public void TestMethod <T> () where T : Exception
722                 {
723                 }
724
725                 public class MyList<T>
726                 {
727                         public TOutput ConvertAll<TOutput> (Foo<T,TOutput> arg)
728                         {
729                                 return default (TOutput);
730                         }
731                         public T ConvertAll2 (MyList<T> arg)
732                         {
733                                 return default (T);
734                         }
735                 }
736
737                 public class Foo<T,TOutput>
738                 {
739                 }
740
741                 class GenericHelper<T>
742                 {
743                         public void Test (T t)
744                         {
745                         }
746                 }
747                 interface IMethodInvoke<out T>
748                 {
749                     T Test ();
750                 }
751
752                 class MethodInvoke : IMethodInvoke<string>
753                 {
754                     public string Test ()
755                     {
756                         return "MethodInvoke";
757                     }
758                 }
759
760                 [Test]
761                 public void GetInterfaceMapWorksWithVariantIfaces ()
762                 {
763                         var m0 = typeof (IMethodInvoke<object>).GetMethod ("Test");
764                         var m1 = typeof (IMethodInvoke<string>).GetMethod ("Test");
765                         var obj = new MethodInvoke ();
766
767                         Assert.AreEqual ("MethodInvoke", m0.Invoke (obj, new Object [0]));
768                         Assert.AreEqual ("MethodInvoke", m1.Invoke (obj, new Object [0]));
769                 }
770
771
772                 public int? Bug12856 ()
773                 {
774                         return null;
775                 }
776
777                 [Test] //Bug #12856
778                 public void MethodToStringShouldPrintFullNameOfGenericStructs ()
779                 {
780                         var m = GetType ().GetMethod ("Bug12856");
781                         Assert.AreEqual ("System.Nullable`1[System.Int32] Bug12856()", m.ToString (), "#1");
782                 }
783
784 #if !MONOTOUCH
785                 class GenericClass<T>
786                 {
787                         public void Method ()
788                         {
789                                 T lv = default(T);
790                                 Console.WriteLine(lv);
791                         }
792
793                         public void Method2<K> (T a0, K a1)
794                         {
795                                 T var0 = a0;
796                                 K var1 = a1;
797                                 Console.WriteLine (var0);
798                                 Console.WriteLine (var1);
799                         }
800                 }
801
802                 [Test]
803                 public void TestLocalVariableTypes ()
804                 {
805                         var typeofT = typeof (GenericClass<>).GetGenericArguments () [0];
806                         var typeofK = typeof (GenericClass<>).GetMethod ("Method2").GetGenericArguments () [0];
807
808                         var type = typeof (GenericClass<>).GetMethod("Method").GetMethodBody().LocalVariables[0].LocalType;
809                         Assert.AreEqual (typeofT, type);
810                         Assert.AreEqual (typeof (GenericClass<>), type.DeclaringType);
811                 
812                         bool foundTypeOfK = false;
813                         bool foundExpectedType = false;
814             
815                         MethodBody mb = typeof (GenericClass<>).GetMethod("Method2").GetMethodBody();
816                         foreach (LocalVariableInfo lvi in mb.LocalVariables) {
817                                 if (lvi.LocalType == typeofK) {
818                                         foundTypeOfK = true;
819                                         Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#1-1");
820                                 } else if (lvi.LocalType == typeofT) {
821                                         foundExpectedType = true;
822                                         Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#1-2");
823                                 }
824                         }
825
826                         Assert.IsTrue (foundTypeOfK, "#1-3");
827                         if (mb.LocalVariables.Count < 2)
828                                 Assert.Ignore ("Code built in release mode - 'T var0' optmized out");
829                         else
830                                 Assert.IsTrue (foundExpectedType, "#1-4");
831             
832                         foundTypeOfK = false;
833                         foundExpectedType = false;
834                         mb = typeof (GenericClass<int>).GetMethod("Method2").GetMethodBody();
835                         foreach (LocalVariableInfo lvi in mb.LocalVariables) {
836                                 if (lvi.LocalType == typeofK) {
837                                         foundTypeOfK = true;
838                                         Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#2-1");
839                                 } else if (lvi.LocalType == typeof (int)) {
840                                         foundExpectedType = true;
841                                 }
842                         }
843             
844                         Assert.IsTrue (foundTypeOfK, "#2-3");
845                         if (mb.LocalVariables.Count < 2)
846                                 Assert.Ignore ("Code built in release mode - 'int var0' optmized out");
847                         else
848                                 Assert.IsTrue (foundExpectedType, "#2-4");
849                 }
850 #endif
851         }
852         
853         // Helper class
854         class RefOnlyMethodClass 
855         {
856                 // Helper static method
857                 static void RefOnlyMethod ()
858                 {
859                 }
860         }
861
862         public class MethodHandleTest<T>
863         {
864                 private List<T> _myList = new List<T> ();
865
866                 public MethodHandleTest ()
867                 {
868                         _myList.Add (default (T));
869                 }
870
871                 public List<T> MyList {
872                         get { return _myList; }
873                         set { _myList = value; }
874                 }
875         }
876 }