summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/unit/test_animation_type.js
blob: 0f37755a4ee08d278cfc9673a61efc4cbd1a2459 (plain)
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Test the output of AnimationPlayerActor.getType().

const { ANIMATION_TYPES, AnimationPlayerActor } =
  require("devtools/server/actors/animation");

function run_test() {
  // Mock a window with just the properties the AnimationPlayerActor uses.
  let window = {
    MutationObserver: function () {
      this.observe = () => {};
    },
    Animation: function () {
      this.effect = {target: getMockNode()};
    },
    CSSAnimation: function () {
      this.effect = {target: getMockNode()};
    },
    CSSTransition: function () {
      this.effect = {target: getMockNode()};
    }
  };

  window.CSSAnimation.prototype = Object.create(window.Animation.prototype);
  window.CSSTransition.prototype = Object.create(window.Animation.prototype);

  // Helper to get a mock DOM node.
  function getMockNode() {
    return {
      ownerDocument: {
        defaultView: window
      }
    };
  }

  // Objects in this array should contain the following properties:
  // - desc {String} For logging
  // - animation {Object} An animation object instantiated from one of the mock
  //   window animation constructors.
  // - expectedType {String} The expected type returned by
  //   AnimationPlayerActor.getType.
  const TEST_DATA = [{
    desc: "Test CSSAnimation type",
    animation: new window.CSSAnimation(),
    expectedType: ANIMATION_TYPES.CSS_ANIMATION
  }, {
    desc: "Test CSSTransition type",
    animation: new window.CSSTransition(),
    expectedType: ANIMATION_TYPES.CSS_TRANSITION
  }, {
    desc: "Test ScriptAnimation type",
    animation: new window.Animation(),
    expectedType: ANIMATION_TYPES.SCRIPT_ANIMATION
  }, {
    desc: "Test unknown type",
    animation: {effect: {target: getMockNode()}},
    expectedType: ANIMATION_TYPES.UNKNOWN
  }];

  for (let { desc, animation, expectedType } of TEST_DATA) {
    do_print(desc);
    let actor = AnimationPlayerActor({}, animation);
    do_check_eq(actor.getType(), expectedType);
  }
}