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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""Python environment for Windows a11y browser tests."""
import ctypes
import os
import threading
from ctypes import POINTER, byref
from ctypes.wintypes import BOOL, HWND, LPARAM, POINT # noqa: F401
from dataclasses import dataclass
import comtypes.automation
import comtypes.client
import psutil
from comtypes import GUID, COMError, IServiceProvider
CHILDID_SELF = 0
COWAIT_DEFAULT = 0
EVENT_OBJECT_FOCUS = 0x8005
EVENT_SYSTEM_SCROLLINGSTART = 0x12
GA_ROOT = 2
NAVRELATION_EMBEDS = 0x1009
OBJID_CARET = -8
OBJID_CLIENT = -4
RPC_S_CALLPENDING = -2147417835
WINEVENT_OUTOFCONTEXT = 0
WM_CLOSE = 0x0010
def registerIa2Proxy():
"""Register the IAccessible2 proxy.
This is only used on CI because we don't want to mess with the registry on
local developer machines. Developers should register the proxy themselves
using regsvr32.
This registers in HKEY_CURRENT_USER rather than HKEY_LOCAL_MACHINE so that
this can be done without administrator privileges. regsvr32 registers in
HKEY_LOCAL_MACHINE, so we can't use that here.
"""
import winreg
dll = os.path.join(os.getcwd(), "IA2Marshal.dll")
if not os.path.isfile(dll):
raise RuntimeError(f"Couldn't find IAccessible2 proxy dll: {dll}")
# This must be kept in sync with accessible/interfaces/ia2/moz.build.
clsid = "{F9A6CC32-B0EF-490B-B102-179DDEEB08ED}"
with winreg.CreateKey(
winreg.HKEY_CURRENT_USER, rf"SOFTWARE\Classes\CLSID\{clsid}\InProcServer32"
) as key:
winreg.SetValue(key, None, winreg.REG_SZ, dll)
for interface in (
# IA2 interfaces that aren't included in the proxy dll bundled with
# Windows.
# IAccessibleTextSelectionContainer
"{2118B599-733F-43D0-A569-0B31D125ED9A}",
):
with winreg.CreateKey(
winreg.HKEY_CURRENT_USER,
rf"SOFTWARE\Classes\Interface\{interface}\ProxyStubClsid32",
) as key:
winreg.SetValue(key, None, winreg.REG_SZ, clsid)
user32 = ctypes.windll.user32
oleacc = ctypes.oledll.oleacc
oleaccMod = comtypes.client.GetModule("oleacc.dll")
IAccessible = oleaccMod.IAccessible
del oleaccMod
# This is the path if running locally.
ia2Tlb = os.path.join(
os.getcwd(),
"..",
"..",
"..",
"accessible",
"interfaces",
"ia2",
"IA2Typelib.tlb",
)
if not os.path.isfile(ia2Tlb):
# This is the path if running in CI.
ia2Tlb = os.path.join(os.getcwd(), "ia2Typelib.tlb")
registerIa2Proxy()
ia2Mod = comtypes.client.GetModule(ia2Tlb)
del ia2Tlb
# Shove all the IAccessible* interfaces and IA2_* constants directly
# into our namespace for convenience.
globals().update((k, getattr(ia2Mod, k)) for k in ia2Mod.__all__)
# We use this below. The linter doesn't understand our globals() update hack.
IAccessible2 = ia2Mod.IAccessible2
del ia2Mod
uiaMod = comtypes.client.GetModule("UIAutomationCore.dll")
globals().update((k, getattr(uiaMod, k)) for k in uiaMod.__all__)
uiaClient = comtypes.CoCreateInstance(
uiaMod.CUIAutomation8._reg_clsid_,
interface=uiaMod.IUIAutomation5,
clsctx=comtypes.CLSCTX_INPROC_SERVER,
)
# Register UIA custom properties.
# IUIAutomationRegistrar is in a different type library.
uiaCoreMod = comtypes.client.GetModule(("{930299ce-9965-4dec-b0f4-a54848d4b667}",))
uiaReg = comtypes.CoCreateInstance(
uiaCoreMod.CUIAutomationRegistrar._reg_clsid_,
interface=uiaCoreMod.IUIAutomationRegistrar,
)
uiaAccessibleActionsPropertyId = uiaReg.RegisterProperty(
byref(
uiaCoreMod.UIAutomationPropertyInfo(
GUID("{8C787AC3-0405-4C94-AC09-7A56A173F7EF}"),
"AccessibleActions",
uiaCoreMod.UIAutomationType_ElementArray,
)
)
)
del uiaReg, uiaCoreMod
_threadLocal = threading.local()
def setup():
if getattr(_threadLocal, "isSetup", False):
return
# We can do most setup at module level. However, because modules are cached
# and pywebsocket3 can serve requests on any thread, we need to do setup for
# each new thread here.
comtypes.CoInitialize()
_threadLocal.isSetup = True
def AccessibleObjectFromWindow(hwnd, objectID=OBJID_CLIENT):
p = POINTER(IAccessible)()
oleacc.AccessibleObjectFromWindow(
hwnd, objectID, byref(IAccessible._iid_), byref(p)
)
return p
def getWindowClass(hwnd):
MAX_CHARS = 257
buffer = ctypes.create_unicode_buffer(MAX_CHARS)
user32.GetClassNameW(hwnd, buffer, MAX_CHARS)
return buffer.value
def getFirefoxHwnd():
"""Search all top level windows for the Firefox instance being
tested.
We search by window class name and window title prefix.
"""
# We can compare the grandparent process ids to find the Firefox started by
# the test harness.
commonPid = psutil.Process().parent().ppid()
# We need something mutable to store the result from the callback.
found = []
@ctypes.WINFUNCTYPE(BOOL, HWND, LPARAM)
def callback(hwnd, lParam):
if getWindowClass(hwnd) != "MozillaWindowClass":
return True
pid = ctypes.wintypes.DWORD()
user32.GetWindowThreadProcessId(hwnd, byref(pid))
if psutil.Process(pid.value).parent().ppid() != commonPid:
return True # Not the Firefox being tested.
found.append(hwnd)
return False
user32.EnumWindows(callback, LPARAM(0))
if not found:
raise LookupError("Couldn't find Firefox HWND")
return found[0]
def toIa2(obj):
serv = obj.QueryInterface(IServiceProvider)
return serv.QueryService(IAccessible2._iid_, IAccessible2)
def getDocIa2():
"""Get the IAccessible2 for the document being tested."""
hwnd = getFirefoxHwnd()
root = AccessibleObjectFromWindow(hwnd)
doc = root.accNavigate(NAVRELATION_EMBEDS, 0)
try:
child = toIa2(doc.accChild(1))
if "id:default-iframe-id;" in child.attributes:
# This is an iframe or remoteIframe test.
doc = child.accChild(1)
except COMError:
pass # No child.
return toIa2(doc)
def findIa2ByDomId(root, id):
search = f"id:{id};"
# Child ids begin at 1.
for i in range(1, root.accChildCount + 1):
child = toIa2(root.accChild(i))
if search in child.attributes:
return child
descendant = findIa2ByDomId(child, id)
if descendant:
return descendant
@dataclass
class WinEvent:
event: int
hwnd: int
objectId: int
childId: int
def getIa2(self):
acc = ctypes.POINTER(IAccessible)()
child = comtypes.automation.VARIANT()
ctypes.oledll.oleacc.AccessibleObjectFromEvent(
self.hwnd,
self.objectId,
self.childId,
ctypes.byref(acc),
ctypes.byref(child),
)
if child.value != CHILDID_SELF:
# This isn't an IAccessible2 object.
return None
return toIa2(acc)
class WaitForWinEvent:
"""Wait for a win event, usually for IAccessible2.
This should be used as follows:
1. Create an instance to wait for the desired event.
2. Perform the action that should fire the event.
3. Call wait() on the instance you created in 1) to wait for the event.
"""
def __init__(self, eventId, match):
"""eventId is the event id to wait for.
match is either None to match any object, an str containing the DOM id
of the desired object, or a function taking a WinEvent which should
return True if this is the requested event.
"""
self._matched = None
# A kernel event used to signal when we get the desired event.
self._signal = ctypes.windll.kernel32.CreateEventW(None, True, False, None)
# We define this as a nested function because it has to be a static
# function, but we need a reference to self.
@ctypes.WINFUNCTYPE(
None,
ctypes.wintypes.HANDLE,
ctypes.wintypes.DWORD,
ctypes.wintypes.HWND,
ctypes.wintypes.LONG,
ctypes.wintypes.LONG,
ctypes.wintypes.DWORD,
ctypes.wintypes.DWORD,
)
def winEventProc(hook, eventId, hwnd, objectId, childId, thread, time):
event = WinEvent(eventId, hwnd, objectId, childId)
if isinstance(match, str):
try:
ia2 = event.getIa2()
if f"id:{match};" in ia2.attributes:
self._matched = event
except (comtypes.COMError, TypeError):
pass
elif callable(match):
try:
if match(event):
self._matched = event
except Exception as e:
self._matched = e
if self._matched:
ctypes.windll.kernel32.SetEvent(self._signal)
self._hook = user32.SetWinEventHook(
eventId, eventId, None, winEventProc, 0, 0, WINEVENT_OUTOFCONTEXT
)
# Hold a reference to winEventProc so it doesn't get destroyed.
self._proc = winEventProc
def wait(self):
"""Wait for and return the desired WinEvent."""
# Pump Windows messages until we get the desired event, which will be
# signalled using a kernel event.
handles = (ctypes.c_void_p * 1)(self._signal)
index = ctypes.wintypes.DWORD()
TIMEOUT = 10000
try:
ctypes.oledll.ole32.CoWaitForMultipleHandles(
COWAIT_DEFAULT, TIMEOUT, 1, handles, ctypes.byref(index)
)
except OSError as e:
if e.winerror == RPC_S_CALLPENDING:
raise TimeoutError("Timeout before desired event received")
raise
finally:
user32.UnhookWinEvent(self._hook)
ctypes.windll.kernel32.CloseHandle(self._signal)
self._proc = None
if isinstance(self._matched, Exception):
raise self._matched from self._matched
return self._matched
def getDocUia():
"""Get the IUIAutomationElement for the document being tested."""
# There's no efficient way to find the document we want with UIA. We can't
# get the IA2 and then get UIA from that because that will always use the
# IA2 -> UIA proxy, but we don't want that if we're trying to test our
# native implementation. For now, we just search the tree. In future, we
# could perhaps implement a custom property.
hwnd = getFirefoxHwnd()
root = uiaClient.ElementFromHandle(hwnd)
doc = findUiaByDomId(root, "body")
if not doc:
# Sometimes, when UIA is disabled, we can't find the document for some
# unknown reason. Since this only happens when UIA is disabled, we want
# the IA2 -> UIA proxy anyway, so we can start with IA2 in this case.
info("getUiaDoc: Falling back to IA2") # noqa: F821
ia2 = getDocIa2()
return uiaClient.ElementFromIAccessible(ia2, CHILDID_SELF)
child = uiaClient.RawViewWalker.GetFirstChildElement(doc)
if child and child.CurrentAutomationId == "default-iframe-id":
# This is an iframe or remoteIframe test.
doc = uiaClient.RawViewWalker.GetFirstChildElement(child)
return doc
def findUiaByDomId(root, id):
cond = uiaClient.CreatePropertyCondition(uiaMod.UIA_AutomationIdPropertyId, id)
# FindFirst ignores elements in the raw tree, so we have to use
# FindFirstBuildCache to override that, even though we don't want to cache
# anything.
request = uiaClient.CreateCacheRequest()
request.TreeFilter = uiaClient.RawViewCondition
el = root.FindFirstBuildCache(uiaMod.TreeScope_Descendants, cond, request)
if not el:
return None
# We need to test things that were introduced after UIA was initially
# introduced in Windows 7.
return el.QueryInterface(uiaMod.IUIAutomationElement9)
class UiaEvent:
def __init__(self, sender, **kwargs):
self.sender = sender
# Make any kwargs accessible as attributes.
self.__dict__.update(**kwargs)
class WaitForUiaEvent(comtypes.COMObject):
"""Wait for a UIA event.
This should be used as follows:
1. Create an instance to wait for the desired event.
2. Perform the action that should fire the event.
3. Call wait() on the instance you created in 1) to wait for the event.
"""
# This tells comtypes which COM interfaces we implement. It will then call
# either `ISomeInterface_SomeMethod` or just `SomeMethod` on this instance
# when that method is called using COM. We use the shorter convention, since
# we don't anticipate method name conflicts with UIA interfaces.
_com_interfaces_ = [
uiaMod.IUIAutomationFocusChangedEventHandler,
uiaMod.IUIAutomationPropertyChangedEventHandler,
uiaMod.IUIAutomationEventHandler,
uiaMod.IUIAutomationNotificationEventHandler,
]
def __init__(self, *, eventId=None, property=None, match=None):
"""eventId is the event id to wait for. Alternatively, you can pass
property to wait for a particular property to change.
match is either None to match any object, an str containing the DOM id
of the desired object, or a function taking a IUIAutomationElement which
should return True if this is the requested event.
"""
self._match = match
self._matched = None
# A kernel event used to signal when we get the desired event.
self._signal = ctypes.windll.kernel32.CreateEventW(None, True, False, None)
if eventId == uiaMod.UIA_AutomationFocusChangedEventId:
uiaClient.AddFocusChangedEventHandler(None, self)
elif eventId == uiaMod.UIA_NotificationEventId:
uiaClient.AddNotificationEventHandler(
uiaClient.GetRootElement(),
uiaMod.TreeScope_Subtree,
None,
self,
)
elif eventId:
# Generic automation event.
uiaClient.AddAutomationEventHandler(
eventId,
uiaClient.GetRootElement(),
uiaMod.TreeScope_Subtree,
None,
self,
)
elif property:
uiaClient.AddPropertyChangedEventHandler(
uiaClient.GetRootElement(),
uiaMod.TreeScope_Subtree,
None,
self,
[property],
)
else:
raise ValueError("No supported event specified")
def _checkMatch(self, event):
if isinstance(self._match, str):
try:
if event.sender.CurrentAutomationId == self._match:
self._matched = event
except comtypes.COMError:
pass
elif callable(self._match):
try:
if self._match(event):
self._matched = event
except Exception as e:
self._matched = e
else:
self._matched = event
if self._matched:
ctypes.windll.kernel32.SetEvent(self._signal)
def HandleFocusChangedEvent(self, sender):
self._checkMatch(UiaEvent(sender))
def HandlePropertyChangedEvent(self, sender, propertyId, newValue):
self._checkMatch(UiaEvent(sender))
def HandleAutomationEvent(self, sender, eventId):
self._checkMatch(UiaEvent(sender))
def HandleNotificationEvent(
self,
sender,
notificationKind,
notificationProcessing,
displayString,
activityId,
):
self._checkMatch(
UiaEvent(
sender,
notificationKind=notificationKind,
notificationProcessing=notificationProcessing,
displayString=displayString,
activityId=activityId,
)
)
def wait(self):
"""Wait for and return the desired UiaEvent."""
# Pump Windows messages until we get the desired event, which will be
# signalled using a kernel event.
handles = (ctypes.c_void_p * 1)(self._signal)
index = ctypes.wintypes.DWORD()
TIMEOUT = 10000
try:
ctypes.oledll.ole32.CoWaitForMultipleHandles(
COWAIT_DEFAULT, TIMEOUT, 1, handles, ctypes.byref(index)
)
except OSError as e:
if e.winerror == RPC_S_CALLPENDING:
raise TimeoutError("Timeout before desired event received")
raise
finally:
uiaClient.RemoveAllEventHandlers()
ctypes.windll.kernel32.CloseHandle(self._signal)
if isinstance(self._matched, Exception):
raise self._matched from self._matched
return self._matched
def getUiaPattern(element, patternName):
"""Get a control pattern interface from an IUIAutomationElement.
For convenience, if patternName doesn't contain "Pattern", "Pattern" will be
added to the name; e.g. "Text" becomes "TextPattern".
"""
if "Pattern" not in patternName:
patternName += "Pattern"
patternId = getattr(uiaMod, f"UIA_{patternName}Id")
unknown = element.GetCurrentPattern(patternId)
if not unknown:
return None
# GetCurrentPattern returns an IUnknown. We have to QI to the real
# interface.
# Get the comtypes interface object.
interface = getattr(uiaMod, f"IUIAutomation{patternName}")
return unknown.QueryInterface(interface)
|