summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/test/browser_filter-editor-03.js
blob: 4c66134ea9d8a818ad53c15fe7c63c77902a5429 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Tests the Filter Editor Widget add, removeAt, updateAt, getValueAt methods

const {
  CSSFilterEditorWidget,
} = require("resource://devtools/client/shared/widgets/FilterWidget.js");
const GRAYSCALE_MAX = 100;
const INVERT_MIN = 0;

const TEST_URI = CHROME_URL_ROOT + "doc_filter-editor-01.html";

add_task(async function () {
  const { doc } = await createHost("bottom", TEST_URI);

  const container = doc.querySelector("#filter-container");
  const widget = new CSSFilterEditorWidget(container, "none");

  info("Test add method");
  const blur = widget.add("blur", "10.2px");
  is(widget.getCssValue(), "blur(10.2px)", "Should add filters");

  const url = widget.add("url", "test.svg");
  is(
    widget.getCssValue(),
    "blur(10.2px) url(test.svg)",
    "Should add filters in order"
  );

  info("Test updateValueAt method");
  widget.updateValueAt(url, "test2.svg");
  widget.updateValueAt(blur, 5);
  is(
    widget.getCssValue(),
    "blur(5px) url(test2.svg)",
    "Should update values correctly"
  );

  info("Test getValueAt method");
  is(widget.getValueAt(blur), "5px", "Should return value + unit");
  is(
    widget.getValueAt(url),
    "test2.svg",
    "Should return value for string-type filters"
  );

  info("Test removeAt method");
  widget.removeAt(url);
  is(widget.getCssValue(), "blur(5px)", "Should remove the specified filter");

  info("Test add method applying filter range to value");
  const grayscale = widget.add("grayscale", GRAYSCALE_MAX + 1);
  is(
    widget.getValueAt(grayscale),
    `${GRAYSCALE_MAX}%`,
    "Shouldn't allow values higher than max"
  );

  const invert = widget.add("invert", INVERT_MIN - 1);
  is(
    widget.getValueAt(invert),
    `${INVERT_MIN}%`,
    "Shouldn't allow values less than INVERT_MIN"
  );

  info("Test updateValueAt method applying filter range to value");
  widget.updateValueAt(grayscale, GRAYSCALE_MAX + 1);
  is(
    widget.getValueAt(grayscale),
    `${GRAYSCALE_MAX}%`,
    "Shouldn't allow values higher than max"
  );

  widget.updateValueAt(invert, INVERT_MIN - 1);
  is(
    widget.getValueAt(invert),
    `${INVERT_MIN}%`,
    "Shouldn't allow values less than INVERT_MIN"
  );
  widget.destroy();
});