summaryrefslogtreecommitdiff
path: root/tests/src/Interop/ICastable/Castable.cs
blob: 9e119c1ccb67c55229bea45298449d099cd379eb (plain)
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;

public interface IRetArg<T>
{
    T ReturnArg(T t);
}

public interface IRetThis
{
    IRetThis ReturnThis();
    Type GetMyType();
}


public interface IUnimplemented
{
    void UnimplementedMethod();
}

public interface IExtra
{
    int InnocentMethod();
}

public class CastableException : Exception {};


public class RetArgImpl: IRetArg<string>
{
    public string ReturnArg(string t)
    {
        Console.WriteLine("ReturnArg has been called.");
        return t;
    }
}

public class GenRetArgImpl<T>: IRetArg<T>
{
    public T ReturnArg(T t)
    {
        Console.WriteLine(String.Format("Generic ReturnArg has been called. My type is {0}", GetType()));
        return t;
    }
}


public class RetThisImpl: IRetThis
{
    public IRetThis ReturnThis()
    {
        Console.WriteLine("RetThis has been called.");
        return this;
    }

    public Type GetMyType()
    {
        Console.WriteLine(String.Format("GetMyType has been called. My type is {0}", GetType()));
        return GetType();
    }
}


public class Castable : ICastable, IExtra
{
    private Dictionary<Type, Type> _interface2impl;

    public Castable(Dictionary<Type, Type> interface2impl)
    {
        _interface2impl = interface2impl;
    }

    public bool IsInstanceOfInterface(RuntimeTypeHandle interfaceType, out Exception castError)
    {
        Console.WriteLine(String.Format("IsInstanceOfInterface has been called for type {0}", Type.GetTypeFromHandle(interfaceType)));
        if (_interface2impl == null)
        {
            castError = new CastableException();
            return false;
        }
        castError = null;
        return _interface2impl.ContainsKey(Type.GetTypeFromHandle(interfaceType));
    }

    public RuntimeTypeHandle GetImplType(RuntimeTypeHandle interfaceType)
    {
        Console.WriteLine(String.Format("GetImplType has been called for type {0}", Type.GetTypeFromHandle(interfaceType)));
        return _interface2impl[Type.GetTypeFromHandle(interfaceType)].TypeHandle;
    }

    public int InnocentMethod()
    {
        Console.WriteLine(String.Format("InnocentMethod has been called. My type is {0}", GetType()));
        return 3;
    }
}

public class BadCastable : ICastable
{
    public bool IsInstanceOfInterface(RuntimeTypeHandle interfaceType, out Exception castError)
    {
        castError = null;
        return true;
    }

    public RuntimeTypeHandle GetImplType(RuntimeTypeHandle interfaceType)
    {
        return default(RuntimeTypeHandle);
    }
}
 

public class Program
{
    private static bool passed = true;

    public static void Assert(bool value, string message)
    {
        if (!value)
        {
            Console.WriteLine("FAIL! " + message);
            passed = false;
        }
    }

    public static int Main()
    {
        //Console.WriteLine("Execution started. Attach debugger and press enter.");
        //Console.ReadLine();

        try
        {
            object implProxy = new Castable(
                 new Dictionary<Type, Type>()
                 {
                     { typeof(IRetArg<string>), typeof(RetArgImpl) },
                     { typeof(IRetArg<int>), typeof(GenRetArgImpl<int>) },
                     { typeof(IRetThis), typeof(RetThisImpl) },
                     { typeof(IExtra), null }, //we should never use it
                 }
            );
            
            // testing simple cases
            Assert(implProxy is IRetThis, "implProxy should be castable to IRetThis via is");
            Assert(!(implProxy is IUnimplemented), "implProxy should not be castable to IUnimplemented via is");
            Assert((implProxy as IRetThis) != null, "implProxy should be castable to IRetThis is as");
            Assert((implProxy as IUnimplemented) == null, "implProxy should not be castable to IUnimplemented is as");
            var retThis = (IRetThis)implProxy;
            Assert(object.ReferenceEquals(retThis.ReturnThis(), implProxy), "RetThis should return implProxy");
            Assert(retThis.GetMyType() == typeof(Castable), "GetMyType should return typeof(Castable)");

            Assert(!(implProxy is IUnimplemented), "implProxy should not be castable to IUnimplemented via is");
            Assert((implProxy as IUnimplemented) == null, "implProxy should not be castable to IUnimplemented via as");

            
            // testing generics
            IRetArg<string> retArgStr = (IRetArg<string>)implProxy;
            Assert(retArgStr.ReturnArg("hohoho") == "hohoho", "retArgStr.ReturnArg() should return arg");

            IRetArg<int> retArgInt = (IRetArg<int>)implProxy;
            Assert(retArgInt.ReturnArg(42) == 42, "retArgInt.ReturnArg() should return arg");


            // testing Castable implemeting other interfaces
            var extra = (IExtra)implProxy;
            Assert(extra.InnocentMethod() == 3, "InnocentMethod() should be called on Castable and return 3");

            // testing error handling
            try
            {
                var _ = (IUnimplemented)implProxy;
                Assert(false, "pProxy should not be castable to I1");
            }
            catch (InvalidCastException) {}

            object nullCastable = new Castable(null);
            try
            {
                var _ = (IRetThis)nullCastable;
                Assert(false, "Exceptions should be thrown from IsInstanceOfInterface");
            } 
            catch (CastableException) {}

            Assert(!(nullCastable is IRetThis), "null castable shouldn't be allowed to be casted to anything");

            var shouldBeNull = nullCastable as IRetThis;
            Assert(shouldBeNull == null, "shouldBeNull should be assigned null");

            object badCastable = new BadCastable();
            try
            {
                var r = (IRetThis)badCastable;
                r.ReturnThis();
                Assert(false, "Exceptions should be thrown from ReturnThis()");
            } 
            catch (EntryPointNotFoundException) {}

            //delegate testing
            Func<int> fInt = new Func<int>(extra.InnocentMethod);
            Assert(fInt() == 3, "Delegate call to InnocentMethod() should return 3");

            Func<IRetThis> func = new Func<IRetThis>(retThis.ReturnThis);
            Assert(object.ReferenceEquals(func(), implProxy), "Delegate call to ReturnThis() should return this");
       }
       catch (Exception e)
       {
            Assert(false, e.ToString());
       }

       if (passed)
       {
            Console.WriteLine("Test PASSED!");
            return 100;
       }
       else
       {
            Console.WriteLine("Test FAILED!");
            return -1;
       }
        
    }
}