File: EventBuilderTest.cs

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (207 lines) | stat: -rw-r--r-- 5,144 bytes parent folder | download | duplicates (12)
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
//
// EventBuilder.cs - NUnit Test Cases for the EventBuilder class
//
// Zoltan Varga (vargaz@freemail.hu)
//
// (C) Ximian, Inc.  http://www.ximian.com

using System;
using System.Threading;
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;

using NUnit.Framework;

namespace MonoTests.System.Reflection.Emit
{

[TestFixture]
public class EventBuilderTest
{
	public delegate void AnEvent (object o);

    private TypeBuilder tb;

	private ModuleBuilder module;

	private EventBuilder eb;

	private MethodBuilder mb;

	[SetUp]
	protected void SetUp () {
		AssemblyName assemblyName = new AssemblyName();
		assemblyName.Name = GetType().FullName;

		AssemblyBuilder assembly 
			= Thread.GetDomain().DefineDynamicAssembly(
				assemblyName, AssemblyBuilderAccess.Run);

		module = assembly.DefineDynamicModule("module1");
		
	    tb = module.DefineType("class1", 
							   TypeAttributes.Public);

		eb = tb.DefineEvent ("event1", EventAttributes.None, typeof (AnEvent));
		mb = 
			tb.DefineMethod ("OnAnEvent",
							 MethodAttributes.Public, typeof (void),
							 new Type [] { typeof (AnEvent) });
		ILGenerator ilgen = mb.GetILGenerator();
		ilgen.Emit (OpCodes.Ret);

		// These two are required
		eb.SetAddOnMethod (mb);
		eb.SetRemoveOnMethod (mb);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetAddOnMethod1 () {
		eb.SetAddOnMethod (null);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestSetAddOnMethod2 () {
	  tb.CreateType ();

	  eb.SetAddOnMethod (mb);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetRaiseMethod1 () {
		eb.SetRaiseMethod (null);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestSetRaiseMethod2 () {
	  tb.CreateType ();

	  eb.SetRaiseMethod (mb);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetRemoveAddOnMethod1 () {
		eb.SetRemoveOnMethod (null);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestSetRemoveAddOnMethod2 () {
	  tb.CreateType ();

	  eb.SetRemoveOnMethod (mb);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestAddOtherMethod1 () {
		eb.AddOtherMethod (null);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestAddOtherMethod2 () {
	  tb.CreateType ();

	  eb.AddOtherMethod (mb);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetCustomAttribute1 () {
		eb.SetCustomAttribute (null);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetCustomAttribute2 () {
		eb.SetCustomAttribute (null, new byte [1]);
	}

	[Test]
	[ExpectedException (typeof (ArgumentNullException))]
	public void TestSetCustomAttribute3 () {
		ConstructorInfo con = typeof (String).GetConstructors ()[0];
		eb.SetCustomAttribute (con, null);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestSetCustomAttribute4 () {
		tb.CreateType ();

		byte[] custAttrData = { 1, 0, 0, 0, 0};
		Type attrType = Type.GetType
			("System.Reflection.AssemblyKeyNameAttribute");
		Type[] paramTypes = new Type[1];
		paramTypes[0] = typeof(String);
		ConstructorInfo ctorInfo =
			attrType.GetConstructor(paramTypes);

		eb.SetCustomAttribute (ctorInfo, custAttrData);
	}

	[Test]
	[ExpectedException (typeof (InvalidOperationException))]
	public void TestSetCustomAttribute5 () {
		tb.CreateType ();

		eb.SetCustomAttribute (new CustomAttributeBuilder (typeof (MethodImplAttribute).GetConstructor (new Type[1] { typeof (short) }), new object[1] {(short)MethodImplAttributes.Synchronized}));
	}

	[Test]
	public void TestCreation () {
		eb = tb.DefineEvent ("event2", EventAttributes.SpecialName, typeof (AnEvent));

		eb.SetRaiseMethod (mb);
		eb.SetAddOnMethod (mb);
		eb.SetRemoveOnMethod (mb);
		eb.AddOtherMethod (mb);
		eb.AddOtherMethod (mb);

		Type t = tb.CreateType ();

		MethodInfo mi = t.GetMethod ("OnAnEvent");

		EventInfo[] events = t.GetEvents ();
		Assert.AreEqual (2, events.Length);

		{
			EventInfo ev = t.GetEvent ("event1");
			Assert.AreEqual ("event1", ev.Name);
			Assert.AreEqual (EventAttributes.None, ev.Attributes);
			Assert.AreEqual (t, ev.DeclaringType);

			Assert.AreEqual (typeof (AnEvent), ev.EventHandlerType);
			Assert.AreEqual (true, ev.IsMulticast);
			Assert.AreEqual (false, ev.IsSpecialName);

			Assert.AreEqual (mi, ev.GetAddMethod ());
			Assert.AreEqual (null, ev.GetRaiseMethod ());
			Assert.AreEqual (mi, ev.GetRemoveMethod ());
		}

		{
			EventInfo ev = t.GetEvent ("event2");
			Assert.AreEqual ("event2", ev.Name);
			Assert.AreEqual (EventAttributes.SpecialName, ev.Attributes);
			Assert.AreEqual (t, ev.DeclaringType);

			Assert.AreEqual (typeof (AnEvent), ev.EventHandlerType);
			Assert.AreEqual (true, ev.IsMulticast);
			Assert.AreEqual (true, ev.IsSpecialName);

			Assert.AreEqual (mi, ev.GetAddMethod ());
			Assert.AreEqual (mi, ev.GetRaiseMethod ());
			Assert.AreEqual (mi, ev.GetRemoveMethod ());
		}
	}		
		
}
}