1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/accessibility/testing/accessibility_selection_test.h"
#include <algorithm>
#include <iterator>
#include <string_view>
#include "base/containers/span.h"
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/public/platform/file_path_conversion.h"
#include "third_party/blink/renderer/core/dom/character_data.h"
#include "third_party/blink/renderer/core/dom/container_node.h"
#include "third_party/blink/renderer/core/dom/node.h"
#include "third_party/blink/renderer/core/editing/frame_selection.h"
#include "third_party/blink/renderer/core/editing/position.h"
#include "third_party/blink/renderer/core/editing/selection_template.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object-inl.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object_cache_impl.h"
#include "third_party/blink/renderer/modules/accessibility/ax_position.h"
#include "third_party/blink/renderer/modules/accessibility/ax_selection.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/wtf/shared_buffer.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
namespace {
constexpr char kSelectionTestsRelativePath[] = "selection/";
constexpr char kTestFileSuffix[] = ".html";
constexpr char kAXTestExpectationSuffix[] = "-ax.txt";
// Serialize accessibility subtree to selection text.
// Adds a '^' at the selection anchor offset and a '|' at the focus offset.
class AXSelectionSerializer final {
STACK_ALLOCATED();
public:
explicit AXSelectionSerializer(const AXSelection& selection)
: tree_level_(0), selection_(selection) {}
~AXSelectionSerializer() = default;
std::string Serialize(const AXObject& subtree) {
if (!selection_.IsValid())
return {};
SerializeSubtree(subtree);
DCHECK_EQ(tree_level_, 0);
return builder_.ToString().Utf8();
}
private:
void HandleTextObject(const AXObject& text_object) {
builder_.Append('<');
builder_.Append(AXObject::InternalRoleName(text_object.RoleValue()));
builder_.Append(": ");
const String name = text_object.ComputedName() + ">\n";
const AXObject& base_container = *selection_.Anchor().ContainerObject();
const AXObject& extent_container = *selection_.Focus().ContainerObject();
if (base_container == text_object && extent_container == text_object) {
DCHECK(selection_.Anchor().IsTextPosition() &&
selection_.Focus().IsTextPosition());
const int base_offset = selection_.Anchor().TextOffset();
const int extent_offset = selection_.Focus().TextOffset();
if (base_offset == extent_offset) {
builder_.Append(name.Left(base_offset));
builder_.Append('|');
builder_.Append(name.Substring(base_offset));
return;
}
if (base_offset < extent_offset) {
builder_.Append(name.Left(base_offset));
builder_.Append('^');
builder_.Append(
name.Substring(base_offset, extent_offset - base_offset));
builder_.Append('|');
builder_.Append(name.Substring(extent_offset));
return;
}
builder_.Append(name.Left(extent_offset));
builder_.Append('|');
builder_.Append(
name.Substring(extent_offset, base_offset - extent_offset));
builder_.Append('^');
builder_.Append(name.Substring(base_offset));
return;
}
if (base_container == text_object) {
DCHECK(selection_.Anchor().IsTextPosition());
const int base_offset = selection_.Anchor().TextOffset();
builder_.Append(name.Left(base_offset));
builder_.Append('^');
builder_.Append(name.Substring(base_offset));
return;
}
if (extent_container == text_object) {
DCHECK(selection_.Focus().IsTextPosition());
const int extent_offset = selection_.Focus().TextOffset();
builder_.Append(name.Left(extent_offset));
builder_.Append('|');
builder_.Append(name.Substring(extent_offset));
return;
}
builder_.Append(name);
}
void HandleObject(const AXObject& object) {
builder_.Append('<');
builder_.Append(AXObject::InternalRoleName(object.RoleValue()));
String name = object.ComputedName();
if (name.length()) {
builder_.Append(": ");
builder_.Append(name);
}
builder_.Append(">\n");
SerializeSubtree(object);
}
void HandleSelection(const AXPosition& position) {
if (!position.IsValid())
return;
if (selection_.Focus() == position) {
builder_.Append('|');
return;
}
if (selection_.Anchor() != position) {
return;
}
builder_.Append('^');
}
void SerializeSubtree(const AXObject& subtree) {
if (!subtree.ChildCountIncludingIgnored()) {
// Though they are in this particular case both equivalent to an "after
// object" position, "Before children" and "after children" positions are
// still valid within empty subtrees.
const auto position = AXPosition::CreateFirstPositionInObject(subtree);
HandleSelection(position);
return;
}
for (const AXObject* child : subtree.ChildrenIncludingIgnored()) {
DCHECK(child);
const auto position = AXPosition::CreatePositionBeforeObject(*child);
HandleSelection(position);
++tree_level_;
builder_.Append(String::FromUTF8(std::string(tree_level_ * 2, '+')));
if (position.IsTextPosition()) {
HandleTextObject(*child);
} else {
HandleObject(*child);
}
--tree_level_;
}
// Handle any "after children" positions.
HandleSelection(AXPosition::CreateLastPositionInObject(subtree));
}
StringBuilder builder_;
int tree_level_;
AXSelection selection_;
};
// Deserializes an HTML snippet with or without selection markers to an
// |AXSelection| object. A '^' could be present at the selection anchor offset
// and a '|' at the focus offset. If multiple markers are present, the
// deserializer will return multiple |AXSelection| objects. If there are
// multiple markers, the first '|' in DOM order will be matched with the first
// '^' marker, the second '|' with the second '^', and so on. If there are more
// '|'s than '^'s or vice versa, the deserializer will DCHECK. If there are no
// markers, no |AXSelection| objects will be returned. We don't allow '^' and
// '|' markers to appear in anything other than the contents of an HTML node,
// e.g. they are not permitted in aria-labels.
class AXSelectionDeserializer final {
STACK_ALLOCATED();
public:
explicit AXSelectionDeserializer(AXObjectCacheImpl& cache)
: ax_object_cache_(&cache),
anchors_(MakeGarbageCollected<Holder>()),
foci_(MakeGarbageCollected<Holder>()) {}
~AXSelectionDeserializer() = default;
const AXObjectCacheImpl& GetAXObjectCache() const {
return *ax_object_cache_;
}
// Creates an accessibility tree rooted at the given HTML element from the
// provided HTML snippet and returns |AXSelection| objects that can select the
// parts of the tree indicated by the selection markers in the snippet.
const Vector<AXSelection> Deserialize(const std::string_view& html_snippet,
HTMLElement& element) {
element.setInnerHTML(String::FromUTF8(html_snippet));
element.GetDocument().View()->UpdateAllLifecyclePhasesForTest();
AXObject* root = ax_object_cache_->Get(&element);
if (!root || root->IsDetached())
return {};
FindSelectionMarkers(*root);
DCHECK((foci()->size() == 1 && anchors()->size() == 0) ||
anchors()->size() == foci()->size())
<< "There should be an equal number of '^'s and '|'s in the HTML that "
"is being deserialized, or if caret placement is required, only a "
"single '|'.";
if (foci()->empty()) {
return {};
}
Vector<AXSelection> ax_selections;
if (anchors()->empty()) {
// Handle the case when there is just a single '|' marker representing the
// position of the caret.
DCHECK(foci()->at(0).first);
const Position caret(foci()->at(0).first, foci()->at(0).second);
const auto ax_caret = AXPosition::FromPosition(caret, GetAXObjectCache());
AXSelection::Builder builder(GetAXObjectCache());
ax_selections.push_back(
builder.SetAnchor(ax_caret).SetFocus(ax_caret).Build());
return ax_selections;
}
for (wtf_size_t i = 0; i < foci()->size(); ++i) {
DCHECK(anchors()->at(i).first);
const Position base(*anchors()->at(i).first, anchors()->at(i).second);
const auto ax_base = AXPosition::FromPosition(base, GetAXObjectCache());
DCHECK(foci()->at(i).first);
const Position extent(*foci()->at(i).first, foci()->at(i).second);
const auto ax_extent =
AXPosition::FromPosition(extent, GetAXObjectCache());
AXSelection::Builder builder(GetAXObjectCache());
ax_selections.push_back(
builder.SetAnchor(ax_base).SetFocus(ax_extent).Build());
}
return ax_selections;
}
private:
void HandleCharacterData(const AXObject& text_object) {
auto* const node = To<CharacterData>(text_object.GetNode());
Vector<int> base_offsets;
Vector<int> extent_offsets;
unsigned number_of_markers = 0;
StringBuilder builder;
for (unsigned i = 0; i < node->length(); ++i) {
const UChar character = node->data()[i];
if (character == '^') {
base_offsets.push_back(static_cast<int>(i - number_of_markers));
++number_of_markers;
continue;
}
if (character == '|') {
extent_offsets.push_back(static_cast<int>(i - number_of_markers));
++number_of_markers;
continue;
}
builder.Append(character);
}
if (base_offsets.empty() && extent_offsets.empty())
return;
// Remove the markers, otherwise they would be duplicated if the AXSelection
// is re-serialized.
node->setData(builder.ToString());
node->GetDocument().View()->UpdateAllLifecyclePhasesForTest();
//
// Non-text selection.
//
if (node->ContainsOnlyWhitespaceOrEmpty()) {
// Since the text object contains only selection markers, this indicates
// that this is a request for a non-text selection.
Node* const parent = node->ParentOrShadowHostNode();
int index_in_parent = static_cast<int>(node->NodeIndex());
for (size_t i = 0; i < base_offsets.size(); ++i)
anchors()->emplace_back(parent, index_in_parent);
for (size_t i = 0; i < extent_offsets.size(); ++i)
foci()->emplace_back(parent, index_in_parent);
return;
}
//
// Text selection.
//
for (int base_offset : base_offsets)
anchors()->emplace_back(node, base_offset);
for (int extent_offset : extent_offsets)
foci()->emplace_back(node, extent_offset);
}
void HandleObject(const AXObject& object) {
// Make a copy of the children, because they may be cleared when a sibling
// is invalidated and calls SetNeedsToUpdateChildren() on the parent.
const auto children = object.ChildrenIncludingIgnored();
for (const AXObject* child : children) {
DCHECK(child);
FindSelectionMarkers(*child);
}
}
void FindSelectionMarkers(const AXObject& root) {
const Node* node = root.GetNode();
if (node && node->IsCharacterDataNode()) {
HandleCharacterData(root);
// |root| will need to be detached and replaced with an updated AXObject.
return;
}
HandleObject(root);
}
Persistent<AXObjectCacheImpl> const ax_object_cache_;
using Holder = DisallowNewWrapper<VectorOfPairs<Node, int>>;
VectorOfPairs<Node, int>* anchors() const { return &anchors_->Value(); }
VectorOfPairs<Node, int>* foci() const { return &foci_->Value(); }
// Pairs of anchor nodes + anchor offsets.
Persistent<Holder> anchors_;
// Pairs of focus nodes + focus offsets.
Persistent<Holder> foci_;
};
} // namespace
AccessibilitySelectionTest::AccessibilitySelectionTest(
LocalFrameClient* local_frame_client)
: AccessibilityTest(local_frame_client) {}
void AccessibilitySelectionTest::SetUp() {
RenderingTest::SetUp();
// Do not include noisy inline textboxes in selection tests.
ax_context_ =
std::make_unique<AXContext>(GetDocument(), ui::AXMode::kWebContents);
}
std::string AccessibilitySelectionTest::GetCurrentSelectionText() const {
const SelectionInDOMTree selection =
GetFrame().Selection().GetSelectionInDOMTree();
const auto ax_selection =
AXSelection::FromSelection(selection, GetAXObjectCache());
return GetSelectionText(ax_selection);
}
std::string AccessibilitySelectionTest::GetSelectionText(
const AXSelection& selection) const {
const AXObject* root = GetAXRootObject();
if (!root || root->IsDetached())
return {};
return AXSelectionSerializer(selection).Serialize(*root);
}
std::string AccessibilitySelectionTest::GetSelectionText(
const AXSelection& selection,
const AXObject& subtree) const {
return AXSelectionSerializer(selection).Serialize(subtree);
}
AXSelection AccessibilitySelectionTest::SetSelectionText(
const std::string& selection_text) const {
HTMLElement* body = GetDocument().body();
if (!body)
return AXSelection::Builder(GetAXObjectCache()).Build();
const Vector<AXSelection> ax_selections =
AXSelectionDeserializer(GetAXObjectCache())
.Deserialize(selection_text, *body);
if (ax_selections.empty())
return AXSelection::Builder(GetAXObjectCache()).Build();
return ax_selections.front();
}
AXSelection AccessibilitySelectionTest::SetSelectionText(
const std::string& selection_text,
HTMLElement& element) const {
const Vector<AXSelection> ax_selections =
AXSelectionDeserializer(GetAXObjectCache())
.Deserialize(selection_text, element);
if (ax_selections.empty())
return AXSelection::Builder(GetAXObjectCache()).Build();
return ax_selections.front();
}
void AccessibilitySelectionTest::RunSelectionTest(
const std::string& test_name,
const std::string& suffix) const {
static const std::string separator_line = '\n' + std::string(80, '=') + '\n';
const String relative_path = String::FromUTF8(kSelectionTestsRelativePath) +
String::FromUTF8(test_name);
const String test_path = test::AccessibilityTestDataPath(relative_path);
const String test_file = test_path + String::FromUTF8(kTestFileSuffix);
std::optional<Vector<char>> test_file_data = test::ReadFromFile(test_file);
ASSERT_TRUE(test_file_data)
<< "Test file cannot be empty.\n"
<< test_file.Utf8()
<< "\nDid you forget to add a data dependency to the BUILD file?";
const String ax_file =
test_path +
String::FromUTF8(suffix.empty() ? kAXTestExpectationSuffix : suffix);
std::optional<Vector<char>> ax_file_data = test::ReadFromFile(ax_file);
ASSERT_TRUE(ax_file_data)
<< "Expectations file cannot be empty.\n"
<< ax_file.Utf8()
<< "\nDid you forget to add a data dependency to the BUILD file?";
std::string_view ax_file_contents = base::as_string_view(*ax_file_data);
HTMLElement* body = GetDocument().body();
ASSERT_NE(nullptr, body);
Vector<AXSelection> ax_selections =
AXSelectionDeserializer(GetAXObjectCache())
.Deserialize(base::as_string_view(*test_file_data), *body);
std::string actual_ax_file_contents;
for (auto& ax_selection : ax_selections) {
ax_selection.Select();
actual_ax_file_contents += separator_line;
actual_ax_file_contents += ax_selection.ToString().Utf8();
actual_ax_file_contents += separator_line;
actual_ax_file_contents += GetCurrentSelectionText();
}
EXPECT_TRUE(ax_file_contents == actual_ax_file_contents)
<< "\nSelection does not match expectations. Legend: ^=selection start "
"|=selection end"
<< "\n\nExpected:\n--------\n"
<< ax_file_contents << "\n\nActual:\n------\n"
<< actual_ax_file_contents;
// Uncomment these lines to write the output to the expectations file.
// TODO(dmazzoni): make this a command-line parameter.
// if (ax_file_contents != actual_ax_file_contents)
// base::WriteFile(WebStringToFilePath(ax_file), actual_ax_file_contents);
}
} // namespace blink
|