Does anyone know of a tool that can take an in memory object (or JSON serialization of an object) and emit C# code to produce an equivalent object? This would be useful for pulling known good examples from a repository to use as starting points in unit tests. We have considered deserializing JSON, but C# code would have an edge when it comes to refactoring.

Thanks, Matthew

link|improve this question

I'm assuming there is a reason you can't use the xml serlizer. – rerun Apr 26 '11 at 17:12
1  
Certainly can and we may. But code would be preferable to XML for the same reason as I mentioned regarding JSON; easy refactoring. – Matthew Nichols Apr 26 '11 at 17:22
feedback

3 Answers

up vote 4 down vote accepted

If your model is simple, you could use reflection and a string builder to output C# directly. I've done this to populate unit test data exactly like you discussed.

The code sample below was written in a few minutes, and generated an object initializer that needed some hand tweaking. A more robust / less buggy function could be written if you plan on doing this a lot.

The second function is recursive, iterating over any Lists within the object and generating code for those as well.

Disclaimer: This worked for my simple model with basic datatypes. It generated code that needed cleanup, but allowed me to move on quickly. It is only here to serve as an example of how this could be done. Hopefully it inspires someone to write their own.

In my case, I had an instance of this large dataset (results) that was loaded from the database. In order to remove the database dependency from my unit test, I handed the object to this function which spit out the code that allowed me to mock the object in my test class.

    private void WriteInstanciationCodeFromObject(IList results)
    {

        //declare the object that will eventually house C# initialization code for this class
        var testMockObject = new System.Text.StringBuilder();

        //start building code for this object
        ConstructAndFillProperties(testMockObject, results);

        var codeOutput = testMockObject.ToString();
    }


    private void ConstructAndFillProperties(StringBuilder testMockObject, IList results)
    {

        testMockObject.AppendLine("var testMock = new " + results.GetType().ToString() + "();");

        foreach (object obj in results)
        {

            //if this object is a list, write code for it's contents

            if (obj.GetType().GetInterfaces().Contains(typeof(IList)))
            {
                ConstructAndFillProperties(testMockObject, (IList)obj);
            }

            testMockObject.AppendLine("testMock.Add(new " + obj.GetType().Name + "() {");

            foreach (var property in obj.GetType().GetProperties())
            {

               //if this property is a list, write code for it's contents
                if (property.PropertyType.GetInterfaces().Contains(typeof(IList)))
                {
                    ConstructAndFillProperties(testMockObject, (IList)property.GetValue(obj, null));
                }

                testMockObject.AppendLine(property.Name + " = (" + property.PropertyType + ")\"" + property.GetValue(obj, null) + "\",");
            }

            testMockObject.AppendLine("});");
        }
    }
link|improve this answer
feedback

It's possible the object will have a TypeConverter that supports conversion to InstanceDescriptor, which is what the WinForms designer uses when emitting C# code to generate an object. If it can't convert to an InstanceDescriptor, it will attempt to use a parameterless constructor and simply set public properties. The InstanceDescriptor mechanism is handy, since it allows you to specify various construction options such as constructors with parameters or even static factory method calls.

I have some utility code I've written that emits loading of an in-memory object using IL, which basically follows the above pattern (use InstanceDescriptor if possible and, if not, simply write public properties.) Note that this will only produce an equivalent object if the InstanceDescriptor is properly implemented or setting public properties is sufficient to restore object state. If you're emitting IL, you can also cheat and read/write field values directly (this is what the DataContractSerializer supports), but there are a lot of nasty corner cases to consider.

link|improve this answer
More details on how to do this would be great. I'm especially interested in doing it without a custom typeconverter – Schneider May 20 '11 at 9:51
Details on how to do which part? – Dan Bryant May 20 '11 at 13:37
using InstanceDescriptor to generate code – Schneider May 20 '11 at 13:55
I haven't generated C# code from an InstanceDescriptor (just IL), but the basic concept is fairly simple. The InstanceDescriptor describes a constructor, a static factory method/property or a static field, which can be used to get the initial instance. It also specifies whether that completely specifies the object state; if not, you need to set individual properties (typically just the public setter properties), usually using some metadata to determine if the value is non-default (that's what the WinForms designer does anyway.) – Dan Bryant May 20 '11 at 16:35
feedback

There's a solution similar to what Evan proposed, but a bit better suited for my particular task.

After playing a bit with CodeDOM and Reflection it turned out that it would be too complicated in my case.

The object was serialized as XML, so the natural solution was to use XSLT to simply transform it to the object creation expression.

Sure, it covers only certain types of the cases, but maybe will work for someone else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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