b3a9ba8012726d237f2048468e8fee5e77fee8a7
[mono.git] / mcs / class / corlib / Test / System.Reflection / AssemblyTest.cs
1 //
2 // System.Reflection.Assembly Test Cases
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //      Philippe Lavoie (philippe.lavoie@cactus.ca)
7 //      Sebastien Pouliot (sebastien@ximian.com)
8 //      Aleksey Kliger (aleksey@xamarin.com)
9 //
10 // (c) 2003 Ximian, Inc. (http://www.ximian.com)
11 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
12 // Copyright (C) 2015 Xamarin, Inc. (http://www.xamarin.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 using NUnit.Framework;
35 using System;
36 using System.Configuration.Assemblies;
37 using System.Globalization;
38 using System.IO;
39 using System.Reflection;
40 #if !MONOTOUCH && !FULL_AOT_RUNTIME
41 using System.Reflection.Emit;
42 #endif
43 using System.Threading;
44 using System.Runtime.Serialization;
45 using System.Runtime.CompilerServices;
46 using System.Security;
47 using System.Linq;
48 using System.Resources;
49
50 // Used by GetType_TypeForwarder_Nested ()
51 [assembly: System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Globalization.CultureInfo))]
52
53 namespace MonoTests.System.Reflection
54 {
55         [TestFixture]
56         public class AssemblyTest
57         {
58                 static string BaseTempFolder = Path.Combine (Path.GetTempPath (),
59                         "MonoTests.System.Reflection.AssemblyTest");
60                 static string TempFolder;
61
62                 [TestFixtureSetUp]
63                 public void FixtureSetUp ()
64                 {
65                         try {
66                                 // Try to cleanup from any previous NUnit run.
67                                 Directory.Delete (BaseTempFolder, true);
68                         } catch (Exception) {
69                         }
70                 }
71
72                 [SetUp]
73                 public void SetUp ()
74                 {
75                         int i = 0;
76                         do {
77                                 TempFolder = Path.Combine (BaseTempFolder, (++i).ToString());
78                         } while (Directory.Exists (TempFolder));
79                         Directory.CreateDirectory (TempFolder);
80                 }
81
82                 [TearDown]
83                 public void TearDown ()
84                 {
85                         try {
86                                 // This throws an exception under MS.NET and Mono on Windows,
87                                 // since the directory contains loaded assemblies.
88                                 Directory.Delete (TempFolder, true);
89                         } catch (Exception) {
90                         }
91                 }
92
93                 [Test] 
94                 public void CreateInstance() 
95                 {
96                         Type type = typeof (AssemblyTest);
97                         Object obj = type.Assembly.CreateInstance ("MonoTests.System.Reflection.AssemblyTest");
98                         Assert.IsNotNull (obj, "#01");
99                         Assert.AreEqual (GetType (), obj.GetType (), "#02");
100                 }
101
102                 [Test] 
103                 public void CreateInvalidInstance() 
104                 {
105                         Type type = typeof (AssemblyTest);
106                         Object obj = type.Assembly.CreateInstance("NunitTests.ThisTypeDoesNotExist");
107                         Assert.IsNull (obj, "#03");
108                 }
109
110                 [Test] // bug #49114
111                 [ExpectedException (typeof (ArgumentException))]
112                 public void GetType_TypeName_Invalid () 
113                 {
114                         typeof (int).Assembly.GetType ("&blabla", true, true);
115                 }
116
117                 [Test] // bug #17571
118                 [ExpectedException (typeof (ArgumentException))]
119                 public void GetType_Invalid_RefPtr () {
120                         typeof (int).Assembly.GetType ("System.Int32&*", true, true);
121                 }
122
123                 [Test]
124                 [ExpectedException (typeof (ArgumentException))]
125                 public void GetType_Invalid_RefArray () {
126                         typeof (int).Assembly.GetType ("System.Int32&[]", true, true);
127                 }
128
129                 [Test]
130                 [ExpectedException (typeof (ArgumentException))]
131                 public void GetType_Invalid_RefGeneric () {
132                         typeof (int).Assembly.GetType ("System.Tuple`1&[System.Int32]", true, true);
133                 }
134
135                 [Test]
136                 [ExpectedException (typeof (ArgumentException))]
137                 public void GetType_Invalid_PtrGeneric () {
138                         typeof (int).Assembly.GetType ("System.Tuple`1*[System.Int32]", true, true);
139                 }
140
141                 [Test]
142                 public void GetType_ComposeModifiers () {
143                         var a = typeof(int).Assembly;
144
145                         var e1 = typeof (Int32).MakePointerType().MakeByRefType();
146                         var t1 = a.GetType ("System.Int32*&", true, true);
147                         Assert.AreEqual (e1, t1, "#1");
148
149                         var e2 = typeof (Int32).MakeArrayType(2).MakeByRefType();
150                         var t2 = a.GetType ("System.Int32[,]&", true, true);
151                         Assert.AreEqual (e2, t2, "#2");
152
153                         var e3 = typeof (Int32).MakePointerType().MakeArrayType();
154                         var t3 = a.GetType ("System.Int32*[]", true, true);
155                         Assert.AreEqual (e3, t3, "#3");
156
157                         var e4 = typeof (Int32).MakeArrayType().MakePointerType().MakePointerType().MakeArrayType().MakePointerType().MakeByRefType();
158                         var t4 = a.GetType ("System.Int32[]**[]*&", true, true);
159                         Assert.AreEqual (e4, t4, "#4");
160                                 
161                 }
162                 
163                 [Test] // bug #334203
164                 public void GetType_TypeName_AssemblyName ()
165                 {
166                         Assembly a = typeof (int).Assembly;
167                         string typeName = typeof (string).AssemblyQualifiedName;
168                         try {
169                                 a.GetType (typeName, true, false);
170                                 Assert.Fail ("#A1");
171                         } catch (ArgumentException ex) {
172                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#A2");
173                                 Assert.IsNull (ex.InnerException, "#A3");
174                                 Assert.IsNotNull (ex.Message, "#A4");
175                                 Assert.IsNull (ex.ParamName, "#A5");
176                         }
177
178                         Type type = a.GetType (typeName, false);
179                         Assert.IsNull (type, "#B1");
180                         type = a.GetType (typeName, false, true);
181                         Assert.IsNull (type, "#B2");
182                 }
183
184                 [Test]
185                 public void GetType_TypeForwarder_Nested () {
186                         // System.Globalization is a PCL assembly
187                         Type t = typeof (AssemblyTest).Assembly.GetType ("System.Globalization.CultureInfo/Data");
188                         Assert.IsNotNull (t);
189                         Assert.AreEqual ("System.Globalization.CultureInfo+Data", t.FullName);
190                 }
191
192                 [Test]
193                 public void GetEntryAssembly ()
194                 {
195                         // note: only available in default appdomain
196                         // http://weblogs.asp.net/asanto/archive/2003/09/08/26710.aspx
197                         // Not sure we should emulate this behavior.
198 #if __WATCHOS__
199                         Assert.IsNull (Assembly.GetEntryAssembly (), "GetEntryAssembly");
200                         Assert.IsTrue (AppDomain.CurrentDomain.IsDefaultAppDomain (), "!default appdomain");
201 #elif !MONODROID
202                         string fname = AppDomain.CurrentDomain.FriendlyName;
203                         if (fname.EndsWith (".dll")) { // nunit-console
204                                 Assert.IsNull (Assembly.GetEntryAssembly (), "GetEntryAssembly");
205                                 Assert.IsFalse (AppDomain.CurrentDomain.IsDefaultAppDomain (), "!default appdomain");
206                         } else { // gnunit
207                                 Assert.IsNotNull (Assembly.GetEntryAssembly (), "GetEntryAssembly");
208                                 Assert.IsTrue (AppDomain.CurrentDomain.IsDefaultAppDomain (), "!default appdomain");
209                         }
210 #else
211                         Assert.IsNull (Assembly.GetEntryAssembly (), "GetEntryAssembly");
212                         Assert.IsTrue (AppDomain.CurrentDomain.IsDefaultAppDomain (), "!default appdomain");
213 #endif
214                 }
215
216 #if !MONOTOUCH && !FULL_AOT_RUNTIME // Reflection.Emit is not supported.
217                 [Test]
218                 public void GetModules_MissingFile ()
219                 {
220                         AssemblyName newName = new AssemblyName ();
221                         newName.Name = "AssemblyTest";
222
223                         AssemblyBuilder ab = Thread.GetDomain().DefineDynamicAssembly (newName, AssemblyBuilderAccess.RunAndSave, TempFolder);
224
225                         ModuleBuilder mb = ab.DefineDynamicModule ("myDynamicModule1", "myDynamicModule.dll", false);
226
227                         ab.Save ("test_assembly.dll");
228
229                         File.Delete (Path.Combine (TempFolder, "myDynamicModule.dll"));
230
231                         Assembly ass = Assembly.LoadFrom (Path.Combine (TempFolder, "test_assembly.dll"));
232                         try {
233                                 ass.GetModules ();
234                                 Assert.Fail ();
235                         } catch (FileNotFoundException ex) {
236                                 Assert.AreEqual ("myDynamicModule.dll", ex.FileName);
237                         }
238                 }
239 #endif
240
241                 [Category ("NotWorking")]
242                 [Test]
243                 public void Corlib () 
244                 {
245                         Assembly corlib = typeof (int).Assembly;
246                         Assert.IsTrue (corlib.CodeBase.EndsWith ("mscorlib.dll"), "CodeBase");
247                         Assert.IsNull (corlib.EntryPoint, "EntryPoint");
248                         Assert.IsTrue (corlib.EscapedCodeBase.EndsWith ("mscorlib.dll"), "EscapedCodeBase");
249                         Assert.IsNotNull (corlib.Evidence, "Evidence");
250                         Assert.IsTrue (corlib.Location.EndsWith ("mscorlib.dll"), "Location");
251
252                         // corlib doesn't reference anything
253                         Assert.AreEqual (0, corlib.GetReferencedAssemblies ().Length, "GetReferencedAssemblies");
254                         Assert.AreEqual ("mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", corlib.FullName, "FullName");
255                         // not really "true" but it's even more trusted so...
256                         Assert.IsTrue (corlib.GlobalAssemblyCache, "GlobalAssemblyCache");
257                         Assert.AreEqual (0, corlib.HostContext, "HostContext");
258                         Assert.AreEqual ("v2.0.50727", corlib.ImageRuntimeVersion, "ImageRuntimeVersion");
259                         Assert.IsFalse (corlib.ReflectionOnly, "ReflectionOnly");
260                         Assert.AreEqual (0x1, corlib.ManifestModule.MetadataToken);
261                 }
262
263                 [Test]
264                 public void Corlib_test ()
265                 {
266                         Assembly corlib_test = Assembly.GetExecutingAssembly ();
267 #if MONODROID || FULL_AOT_DESKTOP || __WATCHOS__
268                         Assert.IsNull (corlib_test.EntryPoint, "EntryPoint");
269                         Assert.IsNull (corlib_test.Evidence, "Evidence");
270 #elif MOBILE
271                         Assert.IsNotNull (corlib_test.EntryPoint, "EntryPoint");
272                         Assert.IsNull (corlib_test.Evidence, "Evidence");
273 #else
274                         Assert.IsNull (corlib_test.EntryPoint, "EntryPoint");
275                         Assert.IsNotNull (corlib_test.Evidence, "Evidence");
276 #endif
277                         Assert.IsFalse (corlib_test.GlobalAssemblyCache, "GlobalAssemblyCache");
278
279                         Assert.IsTrue (corlib_test.GetReferencedAssemblies ().Length > 0, "GetReferencedAssemblies");
280                         Assert.AreEqual (0, corlib_test.HostContext, "HostContext");
281                         Assert.AreEqual ("v4.0.30319", corlib_test.ImageRuntimeVersion, "ImageRuntimeVersion");
282
283                         Assert.IsNotNull (corlib_test.ManifestModule, "ManifestModule");
284                         Assert.IsFalse (corlib_test.ReflectionOnly, "ReflectionOnly");
285                 }
286
287                 [Test]
288                 public void GetAssembly ()
289                 {
290                         Assert.IsTrue (Assembly.GetAssembly (typeof (int)).FullName.StartsWith ("mscorlib"), "GetAssembly(int)");
291                         Assert.AreEqual (this.GetType ().Assembly.FullName, Assembly.GetAssembly (this.GetType ()).FullName, "GetAssembly(this)");
292                 }
293
294                 [Test]
295                 public void GetFile_Null ()
296                 {
297                         try {
298                                 Assembly.GetExecutingAssembly ().GetFile (null);
299                                 Assert.Fail ("#1");
300                         } catch (ArgumentNullException ex) {
301                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
302                                 Assert.IsNull (ex.InnerException, "#3");
303                                 Assert.IsNotNull (ex.Message, "#4");
304                                 Assert.IsNull (ex.ParamName, "#5");
305                         }
306                 }
307
308                 [Test]
309                 public void GetFile_Empty ()
310                 {
311                         try {
312                                 Assembly.GetExecutingAssembly ().GetFile (
313                                         String.Empty);
314                                 Assert.Fail ("#1");
315                         } catch (ArgumentException ex) {
316                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#2");
317                                 Assert.IsNull (ex.InnerException, "#3");
318                                 Assert.IsNotNull (ex.Message, "#4");
319                                 Assert.IsNull (ex.ParamName, "#5");
320                         }
321                 }
322
323                 [Test]
324                 [Category ("AndroidNotWorking")] // Assemblies in Xamarin.Android cannot be accessed as FileStream
325                 public void GetFiles_False ()
326                 {
327                         Assembly corlib = typeof (int).Assembly;
328                         FileStream[] fss = corlib.GetFiles ();
329                         Assert.AreEqual (fss.Length, corlib.GetFiles (false).Length, "corlib.GetFiles (false)");
330
331                         Assembly corlib_test = Assembly.GetExecutingAssembly ();
332                         fss = corlib_test.GetFiles ();
333                         Assert.AreEqual (fss.Length, corlib_test.GetFiles (false).Length, "test.GetFiles (false)");
334                 }
335
336                 [Test]
337                 [Category ("AndroidNotWorking")] // Assemblies in Xamarin.Android cannot be accessed as FileStream
338                 public void GetFiles_True ()
339                 {
340                         Assembly corlib = typeof (int).Assembly;
341                         FileStream[] fss = corlib.GetFiles ();
342                         Assert.IsTrue (fss.Length <= corlib.GetFiles (true).Length, "corlib.GetFiles (true)");
343
344                         Assembly corlib_test = Assembly.GetExecutingAssembly ();
345                         fss = corlib_test.GetFiles ();
346                         Assert.IsTrue (fss.Length <= corlib_test.GetFiles (true).Length, "test.GetFiles (true)");
347                 }
348
349                 [Test]
350                 public void GetManifestResourceStream_Name_Empty ()
351                 {
352                         Assembly corlib = typeof (int).Assembly;
353
354                         try {
355                                 corlib.GetManifestResourceStream (string.Empty);
356                                 Assert.Fail ("#A1");
357                         } catch (ArgumentException ex) {
358                                 // String cannot have zero length
359                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#A2");
360                                 Assert.IsNull (ex.InnerException, "#A3");
361                                 Assert.IsNotNull (ex.Message, "#A4");
362                         }
363
364                         corlib.GetManifestResourceStream (typeof (int), string.Empty);
365
366                         try {
367                                 corlib.GetManifestResourceStream ((Type) null, string.Empty);
368                                 Assert.Fail ("#B1");
369                         } catch (ArgumentException ex) {
370                                 // String cannot have zero length
371                                 Assert.AreEqual (typeof (ArgumentException), ex.GetType (), "#B2");
372                                 Assert.IsNull (ex.InnerException, "#B3");
373                                 Assert.IsNotNull (ex.Message, "#B4");
374                         }
375                 }
376
377                 [Test]
378                 public void GetManifestResourceStream_Name_Null ()
379                 {
380                         Assembly corlib = typeof (int).Assembly;
381
382                         try {
383                                 corlib.GetManifestResourceStream ((string) null);
384                                 Assert.Fail ("#A1");
385                         } catch (ArgumentNullException ex) {
386                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#A2");
387                                 Assert.IsNull (ex.InnerException, "#A3");
388                                 Assert.IsNotNull (ex.Message, "#A4");
389                         }
390
391                         corlib.GetManifestResourceStream (typeof (int), (string) null);
392
393                         try {
394                                 corlib.GetManifestResourceStream ((Type) null, (string) null);
395                                 Assert.Fail ("#B1");
396                         } catch (ArgumentNullException ex) {
397                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#B2");
398                                 Assert.IsNull (ex.InnerException, "#B3");
399                                 Assert.IsNotNull (ex.Message, "#B4");
400                                 Assert.IsNotNull (ex.ParamName, "#B5");
401                                 Assert.AreEqual ("type", ex.ParamName, "#B6");
402                         }
403                 }
404
405                 [Test]
406                 public void IsDefined_AttributeType_Null ()
407                 {
408                         Assembly corlib = typeof (int).Assembly;
409
410                         try {
411                                 corlib.IsDefined ((Type) null, false);
412                                 Assert.Fail ("#1");
413                         } catch (ArgumentNullException ex) {
414                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
415                                 Assert.IsNull (ex.InnerException, "#3");
416                                 Assert.IsNotNull (ex.Message, "#4");
417                                 Assert.IsNotNull (ex.ParamName, "#5");
418                                 Assert.AreEqual ("attributeType", ex.ParamName, "#6");
419                         }
420                 }
421
422                 [Test] // bug #78517
423                 public void LoadFrom_Empty_Assembly ()
424                 {
425                         string tempFile = Path.Combine (TempFolder, Path.GetRandomFileName ());
426                         File.CreateText (tempFile).Close ();
427
428                         try {
429                                 Assembly.LoadFrom (tempFile);
430                                 Assert.Fail ("#1");
431                         } catch (BadImageFormatException ex) {
432                                 Assert.IsNull (ex.InnerException, "#2");
433                         }
434                 }
435
436                 [Test] // bug #78517
437                 public void LoadFrom_Invalid_Assembly ()
438                 {
439                         string tempFile = Path.Combine (TempFolder, Path.GetRandomFileName ());
440                         using (StreamWriter sw = File.CreateText (tempFile)) {
441                                 sw.WriteLine ("foo");
442                                 sw.Close ();
443                         }
444
445                         try {
446                                 Assembly.LoadFrom (tempFile);
447                                 Assert.Fail ("#1");
448                         } catch (BadImageFormatException ex) {
449                                 Assert.IsNull (ex.InnerException, "#2");
450                         }
451                 }
452
453                 [Test]
454                 public void LoadFrom_NonExisting_Assembly ()
455                 {
456                         string tempFile = Path.Combine (TempFolder, Path.GetRandomFileName ());
457
458                         try {
459                                 Assembly.LoadFrom (tempFile);
460                                 Assert.Fail ("#1");
461                         } catch (FileNotFoundException ex) {
462                                 Assert.IsNull (ex.InnerException, "#2");
463                         }
464                 }
465
466                 [Test]
467                 public void LoadWithPartialName ()
468                 {
469 // FIXME?
470 // So the problem here is that if we load an assembly
471 // in a fully aot mode and then cannot load the
472 // dylib, we will assert. This test is incompatible
473 // with the semantics of aot'ed assembly loading, as
474 // aot may assert when loading. This assumes that it's
475 // safe to greedly load everything.
476                         var names = new string[] { Assembly.GetCallingAssembly ().GetName ().Name };
477
478                         foreach (string s in names)
479                                 if (Assembly.LoadWithPartialName (s) != null)
480                                         return;
481                         Assert.Fail ("Was not able to load any corlib test");
482                 }
483
484                 [Test]
485                 public void GetObjectData_Info_Null ()
486                 {
487                         Assembly corlib = typeof (int).Assembly;
488                         try {
489                                 corlib.GetObjectData (null, new StreamingContext (
490                                         StreamingContextStates.All));
491                                 Assert.Fail ("#1");
492                         } catch (ArgumentNullException ex) {
493                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
494                                 Assert.IsNull (ex.InnerException, "#3");
495                                 Assert.IsNotNull (ex.Message, "#4");
496                                 Assert.IsNotNull (ex.ParamName, "#5");
497                                 Assert.AreEqual ("info", ex.ParamName, "#6");
498                         }
499                 }
500
501                 [Test]
502                 public void GetReferencedAssemblies ()
503                 {
504                         Assembly corlib_test = Assembly.GetExecutingAssembly ();
505                         AssemblyName[] names = corlib_test.GetReferencedAssemblies ();
506                         foreach (AssemblyName an in names) {
507                                 Assert.IsNull (an.CodeBase, "CodeBase");
508                                 Assert.IsNotNull (an.CultureInfo, "CultureInfo");
509                                 Assert.IsNull (an.EscapedCodeBase, "EscapedCodeBase");
510                                 Assert.AreEqual (AssemblyNameFlags.None, an.Flags, "Flags");
511                                 Assert.IsNotNull (an.FullName, "FullName");
512                                 Assert.AreEqual (AssemblyHashAlgorithm.SHA1, an.HashAlgorithm, "HashAlgorithm");
513                                 Assert.IsNull (an.KeyPair, "KeyPair");
514                                 Assert.IsNotNull (an.Name, "Name");
515                                 Assert.IsNotNull (an.Version, "Version");
516                                 Assert.AreEqual (AssemblyVersionCompatibility.SameMachine, 
517                                         an.VersionCompatibility, "VersionCompatibility");
518                         }
519                 }
520
521 #if !MONOTOUCH && !FULL_AOT_RUNTIME // Reflection.Emit is not supported.
522                 [Test]
523                 public void Location_Empty() {
524                         string assemblyFileName = Path.Combine (
525                                 TempFolder, "AssemblyLocation.dll");
526
527                         AssemblyName assemblyName = new AssemblyName ();
528                         assemblyName.Name = "AssemblyLocation";
529
530                         AssemblyBuilder ab = AppDomain.CurrentDomain
531                                 .DefineDynamicAssembly (assemblyName,
532                                 AssemblyBuilderAccess.Save,
533                                 TempFolder,
534                                 AppDomain.CurrentDomain.Evidence);
535                         ab.Save (Path.GetFileName (assemblyFileName));
536
537                         using (FileStream fs = File.OpenRead (assemblyFileName)) {
538                                 byte[] buffer = new byte[fs.Length];
539                                 fs.Read (buffer, 0, buffer.Length);
540                                 Assembly assembly = Assembly.Load (buffer);
541                                 Assert.AreEqual (string.Empty, assembly.Location);
542                                 fs.Close ();
543                         }
544                 }
545
546                 [Test]
547                 public void SateliteAssemblyForInMemoryAssembly ()
548                 {
549                         string assemblyFileName = Path.Combine (
550                                 TempFolder, "AssemblyLocation1.dll");
551
552                         AssemblyName assemblyName = new AssemblyName ();
553                         assemblyName.Name = "AssemblyLocation1";
554
555                         AssemblyBuilder ab = AppDomain.CurrentDomain
556                                 .DefineDynamicAssembly (assemblyName,
557                                         AssemblyBuilderAccess.Save,
558                                         TempFolder);
559
560                         ModuleBuilder moduleBuilder = ab.DefineDynamicModule (assemblyName.Name, assemblyName.Name + ".dll");
561                         TypeBuilder typeBuilder = moduleBuilder.DefineType ("Program", TypeAttributes.Public);
562
563                         MethodBuilder methodBuilder = typeBuilder.DefineMethod ("TestCall", MethodAttributes.Public | MethodAttributes.Static, typeof(void), Type.EmptyTypes);
564                         ILGenerator gen = methodBuilder.GetILGenerator ();
565
566                         //
567                         //      var resourceManager = new ResourceManager (typeof (Program));
568                         //      resourceManager.GetString ("test");
569                         //
570                         gen.Emit (OpCodes.Ldtoken, typeBuilder);
571                         gen.Emit (OpCodes.Call, typeof(Type).GetMethod ("GetTypeFromHandle"));
572                         gen.Emit (OpCodes.Newobj, typeof(ResourceManager).GetConstructor (new Type[] { typeof(Type) }));
573                         gen.Emit (OpCodes.Ldstr, "test");
574                         gen.Emit (OpCodes.Callvirt, typeof(ResourceManager).GetMethod ("GetString", new Type[] { typeof(string) }));
575                         gen.Emit (OpCodes.Pop);
576                         gen.Emit (OpCodes.Ret);
577
578                         typeBuilder.CreateType ();
579
580                         ab.Save (Path.GetFileName (assemblyFileName));
581
582                         using (FileStream fs = File.OpenRead (assemblyFileName)) {
583                                 byte[] buffer = new byte[fs.Length];
584                                 fs.Read (buffer, 0, buffer.Length);
585                                 Assembly assembly = Assembly.Load (buffer);
586
587                                 var mm = assembly.GetType ("Program").GetMethod ("TestCall");
588                                 try {
589                                         mm.Invoke (null, null);
590                                         Assert.Fail ();
591                                 } catch (TargetInvocationException e) {
592                                         Assert.IsTrue (e.InnerException is MissingManifestResourceException);
593                                 }
594
595                                 fs.Close ();
596                         }
597                 }
598
599                 [Test]
600                 [Category ("NotWorking")]
601                 public void bug78464 ()
602                 {
603                         string assemblyFileName = Path.Combine (
604                                 TempFolder, "bug78464.dll");
605
606                         // execute test in separate appdomain to allow assembly to be unloaded
607                         AppDomain testDomain = CreateTestDomain (AppDomain.CurrentDomain.BaseDirectory, false);
608                         CrossDomainTester crossDomainTester = CreateCrossDomainTester (testDomain);
609                         try {
610                                 crossDomainTester.bug78464 (assemblyFileName);
611                         } finally {
612                                 AppDomain.Unload (testDomain);
613                         }
614                 }
615
616                 [Test]
617                 [Category("MobileNotWorking")]
618                 public void bug78465 ()
619                 {
620                         string assemblyFileName = Path.Combine (
621                                 TempFolder, "bug78465.dll");
622
623                         AssemblyName assemblyName = new AssemblyName ();
624                         assemblyName.Name = "bug78465";
625
626                         AssemblyBuilder ab = AppDomain.CurrentDomain
627                                 .DefineDynamicAssembly (assemblyName,
628                                 AssemblyBuilderAccess.Save,
629                                 Path.GetDirectoryName (assemblyFileName),
630                                 AppDomain.CurrentDomain.Evidence);
631                         ab.Save (Path.GetFileName (assemblyFileName));
632
633                         using (FileStream fs = File.OpenRead (assemblyFileName)) {
634                                 byte[] buffer = new byte[fs.Length];
635                                 fs.Read (buffer, 0, buffer.Length);
636                                 Assembly assembly = Assembly.Load (buffer);
637                                 Assert.AreEqual (string.Empty, assembly.Location, "#1");
638                                 fs.Close ();
639                         }
640
641                         AppDomain testDomain = CreateTestDomain (AppDomain.CurrentDomain.BaseDirectory, false);
642                         CrossDomainTester crossDomainTester = CreateCrossDomainTester (testDomain);
643                         try {
644                                 crossDomainTester.bug78465 (assemblyFileName);
645                         } finally {
646                                 AppDomain.Unload (testDomain);
647                         }
648                 }
649
650                 [Test]
651                 [Category("MobileNotWorking")]
652                 public void bug78468 ()
653                 {
654                         string assemblyFileNameA = Path.Combine (TempFolder,
655                                 "bug78468a.dll");
656                         string resourceFileName = Path.Combine (TempFolder,
657                                 "readme.txt");
658
659                         using (StreamWriter sw = File.CreateText (resourceFileName)) {
660                                 sw.WriteLine ("FOO");
661                                 sw.Close ();
662                         }
663
664                         AssemblyName assemblyName = new AssemblyName ();
665                         assemblyName.Name = "bug78468a";
666
667                         AssemblyBuilder ab = AppDomain.CurrentDomain
668                                 .DefineDynamicAssembly (assemblyName,
669                                 AssemblyBuilderAccess.Save,
670                                 TempFolder,
671                                 AppDomain.CurrentDomain.Evidence);
672                         ab.AddResourceFile ("read", "readme.txt");
673                         ab.Save (Path.GetFileName (assemblyFileNameA));
674
675                         Assembly assembly;
676
677                         using (FileStream fs = File.OpenRead (assemblyFileNameA)) {
678                                 byte[] buffer = new byte[fs.Length];
679                                 fs.Read (buffer, 0, buffer.Length);
680                                 assembly = Assembly.Load (buffer);
681                                 fs.Close ();
682                         }
683
684                         Assert.AreEqual (string.Empty, assembly.Location, "#A1");
685                         string[] resNames = assembly.GetManifestResourceNames ();
686                         Assert.IsNotNull (resNames, "#A2");
687                         Assert.AreEqual (1, resNames.Length, "#A3");
688                         Assert.AreEqual ("read", resNames[0], "#A4");
689                         ManifestResourceInfo resInfo = assembly.GetManifestResourceInfo ("read");
690                         Assert.IsNotNull (resInfo, "#A5");
691                         Assert.AreEqual ("readme.txt", resInfo.FileName, "#A6");
692                         Assert.IsNull (resInfo.ReferencedAssembly, "#A7");
693                         Assert.AreEqual ((ResourceLocation) 0, resInfo.ResourceLocation, "#A8");
694                         try {
695                                 assembly.GetManifestResourceStream ("read");
696                                 Assert.Fail ("#A9");
697                         } catch (FileNotFoundException) {
698                         }
699                         try {
700                                 assembly.GetFile ("readme.txt");
701                                 Assert.Fail ("#A10");
702                         } catch (FileNotFoundException) {
703                         }
704
705                         string assemblyFileNameB = Path.Combine (TempFolder,
706                                 "bug78468b.dll");
707
708                         AppDomain testDomain = CreateTestDomain (AppDomain.CurrentDomain.BaseDirectory, false);
709                         CrossDomainTester crossDomainTester = CreateCrossDomainTester (testDomain);
710                         try {
711                                 crossDomainTester.bug78468 (assemblyFileNameB);
712                         } finally {
713                                 AppDomain.Unload (testDomain);
714                         }
715                 }
716
717                 [Test]
718                 [Category ("NotWorking")]
719                 public void ReflectionOnlyLoad ()
720                 {
721                         Assembly assembly = Assembly.ReflectionOnlyLoad (typeof (AssemblyTest).Assembly.FullName);
722                         
723                         Assert.IsNotNull (assembly);
724                         Assert.IsTrue (assembly.ReflectionOnly);
725                 }
726
727                 [Test]
728                 [Category ("AndroidNotWorking")] // Xamarin.Android assemblies are bundled so they don't exist in the file system.
729                 public void ReflectionOnlyLoadFrom ()
730                 {
731                         string loc = typeof (AssemblyTest).Assembly.Location;
732                         string filename = Path.GetFileName (loc);
733                         Assembly assembly = Assembly.ReflectionOnlyLoadFrom (loc);
734
735                         Assert.IsNotNull (assembly);
736                         Assert.IsTrue (assembly.ReflectionOnly);
737                 }
738
739                 [Test]
740                 [ExpectedException (typeof (ArgumentException))]
741                 public void CreateInstanceOnRefOnly ()
742                 {
743                         Assembly assembly = Assembly.ReflectionOnlyLoad (typeof (AssemblyTest).Assembly.FullName);
744                         assembly.CreateInstance ("MonoTests.System.Reflection.AssemblyTest");
745                 }
746
747                 [Test]
748                 [Category ("NotWorking")] // patch for bug #79720 must be committed first
749                 public void Load_Culture ()
750                 {
751                         string tempDir = TempFolder;
752                         string cultureTempDir = Path.Combine (tempDir, "nl-BE");
753                         if (!Directory.Exists (cultureTempDir))
754                                 Directory.CreateDirectory (cultureTempDir);
755                         cultureTempDir = Path.Combine (tempDir, "en-US");
756                         if (!Directory.Exists (cultureTempDir))
757                                 Directory.CreateDirectory (cultureTempDir);
758
759
760                         AppDomain ad = CreateTestDomain (tempDir, true);
761                         try {
762                                 CrossDomainTester cdt = CreateCrossDomainTester (ad);
763
764                                 // PART A
765
766                                 AssemblyName aname = new AssemblyName ();
767                                 aname.Name = "culturea";
768                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "culturea.dll"));
769
770                                 aname = new AssemblyName ();
771                                 aname.Name = "culturea";
772                                 Assert.IsTrue (cdt.AssertLoad(aname), "#A1");
773
774                                 aname = new AssemblyName ();
775                                 aname.Name = "culturea";
776                                 aname.CultureInfo = new CultureInfo ("nl-BE");
777                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#A2");
778
779                                 aname = new AssemblyName ();
780                                 aname.Name = "culturea";
781                                 aname.CultureInfo = CultureInfo.InvariantCulture;
782                                 Assert.IsTrue (cdt.AssertLoad(aname), "#A3");
783
784                                 // PART B
785
786                                 aname = new AssemblyName ();
787                                 aname.Name = "cultureb";
788                                 aname.CultureInfo = new CultureInfo ("nl-BE");
789                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "cultureb.dll"));
790
791                                 aname = new AssemblyName ();
792                                 aname.Name = "cultureb";
793                                 aname.CultureInfo = new CultureInfo ("nl-BE");
794                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#B1");
795
796                                 aname = new AssemblyName ();
797                                 aname.Name = "cultureb";
798                                 Assert.IsTrue (cdt.AssertLoad (aname), "#B2");
799
800                                 aname = new AssemblyName ();
801                                 aname.Name = "cultureb";
802                                 aname.CultureInfo = new CultureInfo ("en-US");
803                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#B3");
804
805                                 // PART C
806
807                                 aname = new AssemblyName ();
808                                 aname.Name = "culturec";
809                                 aname.CultureInfo = new CultureInfo ("nl-BE");
810                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "nl-BE/culturec.dll"));
811
812                                 aname = new AssemblyName ();
813                                 aname.Name = "culturec";
814                                 aname.CultureInfo = new CultureInfo ("nl-BE");
815                                 Assert.IsTrue (cdt.AssertLoad (aname), "#C1");
816
817                                 aname = new AssemblyName ();
818                                 aname.Name = "culturec";
819                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#C2");
820
821                                 aname = new AssemblyName ();
822                                 aname.Name = "culturec";
823                                 aname.CultureInfo = CultureInfo.InvariantCulture;
824                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#C3");
825
826                                 // PART D
827
828                                 aname = new AssemblyName ();
829                                 aname.Name = "cultured";
830                                 aname.CultureInfo = new CultureInfo ("nl-BE");
831                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "en-US/cultured.dll"));
832
833                                 aname = new AssemblyName ();
834                                 aname.Name = "cultured";
835                                 aname.CultureInfo = new CultureInfo ("nl-BE");
836                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#D1");
837
838                                 aname = new AssemblyName ();
839                                 aname.Name = "cultured";
840                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#D2");
841
842                                 aname = new AssemblyName ();
843                                 aname.Name = "cultured";
844                                 aname.CultureInfo = CultureInfo.InvariantCulture;
845                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#D3");
846                         } finally {
847                                 AppDomain.Unload (ad);
848                         }
849                 }
850
851                 [Test] // bug #79712
852                 [Category ("NotWorking")] // in non-default domain, MS throws FileNotFoundException
853                 public void Load_Culture_Mismatch ()
854                 {
855                         string tempDir = TempFolder;
856                         string cultureTempDir = Path.Combine (tempDir, "en-US");
857                         if (!Directory.Exists (cultureTempDir))
858                                 Directory.CreateDirectory (cultureTempDir);
859
860                         AppDomain ad = CreateTestDomain (tempDir, true);
861                         try {
862                                 CrossDomainTester cdt = CreateCrossDomainTester (ad);
863
864                                 // PART A
865
866                                 AssemblyName aname = new AssemblyName ();
867                                 aname.Name = "bug79712a";
868                                 aname.CultureInfo = new CultureInfo ("nl-BE");
869                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "bug79712a.dll"));
870
871                                 aname = new AssemblyName ();
872                                 aname.Name = "bug79712a";
873                                 aname.CultureInfo = CultureInfo.InvariantCulture;
874                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#A1");
875
876                                 // PART B
877
878                                 aname = new AssemblyName ();
879                                 aname.Name = "bug79712b";
880                                 aname.CultureInfo = new CultureInfo ("nl-BE");
881                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "en-US/bug79712b.dll"));
882
883                                 aname = new AssemblyName ();
884                                 aname.Name = "bug79712b";
885                                 aname.CultureInfo = new CultureInfo ("en-US");
886                                 Assert.IsTrue (cdt.AssertFileNotFoundException (aname), "#B1");
887                         } finally {
888                                 AppDomain.Unload (ad);
889                         }
890                 }
891
892
893                 [Test] // bug #79715
894                 [Category("MobileNotWorking")]
895                 public void Load_PartialVersion ()
896                 {
897                         string tempDir = TempFolder;
898
899                         AppDomain ad = CreateTestDomain (tempDir, true);
900                         try {
901                                 CrossDomainTester cdt = CreateCrossDomainTester (ad);
902
903                                 AssemblyName aname = new AssemblyName ();
904                                 aname.Name = "bug79715";
905                                 aname.Version = new Version (1, 2, 3, 4);
906                                 cdt.GenerateAssembly (aname, Path.Combine (tempDir, "bug79715.dll"));
907
908                                 aname = new AssemblyName ();
909                                 aname.Name = "bug79715";
910                                 aname.Version = new Version (1, 2);
911                                 Assert.IsTrue (cdt.AssertLoad (aname), "#A1");
912                                 Assert.IsTrue (cdt.AssertLoad (aname.FullName), "#A2");
913
914                                 aname = new AssemblyName ();
915                                 aname.Name = "bug79715";
916                                 aname.Version = new Version (1, 2, 3);
917                                 Assert.IsTrue (cdt.AssertLoad (aname), "#B1");
918                                 Assert.IsTrue (cdt.AssertLoad (aname.FullName), "#B2");
919
920                                 aname = new AssemblyName ();
921                                 aname.Name = "bug79715";
922                                 aname.Version = new Version (1, 2, 3, 4);
923                                 Assert.IsTrue (cdt.AssertLoad (aname), "#C1");
924                                 Assert.IsTrue (cdt.AssertLoad (aname.FullName), "#C2");
925                         } finally {
926                                 AppDomain.Unload (ad);
927                         }
928                 }
929
930                 private static AppDomain CreateTestDomain (string baseDirectory, bool assemblyResolver)
931                 {
932                         AppDomainSetup setup = new AppDomainSetup ();
933                         setup.ApplicationBase = baseDirectory;
934                         setup.ApplicationName = "testdomain";
935
936                         AppDomain ad = AppDomain.CreateDomain ("testdomain", 
937                                 AppDomain.CurrentDomain.Evidence, setup);
938
939                         if (assemblyResolver) {
940                                 Assembly ea = Assembly.GetExecutingAssembly ();
941                                 ad.CreateInstanceFrom (ea.CodeBase,
942                                         typeof (AssemblyResolveHandler).FullName,
943                                         false,
944                                         BindingFlags.Public | BindingFlags.Instance,
945                                         null,
946                                         new object [] { ea.Location, ea.FullName },
947                                         CultureInfo.InvariantCulture,
948                                         null,
949                                         null);
950                         }
951
952                         return ad;
953                 }
954
955                 private static CrossDomainTester CreateCrossDomainTester (AppDomain domain)
956                 {
957                         Type testerType = typeof (CrossDomainTester);
958                         return (CrossDomainTester) domain.CreateInstanceAndUnwrap (
959                                 testerType.Assembly.FullName, testerType.FullName, false,
960                                 BindingFlags.Public | BindingFlags.Instance, null, new object[0],
961                                 CultureInfo.InvariantCulture, new object[0], null);
962                 }
963
964                 private class CrossDomainTester : MarshalByRefObject
965                 {
966                         public void GenerateAssembly (AssemblyName aname, string path)
967                         {
968                                 AssemblyBuilder ab = AppDomain.CurrentDomain.DefineDynamicAssembly (
969                                         aname, AssemblyBuilderAccess.Save, Path.GetDirectoryName (path));
970                                 ab.Save (Path.GetFileName (path));
971                         }
972
973                         public void Load (AssemblyName assemblyRef)
974                         {
975                                 Assembly.Load (assemblyRef);
976                         }
977
978                         public void LoadFrom (string assemblyFile)
979                         {
980                                 Assembly.LoadFrom (assemblyFile);
981                         }
982
983                         public bool AssertLoad (AssemblyName assemblyRef)
984                         {
985                                 try {
986                                         Assembly.Load (assemblyRef);
987                                         return true;
988                                 } catch {
989                                         return false;
990                                 }
991                         }
992
993                         public bool AssertLoad (string assemblyString)
994                         {
995                                 try {
996                                         Assembly.Load (assemblyString);
997                                         return true;
998                                 } catch {
999                                         return false;
1000                                 }
1001                         }
1002
1003                         public bool AssertFileLoadException (AssemblyName assemblyRef)
1004                         {
1005                                 try {
1006                                         Assembly.Load (assemblyRef);
1007                                         return false;
1008                                 } catch (FileLoadException) {
1009                                         return true;
1010                                 }
1011                         }
1012
1013                         public bool AssertFileNotFoundException (AssemblyName assemblyRef)
1014                         {
1015                                 try {
1016                                         Assembly.Load (assemblyRef);
1017                                         return false;
1018                                 } catch (FileNotFoundException) {
1019                                         return true;
1020                                 }
1021                         }
1022
1023                         public void bug78464 (string assemblyFileName)
1024                         {
1025                                 AssemblyName assemblyName = new AssemblyName ();
1026                                 assemblyName.Name = "bug78464";
1027
1028                                 AssemblyBuilder ab = AppDomain.CurrentDomain
1029                                         .DefineDynamicAssembly (assemblyName,
1030                                         AssemblyBuilderAccess.Save,
1031                                         Path.GetDirectoryName (assemblyFileName),
1032                                         AppDomain.CurrentDomain.Evidence);
1033                                 ab.Save (Path.GetFileName (assemblyFileName));
1034
1035                                 Assembly assembly;
1036
1037                                 using (FileStream fs = File.OpenRead (assemblyFileName)) {
1038                                         byte[] buffer = new byte[fs.Length];
1039                                         fs.Read (buffer, 0, buffer.Length);
1040                                         assembly = Assembly.Load (buffer);
1041                                         fs.Close ();
1042                                 }
1043
1044                                 Assert.AreEqual (string.Empty, assembly.Location, "#1");
1045
1046                                 assembly = Assembly.LoadFrom (assemblyFileName, AppDomain.CurrentDomain.Evidence);
1047                                 Assert.IsFalse (assembly.Location == string.Empty, "#2");
1048                                 Assert.AreEqual (Path.GetFileName (assemblyFileName), Path.GetFileName(assembly.Location), "#3");
1049                                 // note: we cannot check if directory names match, as MS.NET seems to 
1050                                 // convert directory part of assembly location to lowercase
1051                                 Assert.IsFalse (Path.GetDirectoryName(assembly.Location) == string.Empty, "#4");
1052                         }
1053
1054                         public void bug78465 (string assemblyFileName)
1055                         {
1056                                 Assembly assembly = Assembly.LoadFrom (assemblyFileName, AppDomain.CurrentDomain.Evidence);
1057                                 Assert.IsFalse (assembly.Location == string.Empty, "#2");
1058                                 Assert.AreEqual (Path.GetFileName (assemblyFileName), Path.GetFileName (assembly.Location), "#3");
1059                                 // note: we cannot check if directory names match, as MS.NET seems to 
1060                                 // convert directory part of assembly location to lowercase
1061                                 Assert.IsFalse (Path.GetDirectoryName (assembly.Location) == string.Empty, "#4");
1062                         }
1063
1064                         public void bug78468 (string assemblyFileName)
1065                         {
1066                                 AssemblyName assemblyName = new AssemblyName ();
1067                                 assemblyName.Name = "bug78468b";
1068
1069                                 AssemblyBuilder ab = AppDomain.CurrentDomain
1070                                         .DefineDynamicAssembly (assemblyName,
1071                                         AssemblyBuilderAccess.Save,
1072                                         Path.GetDirectoryName (assemblyFileName),
1073                                         AppDomain.CurrentDomain.Evidence);
1074                                 ab.AddResourceFile ("read", "readme.txt");
1075                                 ab.Save (Path.GetFileName (assemblyFileName));
1076
1077                                 Assembly assembly = Assembly.LoadFrom (assemblyFileName, AppDomain.CurrentDomain.Evidence);
1078                                 Assert.IsTrue (assembly.Location != string.Empty, "#B1");
1079                                 string[] resNames = assembly.GetManifestResourceNames ();
1080                                 Assert.IsNotNull (resNames, "#B2");
1081                                 Assert.AreEqual (1, resNames.Length, "#B3");
1082                                 Assert.AreEqual ("read", resNames[0], "#B4");
1083                                 ManifestResourceInfo resInfo = assembly.GetManifestResourceInfo ("read");
1084                                 Assert.IsNotNull (resInfo, "#B5");
1085                                 Assert.AreEqual ("readme.txt", resInfo.FileName, "#B6");
1086                                 Assert.IsNull (resInfo.ReferencedAssembly, "#B7");
1087                                 Assert.AreEqual ((ResourceLocation) 0, resInfo.ResourceLocation, "#B8");
1088                                 Stream s = assembly.GetManifestResourceStream ("read");
1089                                 Assert.IsNotNull (s, "#B9");
1090                                 s.Close ();
1091                                 s = assembly.GetFile ("readme.txt");
1092                                 Assert.IsNotNull (s, "#B10");
1093                                 s.Close ();
1094                         }
1095                 }
1096
1097                 [Test]
1098                 public void bug79872 ()
1099                 {
1100                         string outdir = TempFolder;
1101
1102                         AssemblyName an = new AssemblyName ();
1103                         an.Name = "bug79872";
1104                         AssemblyBuilder ab = AppDomain.CurrentDomain.DefineDynamicAssembly (an, AssemblyBuilderAccess.Save, outdir);
1105                         string dllname = "bug79872.dll";
1106                         ModuleBuilder mb1 = ab.DefineDynamicModule ("bug79872", dllname);
1107                         string netmodule = "bug79872.netmodule";
1108                         ModuleBuilder mb2 = ab.DefineDynamicModule (netmodule, netmodule);
1109                         TypeBuilder a1 = mb2.DefineType ("A");
1110                         a1.CreateType ();
1111                         ab.Save (dllname);
1112
1113                         bool ok = true;
1114                         try {
1115                                 Assembly.LoadFrom (Path.Combine (outdir, dllname));
1116                         } catch {
1117                                 ok = false;
1118                         }
1119                         Assert.IsTrue (ok, "Should load a .NET metadata file with an assembly manifest");
1120
1121                         ok = false;
1122                         try {
1123                                 Assembly.LoadFrom (Path.Combine (outdir, netmodule));
1124                         } catch (BadImageFormatException) {
1125                                 ok = true; // mono and .net 2.0 throw this
1126                         } catch (FileLoadException) {
1127                                 ok = true; // .net 1.1 throws this
1128                         } catch {
1129                                 // swallow the rest
1130                         }
1131                         Assert.IsTrue (ok, "Complain on loading a .NET metadata file without an assembly manifest");
1132                 }
1133 #endif
1134
1135                 [Test]
1136                 public void ManifestModule ()
1137                 {
1138                         Assembly assembly = typeof (int).Assembly;
1139                         Module module = assembly.ManifestModule;
1140                         Assert.IsNotNull (module, "#1");
1141
1142                         Assert.AreEqual ("MonoModule", module.GetType ().Name, "#2");
1143
1144 #if !MONOTOUCH && !FULL_AOT_RUNTIME
1145                         Assert.AreEqual ("mscorlib.dll", module.Name, "#3");
1146 #endif
1147                         Assert.IsFalse (module.IsResource (), "#4");
1148                         Assert.IsTrue (assembly.GetModules ().Length > 0, "#5");
1149                         Assert.AreSame (module, assembly.GetModules () [0], "#6");
1150                         Assert.AreSame (module, assembly.ManifestModule, "#7");
1151                 }
1152
1153
1154                 [Serializable ()]
1155                 private class AssemblyResolveHandler
1156                 {
1157                         public AssemblyResolveHandler (string assemblyFile, string assemblyName)
1158                         {
1159                                 _assemblyFile = assemblyFile;
1160                                 _assemblyName = assemblyName;
1161
1162                                 AppDomain.CurrentDomain.AssemblyResolve +=
1163                                         new ResolveEventHandler (ResolveAssembly);
1164                         }
1165
1166                         private Assembly ResolveAssembly (Object sender, ResolveEventArgs args)
1167                         {
1168                                 if (args.Name == _assemblyName)
1169                                         return Assembly.LoadFrom (_assemblyFile);
1170
1171                                 return null;
1172                         }
1173
1174                         private readonly string _assemblyFile;
1175                         private readonly string _assemblyName;
1176                 }
1177
1178                 protected internal class Bug328812_NestedFamORAssem { };
1179
1180                 [Test]
1181                 public void bug328812 ()
1182                 {
1183                         Assembly corlib_test = Assembly.GetExecutingAssembly ();
1184                         Assert.IsNull (corlib_test.GetType ("Bug328812_NestedFamORAssem"));
1185                         // Just a sanity check, in case the above passed for some other reason
1186                         Assert.IsNotNull (corlib_test.GetType ("MonoTests.System.Reflection.AssemblyTest+Bug328812_NestedFamORAssem"));
1187                 }
1188                 
1189                 [Test]
1190                 public void GetCustomAttributes_AttributeType_Null ()
1191                 {
1192                         Assembly a = typeof (int).Assembly;
1193                         try {
1194                                 a.GetCustomAttributes (null, false);
1195                                 Assert.Fail ("#1");
1196                         } catch (ArgumentNullException ex) {
1197                                 Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
1198                                 Assert.IsNull (ex.InnerException, "#3");
1199                                 Assert.IsNotNull (ex.Message, "#4");
1200                                 Assert.IsNotNull (ex.ParamName, "#5");
1201                                 Assert.AreEqual ("attributeType", ex.ParamName, "#6");
1202                         }
1203                 }
1204
1205                 [Test]
1206                 public void GetTypeWithEmptyStringShouldThrow ()
1207                 {
1208                         try {
1209                                 typeof (string).Assembly.GetType ("");
1210                                 Assert.Fail ("#1");
1211                         } catch (ArgumentException) {}
1212                 }
1213
1214                 class GetCallingAssemblyCallee {
1215                         static int _dummy;
1216
1217                         static void sideEffect () {
1218                                 _dummy++;
1219                         }
1220
1221                         // GetCallingAssembly may see an unpredictable
1222                         // view of the stack if it's called in tail
1223                         // position, or if its caller or the caller's
1224                         // caller is inlined.  So we put in a side
1225                         // effect to get out of tail position, and we
1226                         // tag the methods NoInlining to discourage
1227                         // the inliner.
1228                         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1229                         public static Assembly Leaf () {
1230                                 var a = Assembly.GetCallingAssembly ();
1231                                 sideEffect();
1232                                 return a;
1233                         }
1234
1235                         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1236                         public static Assembly DirectCall () {
1237                                 var a = Leaf();
1238                                 sideEffect();
1239                                 return a;
1240                         }
1241
1242                         [MethodImplAttribute (MethodImplOptions.NoInlining)]
1243                         public static Assembly InvokeCall () {
1244                                 var ty = typeof (GetCallingAssemblyCallee);
1245                                 var mi = ty.GetMethod("Leaf");
1246                                 var o = mi.Invoke(null, null);
1247                                 sideEffect();
1248                                 return (Assembly)o;
1249                         }
1250                 }
1251
1252                 [Test]
1253                 public void GetCallingAssembly_Direct() {
1254                         var a = GetCallingAssemblyCallee.DirectCall ();
1255                         Assert.IsNotNull (a);
1256
1257                         Assert.AreEqual (GetType().Assembly, a);
1258                 }
1259
1260                 [Test]
1261                 public void GetCallingAssembly_SkipsReflection () {
1262                         // check that the calling assembly is this
1263                         // one, not mscorlib (aka, the reflection
1264                         // API).
1265                         var a = GetCallingAssemblyCallee.InvokeCall ();
1266                         Assert.IsNotNull (a);
1267
1268                         var invokeAssembly =
1269                                 typeof (MethodInfo).Assembly;
1270                         Assert.AreNotEqual (invokeAssembly, a);
1271
1272                         Assert.AreEqual (GetType().Assembly, a);
1273                 }
1274
1275                 [Test]
1276                 public void DefinedTypes_Equality ()
1277                 {
1278                         var x1 = Assembly.GetExecutingAssembly ().DefinedTypes.Where (l => l.FullName == "MonoTests.System.Reflection.TestDefinedTypes").Single ();
1279                         var x2 = Assembly.GetExecutingAssembly ().GetTypes ().Where (l => l.FullName == "MonoTests.System.Reflection.TestDefinedTypes").Single ();
1280
1281                         Assert.AreSame (x1, x2, "#1");
1282                 }
1283
1284                 class MyAssembly : Assembly { }
1285
1286                 [Test]
1287                 public void CustomAssemblyImplThrows ()
1288                 {
1289                         var ma = new MyAssembly();
1290                         try {
1291                                 ma.GetName ();
1292                                 Assert.Fail ("must throw");
1293                         } catch (NotImplementedException){
1294                         }
1295                 }
1296         }
1297
1298         public class TestDefinedTypes
1299         {
1300         }
1301 }