All files / dom-event-testing-library/src domEventSequences.js

93.63% Statements 147/157
86.21% Branches 75/87
100% Functions 22/22
93.24% Lines 138/148

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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                                                                    121x   121x                                                     121x   121x                           208x 208x 200x   208x                                                 8x 3x             3x   3x               3x   3x 2x     2x 2x 2x 2x 2x             2x               2x 1x 1x                   1x 1x 1x     1x 1x           202x 101x 101x 101x 101x 8x   101x 101x 8x   101x       2x 2x   2x           2x     2x 1x   1x 1x 1x 1x         234x 106x   106x               106x 45x 2x 2x   45x 45x 45x 2x   45x 45x   61x 8x 8x 8x   61x 61x 61x 61x 61x 8x           111x   25x         25x   12x 12x 12x   25x 25x 25x       47x   17x         17x   17x 8x   8x 7x     17x 17x   15x           12x   8x         8x 4x   8x         40x 36x   36x               36x 15x 2x   15x   21x 2x               21x 21x 21x 21x         198x 61x   61x           61x 61x   61x 25x 2x   25x 25x 3x     36x 8x 8x 8x 8x   36x 36x 36x 36x   36x 25x 25x 25x   36x 36x 25x   36x                       121x    
/**
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
'use strict';
 
import {
  buttonType,
  buttonsType,
  defaultPointerId,
  defaultPointerSize,
  defaultBrowserChromeSize
} from './constants';
import * as domEvents from './domEvents';
import { hasPointerEvent, platform } from './domEnvironment';
import * as touchStore from './touchStore';
 
/**
 * Converts a PointerEvent payload to a Touch
 */
function createTouch(target, payload) {
  const {
    height = defaultPointerSize,
    pageX,
    pageY,
    pointerId,
    pressure = 1,
    twist = 0,
    width = defaultPointerSize,
    x = 0,
    y = 0
  } = payload;
 
  return {
    clientX: x,
    clientY: y,
    force: pressure,
    identifier: pointerId,
    pageX: pageX || x,
    pageY: pageY || y,
    radiusX: width / 2,
    radiusY: height / 2,
    rotationAngle: twist,
    target,
    screenX: x,
    screenY: y + defaultBrowserChromeSize
  };
}
 
/**
 * Converts a PointerEvent to a TouchEvent
 */
function createTouchEventPayload(target, touch, payload) {
  const {
    altKey = false,
    ctrlKey = false,
    metaKey = false,
    preventDefault,
    shiftKey = false,
    timeStamp
  } = payload;
 
  return {
    altKey,
    changedTouches: [touch],
    ctrlKey,
    metaKey,
    preventDefault,
    shiftKey,
    targetTouches: touchStore.getTargetTouches(target),
    timeStamp,
    touches: touchStore.getTouches()
  };
}
 
function getPointerType(payload) {
  let pointerType = 'mouse';
  if (payload != null && payload.pointerType != null) {
    pointerType = payload.pointerType;
  }
  return pointerType;
}
 
/**
 * Pointer events sequences.
 *
 * Creates representative browser event sequences for high-level gestures based on pointers.
 * This allows unit tests to be written in terms of simple pointer interactions while testing
 * that the responses to those interactions account for the complex sequence of events that
 * browsers produce as a result.
 *
 * Every time a new pointer touches the surface a 'touchstart' event should be dispatched.
 * - 'changedTouches' contains the new touch.
 * - 'targetTouches' contains all the active pointers for the target.
 * - 'touches' contains all the active pointers on the surface.
 *
 * Every time an existing pointer moves a 'touchmove' event should be dispatched.
 * - 'changedTouches' contains the updated touch.
 *
 * Every time an existing pointer leaves the surface a 'touchend' event should be dispatched.
 * - 'changedTouches' contains the released touch.
 * - 'targetTouches' contains any of the remaining active pointers for the target.
 */
 
export function contextmenu(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
  const pointerType = getPointerType(defaultPayload);
 
  const {
    ctrlKey,
    // eslint-disable-next-line
    pointerType: _,
    ...restPayload
  } = defaultPayload;
 
  const payload = {
    pointerId: defaultPointerId,
    ...restPayload,
    button: buttonType.primary,
    buttons: buttonsType.primary,
    pointerType
  };
 
  const preventDefault = payload.preventDefault;
 
  if (pointerType === 'touch') {
    Iif (hasPointerEvent()) {
      dispatch(domEvents.pointerdown(payload));
    }
    const touch = createTouch(target, payload);
    touchStore.addTouch(touch);
    const touchEventPayload = createTouchEventPayload(target, touch, payload);
    dispatch(domEvents.touchstart(touchEventPayload));
    dispatch(
      domEvents.mousemove({
        ...payload,
        button: buttonType.primary,
        buttons: buttonsType.none
      })
    );
    dispatch(
      domEvents.contextmenu({
        ...payload,
        button: buttonType.primary,
        buttons: buttonsType.none,
        preventDefault
      })
    );
    touchStore.removeTouch(touch);
  } else Eif (pointerType === 'mouse') {
    Iif (ctrlKey === true) {
      const { button, buttons } = payload;
      if (hasPointerEvent()) {
        dispatch(domEvents.pointerdown({ ...payload, ctrlKey }));
      }
      dispatch(domEvents.mousedown({ ...payload, ctrlKey }));
      if (platform.get() === 'mac') {
        dispatch(domEvents.contextmenu({ button, buttons, ctrlKey, preventDefault }));
      }
    } else {
      const button = buttonType.secondary;
      const buttons = buttonsType.secondary;
      Iif (hasPointerEvent()) {
        dispatch(domEvents.pointerdown({ ...payload, button, buttons }));
      }
      dispatch(domEvents.mousedown({ ...payload, button, buttons }));
      dispatch(domEvents.contextmenu({ ...payload, button, buttons, preventDefault }));
    }
  }
}
 
export function focus(target, defaultPayload = {}) {
  const dispatch = (arg) => target.dispatchEvent(arg);
  const { relatedTarget, ...payload } = defaultPayload;
  const blurPayload = { ...payload, relatedTarget: target };
  const focusPayload = { ...payload, relatedTarget };
  if (relatedTarget) {
    relatedTarget.dispatchEvent(domEvents.focusout(blurPayload));
  }
  dispatch(domEvents.focusin(focusPayload));
  if (relatedTarget) {
    relatedTarget.dispatchEvent(domEvents.blur(blurPayload));
  }
  dispatch(domEvents.focus(focusPayload));
}
 
export function pointercancel(target, defaultPayload) {
  const dispatchEvent = (arg) => target.dispatchEvent(arg);
  const pointerType = getPointerType(defaultPayload);
 
  const payload = {
    pointerId: defaultPointerId,
    pointerType,
    ...defaultPayload
  };
 
  Iif (hasPointerEvent()) {
    dispatchEvent(domEvents.pointercancel(payload));
  }
  if (pointerType === 'mouse') {
    dispatchEvent(domEvents.dragstart(payload));
  } else {
    const touch = createTouch(target, payload);
    touchStore.removeTouch(touch);
    const touchEventPayload = createTouchEventPayload(target, touch, payload);
    dispatchEvent(domEvents.touchcancel(touchEventPayload));
  }
}
 
export function pointerdown(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
  const pointerType = getPointerType(defaultPayload);
 
  const payload = {
    button: buttonType.primary,
    buttons: buttonsType.primary,
    pointerId: defaultPointerId,
    pointerType,
    ...defaultPayload
  };
 
  if (pointerType === 'mouse') {
    if (hasPointerEvent()) {
      dispatch(domEvents.pointerover(payload));
      dispatch(domEvents.pointerenter(payload));
    }
    dispatch(domEvents.mouseover(payload));
    dispatch(domEvents.mouseenter(payload));
    if (hasPointerEvent()) {
      dispatch(domEvents.pointerdown(payload));
    }
    dispatch(domEvents.mousedown(payload));
    focus(target);
  } else {
    if (hasPointerEvent()) {
      dispatch(domEvents.pointerover(payload));
      dispatch(domEvents.pointerenter(payload));
      dispatch(domEvents.pointerdown(payload));
    }
    const touch = createTouch(target, payload);
    touchStore.addTouch(touch);
    const touchEventPayload = createTouchEventPayload(target, touch, payload);
    dispatch(domEvents.touchstart(touchEventPayload));
    if (hasPointerEvent()) {
      dispatch(domEvents.gotpointercapture(payload));
    }
  }
}
 
export function pointerover(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
 
  const payload = {
    pointerId: defaultPointerId,
    ...defaultPayload
  };
 
  if (hasPointerEvent()) {
    // Pointer must move before it can dispatch "over"
    dispatch(domEvents.pointermove());
    dispatch(domEvents.pointerover(payload));
    dispatch(domEvents.pointerenter(payload));
  }
  dispatch(domEvents.mousemove());
  dispatch(domEvents.mouseover(payload));
  dispatch(domEvents.mouseenter(payload));
}
 
export function pointerout(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
 
  const payload = {
    pointerId: defaultPointerId,
    ...defaultPayload
  };
 
  const { relatedTarget } = payload;
 
  if (hasPointerEvent()) {
    dispatch(domEvents.pointerout(payload));
    // Only call the leave event if exiting the subtree
    if (!target.contains(relatedTarget)) {
      dispatch(domEvents.pointerleave(payload));
    }
  }
  dispatch(domEvents.mouseout(payload));
  if (!target.contains(relatedTarget)) {
    // Only call the leave event if exiting the subtree
    dispatch(domEvents.mouseleave(payload));
  }
}
 
// pointer is not down while moving
export function pointerhover(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
 
  const payload = {
    pointerId: defaultPointerId,
    ...defaultPayload
  };
 
  if (hasPointerEvent()) {
    dispatch(domEvents.pointermove(payload));
  }
  dispatch(domEvents.mousemove(payload));
}
 
// pointer is down while moving
export function pointermove(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
  const pointerType = getPointerType(defaultPayload);
 
  const payload = {
    button: buttonType.primary,
    buttons: buttonsType.primary,
    pointerId: defaultPointerId,
    pointerType,
    ...defaultPayload
  };
 
  if (pointerType === 'mouse') {
    if (hasPointerEvent()) {
      dispatch(domEvents.pointermove({ pressure: 0.5, button: -1, ...payload }));
    }
    dispatch(domEvents.mousemove(payload));
  } else {
    if (hasPointerEvent()) {
      dispatch(
        domEvents.pointermove({
          pressure: 1,
          button: -1,
          ...payload
        })
      );
    }
    const touch = createTouch(target, payload);
    touchStore.updateTouch(touch);
    const touchEventPayload = createTouchEventPayload(target, touch, payload);
    dispatch(domEvents.touchmove(touchEventPayload));
  }
}
 
export function pointerup(target, defaultPayload) {
  const dispatch = (arg) => target.dispatchEvent(arg);
  const pointerType = getPointerType(defaultPayload);
 
  const payload = {
    pointerId: defaultPointerId,
    pointerType,
    ...defaultPayload
  };
 
  const isPrimaryButton = payload.button === buttonType.primary;
  const isContextMenuAction = platform.get() === 'mac' && payload.ctrlKey === true;
 
  if (pointerType === 'mouse') {
    if (hasPointerEvent()) {
      dispatch(domEvents.pointerup(payload));
    }
    dispatch(domEvents.mouseup(payload));
    if (isPrimaryButton && !isContextMenuAction) {
      dispatch(domEvents.click(payload));
    }
  } else {
    if (hasPointerEvent()) {
      dispatch(domEvents.pointerup(payload));
      dispatch(domEvents.lostpointercapture(payload));
      dispatch(domEvents.pointerout(payload));
      dispatch(domEvents.pointerleave(payload));
    }
    const touch = createTouch(target, payload);
    const isGesture = touchStore.removeTouch(touch);
    const touchEventPayload = createTouchEventPayload(target, touch, payload);
    dispatch(domEvents.touchend(touchEventPayload));
    // emulated mouse events don't occur for multi-touch or after 'touchmove'
    if (!isGesture) {
      dispatch(domEvents.mouseover(payload));
      dispatch(domEvents.mousemove(payload));
      dispatch(domEvents.mousedown(payload));
    }
    focus(target);
    if (!isGesture) {
      dispatch(domEvents.mouseup(payload));
    }
    Iif (isPrimaryButton && !isContextMenuAction) {
      dispatch(domEvents.click(payload));
    }
  }
}
 
/**
 * This function should be called after each test to ensure the touchStore is cleared
 * in cases where the mock pointers weren't released before the test completed
 * (e.g., a test failed or ran a partial gesture).
 */
export function clearPointers() {
  touchStore.clear();
}