Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / remoting1.cs
index 912133c45fe98d3421f0bd30a35c43ed2e7ac968..ce9589469e1dfa59b76da3c07504fc79d74551fc 100644 (file)
@@ -58,6 +58,20 @@ class MyProxy : RealProxy {
        }
 }
 
+public class EmptyProxy : RealProxy
+{
+       public EmptyProxy ( Type type ) : base( type ) 
+       { 
+       }
+
+       public override IMessage Invoke( IMessage msg )
+       {
+               IMethodCallMessage call = (IMethodCallMessage)msg;
+
+               return new ReturnMessage( null, null, 0, null, call );
+       }
+}
+
 public struct MyStruct {
        public int a;
        public int b;
@@ -70,6 +84,7 @@ interface R2 {
 class R1 : MarshalByRefObject, R2 {
 
        public int test_field = 5;
+       public object null_test_field;
        
        public virtual MyStruct Add (int a, out int c, int b) {
                Console.WriteLine ("ADD");
@@ -90,6 +105,10 @@ class R1 : MarshalByRefObject, R2 {
        }
 }
 
+class R3 : MarshalByRefObject {
+       public object anObject;
+}
+
 class Test {
 
        delegate MyStruct RemoteDelegate1 (int a, out int c, int b);
@@ -179,6 +198,16 @@ class Test {
                if (!(real_proxy.GetTransparentProxy () is R2))
                        return 14;
 
+               /* Test what happens if the proxy doesn't return the required information */
+               EmptyProxy handler = new EmptyProxy ( typeof (R3) );
+               R3 o3 = (R3)handler.GetTransparentProxy();
+
+               if (o3.anObject != null)
+                       return 15;
+
+               if (o.null_test_field != null)
+                       return 16;
+
                return 0;
        }
 }