2008-11-28 19:34:43 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
|
|
|
|
Copyright (C) 2002-2008 Nuclex Development Labs
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2008-12-09 19:41:43 +00:00
|
|
|
|
using System.Diagnostics;
|
2008-11-28 19:34:43 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
#if UNITTEST
|
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NUnit.Framework.SyntaxHelpers;
|
|
|
|
|
using NMock2;
|
|
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Plugins {
|
|
|
|
|
|
|
|
|
|
/// <summary>Unit Test for the plugin repository class</summary>
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class PluginRepositoryTest {
|
|
|
|
|
|
|
|
|
|
#region interface IAssemblyLoadedSubscriber
|
|
|
|
|
|
|
|
|
|
/// <summary>Interface used to test the progress tracker</summary>
|
|
|
|
|
public interface IAssemblyLoadedSubscriber {
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents the method that handles the System.AppDomain.AssemblyLoad event
|
|
|
|
|
/// of an System.AppDomain
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender">The source of the event.</param>
|
|
|
|
|
/// <param name="arguments">
|
|
|
|
|
/// An System.AssemblyLoadEventArgs that contains the event data
|
|
|
|
|
/// </param>
|
|
|
|
|
void AssemblyLoaded(object sender, AssemblyLoadEventArgs arguments);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion // interface IProgressTrackerSubscriber
|
|
|
|
|
|
2008-12-09 19:41:43 +00:00
|
|
|
|
#region class TestAssemblyLoader
|
|
|
|
|
|
|
|
|
|
/// <summary>Special assembly loader for the unit test</summary>
|
|
|
|
|
public class TestAssemblyLoader : PluginRepository.DefaultAssemblyLoader {
|
|
|
|
|
|
|
|
|
|
/// <summary>Loads an assembly from a file system path</summary>
|
|
|
|
|
/// <param name="path">Path the assembly will be loaded from</param>
|
|
|
|
|
/// <returns>The loaded assembly</returns>
|
|
|
|
|
protected override Assembly LoadAssemblyFromFile(string path) {
|
|
|
|
|
switch(path) {
|
|
|
|
|
case "DllNotFound": {
|
|
|
|
|
Trace.WriteLine("Simulating DllNotFoundException for unit test");
|
|
|
|
|
throw new DllNotFoundException();
|
|
|
|
|
}
|
|
|
|
|
case "UnauthorizedAccess": {
|
|
|
|
|
Trace.WriteLine("Simulating UnauthorizedAccessException for unit test");
|
|
|
|
|
throw new UnauthorizedAccessException();
|
|
|
|
|
}
|
|
|
|
|
case "BadImageFormat": {
|
|
|
|
|
Trace.WriteLine("Simulating BadImageFormatException for unit test");
|
|
|
|
|
throw new BadImageFormatException();
|
|
|
|
|
}
|
|
|
|
|
case "IO": {
|
|
|
|
|
Trace.WriteLine("Simulating IOException for unit test");
|
|
|
|
|
throw new IOException();
|
|
|
|
|
}
|
|
|
|
|
default: { return Assembly.LoadFile(path); }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion // class TestAssemblyLoader
|
|
|
|
|
|
2008-11-28 19:34:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tests whether the default constructor of the plugin repository class works
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestDefaultConstructor() {
|
|
|
|
|
new PluginRepository();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tests whether the AddFiles() method accepts a file mask to which there are
|
|
|
|
|
/// no matching files
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestAddFilesWithZeroMatches() {
|
|
|
|
|
PluginRepository testRepository = new PluginRepository();
|
|
|
|
|
testRepository.AddFiles(Guid.NewGuid().ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tests whether the AddFiles() method accepts a file mask to which there is
|
|
|
|
|
/// exactly one matching file
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestAddFilesWithOwnAssembly() {
|
|
|
|
|
PluginRepository testRepository = new PluginRepository();
|
2008-12-03 18:58:20 +00:00
|
|
|
|
|
|
|
|
|
Assembly self = Assembly.GetAssembly(GetType());
|
2008-11-28 19:34:43 +00:00
|
|
|
|
testRepository.AddFiles(self.Location);
|
2008-12-09 19:41:43 +00:00
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1, testRepository.LoadedAssemblies.Count);
|
2008-11-28 19:34:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tests whether the AddAssembly() method works by adding the test assembly
|
|
|
|
|
/// itself to the repository
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestAddAssembly() {
|
|
|
|
|
PluginRepository testRepository = new PluginRepository();
|
|
|
|
|
|
|
|
|
|
// Might also use Assembly.GetCallingAssembly() here, but this leads to the exe of
|
|
|
|
|
// the unit testing tool
|
|
|
|
|
Assembly self = Assembly.GetAssembly(GetType());
|
|
|
|
|
testRepository.AddAssembly(self);
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(1, testRepository.LoadedAssemblies.Count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tests whether the AddAssembly() method works by adding the test assembly
|
|
|
|
|
/// itself to the repository
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestAssemblyLoadedEvent() {
|
|
|
|
|
Mockery mockery = new Mockery();
|
|
|
|
|
|
|
|
|
|
PluginRepository testRepository = new PluginRepository();
|
|
|
|
|
IAssemblyLoadedSubscriber subscriber = mockSubscriber(mockery, testRepository);
|
|
|
|
|
|
|
|
|
|
Expect.Once.On(subscriber).Method("AssemblyLoaded").WithAnyArguments();
|
|
|
|
|
|
|
|
|
|
Assembly self = Assembly.GetAssembly(GetType());
|
|
|
|
|
testRepository.AddAssembly(self);
|
|
|
|
|
|
|
|
|
|
mockery.VerifyAllExpectationsHaveBeenMet();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-09 19:41:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that no exceptions come through when a DllNotFoundException is thrown
|
|
|
|
|
/// during assembly loading
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestDllNotFoundExceptionDuringAssemblyLoad() {
|
|
|
|
|
TestAssemblyLoader loader = new TestAssemblyLoader();
|
|
|
|
|
Assembly loadedAssembly;
|
|
|
|
|
Assert.IsFalse(loader.TryLoadFile("DllNotFound", out loadedAssembly));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that no exceptions come through when a UnauthorizedAccessException is
|
|
|
|
|
/// thrown during assembly loading
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestUnauthorizedAccessExceptionDuringAssemblyLoad() {
|
|
|
|
|
TestAssemblyLoader loader = new TestAssemblyLoader();
|
|
|
|
|
Assembly loadedAssembly;
|
|
|
|
|
Assert.IsFalse(loader.TryLoadFile("UnauthorizedAccess", out loadedAssembly));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that no exceptions come through when a BadImageFormatException is
|
|
|
|
|
/// thrown during assembly loading
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestBadImageFormatExceptionDuringAssemblyLoad() {
|
|
|
|
|
TestAssemblyLoader loader = new TestAssemblyLoader();
|
|
|
|
|
Assembly loadedAssembly;
|
|
|
|
|
Assert.IsFalse(loader.TryLoadFile("BadImageFormat", out loadedAssembly));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that no exceptions come through when an IOException is
|
|
|
|
|
/// thrown during assembly loading
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestIOExceptionDuringAssemblyLoad() {
|
|
|
|
|
TestAssemblyLoader loader = new TestAssemblyLoader();
|
|
|
|
|
Assembly loadedAssembly;
|
|
|
|
|
Assert.IsFalse(loader.TryLoadFile("IO", out loadedAssembly));
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-28 19:34:43 +00:00
|
|
|
|
/// <summary>Mocks a subscriber for the events of a plugin repository</summary>
|
|
|
|
|
/// <param name="mockery">Mockery to create an event subscriber in</param>
|
|
|
|
|
/// <param name="repository">Repository to subscribe the mocked subscriber to</param>
|
|
|
|
|
/// <returns>The mocked event subscriber</returns>
|
|
|
|
|
private static IAssemblyLoadedSubscriber mockSubscriber(
|
|
|
|
|
Mockery mockery, PluginRepository repository
|
|
|
|
|
) {
|
|
|
|
|
IAssemblyLoadedSubscriber mockedSubscriber =
|
|
|
|
|
mockery.NewMock<IAssemblyLoadedSubscriber>();
|
|
|
|
|
|
|
|
|
|
repository.AssemblyLoaded += new AssemblyLoadEventHandler(
|
|
|
|
|
mockedSubscriber.AssemblyLoaded
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return mockedSubscriber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Plugins
|
|
|
|
|
|
|
|
|
|
#endif // UNITTEST
|