The Squish object map is a powerful concept to simplify test maintenance in case the application under test (AUT) changes. However, managing object names can pose to be a real challenge when working with tests exercising complex applications or tests which execute multiple applications concurrently. The following article will discuss two cases in which these issues occur, and how splitting an object map helps mitigating the risk.
Splitting An Object Map¶
In general, splitting an object map is only viable when using script-based object maps. The idea is to not have a single file (typically called shared/scripts/names.
*) holding all object names but rather factoring the names into multiple files and then including them into the central script file.
For instance, given a JavaScript-based object map like
we might decide to move all names related to tree controls into a file names_trees.js
and all button names into a file called names_buttons.js
. We can then reexport both files in the main names.js
script:
Motivating Case: Keeping Object Map Size Manageable¶
As the testing effort progresses, test suites typically grow since test cases get added. For all but the most trivial applications, adding test cases means that new script code is added which interacts with new UI controls, resulting in an ever-growing set of object names stored in the object map. Creating a comprehensive set of tests on a complex application such as an Integrated Development Environment (IDE) can require an object map with thousands of entries. This makes maintenance challenging, especially when multiple persons are working on the tests concurrently:
Multiple persons modifying a single monolithic object map may cause conflicts which need to be resolved very carefully
Large object maps make it hard to identify whether a given UI control was given an object name already; overlooking an existing name may cause duplicates to be added to the object map, which complicate maintenance even further.
A good strategy to address this issue is to split the object map into multiple conceptual parts. For instance, it might be imaginable to have one separate object map file per dialog of the application. One or more of such parts could then be associated with a person maintaining that object map. This would solve both of the above mentioned issues:
Since each object map part has a single maintainer, that person would typically be the only one modifying the map. Multiple files can safely be modified concurrently by different people.
The maintainer of an object map part would be more familiar with the defined object names (since a part of an object map is typically much smaller). If there is one object map part per dialog, and one maintainer per object map part, it would be easy to identify the maintainer to ask when trying to determine whether a given UI control already has a name assigned.
Motivating Case: Decoupling Object Names¶
However, even smaller object maps can benefit from being split into separate parts. One such case is when creating tests involving multiple applications; Squish script functions such as startApplication or attachToApplication make it easy to create tests which automate multiple applications (potentially running on different computers) in a single test script. A simple example when this is useful is a chat client: to test a chat client, you might devise a behaviour-driven test which looks something like this:
When implementing this test, e.g. by recording the interactions, the object map will get filled not only with object names corresponding to UI controls in our own chat client, but also with object names for UI controls in the third party 'FrogChat' client.
In particular, it can happen that a single object name is used for a control in our own chat client as well as for a similar control in the FrogChat chat client, e.g.
This gui.okButton names matches any object of type 'QPushButton' with the text 'OK'. It's not hard to imagine that objects matching this description exist in either of the two chat clients. And indeed, when recording test scripts, Squish will reuse this object name for either of the two applications.
However, what happens if the caption of the button changes - but only in one of the two chat clients? For instance, the UI design department might decide that 'Ok' is preferable to 'OK'. The okButton
name would need to be adjusted - but doing so would break the test since the button in the FrogChat client still uses 'OK' with a capital K.
Splitting the object map such that the object names are grouped by the application to which the referenced object blongs avoids this issue.