My reading of your question makes me think that what you're asking is:
How do I create functions that mock the native call I'm making that returns an IntPtr to a double or unicode string so I can pass that IntPtr to the functions I want to test?
Something like this might help:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
private static unsafe void TestPtrToDouble()
{
double myDouble = 3.14;
doubleprivate static unsafe void TestPtrToDouble()
{
fixed(double* pDouble = &myDouble;
&myDouble)
{
IntPtr intp = new IntPtr(pDouble);
double[] copy = new double[1];
Marshal.Copy(intp, copy, 0, 1);
Debug.Assert(copy[0] == myDouble);
}
}
private static unsafe void TestPtrToUnicodeString()
{
char[] myString = { 'T', 'h', 'i', 's', ' ', 'i', 's', ' ', 'm', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g' };
private static unsafe void TestPtrToUnicodeString()
{
fixed (char* pChar = &myString[0])
{
IntPtr intp = new IntPtr(pChar);
string copy = Marshal.PtrToStringUni(intp);
Debug.Assert(copy == "This is my string");
}
}
static void Main(string[] args)
{
TestPtrToUnicodeString();
TestPtrToDouble();
}
}
}
Something to be very mindful of is that you won't be able to return the mock IntPtr's created from a function. In the first case the double is on the stack and will no longer be there when the method exists. Even if Ie, you had it be can't create a member variable you'll have issuesmocked version of your P/Invoke calls and expect things to work.
The .Net runtime moves managed objects about in memory (part of the garbage collection process). The fixed statement stops this from happening for the member member/object you take the address of. But only for the life of the block. The block ends if you return from a function so the pointer value may be invalid after a return. Ie, your IntPtr may be referencing memory that no longer contains the data you want to marshal.
Check out the MSDN documentation on unsafe code and the fixed statement. But what I've got here should send you in the right direction for constructing an NUnit test for your marshaling code.
Also note that this code requires the /unsafe compiler option to compile. If you need your assembly to run in an environment which doesn't support unsafe assemblies you'll have to have the test code in another assembly. But since you're already using P/Invoke I imagine that isn't the case.
