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
|
//
// MonoGenericClassTest.cs - NUnit Test Cases for MonoGenericClassTest
//
// Rodrigo Kumpera <rkumpera@novell.com>
//
// Copyright (C) 2009 Novell, Inc (http://www.novell.com)
//
using System;
using System.Collections;
using System.Threading;
using System.Reflection;
using System.Reflection.Emit;
using System.IO;
using System.Security;
using System.Security.Permissions;
using System.Runtime.InteropServices;
using NUnit.Framework;
using System.Runtime.CompilerServices;
#if NET_2_0
using System.Collections.Generic;
#endif
namespace MonoTests.System.Reflection.Emit
{
#if NET_2_0
[TestFixture]
public class MonoGenericClassTest
{
AssemblyBuilder assembly;
ModuleBuilder module;
int typeCount;
static string ASSEMBLY_NAME = "MonoTests.System.Reflection.Emit.MonoGenericClassTest";
string MakeName ()
{
return "internal__type"+ typeCount++;
}
[SetUp]
public void SetUp ()
{
SetUp (AssemblyBuilderAccess.RunAndSave);
}
void SetUp (AssemblyBuilderAccess access)
{
AssemblyName assemblyName = new AssemblyName ();
assemblyName.Name = ASSEMBLY_NAME;
assembly =
Thread.GetDomain ().DefineDynamicAssembly (
assemblyName, access, Path.GetTempPath ());
module = assembly.DefineDynamicModule ("module1");
typeCount = 0;
}
[Test]
public void TestNameMethods ()
{
TypeBuilder tb = module.DefineType ("foo.type");
tb.DefineGenericParameters ("T", "K");
Type inst = tb.MakeGenericType (typeof (double), typeof (string));
Assert.AreEqual ("type", inst.Name, "#1");
Assert.AreEqual ("foo", inst.Namespace, "#2");
Assert.AreEqual ("foo.type[[System.Double, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", inst.FullName, "#3");
Assert.AreEqual ("foo.type[[System.Double, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], MonoTests.System.Reflection.Emit.MonoGenericClassTest, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", inst.AssemblyQualifiedName, "#4");
Assert.AreEqual ("foo.type[System.Double,System.String]", inst.ToString (), "#5");
}
[Test]
[Category ("NotDotNet")]
public void GetEventMustWorkUnderCompilerContext ()
{
SetUp (AssemblyBuilderAccess.RunAndSave | (AssemblyBuilderAccess)0x800);
var tb = module.DefineType ("foo.type");
tb.DefineGenericParameters ("T");
var ginst = tb.MakeGenericType (typeof (double));
try {
ginst.GetEvent ("foo", BindingFlags.Public | BindingFlags.Instance);
} catch (NotSupportedException) {
Assert.Fail ("#1");
}
}
[Test]
public void MethodsThatRaiseNotSupported ()
{
var tb = module.DefineType ("foo.type");
tb.DefineGenericParameters ("T");
var ginst = tb.MakeGenericType (typeof (double));
/*try { //FIXME this doesn't work yet
ginst.GetElementType ();
Assert.Fail ("#1");
} catch (NotSupportedException) { }*/
try {
ginst.GetInterface ("foo", true);
Assert.Fail ("#2");
} catch (NotSupportedException) { }
try {
ginst.GetEvent ("foo", BindingFlags.Public | BindingFlags.Instance);
Assert.Fail ("#3");
} catch (NotSupportedException) { }
try {
ginst.GetField ("foo", BindingFlags.Public | BindingFlags.Instance);
Assert.Fail ("#4");
} catch (NotSupportedException) { }
try {
ginst.GetMembers (BindingFlags.Public | BindingFlags.Instance);
Assert.Fail ("#5");
} catch (NotSupportedException) { }
try {
ginst.GetMethod ("Foo");
Assert.Fail ("#6");
} catch (NotSupportedException) { }
try {
ginst.GetNestedType ("foo", BindingFlags.Public | BindingFlags.Instance);
Assert.Fail ("#7");
} catch (NotSupportedException) { }
try {
ginst.GetProperty ("foo");
Assert.Fail ("#8");
} catch (NotSupportedException) { }
try {
var x = ginst.TypeInitializer;
Assert.Fail ("#9");
} catch (NotSupportedException) { }
try {
var x = ginst.InvokeMember ("foo", BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance, null, null, null);
Assert.Fail ("#10");
} catch (NotSupportedException) { }
try {
ginst.IsDefined (typeof (int), true);
Assert.Fail ("#11");
} catch (NotSupportedException) { }
try {
ginst.GetCustomAttributes (true);
Assert.Fail ("#12");
} catch (NotSupportedException) { }
try {
ginst.GetCustomAttributes (typeof (int), true);
Assert.Fail ("#13");
} catch (NotSupportedException) { }
}
}
#endif
}
|