4

ディレクトリ内のすべてのアセンブリをロードし、すべてのタイプを取得して、それらがインターフェイスを実装しているかどうかを確認するクラスがあります。タイプ比較を機能させることができません。デバッガーでは、常に比較に失敗する場合、自分のタイプがロードされていることがわかります (興味のあるタイプ)。同じ比較コードをローカルで使用しても問題はなく、期待どおりの結果が得られます。型インターフェイスでスティング比較を行うこともできますが、何が間違っているのかを知りたいです。

テスト:

    // Fails
    [Fact]
    public void FindISerialPortTest()
    {
        var path = Directory.GetCurrentDirectory();
        var results = FindImplementers.GetInterfaceImplementor<ISerialPort>(path);
        results.Length.Should().Be(1);
        results[0].Should().BeAssignableTo<SerialPortWrapper>();
    }

    //Passes
    [Fact]
    public void DoesTypeImplementInterfaceTest()
    {
        var myType = typeof(SerialPortWrapper);
        var myInterface = typeof(ISerialPort);
        FindImplementers.DoesTypeImplementInterface(myType, myInterface).Should().Be(true);

    }

クラス:

    public class FindImplementers
{

    public static T[] GetInterfaceImplementor<T>(string directory)
    {
        if (String.IsNullOrEmpty(directory)) { return null; } //sanity check

        DirectoryInfo info = new DirectoryInfo(directory);
        if (!info.Exists) { return null; } //make sure directory exists

        var implementors = new List<T>();

        foreach (FileInfo file in info.GetFiles("*.dll")) //loop through all dll files in directory
        {
            Assembly currentAssembly = null;
            Type[] types = null;
            try
            {
                //using Reflection, load Assembly into memory from disk
                currentAssembly = Assembly.LoadFile(file.FullName);
                types = currentAssembly.GetTypes();
            }
            catch (Exception ex)
            {
                //ignore errors
                continue;
            }

            foreach (Type type in types)
            {
                if (!DoesTypeImplementInterface(type, typeof(T)))
                {
                    continue;
                }
                //Create instance of class that implements T and cast it to type
                var plugin = (T)Activator.CreateInstance(type);
                implementors.Add(plugin);
            }
        }
        return implementors.ToArray();
    }

    public static bool DoesTypeImplementInterface(Type type, Type interfaceType)
    {
        return (type != interfaceType && interfaceType.IsAssignableFrom(type));
    }

}
4

1 に答える 1