I am using a native library which returns an IntPtr to a memory location, which contains the value of an attribute. I know what the type of the attribute is and I have a method for marshalling a value (taking the IntPtr and the type of the attribute) from the memory pointed at by the pointer. This method either calls Marshal.ReadInt32, or reads a series of bytes and converts them to a double, or reads a string with Marshal.PtrToStringUni etc etc. I would like to write some unit tests for this method but am not sure how I go about creating the IntPtr to pass to the method. I'm using NUnit and cannot use a mocking framework.
|
|
Check out the various overloads for Marshal.Copy() which will let you initialise values using your IntPtr. |
||
|
|
|
If I understood correctly, you want to unit-test your logic of deserializing, given an IntPtr. Something like obtaining pointers to an area in memory. Hold the serialized output in a string and obtain an Intptr from it. GCHandle looks like something you need here. (never tried this though) http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.gchandle.tointptr.aspx |
||
|
|
|
|
My reading of your question makes me think that what you're asking is:
Something like this might help:
Something to be very mindful of is that you won't be able to return the mock IntPtr's created from a function. Ie, you can't create a mocked 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 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. |
|||
|
|
