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 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
|
//
// System.Reflection.BinderTests - Tests Type.DefaultBinder
//
// Authors:
// Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (c) 2004 Novell, Inc. (http://www.novell.com)
//
using NUnit.Framework;
using System;
using System.Globalization;
using System.IO;
using System.Reflection;
namespace MonoTests.System.Reflection
{
enum MyEnum {
Zero,
One,
Two
}
class ParamsArrayTest
{
public ParamsArrayTest (params string[] strings)
{}
}
class SampleClass {
public static void SampleMethod (object o) { }
public Type this[decimal i] {
get { return i.GetType (); }
}
public Type this[object i] {
get { return i.GetType (); }
}
}
class SingleIndexer {
public Type this [int i] {
get { return i.GetType (); }
}
}
class MultiIndexer
{
public Type this[byte i] {
get { return i.GetType (); }
}
public Type this[sbyte i] {
get { return i.GetType (); }
}
public Type this[short i] {
get { return i.GetType (); }
}
public Type this[ushort i] {
get { return i.GetType (); }
}
public Type this[int i] {
get { return i.GetType (); }
}
public Type this[uint i] {
get { return i.GetType (); }
}
public Type this[long i] {
get { return i.GetType (); }
}
public Type this[ulong i] {
get { return i.GetType (); }
}
public Type this[float i] {
get { return i.GetType (); }
}
public Type this[double i] {
get { return i.GetType (); }
}
public Type this[decimal i] {
get { return i.GetType (); }
}
public Type this[object i] {
get { return i.GetType (); }
}
public Type this[Enum i] {
get { return i.GetType (); }
}
}
class MethodInfoWrapper : MethodInfo
{
private readonly MethodInfo method;
public MethodInfoWrapper (MethodInfo method)
{
this.method = method;
}
public override object[] GetCustomAttributes (bool inherit)
{
return method.GetCustomAttributes (inherit);
}
public override bool IsDefined (Type attributeType, bool inherit)
{
return method.IsDefined (attributeType, inherit);
}
public override ParameterInfo[] GetParameters ()
{
return method.GetParameters ();
}
public override MethodImplAttributes GetMethodImplementationFlags ()
{
return method.GetMethodImplementationFlags ();
}
public override object Invoke (object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture)
{
return method.Invoke (obj, invokeAttr, binder, parameters, culture);
}
public override MethodInfo GetBaseDefinition ()
{
return method.GetBaseDefinition ();
}
public override ICustomAttributeProvider ReturnTypeCustomAttributes {
get { return method.ReturnTypeCustomAttributes; }
}
public override string Name {
get { return method.Name; }
}
public override Type ReturnType {
get { return method.ReturnType; }
}
public override Type DeclaringType {
get { return method.DeclaringType; }
}
public override Type ReflectedType {
get { return method.ReflectedType; }
}
public override RuntimeMethodHandle MethodHandle {
get { return method.MethodHandle; }
}
public override MethodAttributes Attributes {
get { return method.Attributes; }
}
public override object[] GetCustomAttributes (Type attributeType, bool inherit)
{
return method.GetCustomAttributes (attributeType, inherit);
}
}
class DefaultValues
{
public int Value;
public DefaultValues (int i = 5)
{
Value = i;
}
}
[TestFixture]
public class BinderTest
{
Binder binder = Type.DefaultBinder;
[Test]
public void ParamsArrayTestCast ()
{
string[] test_args = { "one", "two", "three" };
var o = Activator.CreateInstance (typeof (ParamsArrayTest), new object[] { test_args });
Assert.IsNotNull (o, "#A1");
}
[Test]
public void DefaultParameter ()
{
var o = Activator.CreateInstance (typeof (DefaultValues),
BindingFlags.CreateInstance | BindingFlags.Public | BindingFlags.Instance | BindingFlags.OptionalParamBinding,
null, null, null);
var a = o as DefaultValues;
Assert.AreEqual (5, a.Value);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void SelectPropertyTestNull1 ()
{
// The second argument is the one
binder.SelectProperty (0, null, null, null, null);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void SelectPropertyTestEmpty ()
{
// The second argument is the one
binder.SelectProperty (0, new PropertyInfo [] {}, null, null, null);
}
[Test]
[ExpectedException (typeof (NotSupportedException))]
public void ChangeTypeOnDefaultBinder ()
{
binder.ChangeType (null, null, null);
}
[Test]
[ExpectedException (typeof (AmbiguousMatchException))]
public void AmbiguousProperty1 () // Bug 58381
{
Type type = typeof (MultiIndexer);
PropertyInfo pi = type.GetProperty ("Item");
}
[Test]
public void SelectAndInvokeAllProperties1 ()
{
Type type = typeof (MultiIndexer);
PropertyInfo [] props = type.GetProperties (BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
// These don't cause an AmbiguousMatchException
Type [] types = { typeof (byte), typeof (short),
typeof (int), typeof (long),
typeof (MyEnum) };
/* MS matches short for sbyte!!! */
/* MS matches int for ushort!!! */
/* MS matches long for uint!!! */
/** These do weird things under MS if used together and then in separate arrays *
Type [] types = { typeof (ulong), typeof (float), typeof (double),
typeof (decimal), typeof (object) };
*/
MultiIndexer obj = new MultiIndexer ();
foreach (Type t in types) {
PropertyInfo prop = null;
try {
prop = binder.SelectProperty (0, props, null, new Type [] {t}, null);
} catch (Exception e) {
throw new Exception ("Type: " + t, e);
}
Type gotten = (Type) prop.GetValue (obj, new object [] {Activator.CreateInstance (t)});
Assert.AreEqual (t, gotten);
}
}
[Test]
public void SelectAndInvokeAllProperties2 ()
{
Type type = typeof (MultiIndexer);
PropertyInfo [] props = type.GetProperties (BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
Type [] types = { typeof (ushort), typeof (char) };
MultiIndexer obj = new MultiIndexer ();
PropertyInfo prop1 = binder.SelectProperty (0, props, null, new Type [] {types [0]}, null);
PropertyInfo prop2 = binder.SelectProperty (0, props, null, new Type [] {types [1]}, null);
Assert.AreEqual (prop1, prop2);
}
[Test]
public void Select1Match2 ()
{
Type type = typeof (SingleIndexer);
PropertyInfo [] props = type.GetProperties (BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
PropertyInfo prop = binder.SelectProperty (0, props, null, new Type [0], null);
Assert.IsNull (prop, "empty");
}
[Test]
public void Select1Match ()
{
Type type = typeof (SingleIndexer);
PropertyInfo [] props = type.GetProperties (BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
PropertyInfo prop;
prop = binder.SelectProperty (0, props, null, new Type [] { typeof (long) }, null);
Assert.IsNull (prop, "long");
prop = binder.SelectProperty (0, props, null, new Type [] { typeof (int) }, null);
Assert.IsNotNull (prop, "int");
prop = binder.SelectProperty (0, props, null, new Type [] { typeof (short) }, null);
Assert.IsNotNull (prop, "short");
}
[Test]
public void SelectMethod_AmbiguousMatch ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#A1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#B1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#B3");
match = new MethodBase [] { mi_single_param, mi_single_param };
types = new Type [] { typeof (object) };
try {
binder.SelectMethod (flags, match, types, null);
Assert.Fail ("#C1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
match = new MethodBase [] { mi_single_param, mi_single_param };
types = new Type [] { typeof (string) };
try {
binder.SelectMethod (flags, match, types, null);
Assert.Fail ("#D1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
}
[Test]
public void SelectMethod_ByRef ()
{
Type type = typeof (ByRefMatch);
BindingFlags flags = BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance;
MethodBase [] match;
Type [] types;
MethodBase selected;
Type ref_int;
MethodInfo mi_run = type.GetMethod ("Run", flags, binder,
new Type [] { typeof (int) }, null);
Assert.IsFalse (mi_run.GetParameters () [0].ParameterType.IsByRef, "#A1");
MethodInfo mi_run_ref = type.GetMethod ("Run", flags, binder,
new Type [] { typeof (int).MakeByRefType () }, null);
Assert.IsTrue (mi_run_ref.GetParameters () [0].ParameterType.IsByRef, "#A2");
ref_int = typeof (int).MakeByRefType ();
match = new MethodBase [] { mi_run_ref };
types = new Type [] { typeof (int) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#B1");
types = new Type [] { ref_int };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_run_ref, selected, "#B2");
match = new MethodBase [] { mi_run };
types = new Type [] { typeof (int) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_run, selected, "#C1");
types = new Type [] { ref_int };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#C1");
match = new MethodBase [] { mi_run, mi_run_ref };
types = new Type [] { typeof (int) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_run, selected, "#D1");
types = new Type [] { ref_int };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_run_ref, selected, "#D2");
}
[Test]
public void SelectMethod_Params ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
MethodBase selected;
types = new Type [] { typeof (object), typeof (object) };
MethodInfo mi_non_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_non_params, "#A1");
Assert.AreEqual (2, mi_non_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [0].ParameterType, "#A3");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [1].ParameterType, "#A4");
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#B1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#C1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#C2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#C3");
match = new MethodBase [] { mi_params };
types = new Type [] { typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#D1");
types = new Type [] { typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#D2");
types = new Type [] { typeof (object), typeof (object []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_params, selected, "#D3");
types = new Type [] { typeof (object), typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#D4");
match = new MethodBase [] { mi_non_params };
types = new Type [] { typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#E1");
types = new Type [] { typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#E2");
types = new Type [] { typeof (object), typeof (object []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#E3");
types = new Type [] { typeof (object), typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#E4");
match = new MethodBase [] { mi_non_params, mi_params };
types = new Type [] { typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#F1");
match = new MethodBase [] { mi_non_params, mi_params };
types = new Type [] { typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#F2");
match = new MethodBase [] { mi_non_params, mi_params };
types = new Type [] { typeof (object), typeof (object []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_params, selected, "#F3");
match = new MethodBase [] { mi_non_params, mi_params };
types = new Type [] { typeof (object), typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#F4");
match = new MethodBase [] { mi_params, mi_non_params };
types = new Type [] { typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#G1");
match = new MethodBase [] { mi_params, mi_non_params };
types = new Type [] { typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#G2");
match = new MethodBase [] { mi_params, mi_non_params };
types = new Type [] { typeof (object), typeof (object []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_params, selected, "#G3");
match = new MethodBase [] { mi_params, mi_non_params };
types = new Type [] { typeof (object), typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#G4");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_single_param, selected, "#H1");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#H2");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (object), typeof (object []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_params, selected, "#H3");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (object), typeof (object), typeof (object) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#H4");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (string) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_single_param, selected, "#I1");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (string), typeof (string) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_non_params, selected, "#I2");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (string), typeof (string []) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.AreSame (mi_params, selected, "#I3");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
types = new Type [] { typeof (string), typeof (string), typeof (long) };
selected = binder.SelectMethod (flags, match, types, null);
Assert.IsNull (selected, "#I4");
}
[Test] // bug #314809
public void ArgNullOnMethod ()
{
Type type = typeof (SampleClass);
BindingFlags flags = BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod;
type.InvokeMember ("SampleMethod", flags, null, null, new object[] { null });
}
[Test]
public void ArgNullOnProperty ()
{
Type type = typeof (SampleClass);
PropertyInfo [] props = type.GetProperties (BindingFlags.DeclaredOnly |
BindingFlags.Public |
BindingFlags.Instance);
try {
binder.SelectProperty (0, props, null, new Type [] {null}, null);
Assert.Fail ();
} catch (ArgumentNullException) {
}
}
[Test]
public void BindToMethod_ByRef ()
{
Type type = typeof (ByRefMatch);
BindingFlags flags = BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance;
MethodBase [] match;
object [] args = new object [] { 5 };
object state;
MethodBase selected;
CultureInfo culture = CultureInfo.InvariantCulture;
MethodInfo mi_run = type.GetMethod ("Run", flags, binder,
new Type [] { typeof (int) }, null);
Assert.IsFalse (mi_run.GetParameters () [0].ParameterType.IsByRef, "#A1");
MethodInfo mi_run_ref = type.GetMethod ("Run", flags, binder,
new Type [] { typeof (int).MakeByRefType () }, null);
Assert.IsTrue (mi_run_ref.GetParameters () [0].ParameterType.IsByRef, "#A2");
match = new MethodBase [] { mi_run };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_run, selected, "#B1");
match = new MethodBase [] { mi_run_ref };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_run_ref, selected, "#B2");
match = new MethodBase [] { mi_run, mi_run_ref };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_run, selected, "#B3");
match = new MethodBase [] { mi_run_ref, mi_run };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_run, selected, "#B4");
}
[Test]
public void BindToMethod_AmbiguousMatch ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
object state;
object [] args;
CultureInfo culture = CultureInfo.InvariantCulture;
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#A1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#B1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#B3");
match = new MethodBase [] { mi_single_param, mi_single_param };
args = new object [] { new object () };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#C1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
match = new MethodBase [] { mi_single_param, mi_single_param };
args = new object [] { string.Empty };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#D1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
match = new MethodBase [] { mi_params, mi_params };
args = new object [] { new object (), new object () };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#E1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
match = new MethodBase [] { mi_params, mi_params };
args = new object [] { string.Empty, 0L };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#F1");
} catch (AmbiguousMatchException) {
// Ambiguous match found
}
}
[Test]
public void BindToMethod_Params ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
MethodBase selected;
object state;
object [] args;
CultureInfo culture = CultureInfo.InvariantCulture;
types = new Type [] { typeof (object), typeof (object) };
MethodInfo mi_non_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_non_params, "#A1");
Assert.AreEqual (2, mi_non_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [0].ParameterType, "#A3");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [1].ParameterType, "#A4");
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#B1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#C1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#C2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#C3");
match = new MethodBase [] { mi_params };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D1");
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D2");
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D3");
args = new object [] { new object (), new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D4");
match = new MethodBase [] { mi_non_params };
args = new object [] { new object () };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#E1");
} catch (MissingMethodException) {
// Member not found
}
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#E2");
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#E3");
args = new object [] { new object (), new object (), new object () };
try {
binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.Fail ("#E4");
} catch (MissingMethodException) {
// Member not found
}
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#F1");
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#F2");
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#F3");
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object (), new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#F4");
match = new MethodBase [] { mi_params, mi_non_params };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#G1");
match = new MethodBase [] { mi_params, mi_non_params };
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#G2");
match = new MethodBase [] { mi_params, mi_non_params };
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#G3");
match = new MethodBase [] { mi_params, mi_non_params };
args = new object [] { new object (), new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#G4");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_single_param, selected, "#H1");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#H2");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#H3");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object (), new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#H4");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { string.Empty };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_single_param, selected, "#I1");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { string.Empty, string.Empty };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#I2");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { string.Empty, new string [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#I3");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { string.Empty, string.Empty, 5L };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#I4");
}
[Test]
public void BindToMethod_Params_Mono ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
MethodBase selected;
object state;
object [] args;
CultureInfo culture = CultureInfo.InvariantCulture;
types = new Type [] { typeof (object), typeof (object) };
MethodInfo mi_non_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_non_params, "#A1");
Assert.AreEqual (2, mi_non_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [0].ParameterType, "#A3");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [1].ParameterType, "#A4");
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#B1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#C1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#C2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#C3");
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D1");
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#D2");
args = new object [] { new object (), new object [0] };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D3");
args = new object [] { new object (), new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D4");
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_single_param, selected, "#E1");
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_non_params, selected, "#E2");
}
[Test]
public void BindToMethod_Params_MS ()
{
Type type = typeof (BinderTest);
BindingFlags flags = BindingFlags.Static | BindingFlags.Public;
MethodBase [] match;
Type [] types;
MethodBase selected;
object state;
object [] args;
CultureInfo culture = CultureInfo.InvariantCulture;
types = new Type [] { typeof (object), typeof (object) };
MethodInfo mi_non_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_non_params, "#A1");
Assert.AreEqual (2, mi_non_params.GetParameters ().Length, "#A2");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [0].ParameterType, "#A3");
Assert.AreEqual (typeof (object), mi_non_params.GetParameters () [1].ParameterType, "#A4");
types = new Type [] { typeof (object), typeof (object []) };
MethodInfo mi_params = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_params, "#B1");
Assert.AreEqual (2, mi_params.GetParameters ().Length, "#B2");
Assert.AreEqual (typeof (object), mi_params.GetParameters () [0].ParameterType, "#B3");
Assert.AreEqual (typeof (object []), mi_params.GetParameters () [1].ParameterType, "#B4");
types = new Type [] { typeof (object) };
MethodInfo mi_single_param = type.GetMethod ("params_method1", flags, binder, types, null);
Assert.IsNotNull (mi_single_param, "#C1");
Assert.AreEqual (1, mi_single_param.GetParameters ().Length, "#C2");
Assert.AreEqual (typeof (object), mi_single_param.GetParameters () [0].ParameterType, "#C3");
match = new MethodBase [] { mi_non_params, mi_params };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_params, selected, "#D1");
args = new object [] { new object (), new object () };
binder.BindToMethod (flags, match, ref args, null, culture, null, out state);
args = new object [] { new object (), new object [0] };
binder.BindToMethod (flags, match, ref args, null, culture, null, out state);
args = new object [] { new object (), new object (), new object () };
binder.BindToMethod (flags, match, ref args, null, culture, null, out state);
match = new MethodBase [] { mi_params, mi_non_params, mi_single_param };
args = new object [] { new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreSame (mi_single_param, selected, "#E1");
args = new object [] { new object (), new object () };
selected = binder.BindToMethod (flags, match, ref args, null, culture,
null, out state);
Assert.AreNotSame (mi_params, selected, "#E2");
}
[Test] // bug #41691
public void BindToMethodNamedArgs ()
{
Type t = typeof (Bug41691);
StringWriter sw = new StringWriter ();
sw.NewLine = "\n";
object[] argValues = new object [] {"Hello", "World", "Extra", sw};
string [] argNames = new string [] {"firstName", "lastName"};
t.InvokeMember ("PrintName",
BindingFlags.InvokeMethod,
null,
null,
argValues,
null,
null,
argNames);
Assert.AreEqual ("Hello\nExtra\nWorld\n", sw.ToString ());
}
[Test] // #1321
public void BindToMethodNamedArgs_2 ()
{
StringWriter sw = new StringWriter ();
sw.NewLine = "\n";
object[] argValues = new object [] {5, "AB", sw};
string [] argNames = new string [] {"second", "first", "output"};
typeof (BinderTest).InvokeMember ("TestMethod",
BindingFlags.InvokeMethod,
null,
null,
argValues,
null,
null,
argNames);
Assert.AreEqual ("AB\n5\n", sw.ToString ());
}
public static void TestMethod (string first, int second, TextWriter output) {
output.WriteLine (first);
output.WriteLine (second);
}
public class Bug41691
{
public static void PrintName (string lastName, string firstName, string extra, TextWriter output)
{
output.WriteLine (firstName);
output.WriteLine (extra);
output.WriteLine (lastName);
}
}
[Test] // bug #42457
public void GetMethodAmbiguity ()
{
object IntegerObject = 5;
object IntArrayObject = new int[] {5, 2, 5};
object StringArrayObject = new string [] {"One", "Two"};
object [] IntParam = new object [] {IntegerObject};
object [] IntArrayParam = new object [] {IntArrayObject};
object [] StringArrayParam = new object [] {StringArrayObject};
object be = this;
Type betype = this.GetType ();
string name1 = "Bug42457Method";
string name2 = "Bug42457Method2";
MethodInfo mi_obj = betype.GetMethod (name1, Type.GetTypeArray (IntParam));
mi_obj.Invoke (be, IntParam);
Assert.AreEqual (1, bug42457, "#1");
MethodInfo mi_arr = betype.GetMethod (name1, Type.GetTypeArray (IntArrayParam));
mi_arr.Invoke (be, IntArrayParam);
Assert.AreEqual (2, bug42457, "#2");
MethodInfo mi_str = betype.GetMethod (name1, Type.GetTypeArray (StringArrayParam));
mi_str.Invoke (be, StringArrayParam);
Assert.AreEqual (3, bug42457, "#3");
MethodInfo m2_obj = betype.GetMethod (name2, Type.GetTypeArray (IntParam));
m2_obj.Invoke (be, IntParam);
Assert.AreEqual (1, bug42457_2, "#4");
MethodInfo m2_arr = betype.GetMethod (name2, Type.GetTypeArray (IntArrayParam));
m2_arr.Invoke (be, IntArrayParam);
Assert.AreEqual (2, bug42457_2, "#5");
MethodInfo m2_str = betype.GetMethod (name2, Type.GetTypeArray(StringArrayParam));
m2_str.Invoke (be, StringArrayParam);
Assert.AreEqual (3, bug42457_2, "#6");
}
[Test]
public void NullableArg () {
MethodInfo method = (typeof (BinderTest)).GetMethod("SetA", new [] {typeof (Int32)});
Assert.AreEqual (5, method.Invoke (new BinderTest (), new object [] { 5 }));
}
public int SetA(Int32? a) {
return (int)a;
}
static void MethodWithLongParam(long param)
{
}
[Test]
public void TestParamsAttribute ()
{
MethodInfo mi;
mi = typeof (BinderTest).GetMethod ("params_method1", BindingFlags.Static | BindingFlags.Public, null, new Type [] { typeof (object), typeof (object) }, null);
Assert.IsNotNull (mi, "#A1");
Assert.AreEqual (typeof (object), mi.GetParameters () [1].ParameterType, "#A2");
mi = typeof (BinderTest).GetMethod ("params_method1", BindingFlags.Static | BindingFlags.Public, null, new Type [] { typeof (object), typeof (object []) }, null);
Assert.IsNotNull (mi, "#B1");
Assert.AreEqual (typeof (object []), mi.GetParameters () [1].ParameterType, "#B2");
}
[Test]
public void TestParamsAttribute_1 ()
{
MethodInfo mi = typeof (BinderTest).GetMethod ("params_method1", BindingFlags.Static | BindingFlags.Public, null, new Type [] { typeof (object), typeof (object), typeof (object) }, null);
Assert.IsNull (mi, "#1");
}
[Test]
public void TestParamsAttribute_2 ()
{
MethodInfo mi = typeof (BinderTest).GetMethod ("params_method2", BindingFlags.Static | BindingFlags.Public, null, Type.EmptyTypes, null);
Assert.IsNull (mi, "#1");
}
public static void params_method1 (object o)
{
}
public static void params_method1 (object o, params object[] o2)
{
}
public static void params_method1 (object o, object o2)
{
}
public static void params_method2 (params string[] args)
{
}
public static double DoubleMethod (double d) {
return d;
}
public static float FloatMethod (float f) {
return f;
}
[Test]
public void ChangeType ()
{
// Char -> Double
Assert.AreEqual (42.0, typeof (BinderTest).GetMethod ("DoubleMethod").Invoke (null, new object[] { (char)42 }));
// Char -> Float
Assert.AreEqual (42.0f, typeof (BinderTest).GetMethod ("FloatMethod").Invoke (null, new object[] { (char)42 }));
}
[Test]
public void TestExactBinding ()
{
Type[] types = new Type[] { typeof(int) };
BindingFlags flags = BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.ExactBinding;
Assert.IsNull (typeof (BinderTest).GetMethod("MethodWithLongParam",
flags, null, types, null));
}
public void Bug42457Method (object thing)
{
bug42457 = 1;
}
public void Bug42457Method (Array thing)
{
bug42457 = 2;
}
public void Bug42457Method (string [] thing)
{
bug42457 = 3;
}
public void Bug42457Method2 (object thing)
{
bug42457_2 = 1;
}
public void Bug42457Method2 (Array thing)
{
bug42457_2 = 2;
}
public void Bug42457Method2 (string [] thing)
{
bug42457_2 = 3;
}
int bug42457, bug42457_2;
[Test] // bug #77079
public void GetMethodAvoidAmbiguity2 ()
{
Type tType = this.GetType ();
Bug77079A a = new Bug77079C ();
tType.InvokeMember ("Bug77079",
BindingFlags.Public | BindingFlags.InvokeMethod |
BindingFlags.Instance,
null, this, new object[] {a});
Assert.AreEqual (2, bug77079);
}
int bug77079;
public void Bug77079 (Bug77079A a)
{
bug77079 = 1;
}
public void Bug77079 (Bug77079B a)
{
bug77079 = 2;
}
public class Bug77079A
{
}
public class Bug77079B : Bug77079A
{
}
public class Bug77079C : Bug77079B
{
}
[Test] // bug #76083
public void GetMethodAvoidAmbiguity3 ()
{
Type[] types = new Type[] { typeof (Bug76083ArgDerived) };
MethodInfo m = typeof (Bug76083Derived).GetMethod ("Foo", types);
Assert.AreEqual (typeof (Bug76083Derived), m.DeclaringType);
}
public class Bug76083ArgBase {}
public class Bug76083ArgDerived : Bug76083ArgBase {}
public class Bug76083Base
{
public void Foo (Bug76083ArgBase a) {}
}
public class Bug76083Derived : Bug76083Base
{
public new void Foo (Bug76083ArgBase a) {}
}
private const BindingFlags BUG324998_BINDING_FLAGS
= BindingFlags.Public | BindingFlags.NonPublic
| BindingFlags.Instance | BindingFlags.Static
| BindingFlags.IgnoreCase;
class Bug324998AGood { public virtual void f(int i1, int i2, bool b) {} }
class Bug324998BGood : Bug324998AGood { public override void f(int i1, int i2, bool b) {} }
class Bug324998ABad {
public virtual void f(int i1, int i2) {}
public virtual void f(int i1, int i2, bool b) {}
}
class Bug324998BBad : Bug324998ABad { public override void f(int i1, int i2, bool b) {} }
[Test]
public void Bug324998Good () {
if (typeof(Bug324998BGood).GetMethod("f", BUG324998_BINDING_FLAGS) == null)
throw new Exception("Bug324998Good");
}
[Test]
[ExpectedException (typeof (AmbiguousMatchException))]
public void Bug324998Bad () {
typeof(Bug324998BBad).GetMethod("f", BUG324998_BINDING_FLAGS);
}
void Bug380361 (MyEnum e) { }
[Test]
public void TestEnumConversion ()
{
Type type = this.GetType ();
MethodInfo mi = type.GetMethod ("Bug380361", BindingFlags.NonPublic | BindingFlags.Instance, binder, new Type [] { typeof (MyEnum) }, null);
mi.Invoke (this, new object [] { (int)MyEnum.Zero });
}
[Test]
public void TestEnumConversion2 ()
{
Type type = this.GetType ();
MethodInfo mi = type.GetMethod ("Bug380361", BindingFlags.NonPublic | BindingFlags.Instance, binder, new Type [] { typeof (MyEnum) }, null);
try {
mi.Invoke (this, new object [] { (long) MyEnum.Zero });
Assert.Fail ("#1");
} catch (ArgumentException ex) {
Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
Assert.IsNull (ex.InnerException, "#3");
Assert.IsNotNull (ex.Message, "#4");
Assert.IsNull (ex.ParamName, "#5");
}
}
class AssertingBinder : Binder {
public static readonly AssertingBinder Instance = new AssertingBinder ();
public override FieldInfo BindToField (BindingFlags bindingAttr, FieldInfo [] match, object value, CultureInfo culture)
{
Assert.IsNotNull (match);
return Type.DefaultBinder.BindToField (bindingAttr, match, value, culture);
}
public override MethodBase BindToMethod (BindingFlags bindingAttr, MethodBase [] match, ref object [] args, ParameterModifier [] modifiers, CultureInfo culture, string [] names, out object state)
{
Assert.IsNotNull (match);
Assert.IsNotNull (args);
return Type.DefaultBinder.BindToMethod (bindingAttr, match, ref args, modifiers, culture, names, out state);
}
public override object ChangeType (object value, Type type, CultureInfo culture)
{
Assert.IsNotNull (value);
Assert.IsNotNull (type);
return Type.DefaultBinder.ChangeType (value, type, culture);
}
public override void ReorderArgumentArray (ref object [] args, object state)
{
Assert.IsNotNull (args);
Type.DefaultBinder.ReorderArgumentArray (ref args, state);
}
public override MethodBase SelectMethod (BindingFlags bindingAttr, MethodBase [] match, Type [] types, ParameterModifier [] modifiers)
{
Assert.IsNotNull (match);
Assert.IsNotNull (types);
return Type.DefaultBinder.SelectMethod (bindingAttr, match, types, modifiers);
}
public override PropertyInfo SelectProperty (BindingFlags bindingAttr, PropertyInfo [] match, Type returnType, Type [] indexes, ParameterModifier [] modifiers)
{
Assert.IsNotNull (match);
return Type.DefaultBinder.SelectProperty (bindingAttr, match, returnType, indexes, modifiers);
}
}
class BaseFoo {
public void Bar ()
{
}
public int Add(int x, int y)
{
return x + y;
}
}
class Foo : BaseFoo {
public bool Barred;
public new void Bar ()
{
Barred = true;
}
}
class ByRefMatch {
public void Run (int i)
{
}
public void Run (out int i)
{
i = 0;
}
}
[Test] // bug #471257
public void TestCustomBinderNonNullArgs ()
{
var foo = new Foo ();
typeof (Foo).InvokeMember (
"Bar",
BindingFlags.InvokeMethod,
AssertingBinder.Instance,
foo,
null);
Assert.IsTrue (foo.Barred);
}
class Int32Binder : AssertingBinder
{
public override object ChangeType(Object value, Type type, CultureInfo ci)
{
if (value.GetType() == type) {
return value;
} else if (type.IsPrimitive) {
if (type == typeof(Int32))
return Convert.ToInt32(value);
throw new ArgumentException("missing support for primitive: " + type);
}
throw new ArgumentException("Could not ChangeType to " + type.FullName);
}
}
[Test]
[ExpectedException(typeof (TargetParameterCountException))]
public void TestTargetParameterCountExceptionA ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), 0, null, null, null);
}
[Test]
[ExpectedException(typeof (TargetParameterCountException))]
public void TestTargetParameterCountExceptionB ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke(new Foo (), 0, null, new object [] {1}, null);
}
[Test]
public void TestBindingFlagsA ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), 0, null, new object [] {1, 2}, null);
}
[Test]
[ExpectedException(typeof (ArgumentException))]
public void TestBindingFlagsB ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), 0, null, new object [] {1, "2"}, null);
}
[Test]
public void TestBindingFlagsExactBindingA ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), BindingFlags.ExactBinding, null, new object [] {1, 2}, null);
}
[Test]
[ExpectedException(typeof (ArgumentException))]
public void TestBindingFlagsExactBindingB ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), BindingFlags.ExactBinding, new Int32Binder (), new object [] {1, "2"}, null);
}
[Test]
public void TestBindingFlagsExactBindingC ()
{
MethodInfo method = typeof (Foo).GetMethod ("Add");
method.Invoke((new Foo ()), 0, new Int32Binder (), new object [] {1, "2"}, null);
}
public void Bug325306<T> (int a) {}
public void Bug325306_ (int a) {}
[Test] //bug 325306
[ExpectedException (typeof (AmbiguousMatchException))]
public void SelectMethodWithExactAndAmbiguousMethods ()
{
var m = typeof (BinderTest).GetMethod ("Bug325306_");
BindingFlags flags = BindingFlags.Instance | BindingFlags.Public;
AssertingBinder.Instance.SelectMethod (flags, new MethodBase [] {m, m}, new Type[] { typeof (int) }, null);
}
[Test] //bug 325306
[ExpectedException (typeof (AmbiguousMatchException))]
public void SelectMethodWithGmdAmbiguity ()
{
var m0 = typeof (BinderTest).GetMethod ("Bug325306");
var m1 = typeof (BinderTest).GetMethod ("Bug325306_");
BindingFlags flags = BindingFlags.Instance | BindingFlags.Public;
AssertingBinder.Instance.SelectMethod (flags, new MethodBase [] {m0, m1}, new Type[] { typeof (int) }, null);
}
public static string Bug636939 (IFormatProvider provider, string pattern, params object [] args)
{
return string.Format (pattern, args);
}
[Test] // bug #636939
public void SelectMethodWithParamArrayAndNonEqualTypeArguments ()
{
const BindingFlags flags =
BindingFlags.IgnoreCase | BindingFlags.Instance |
BindingFlags.Static | BindingFlags.Public |
BindingFlags.FlattenHierarchy | BindingFlags.InvokeMethod;
Assert.AreEqual ("foobarbaz", typeof (BinderTest).InvokeMember (
"bug636939",
flags,
null, // binder
null, // target
new object [] { CultureInfo.CurrentCulture, "foo{0}{1}", "bar", "baz" }));
}
public static void CustomMethodType_Helper ()
{
}
[Test]
public void CustomMethodType ()
{
var method = new MethodInfoWrapper (GetType ().GetMethod ("CustomMethodType_Helper"));
var res = Type.DefaultBinder.SelectMethod (BindingFlags.Static | BindingFlags.Public, new[] { method }, Type.EmptyTypes, new ParameterModifier[0]);
Assert.AreSame (method, res);
}
}
}
|