vote up 6 vote down star
1

I am using C# 2.0 with Nunit Test. I have some object that needs to be serialized. These objects are quite complex (inheritance at different levels and contains a lot of objects, events and delegates).

How can I create a Unit Test to be sure that my object is safely serializable?

flag

5 Answers

vote up 1 vote down check

I have this in some unit test here at job:

        MyComplexObject dto = new MyComplexObject();

        MemoryStream mem = new MemoryStream();
        BinaryFormatter b = new BinaryFormatter();
        try
        {
            b.Serialize(mem, dto);
        }
        catch (Exception e)
        {
            Assert.Fail(e.Message);
        }

Might help you... maybe other method can be better but this one works well.

link|flag
You need to be careful of NonSerialized (or transient in java) objects though, and those should be tested as part of your serialization and deserialization. – Egwor Oct 25 '08 at 17:32
vote up 0 vote down

What if the source is null? I have a requirement where I just create a new object, do not set its fields. I want to find out if the fields of the object are serializable.

link|flag
vote up 4 vote down

Here is a generic way:

	public static Stream Serialize(object source)
	{
		IFormatter formatter = new BinaryFormatter();
		Stream stream = new MemoryStream();
		formatter.Serialize(stream, source);
		return stream;
	}

	public static T Desiaralize<T>(Stream stream)
	{
		IFormatter formatter = new BinaryFormatter();
		stream.Position = 0;
		return (T)formatter.Deserialize(stream);
	}

	public static T Clone<T>(object source)
	{
		return Desiaralize<T>(Serialize(source));
	}
link|flag
vote up 3 vote down

serialize the object (to memory or disk), deserialize it, use reflection to compare the two, then run all of the unit tests for that object again (except serialization of course)

this assumes that your unit tests can accept an object as a target instead of making their own

link|flag
vote up 8 vote down

In addition to the test above - which makes sure the serializer will accept your object, you need to do a round-trip test. Deserialize the results back to a new object and make sure the two instances are equivalent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.