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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
|
//
// System.Reflection.MethodInfo Test Cases
//
// Authors:
// Zoltan Varga (vargaz@gmail.com)
// Aleksey Kliger (aleksey@xamarin.com)
//
// (c) 2003 Ximian, Inc. (http://www.ximian.com)
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
// Copyright (C) 2015 Xamarin, Inc. (http://www.xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using NUnit.Framework;
using System;
using System.Linq;
using System.Threading;
using System.Reflection;
#if !MONOTOUCH && !FULL_AOT_RUNTIME
using System.Reflection.Emit;
#endif
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using System.Collections.Generic;
namespace A.B.C {
// Disable expected warning
#pragma warning disable 169
public struct MethodInfoTestStruct {
int p;
}
#pragma warning restore 169
}
namespace MonoTests.System.Reflection
{
[TestFixture]
public class MethodInfoTest
{
#if MONOTOUCH || FULL_AOT_RUNTIME
// use an existing symbol - so we can build without dlsym. It does not matter that the signature does not match for the test
[DllImport ("libc", EntryPoint="readlink", CharSet=CharSet.Unicode, ExactSpelling=false, PreserveSig=true, SetLastError=true, BestFitMapping=true, ThrowOnUnmappableChar=true)]
#else
[DllImport ("libfoo", EntryPoint="foo", CharSet=CharSet.Unicode, ExactSpelling=false, PreserveSig=true, SetLastError=true, BestFitMapping=true, ThrowOnUnmappableChar=true)]
#endif
public static extern void dllImportMethod ();
[MethodImplAttribute(MethodImplOptions.PreserveSig)]
public void preserveSigMethod ()
{
}
[MethodImplAttribute(MethodImplOptions.Synchronized)]
public void synchronizedMethod ()
{
}
public interface InterfaceTest
{
void Clone ();
}
[Test]
public void IsDefined_AttributeType_Null ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo");
try {
mi.IsDefined ((Type) null, false);
Assert.Fail ("#1");
} catch (ArgumentNullException ex) {
Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
Assert.IsNotNull (ex.ParamName, "#5");
Assert.AreEqual ("attributeType", ex.ParamName, "#6");
}
}
[Test]
public void TestInvokeByRefReturnMethod ()
{
try {
MethodInfo m = typeof (int[]).GetMethod ("Address");
m.Invoke (new int[1], new object[] { 0 });
Assert.Fail ("#1");
} catch (NotSupportedException e) {
Assert.AreEqual (typeof (NotSupportedException), e.GetType (), "#2");
Assert.IsNull (e.InnerException, "#3");
Assert.IsNotNull (e.Message, "#4");
}
}
[Test]
public void PseudoCustomAttributes ()
{
Type t = typeof (MethodInfoTest);
DllImportAttribute attr = (DllImportAttribute)((t.GetMethod ("dllImportMethod").GetCustomAttributes (typeof (DllImportAttribute), true)) [0]);
Assert.AreEqual (CallingConvention.Winapi, attr.CallingConvention, "#1");
#if MONOTOUCH || FULL_AOT_RUNTIME
Assert.AreEqual ("readlink", attr.EntryPoint, "#2");
Assert.AreEqual ("libc", attr.Value, "#3");
#else
Assert.AreEqual ("foo", attr.EntryPoint, "#2");
Assert.AreEqual ("libfoo", attr.Value, "#3");
#endif
Assert.AreEqual (CharSet.Unicode, attr.CharSet, "#4");
Assert.AreEqual (false, attr.ExactSpelling, "#5");
Assert.AreEqual (true, attr.PreserveSig, "#6");
Assert.AreEqual (true, attr.SetLastError, "#7");
Assert.AreEqual (true, attr.BestFitMapping, "#8");
Assert.AreEqual (true, attr.ThrowOnUnmappableChar, "#9");
PreserveSigAttribute attr2 = (PreserveSigAttribute)((t.GetMethod ("preserveSigMethod").GetCustomAttributes (true)) [0]);
// This doesn't work under MS.NET
/*
MethodImplAttribute attr3 = (MethodImplAttribute)((t.GetMethod ("synchronizedMethod").GetCustomAttributes (true)) [0]);
*/
}
[return: MarshalAs (UnmanagedType.Interface)]
public void ReturnTypeMarshalAs ()
{
}
[Test]
public void ReturnTypePseudoCustomAttributes ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ReturnTypeMarshalAs");
Assert.IsTrue (mi.ReturnTypeCustomAttributes.GetCustomAttributes (typeof (MarshalAsAttribute), true).Length == 1);
}
public static int foo (int i, int j)
{
return i + j;
}
[Test]
public void StaticInvokeWithObject ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo");
mi.Invoke (new Object (), new object [] { 1, 2 });
}
[Test]
public void ByRefInvoke ()
{
MethodInfo met = typeof(MethodInfoTest).GetMethod ("ByRefTest");
object[] parms = new object[] {1};
met.Invoke (null, parms);
Assert.AreEqual (2, parms[0]);
}
public static void ByRefTest (ref int a1)
{
if (a1 == 1)
a1 = 2;
}
static int byref_arg;
public static void ByrefVtype (ref int i) {
byref_arg = i;
i = 5;
}
[Test]
public void ByrefVtypeInvoke ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ByrefVtype");
object o = 1;
object[] args = new object [] { o };
mi.Invoke (null, args);
Assert.AreEqual (1, byref_arg, "#A1");
Assert.AreEqual (1, o, "#A2");
Assert.AreEqual (5, args[0], "#A3");
args [0] = null;
mi.Invoke (null, args);
Assert.AreEqual (0, byref_arg, "#B1");
Assert.AreEqual (5, args[0], "#B2");
}
public void HeyHey (out string out1, ref DateTime ref1)
{
out1 = null;
}
public void SignatureTest (__arglist)
{
}
public static unsafe int* PtrFunc (int* a)
{
return (int*) 0;
}
#if MONO_FEATURE_THREAD_ABORT
[Test] // bug #81538
public void InvokeThreadAbort ()
{
MethodInfo method = typeof (MethodInfoTest).GetMethod ("AbortIt");
try {
method.Invoke (null, new object [0]);
Assert.Fail ("#1");
}
catch (ThreadAbortException ex) {
Thread.ResetAbort ();
Assert.IsNull (ex.InnerException, "#2");
}
}
public static void AbortIt ()
{
Thread.CurrentThread.Abort ();
}
#endif
[Test] // bug #76541
public void ToStringByRef ()
{
Assert.AreEqual ("Void HeyHey(System.String ByRef, System.DateTime ByRef)",
this.GetType ().GetMethod ("HeyHey").ToString ());
}
[Test]
public void ToStringArgList ()
{
Assert.AreEqual ("Void SignatureTest(...)",
this.GetType ().GetMethod ("SignatureTest").ToString ());
}
[Test]
public void ToStringWithPointerSignatures () //bug #409583
{
Assert.AreEqual ("Int32* PtrFunc(Int32*)", this.GetType ().GetMethod ("PtrFunc").ToString ());
}
public struct SimpleStruct
{
public int a;
}
public static unsafe SimpleStruct* PtrFunc2 (SimpleStruct* a, A.B.C.MethodInfoTestStruct *b)
{
return (SimpleStruct*) 0;
}
[Test]
public void ToStringWithPointerSignaturesToNonPrimitiveType ()
{
Assert.AreEqual ("SimpleStruct* PtrFunc2(SimpleStruct*, A.B.C.MethodInfoTestStruct*)",
this.GetType ().GetMethod ("PtrFunc2").ToString ());
}
[Test]
public void ToStringGenericMethod ()
{
Assert.AreEqual ("System.Collections.ObjectModel.ReadOnlyCollection`1[T] AsReadOnly[T](T[])",
typeof (Array).GetMethod ("AsReadOnly").ToString ());
}
class GBD_A { public virtual void f () {} }
class GBD_B : GBD_A { public override void f () {} }
class GBD_C : GBD_B { public override void f () {} }
class GBD_D : GBD_C { public new virtual void f () {} }
class GBD_E : GBD_D { public override void f () {} }
class GBD_E2 : GBD_D { }
class GBD_F : GBD_E { }
[Test]
public void GetBaseDefinition ()
{
Assert.AreEqual (typeof (GBD_A), typeof (GBD_C).GetMethod ("f").GetBaseDefinition ().DeclaringType);
Assert.AreEqual (typeof (GBD_A), typeof (GBD_C).GetMethod ("f").GetBaseDefinition ().ReflectedType, "#1r");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_D).GetMethod ("f").GetBaseDefinition ().DeclaringType);
Assert.AreEqual (typeof (GBD_D), typeof (GBD_D).GetMethod ("f").GetBaseDefinition ().ReflectedType, "#2r");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_E).GetMethod ("f").GetBaseDefinition ().DeclaringType);
Assert.AreEqual (typeof (GBD_D), typeof (GBD_E).GetMethod ("f").GetBaseDefinition ().ReflectedType, "#3r");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_E2).GetMethod ("f").GetBaseDefinition ().DeclaringType, "#4");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_E2).GetMethod ("f").GetBaseDefinition ().ReflectedType, "#4r");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_F).GetMethod ("f").GetBaseDefinition ().DeclaringType, "#5");
Assert.AreEqual (typeof (GBD_D), typeof (GBD_F).GetMethod ("f").GetBaseDefinition ().ReflectedType, "#5r");
}
class GenericBase<T,H> {
public virtual void f2 () { }
}
class GenericMid<T, U> : GenericBase<T, Action<U>> {
public virtual T f1 () { return default (T); }
}
class GenericChild<T> : GenericMid<T, int> {
public override T f1 () { return default (T); }
public override void f2 () { }
}
class DerivedFromGenericBase : GenericBase<int, int> {
}
[Test]
public void GetBaseDefinition_OpenConstructedBaseType () // 36305
{
var t = typeof (GenericChild<string>);
var mi1 = t.GetMethod ("f1");
var mi1_base = mi1.GetBaseDefinition ();
Assert.AreEqual (typeof (GenericMid<string, int>), mi1_base.DeclaringType, "#1");
var mi2 = t.GetMethod ("f2");
var mi2_base = mi2.GetBaseDefinition ();
Assert.AreEqual (typeof (GenericBase<string, Action<int>>), mi2_base.DeclaringType, "#2");
}
class TestInheritedMethodA {
private void TestMethod ()
{
}
public void TestMethod2 ()
{
}
}
class TestInheritedMethodB : TestInheritedMethodA {
}
[Test]
public void InheritanceTestGetMethodTest ()
{
MethodInfo inheritedMethod = typeof(TestInheritedMethodB).GetMethod("TestMethod", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
MethodInfo baseMethod = typeof(TestInheritedMethodB).GetMethod("TestMethod", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
Assert.AreSame (inheritedMethod, baseMethod);
MethodInfo inheritedMethod2 = typeof(TestInheritedMethodB).GetMethod("TestMethod2", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
MethodInfo baseMethod2 = typeof(TestInheritedMethodB).GetMethod("TestMethod2", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
Assert.AreSame (inheritedMethod, baseMethod);
}
[Test]
public void GetMethodBody_Abstract ()
{
MethodBody mb = typeof (InterfaceTest).GetMethod ("Clone").GetMethodBody ();
Assert.IsNull (mb);
}
[Test]
public void GetMethodBody_Runtime ()
{
MethodBody mb = typeof (AsyncCallback).GetMethod ("Invoke").GetMethodBody ();
Assert.IsNull (mb);
}
[Test]
public void GetMethodBody_Pinvoke ()
{
MethodBody mb = typeof (MethodInfoTest).GetMethod ("dllImportMethod").GetMethodBody ();
Assert.IsNull (mb);
}
[Test]
public void GetMethodBody_Icall ()
{
foreach (MethodInfo mi in typeof (object).GetMethods (BindingFlags.Public|BindingFlags.NonPublic|BindingFlags.Instance))
if ((mi.GetMethodImplementationFlags () & MethodImplAttributes.InternalCall) != 0) {
MethodBody mb = mi.GetMethodBody ();
Assert.IsNull (mb);
}
}
public static void locals_method ()
{
byte[] b = new byte [10];
unsafe {
/* This generates a pinned local */
fixed (byte *p = &b [0]) {
}
}
}
[Test]
public void GetMethodBody ()
{
#if (MONOTOUCH || FULL_AOT_RUNTIME) && !DEBUG
Assert.Ignore ("Release app (on devices) are stripped of (managed) IL so this test would fail");
#endif
MethodBody mb = typeof (MethodInfoTest).GetMethod ("locals_method").GetMethodBody ();
Assert.IsTrue (mb.InitLocals, "#1");
Assert.IsTrue (mb.LocalSignatureMetadataToken > 0, "#2");
IList<LocalVariableInfo> locals = mb.LocalVariables;
bool foundPinnedBytePointer = false;
unsafe {
foreach (LocalVariableInfo lvi in locals) {
if (lvi.LocalType == typeof (byte[]))
// This is optimized out by CSC in .NET 4.6
Assert.IsFalse (lvi.IsPinned, "#3-1");
if (/* mcs */ lvi.LocalType == typeof (byte*) || /* csc */ lvi.LocalType == typeof (byte).MakeByRefType ()) {
// We have three locals. There's b the byte[], there's a byte* and there's a byte&.
// mcs emits a byte* for the latter type.
// We need to find one such pinned byte pointer. Therefore we're folding with logical or
foundPinnedBytePointer = foundPinnedBytePointer || lvi.IsPinned;
}
}
}
Assert.IsTrue (foundPinnedBytePointer, "#4");
}
public int return_parameter_test ()
{
return 0;
}
[Test]
public void GetMethodFromHandle_Generic ()
{
MethodHandleTest<int> test = new MethodHandleTest<int> ();
RuntimeMethodHandle mh = test.GetType ().GetProperty ("MyList")
.GetGetMethod ().MethodHandle;
MethodBase mb = MethodInfo.GetMethodFromHandle (mh,
typeof (MethodHandleTest<int>).TypeHandle);
Assert.IsNotNull (mb, "#1");
List<int> list = (List<int>) mb.Invoke (test, null);
Assert.IsNotNull (list, "#2");
Assert.AreEqual (1, list.Count, "#3");
}
[Test]
public void ReturnParameter ()
{
ParameterInfo pi = typeof (MethodInfoTest).GetMethod ("return_parameter_test").ReturnParameter;
Assert.AreEqual (typeof (int), pi.ParameterType, "#1");
Assert.AreEqual (-1, pi.Position, "#2");
// MS always return false here
//Assert.IsTrue (pi.IsRetval, "#3");
}
[Test]
public void MethodInfoModule ()
{
Type type = typeof (MethodInfoTest);
MethodInfo me = type.GetMethod ("return_parameter_test");
Assert.AreEqual (type.Module, me.Module);
}
[Test]
public void InvokeOnRefOnlyAssembly ()
{
Assembly a = Assembly.ReflectionOnlyLoad (typeof (MethodInfoTest).Assembly.FullName);
Type t = a.GetType (typeof (RefOnlyMethodClass).FullName);
MethodInfo m = t.GetMethod ("RefOnlyMethod", BindingFlags.Static | BindingFlags.NonPublic);
try {
m.Invoke (null, new object [0]);
Assert.Fail ("#1");
} catch (InvalidOperationException ex) {
// The requested operation is invalid in the
// ReflectionOnly context
Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
}
}
[Test]
[ExpectedException (typeof (TargetInvocationException))]
public void InvokeInvalidOpExceptionThrow () {
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("ThrowMethod");
mi.Invoke(null, null);
}
public static void ThrowMethod () {
throw new InvalidOperationException ();
}
[Test]
public void InvokeGenericVtype ()
{
KeyValuePair<string, uint> kvp = new KeyValuePair<string, uint> ("a", 21);
Type type = kvp.GetType ();
Type [] arguments = type.GetGenericArguments ();
MethodInfo method = typeof (MethodInfoTest).GetMethod ("Go");
MethodInfo generic_method = method.MakeGenericMethod (arguments);
kvp = (KeyValuePair<string, uint>)generic_method.Invoke (null, new object [] { kvp });
Assert.AreEqual ("a", kvp.Key, "#1");
Assert.AreEqual (21, kvp.Value, "#2");
}
public static KeyValuePair<T1, T2> Go <T1, T2> (KeyValuePair <T1, T2> kvp)
{
return kvp;
}
[Test] // bug #81997
public void InvokeGenericInst ()
{
List<string> str = null;
object [] methodArgs = new object [] { str };
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("GenericRefMethod");
mi.Invoke (null, methodArgs);
Assert.IsNotNull (methodArgs [0], "#A1");
Assert.IsNull (str, "#A2");
Assert.IsTrue (methodArgs [0] is List<string>, "#A3");
List<string> refStr = methodArgs [0] as List<string>;
Assert.IsNotNull (refStr, "#B1");
Assert.AreEqual (1, refStr.Count, "#B2");
Assert.AreEqual ("test", refStr [0], "#B3");
}
public static void GenericRefMethod (ref List<string> strArg)
{
strArg = new List<string> ();
strArg.Add ("test");
}
public void MakeGenericMethodArgsMismatchFoo<T> ()
{
}
[Test]
public void MakeGenericMethodArgsMismatch ()
{
MethodInfo gmi = this.GetType ().GetMethod (
"MakeGenericMethodArgsMismatchFoo");
try {
gmi.MakeGenericMethod ();
Assert.Fail ("#1");
} catch (ArgumentException ex) {
// The type or method has 1 generic parameter(s),
// but 0 generic argument(s) were provided. A
// generic argument must be provided for each
// generic parameter
Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
Assert.IsNull (ex.ParamName, "#5");
}
}
public void SimpleGenericMethod<TFoo, TBar> () {}
[Test]
public void MakeGenericMethodWithNullArray ()
{
MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
try {
gmi.MakeGenericMethod ((Type []) null);
Assert.Fail ("#1");
} catch (ArgumentNullException ex) {
Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
Assert.AreEqual ("methodInstantiation", ex.ParamName, "#5");
}
}
[Test]
public void MakeGenericMethodWithNullValueInTypesArray ()
{
MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
try {
gmi.MakeGenericMethod (new Type [] { typeof (int), null });
Assert.Fail ("#1");
} catch (ArgumentNullException ex) {
Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
Assert.IsNull (ex.ParamName, "#5");
}
}
[Test]
public void MakeGenericMethodWithNonGenericMethodDefinitionMethod ()
{
MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod");
MethodInfo inst = gmi.MakeGenericMethod (typeof (int), typeof (double));
try {
inst.MakeGenericMethod (typeof (int), typeof (double));
Assert.Fail ("#1");
} catch (InvalidOperationException ex) {
}
}
#if !MONOTOUCH && !FULL_AOT_RUNTIME
public TFoo SimpleGenericMethod2<TFoo, TBar> () { return default (TFoo); }
/*Test for the uggly broken behavior of SRE.*/
[Test]
public void MakeGenericMethodWithSreTypeResultsInStupidMethodInfo ()
{
AssemblyName assemblyName = new AssemblyName ();
assemblyName.Name = "MonoTests.System.Reflection.Emit.MethodInfoTest";
AssemblyBuilder assembly = Thread.GetDomain ().DefineDynamicAssembly (assemblyName, AssemblyBuilderAccess.RunAndSave, ".");
ModuleBuilder module = assembly.DefineDynamicModule ("module1", "tst.dll");
TypeBuilder tb = module.DefineType ("Test", TypeAttributes.Public);
MethodInfo gmi = this.GetType ().GetMethod ("SimpleGenericMethod2");
MethodInfo ins = gmi.MakeGenericMethod (typeof (int), tb);
Assert.AreSame (tb, ins.GetGenericArguments () [1], "#1");
/*broken ReturnType*/
Assert.AreSame (gmi.GetGenericArguments () [0], ins.ReturnType, "#2");
}
#endif
public static int? pass_nullable (int? i)
{
return i;
}
[Test]
public void NullableTests ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("pass_nullable");
Assert.AreEqual (102, mi.Invoke (null, new object [] { 102 }), "#1");
Assert.AreEqual (null, mi.Invoke (null, new object [] { null }), "#2");
// Test conversion of vtype to a nullable type for the this argument
PropertyInfo pi = typeof (Nullable <int>).GetProperty ("HasValue");
Assert.AreEqual (true, pi.GetGetMethod ().Invoke (10, null));
PropertyInfo pi2 = typeof (Nullable <int>).GetProperty ("Value");
Assert.AreEqual (10, pi2.GetGetMethod ().Invoke (10, null));
}
[Test]
public void NullableTestsStatic ()
{
Nullable<Double> val = new Nullable<Double>(new Double());
MethodInfo mi = typeof (Nullable<Double>).GetMethod ("op_Implicit");
object obj = val;
mi.Invoke(null, new[] { obj });
}
public static void foo_generic<T> ()
{
}
[Test]
public void IsGenericMethod ()
{
MethodInfo mi = typeof (MethodInfoTest).GetMethod ("foo_generic");
Assert.AreEqual (true, mi.IsGenericMethod, "#1");
MethodInfo mi2 = mi.MakeGenericMethod (new Type[] { typeof (int) });
Assert.AreEqual (true, mi2.IsGenericMethod, "#2");
MethodInfo mi3 = typeof (GenericHelper<int>).GetMethod ("Test");
Assert.AreEqual (false, mi3.IsGenericMethod, "#3");
}
class A<T>
{
public static void Foo<T2> (T2 i)
{
}
public static void Bar ()
{
}
public class B
{
public static void Baz ()
{
}
}
}
[Test]
public void ContainsGenericParameters ()
{
// Non-generic method in open generic type
Assert.IsTrue (typeof (A<int>).GetGenericTypeDefinition ().GetMethod ("Bar").ContainsGenericParameters);
// open generic method in closed generic type
Assert.IsTrue (typeof (A<int>).GetMethod ("Foo").ContainsGenericParameters);
// non-generic method in closed generic type
Assert.IsFalse (typeof (A<int>).GetMethod ("Bar").ContainsGenericParameters);
// closed generic method in closed generic type
Assert.IsFalse (typeof (A<int>).GetMethod ("Foo").MakeGenericMethod (new Type [] { typeof (int) }).ContainsGenericParameters);
// non-generic method in non-generic nested type of closed generic type
Assert.IsFalse (typeof (A<int>.B).GetMethod ("Baz").ContainsGenericParameters);
// non-generic method in non-generic nested type of open generic type
Assert.IsTrue (typeof (A<int>.B).GetGenericTypeDefinition ().GetMethod ("Baz").ContainsGenericParameters);
}
[Test]
public void IsGenericMethodDefinition ()
{
MethodInfo m1 = typeof (A<>).GetMethod ("Foo");
Assert.IsTrue (m1.IsGenericMethod, "#A1");
Assert.IsTrue (m1.IsGenericMethodDefinition, "#A2");
MethodInfo m2 = typeof (A<int>).GetMethod ("Foo");
Assert.IsTrue (m2.IsGenericMethod, "#B1");
Assert.IsTrue (m2.IsGenericMethodDefinition, "#B2");
MethodInfo m3 = m2.MakeGenericMethod (typeof (int));
Assert.IsTrue (m3.IsGenericMethod, "#C1");
Assert.IsFalse (m3.IsGenericMethodDefinition, "#C2");
}
[Test]
public void GetGenericMethodDefinition ()
{
MethodInfo mi1 = typeof (MyList<>).GetMethod ("ConvertAll");
MethodInfo mi2 = typeof (MyList<int>).GetMethod ("ConvertAll");
Assert.AreEqual ("MonoTests.System.Reflection.MethodInfoTest+Foo`2[T,TOutput]",
mi1.GetParameters () [0].ParameterType.ToString (), "#A1");
Assert.AreEqual ("MonoTests.System.Reflection.MethodInfoTest+Foo`2[System.Int32,TOutput]",
mi2.GetParameters () [0].ParameterType.ToString (), "#A2");
Assert.IsTrue (mi1.IsGenericMethod, "#A3");
Assert.IsTrue (mi1.IsGenericMethodDefinition, "#A4");
Assert.IsTrue (mi2.IsGenericMethod, "#A5");
Assert.IsTrue (mi2.IsGenericMethodDefinition, "#A6");
MethodInfo mi3 = mi2.GetGenericMethodDefinition ();
Assert.IsTrue (mi3.IsGenericMethod, "#B1");
Assert.IsTrue (mi3.IsGenericMethodDefinition, "#B2");
Assert.AreSame (mi2, mi3, "#B3");
MethodInfo mi4 = mi2.MakeGenericMethod (typeof (short));
Assert.IsTrue (mi4.IsGenericMethod, "#C1");
Assert.IsFalse (mi4.IsGenericMethodDefinition, "#C2");
Assert.AreSame (mi2, mi4.GetGenericMethodDefinition (), "#C3");
}
public void TestMethod123(int a, int b) {}
[Test]
public void GetParametersDontReturnInternedArray ()
{
var method = typeof (MethodInfoTest).GetMethod ("TestMethod123");
var parms = method.GetParameters ();
Assert.AreNotSame (parms, method.GetParameters (), "#1");
parms [0] = null;
Assert.IsNotNull (method.GetParameters () [0], "#2");
}
[Test]
public void Bug354757 ()
{
MethodInfo gmd = (typeof (MyList <int>)).GetMethod ("ConvertAll");
MethodInfo oi = gmd.MakeGenericMethod (gmd.GetGenericArguments ());
Assert.AreSame (gmd, oi);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
#if MOBILE
[Category ("NotWorking")] // #10552
#endif
public void MakeGenericMethodRespectConstraints ()
{
var m = typeof (MethodInfoTest).GetMethod ("TestMethod");
m.MakeGenericMethod (typeof (Type));
}
public void TestMethod <T> () where T : Exception
{
}
public class MyList<T>
{
public TOutput ConvertAll<TOutput> (Foo<T,TOutput> arg)
{
return default (TOutput);
}
public T ConvertAll2 (MyList<T> arg)
{
return default (T);
}
}
public class Foo<T,TOutput>
{
}
class GenericHelper<T>
{
public void Test (T t)
{
}
}
interface IMethodInvoke<out T>
{
T Test ();
}
class MethodInvoke : IMethodInvoke<string>
{
public string Test ()
{
return "MethodInvoke";
}
}
[Test]
public void GetInterfaceMapWorksWithVariantIfaces ()
{
var m0 = typeof (IMethodInvoke<object>).GetMethod ("Test");
var m1 = typeof (IMethodInvoke<string>).GetMethod ("Test");
var obj = new MethodInvoke ();
Assert.AreEqual ("MethodInvoke", m0.Invoke (obj, new Object [0]));
Assert.AreEqual ("MethodInvoke", m1.Invoke (obj, new Object [0]));
}
public int? Bug12856 ()
{
return null;
}
[Test] //Bug #12856
public void MethodToStringShouldPrintFullNameOfGenericStructs ()
{
var m = GetType ().GetMethod ("Bug12856");
Assert.AreEqual ("System.Nullable`1[System.Int32] Bug12856()", m.ToString (), "#1");
}
[Test]
public void GetReflectedType () // #12205
{
// public method declared in base type, queried from a derived type
MethodInfo mi = typeof (TestInheritedMethodB).GetMethod ("TestMethod2");
Assert.AreEqual (mi.ReflectedType, typeof (TestInheritedMethodB), "#1");
// public method declared in a generic class,
// queried from a non-generic class derived
// from an instantiation of the generic class.
mi = typeof (DerivedFromGenericBase).GetMethod ("f2");
Assert.AreEqual (mi.ReflectedType, typeof (DerivedFromGenericBase), "#2");
// public method declared in a generic class,
// queried from the generic type defintion of
// a generic derived class.
mi = typeof (GenericMid<,>).GetMethod ("f2");
Assert.AreEqual (mi.ReflectedType, typeof (GenericMid<,>), "#3");
// public method declared in a generic class,
// queried from an instantiation of a generic
// derived class.
mi = typeof (GenericMid<int,int>).GetMethod ("f2");
Assert.AreEqual (mi.ReflectedType, typeof (GenericMid<int,int>), "#4");
}
#if !MONOTOUCH && !FULL_AOT_RUNTIME
class GenericClass<T>
{
public void Method ()
{
T lv = default(T);
Console.WriteLine(lv);
}
public void Method2<K> (T a0, K a1)
{
T var0 = a0;
K var1 = a1;
Console.WriteLine (var0);
Console.WriteLine (var1);
}
}
static void EnsureMethodExists (Type type, string name, params Type[] parameterTypes)
{
var method = type.GetTypeInfo ().GetDeclaredMethods (name)
.SingleOrDefault (m => m.GetParameters ().Select (p => p.ParameterType).SequenceEqual (parameterTypes));
Assert.IsNotNull (method, $"{type}.{name}");
}
public void EnsureEntityFrameworkMethodsExist ()
{
// EntityFramework6 relies on the following methods
// see https://github.com/aspnet/EntityFramework6/blob/master/src/EntityFramework/Core/Objects/ELinq/MethodCallTranslator.cs#L846
// also https://github.com/mono/mono/pull/10452
EnsureMethodExists (typeof (Math), "Ceiling", typeof (decimal));
EnsureMethodExists (typeof (Math), "Ceiling", typeof (double));
EnsureMethodExists (typeof (Math), "Floor", typeof (decimal));
EnsureMethodExists (typeof (Math), "Floor", typeof (double));
EnsureMethodExists (typeof (Math), "Round", typeof (decimal));
EnsureMethodExists (typeof (Math), "Round", typeof (double));
EnsureMethodExists (typeof (Math), "Round", typeof (decimal), typeof (int));
EnsureMethodExists (typeof (Math), "Round", typeof (double), typeof (int));
EnsureMethodExists (typeof (Decimal), "Floor", typeof (decimal));
EnsureMethodExists (typeof (Decimal), "Ceiling", typeof (decimal));
EnsureMethodExists (typeof (Decimal), "Round", typeof (decimal));
EnsureMethodExists (typeof (Decimal), "Round", typeof (decimal), typeof (int));
EnsureMethodExists (typeof (String), "Replace", typeof (String), typeof (String));
EnsureMethodExists (typeof (String), "ToLower");
EnsureMethodExists (typeof (String), "ToUpper");
EnsureMethodExists (typeof (String), "Trim");
EnsureMethodExists (typeof (Math), "Truncate", typeof (decimal));
EnsureMethodExists (typeof (Math), "Truncate", typeof (double));
EnsureMethodExists (typeof (Math), "Pow", typeof (double), typeof (double));
EnsureMethodExists (typeof (Guid), "NewGuid");
EnsureMethodExists (typeof (String), "Contains", typeof (string));
EnsureMethodExists (typeof (String), "IndexOf", typeof (string));
EnsureMethodExists (typeof (String), "StartsWith", typeof (string));
EnsureMethodExists (typeof (String), "EndsWith", typeof (string));
EnsureMethodExists (typeof (String), "Substring", typeof (int));
EnsureMethodExists (typeof (String), "Substring", typeof (int), typeof (int));
EnsureMethodExists (typeof (String), "Remove", typeof (int));
EnsureMethodExists (typeof (String), "Remove", typeof (int), typeof (int));
EnsureMethodExists (typeof (String), "IsNullOrEmpty", typeof (string));
EnsureMethodExists (typeof (String), "Concat", typeof (string), typeof (string));
EnsureMethodExists (typeof (String), "Concat", typeof (string), typeof (string), typeof (string));
EnsureMethodExists (typeof (String), "Concat", typeof (string), typeof (string), typeof (string), typeof (string));
EnsureMethodExists (typeof (String), "Concat", typeof (object), typeof (object));
EnsureMethodExists (typeof (String), "Concat", typeof (object), typeof (object), typeof (object));
EnsureMethodExists (typeof (String), "Concat", typeof (object), typeof (object), typeof (object), typeof (object));
EnsureMethodExists (typeof (String), "Concat", typeof (object[]));
EnsureMethodExists (typeof (String), "Concat", typeof (string[]));
EnsureMethodExists (typeof (String), "Trim", typeof (Char[]));
EnsureMethodExists (typeof (String), "TrimStart", typeof (Char[]));
EnsureMethodExists (typeof (String), "TrimEnd", typeof (Char[]));
}
[Test]
public void TestLocalVariableTypes ()
{
var typeofT = typeof (GenericClass<>).GetGenericArguments () [0];
var typeofK = typeof (GenericClass<>).GetMethod ("Method2").GetGenericArguments () [0];
var type = typeof (GenericClass<>).GetMethod("Method").GetMethodBody().LocalVariables[0].LocalType;
Assert.AreEqual (typeofT, type);
Assert.AreEqual (typeof (GenericClass<>), type.DeclaringType);
bool foundTypeOfK = false;
bool foundExpectedType = false;
MethodBody mb = typeof (GenericClass<>).GetMethod("Method2").GetMethodBody();
foreach (LocalVariableInfo lvi in mb.LocalVariables) {
if (lvi.LocalType == typeofK) {
foundTypeOfK = true;
Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#1-1");
} else if (lvi.LocalType == typeofT) {
foundExpectedType = true;
Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#1-2");
}
}
Assert.IsTrue (foundTypeOfK, "#1-3");
if (mb.LocalVariables.Count < 2)
Assert.Ignore ("Code built in release mode - 'T var0' optmized out");
else
Assert.IsTrue (foundExpectedType, "#1-4");
foundTypeOfK = false;
foundExpectedType = false;
mb = typeof (GenericClass<int>).GetMethod("Method2").GetMethodBody();
foreach (LocalVariableInfo lvi in mb.LocalVariables) {
if (lvi.LocalType == typeofK) {
foundTypeOfK = true;
Assert.AreEqual (typeof (GenericClass<>), lvi.LocalType.DeclaringType, "#2-1");
} else if (lvi.LocalType == typeof (int)) {
foundExpectedType = true;
}
}
Assert.IsTrue (foundTypeOfK, "#2-3");
if (mb.LocalVariables.Count < 2)
Assert.Ignore ("Code built in release mode - 'int var0' optmized out");
else
Assert.IsTrue (foundExpectedType, "#2-4");
}
#endif
}
// Helper class
class RefOnlyMethodClass
{
// Helper static method
static void RefOnlyMethod ()
{
}
}
public class MethodHandleTest<T>
{
private List<T> _myList = new List<T> ();
public MethodHandleTest ()
{
_myList.Add (default (T));
}
public List<T> MyList {
get { return _myList; }
set { _myList = value; }
}
}
}
|