blob: 1242bb03efe983fa74d6d071523c4e64de5e4f76 [file] [log] [blame]
function assertEqualParts(parts,partDescriptions,expectedParts,description) {
assert_equals(parts.length,partDescriptions.length,`${description}: lengths differ`);
for(let i=0;i<parts.length;++i) {
assert_true(parts[i] instanceof Part,`${description}: not a Part`);
assert_true(parts[i] instanceof window[partDescriptions[i].type],`${description}: index ${i} expected ${partDescriptions[i].type}`);
assert_array_equals(parts[i].metadata,partDescriptions[i].metadata,`${description}: index ${i} wrong metadata`);
if (expectedParts) {
assert_equals(parts[i],expectedParts[i],`${description}: index ${i} object equality`);
}
}
}