| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- //
- // ModuleTest - NUnit Test Cases for the Module class
- //
- // Zoltan Varga ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- //
- using System;
- using System.Threading;
- using System.Reflection;
- using System.Reflection.Emit;
- using System.IO;
- using System.Collections;
- using NUnit.Framework;
- namespace MonoTests.System.Reflection
- {
- [TestFixture]
- public class ModuleTest : Assertion
- {
- static string TempFolder = Path.Combine (Path.GetTempPath (), "MonoTests.System.Reflection.ModuleTest");
- [SetUp]
- public void SetUp () {
- while (Directory.Exists (TempFolder))
- TempFolder = Path.Combine (TempFolder, "2");
- Directory.CreateDirectory (TempFolder);
- }
- [TearDown]
- public void TearDown () {
- try {
- // This throws an exception under MS.NET, since the directory contains loaded
- // assemblies.
- Directory.Delete (TempFolder, true);
- }
- catch (Exception) {
- }
- }
- // Some of these tests overlap with the tests for ModuleBuilder
- [Test]
- public void TestGlobalData () {
- string name = "moduletest-assembly";
- string fileName = name + ".dll";
- AssemblyName assemblyName = new AssemblyName();
- assemblyName.Name = name;
- AssemblyBuilder ab
- = Thread.GetDomain().DefineDynamicAssembly(
- assemblyName, AssemblyBuilderAccess.RunAndSave, TempFolder);
- string resfile = Path.Combine (TempFolder, "res");
- using (StreamWriter sw = new StreamWriter (resfile)) {
- sw.WriteLine ("FOO");
- }
- ab.AddResourceFile ("res", "res");
- ModuleBuilder mb = ab.DefineDynamicModule(fileName, fileName);
- mb.DefineInitializedData ("DATA", new byte [100], FieldAttributes.Public);
- mb.DefineInitializedData ("DATA2", new byte [100], FieldAttributes.Public);
- mb.DefineInitializedData ("DATA3", new byte [99], FieldAttributes.Public);
- mb.DefineUninitializedData ("DATA4", 101, FieldAttributes.Public);
- mb.DefineInitializedData ("DATA_PRIVATE", new byte [100], 0);
- mb.CreateGlobalFunctions ();
- ab.Save (fileName);
- Assembly assembly = Assembly.LoadFrom (Path.Combine (TempFolder, fileName));
- Module module = assembly.GetLoadedModules ()[0];
- string[] expectedFieldNames = new string [] {
- "DATA", "DATA2", "DATA3", "DATA4"
- };
- ArrayList fieldNames = new ArrayList ();
- foreach (FieldInfo fi in module.GetFields ()) {
- fieldNames.Add (fi.Name);
- }
- AssertArrayEqualsSorted (expectedFieldNames, fieldNames.ToArray (typeof (string)));
- try {
- module.GetField (null);
- Fail ();
- }
- catch (ArgumentNullException) {
- }
- try {
- module.GetField (null, 0);
- Fail ();
- }
- catch (ArgumentNullException) {
- }
- AssertEquals (module.GetField ("DATA") != null, true);
- AssertEquals (module.GetField ("DATA2") != null, true);
- AssertEquals (module.GetField ("DATA3") != null, true);
- AssertEquals (module.GetField ("DATA4") != null, true);
- AssertEquals (module.GetField ("DATA_PRIVATE"), null);
- AssertEquals (module.GetField ("DATA_PRIVATE", BindingFlags.NonPublic | BindingFlags.Static) != null, true);
- // Check that these methods work correctly on resource modules
- Module m2 = assembly.GetModule ("res");
- AssertEquals (m2 != null, true);
- AssertEquals (m2.GetFields ().Length, 0);
- AssertEquals (m2.GetField ("DATA"), null);
- AssertEquals (m2.GetField ("DATA", BindingFlags.Public), null);
- }
-
- private static void AssertArrayEqualsSorted (Array o1, Array o2) {
- Array s1 = (Array)o1.Clone ();
- Array s2 = (Array)o2.Clone ();
- Array.Sort (s1);
- Array.Sort (s2);
- AssertEquals (s1.Length, s2.Length);
- for (int i = 0; i < s1.Length; ++i)
- AssertEquals (s1.GetValue (i), s2.GetValue (i));
- }
- }
- }
|