2009-01-27 09:27:51 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Constants
|
|
|
|
|
|
|
|
const RELATION_CONTROLLED_BY = nsIAccessibleRelation.RELATION_CONTROLLED_BY;
|
|
|
|
const RELATION_CONTROLLER_FOR = nsIAccessibleRelation.RELATION_CONTROLLER_FOR;
|
|
|
|
const RELATION_DEFAULT_BUTTON = nsIAccessibleRelation.RELATION_DEFAULT_BUTTON;
|
|
|
|
const RELATION_DESCRIBED_BY = nsIAccessibleRelation.RELATION_DESCRIBED_BY;
|
|
|
|
const RELATION_DESCRIPTION_FOR = nsIAccessibleRelation.RELATION_DESCRIPTION_FOR;
|
|
|
|
const RELATION_EMBEDDED_BY = nsIAccessibleRelation.RELATION_EMBEDDED_BY;
|
|
|
|
const RELATION_EMBEDS = nsIAccessibleRelation.RELATION_EMBEDS;
|
|
|
|
const RELATION_FLOWS_FROM = nsIAccessibleRelation.RELATION_FLOWS_FROM;
|
|
|
|
const RELATION_FLOWS_TO = nsIAccessibleRelation.RELATION_FLOWS_TO;
|
|
|
|
const RELATION_LABEL_FOR = nsIAccessibleRelation.RELATION_LABEL_FOR;
|
|
|
|
const RELATION_LABELLED_BY = nsIAccessibleRelation.RELATION_LABELLED_BY;
|
|
|
|
const RELATION_MEMBER_OF = nsIAccessibleRelation.RELATION_MEMBER_OF;
|
|
|
|
const RELATION_NODE_CHILD_OF = nsIAccessibleRelation.RELATION_NODE_CHILD_OF;
|
|
|
|
const RELATION_PARENT_WINDOW_OF = nsIAccessibleRelation.RELATION_PARENT_WINDOW_OF;
|
|
|
|
const RELATION_POPUP_FOR = nsIAccessibleRelation.RELATION_POPUP_FOR;
|
|
|
|
const RELATION_SUBWINDOW_OF = nsIAccessibleRelation.RELATION_SUBWINDOW_OF;
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// General
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the accessible relation.
|
|
|
|
*
|
2009-02-10 02:03:30 -08:00
|
|
|
* @param aIdentifier [in] identifier to get an accessible, may be ID
|
|
|
|
* attribute or DOM element or accessible object
|
|
|
|
* @param aRelType [in] relation type (see constants above)
|
|
|
|
* @param aRelatedIdentifiers [in] identifier or array of identifiers of
|
|
|
|
* expected related accessibles
|
2009-01-27 09:27:51 -08:00
|
|
|
*/
|
2009-02-10 02:03:30 -08:00
|
|
|
function testRelation(aIdentifier, aRelType, aRelatedIdentifiers)
|
2009-01-27 09:27:51 -08:00
|
|
|
{
|
2009-02-10 02:03:30 -08:00
|
|
|
var relation = getRelationByType(aIdentifier, aRelType);
|
2009-01-27 09:27:51 -08:00
|
|
|
|
|
|
|
var relDescr = getRelationErrorMsg(aIdentifier, aRelType);
|
2009-02-10 02:03:30 -08:00
|
|
|
var relDescrStart = getRelationErrorMsg(aIdentifier, aRelType, true);
|
|
|
|
|
|
|
|
if (!relation || !relation.targetsCount) {
|
|
|
|
if (!aRelatedIdentifiers) {
|
|
|
|
ok(true, "No" + relDescr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg = relDescrStart + "has no expected targets: '" +
|
|
|
|
prettyName(aRelatedIdentifiers) + "'";
|
|
|
|
|
|
|
|
ok(false, msg);
|
|
|
|
return;
|
|
|
|
|
|
|
|
} else if (!aRelatedIdentifiers) {
|
|
|
|
ok(false, "There are unexpected targets of " + relDescr);
|
2009-01-27 09:27:51 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-10 02:03:30 -08:00
|
|
|
var relatedIds = (aRelatedIdentifiers instanceof Array) ?
|
|
|
|
aRelatedIdentifiers : [aRelatedIdentifiers];
|
|
|
|
|
|
|
|
var targets = [];
|
|
|
|
for (var idx = 0; idx < relatedIds.length; idx++)
|
|
|
|
targets.push(getAccessible(relatedIds[idx]));
|
|
|
|
|
|
|
|
if (targets.length != relatedIds.length)
|
2009-01-27 09:27:51 -08:00
|
|
|
return;
|
|
|
|
|
2009-02-10 02:03:30 -08:00
|
|
|
var actualTargets = relation.getTargets();
|
|
|
|
|
|
|
|
// Check if all given related accessibles are targets of obtained relation.
|
|
|
|
for (var idx = 0; idx < targets.length; idx++) {
|
|
|
|
var isFound = false;
|
|
|
|
var enumerate = actualTargets.enumerate();
|
|
|
|
while (enumerate.hasMoreElements()) {
|
|
|
|
var relatedAcc = enumerate.getNext().QueryInterface(nsIAccessible);
|
|
|
|
if (targets[idx] == relatedAcc) {
|
|
|
|
isFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(isFound, relatedIds[idx] + " is not a target of" + relDescr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if all obtained targets are given related accessibles.
|
|
|
|
var enumerate = actualTargets.enumerate();
|
|
|
|
while (enumerate.hasMoreElements()) {
|
|
|
|
var relatedAcc = enumerate.getNext().QueryInterface(nsIAccessible);
|
|
|
|
for (var idx = 0; idx < targets.length && relatedAcc != targets[idx]; idx++);
|
|
|
|
|
|
|
|
if (idx == targets.length)
|
|
|
|
ok(false, "There is unexpected target" + prettyName(relatedAcc) + "of" + relDescr);
|
|
|
|
}
|
2009-01-27 09:27:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return related accessible for the given relation type.
|
|
|
|
*
|
2009-02-10 02:03:30 -08:00
|
|
|
* @param aIdentifier [in] identifier to get an accessible, may be ID attribute
|
|
|
|
* or DOM element or accessible object
|
2009-01-27 09:27:51 -08:00
|
|
|
* @param aRelType [in] relation type (see constants above)
|
|
|
|
*/
|
2009-02-10 02:03:30 -08:00
|
|
|
function getRelationByType(aIdentifier, aRelType)
|
2009-01-27 09:27:51 -08:00
|
|
|
{
|
|
|
|
var acc = getAccessible(aIdentifier);
|
|
|
|
if (!acc)
|
|
|
|
return;
|
|
|
|
|
2009-02-10 02:03:30 -08:00
|
|
|
var relation = null;
|
2009-01-27 09:27:51 -08:00
|
|
|
try {
|
2009-02-10 02:03:30 -08:00
|
|
|
relation = acc.getRelationByType(aRelType);
|
2009-01-27 09:27:51 -08:00
|
|
|
} catch (e) {
|
|
|
|
ok(false, "Can't get" + getRelationErrorMsg(aIdentifier, aRelType));
|
|
|
|
}
|
|
|
|
|
2009-02-10 02:03:30 -08:00
|
|
|
return relation;
|
2009-01-27 09:27:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Private implementation details
|
|
|
|
|
2009-02-10 02:03:30 -08:00
|
|
|
function getRelationErrorMsg(aIdentifier, aRelType, aIsStartSentence)
|
2009-01-27 09:27:51 -08:00
|
|
|
{
|
|
|
|
var relStr = relationTypeToString(aRelType);
|
2009-02-10 02:03:30 -08:00
|
|
|
var msg = aIsStartSentence ? "Relation of '" : " relation of '";
|
|
|
|
msg += relStr + "' type for '" + prettyName(aIdentifier) + "'";
|
|
|
|
msg += aIsStartSentence ? " " : ".";
|
|
|
|
|
|
|
|
return msg;
|
2009-01-27 09:27:51 -08:00
|
|
|
}
|