I’m working on a small UI automation tool and have gotten a bit hung up while trying to determine the best way to architect the handling of data. The project is writen with C#/.net 4.0
I started out thinking of implementing a set number of abstract data type objects (BoolDataObject, StringDataObject, NumberDataObject) which would then be implemented by a version that gets and sets from an unknown until runtime data source and another version that simply works with local variables. The intent being that the desired data could be coming from a bound data source or just some set value that never changes (like a Url to navigate to).
This would force me to write each data type/type of action mix I want the automation tool to be able to perform as one typically wouldn’t want to send a bool to a text box or a string to a radio button though one might want to send a number to a text box, combo box, etc. To further complicate things, I’d like to also encapsulate common functions the user should be able to perform on the information before using it like simple string manipulations or basic math. Using my current architecture, I’d need to create those functions as DataObjects with specific output types further complicating the structure so that they could be assigned to whatever script step they are to be used.
I have considered generics but I have run into the same issue there – SetElementTextValue can’t store a DataObject, it needs a DataObject.
Duplicating the same classes to achieve nothing more than taking in different data types seems like a bit of a code smell. One option I considered was simply returning objects for everything and letting the step itself handle the attempted type conversion as a cast. The data is pulled so infrequently, I doubt the boxing will kill me. It just doesn’t seem very elegant. Is there a cleaner way I’m not considering?
Edit: Some Example Code Illustrating what I'd like to accomplish
public abstract class DataObject
{
public ?? GetValue();
public void SetValue(?? value);
}
public class ElementFindLogic
{
public List<ElementFindClause> FindClauses { get; set; }
}
public class ElementFindClause
{
public SomePropertyEnum SearchProperty { get; set; }
public DataObject SearchValue { get; set; }
}
public class SendValueToScreenElementStep : AutomationStep
{
public ElementFindLogic ScreenElementFindLogic { get; set; }
public DataObject DataToSend { get; set; }
}
public class IfStep : AutomationStep
{
// Different evaluation classes would be written to handle different comparisons
// (ex. IsElementFound, Does DataObject1 == DataObject2, etc.)
public Evaluation IfEvaluation { get; set; }
}