C# director runtime tests
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9104 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
b75f19b36a
commit
0290a29cb7
2 changed files with 307 additions and 0 deletions
180
Examples/test-suite/csharp/director_classes_runme.cs
Normal file
180
Examples/test-suite/csharp/director_classes_runme.cs
Normal file
|
|
@ -0,0 +1,180 @@
|
|||
/*
|
||||
This test demonstrates director classes when the types are classes.
|
||||
Shown are virtual function calls which use classes passed by:
|
||||
- Value
|
||||
- Reference
|
||||
- Pointer
|
||||
as both parameters and return values.
|
||||
The test also demonstrates directors used with:
|
||||
- method overloading
|
||||
- default parameters
|
||||
Note: Methods with default parameters that call up from C++ cannot call
|
||||
the overloaded C# methods, see DefaultParms method.
|
||||
|
||||
Expected output if PrintDebug enabled:
|
||||
------------ Start ------------
|
||||
Base - Val(444.555)
|
||||
Base - Ref(444.555)
|
||||
Base - Ptr(444.555)
|
||||
Base - FullyOverloaded(int 10)
|
||||
Base - FullyOverloaded(bool 1)
|
||||
Base - SemiOverloaded(int -678)
|
||||
Base - SemiOverloaded(bool 1)
|
||||
Base - DefaultParms(10, 2.2)
|
||||
Base - DefaultParms(10, 1.1)
|
||||
--------------------------------
|
||||
Derived - Val(444.555)
|
||||
Derived - Ref(444.555)
|
||||
Derived - Ptr(444.555)
|
||||
Derived - FullyOverloaded(int 10)
|
||||
Derived - FullyOverloaded(bool 1)
|
||||
Derived - SemiOverloaded(int -678)
|
||||
Base - SemiOverloaded(bool 1)
|
||||
Derived - DefaultParms(10, 2.2)
|
||||
Derived - DefaultParms(10, 1.1)
|
||||
--------------------------------
|
||||
CSharpDerived - Val(444.555)
|
||||
CSharpDerived - Ref(444.555)
|
||||
CSharpDerived - Ptr(444.555)
|
||||
CSharpDerived - FullyOverloaded(int 10)
|
||||
CSharpDerived - FullyOverloaded(bool True)
|
||||
CSharpDerived - SemiOverloaded(-678)
|
||||
Base - SemiOverloaded(bool 1)
|
||||
CSharpDerived - DefaultParms(10, 2.2)
|
||||
CSharpDerived - DefaultParms(10, 1.1)
|
||||
------------ Finish ------------
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace director_classesNamespace {
|
||||
|
||||
public class runme
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
runme r = new runme();
|
||||
r.run();
|
||||
}
|
||||
|
||||
void run()
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("------------ Start ------------ ");
|
||||
|
||||
Caller myCaller = new Caller();
|
||||
|
||||
// test C++ base class
|
||||
using (Base myBase = new Base(100.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_classes.PrintDebug) Console.WriteLine("--------------------------------");
|
||||
|
||||
// test vanilla C++ wrapped derived class
|
||||
using (Base myBase = new Derived(200.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_classes.PrintDebug) Console.WriteLine("--------------------------------");
|
||||
|
||||
// test director / C# derived class
|
||||
using (Base myBase = new CSharpDerived(300.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_classes.PrintDebug) Console.WriteLine("------------ Finish ------------ ");
|
||||
}
|
||||
|
||||
void makeCalls(Caller myCaller, Base myBase)
|
||||
{
|
||||
string NAMESPACE = "director_classesNamespace.";
|
||||
myCaller.set(myBase);
|
||||
|
||||
DoubleHolder dh = new DoubleHolder(444.555);
|
||||
|
||||
// Class pointer, reference and pass by value tests
|
||||
if (myCaller.ValCall(dh).val != dh.val) throw new Exception("failed");
|
||||
if (myCaller.RefCall(dh).val != dh.val) throw new Exception("failed");
|
||||
if (myCaller.PtrCall(dh).val != dh.val) throw new Exception("failed");
|
||||
|
||||
// Fully overloaded method test (all methods in base class are overloaded)
|
||||
if (NAMESPACE + myCaller.FullyOverloadedCall(10) != myBase.GetType() + "::FullyOverloaded(int)") throw new Exception("failed");
|
||||
if (NAMESPACE + myCaller.FullyOverloadedCall(true) != myBase.GetType() + "::FullyOverloaded(bool)") throw new Exception("failed");
|
||||
|
||||
// Semi overloaded method test (some methods in base class are overloaded)
|
||||
if (NAMESPACE + myCaller.SemiOverloadedCall(-678) != myBase.GetType() + "::SemiOverloaded(int)") throw new Exception("failed");
|
||||
if (myCaller.SemiOverloadedCall(true) != "Base" + "::SemiOverloaded(bool)") throw new Exception("failed");
|
||||
|
||||
// Default parameters methods test
|
||||
if (NAMESPACE + myCaller.DefaultParmsCall(10, 2.2) != myBase.GetType() + "::DefaultParms(int, double)") throw new Exception("failed");
|
||||
if (myBase.GetType() == typeof(CSharpDerived)) { // special handling for C# derived classes, there is no way to do this any other way
|
||||
if (NAMESPACE + myCaller.DefaultParmsCall(10) != myBase.GetType() + "::DefaultParms(int, double)") throw new Exception("failed");
|
||||
} else {
|
||||
if (NAMESPACE + myCaller.DefaultParmsCall(10) != myBase.GetType() + "::DefaultParms(int)") throw new Exception("failed");
|
||||
}
|
||||
|
||||
myCaller.reset();
|
||||
}
|
||||
}
|
||||
|
||||
public class CSharpDerived : Base
|
||||
{
|
||||
public CSharpDerived(double dd)
|
||||
: base(dd)
|
||||
{
|
||||
}
|
||||
|
||||
public override DoubleHolder Val(DoubleHolder x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - Val({0})", x.val);
|
||||
return x;
|
||||
}
|
||||
public override DoubleHolder Ref(DoubleHolder x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - Ref({0})", x.val);
|
||||
return x;
|
||||
}
|
||||
public override DoubleHolder Ptr(DoubleHolder x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - Ptr({0})", x.val);
|
||||
return x;
|
||||
}
|
||||
public override String FullyOverloaded(int x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - FullyOverloaded(int {0})", x);
|
||||
return "CSharpDerived::FullyOverloaded(int)";
|
||||
}
|
||||
public override String FullyOverloaded(bool x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - FullyOverloaded(bool {0})", x);
|
||||
return "CSharpDerived::FullyOverloaded(bool)";
|
||||
}
|
||||
// Note no SemiOverloaded(bool x) method
|
||||
public override String SemiOverloaded(int x)
|
||||
{
|
||||
String ret = "CSharpDerived::SemiOverloaded(int)";
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - SemiOverloaded({0})", x);
|
||||
return ret;
|
||||
}
|
||||
public override String DefaultParms(int x, double y)
|
||||
{
|
||||
String ret = "CSharpDerived::DefaultParms(int, double)";
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - DefaultParms({0}, {1})", x, y);
|
||||
return ret;
|
||||
}
|
||||
// Note the following method can never be called from unmanaged code.
|
||||
// It is here only for code that calls it directly from managed code.
|
||||
// But should always be defined to ensure behaviour is consistent
|
||||
// independent of where DefaultParsms is called from (managed or unmanaged code).
|
||||
// Note this method can never be called from unmanaged code
|
||||
public override String DefaultParms(int x)
|
||||
{
|
||||
if (director_classes.PrintDebug) Console.WriteLine("CSharpDerived - DefaultParms({0})", x);
|
||||
return DefaultParms(x, 1.1/*use C++ default here*/);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
127
Examples/test-suite/csharp/director_primitives_runme.cs
Normal file
127
Examples/test-suite/csharp/director_primitives_runme.cs
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
/*
|
||||
This test program shows a C# class CSharpDerived inheriting from Base. Three types of classes are created
|
||||
and the virtual methods called to demonstrate:
|
||||
1) Wide variety of primitive types
|
||||
2) Calling methods with zero, one or more parameters
|
||||
3) Director methods that are not overridden in C#
|
||||
4) Director classes that are not overridden at all in C#, ie non-director behaviour is as expected for director classes
|
||||
5) Inheritance hierarchy using director methods
|
||||
6) Return types working as well as parameters
|
||||
|
||||
The Caller class is a tester class, which calls the virtual functions from C++.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using director_primitivesNamespace;
|
||||
|
||||
public class runme
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
runme r = new runme();
|
||||
r.run();
|
||||
}
|
||||
|
||||
void run()
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("------------ Start ------------ ");
|
||||
|
||||
Caller myCaller = new Caller();
|
||||
|
||||
// test C++ base class
|
||||
using (Base myBase = new Base(100.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("--------------------------------");
|
||||
|
||||
// test vanilla C++ wrapped derived class
|
||||
using (Base myBase = new Derived(200.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("--------------------------------");
|
||||
|
||||
// test director / C# derived class
|
||||
using (Base myBase = new CSharpDerived(300.0))
|
||||
{
|
||||
makeCalls(myCaller, myBase);
|
||||
}
|
||||
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("------------ Finish ------------ ");
|
||||
}
|
||||
|
||||
void makeCalls(Caller myCaller, Base myBase)
|
||||
{
|
||||
myCaller.set(myBase);
|
||||
|
||||
myCaller.NoParmsMethodCall();
|
||||
if (myCaller.BoolMethodCall(true) != true) throw new Exception("failed");
|
||||
if (myCaller.BoolMethodCall(false) != false) throw new Exception("failed");
|
||||
if (myCaller.IntMethodCall(-123) != -123) throw new Exception("failed");
|
||||
if (myCaller.UIntMethodCall(123) != 123) throw new Exception("failed");
|
||||
if (myCaller.FloatMethodCall((float)-123.456) != (float)-123.456) throw new Exception("failed");
|
||||
if (myCaller.CharPtrMethodCall("test string") != "test string") throw new Exception("failed");
|
||||
if (myCaller.ConstCharPtrMethodCall("another string") != "another string") throw new Exception("failed");
|
||||
if (myCaller.EnumMethodCall(HShadowMode.HShadowHard) != HShadowMode.HShadowHard) throw new Exception("failed");
|
||||
myCaller.ManyParmsMethodCall(true, -123, 123, (float)123.456, "test string", "another string", HShadowMode.HShadowHard);
|
||||
myCaller.NotOverriddenMethodCall();
|
||||
|
||||
myCaller.reset();
|
||||
}
|
||||
}
|
||||
|
||||
public class CSharpDerived : Base
|
||||
{
|
||||
public CSharpDerived(double dd)
|
||||
: base(dd)
|
||||
{
|
||||
}
|
||||
|
||||
public override void NoParmsMethod()
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - NoParmsMethod()");
|
||||
}
|
||||
public override bool BoolMethod(bool x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - BoolMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override int IntMethod(int x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - IntMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override uint UIntMethod(uint x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - UIntMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override float FloatMethod(float x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - FloatMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override string CharPtrMethod(string x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - CharPtrMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override string ConstCharPtrMethod(string x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - ConstCharPtrMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override HShadowMode EnumMethod(HShadowMode x)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - EnumMethod({0})", x);
|
||||
return x;
|
||||
}
|
||||
public override void ManyParmsMethod(bool b, int i, uint u, float f, string c, string cc, HShadowMode h)
|
||||
{
|
||||
if (director_primitives.PrintDebug) Console.WriteLine("CSharpDerived - ManyParmsMethod({0}, {1}, {2}, {3}, {4}, {5}, {6})", b, i, u, f, c, cc, h);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue