summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/components/test/mochitest/test_reps_element-node.html
blob: d4e22c7abad67996b588f953f920165a5e8bbc25 (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
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
<!-- 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/. -->
<!DOCTYPE HTML>
<html>
<!--
Test Element node rep
-->
<head>
  <meta charset="utf-8">
  <title>Rep test - Element node</title>
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<pre id="test">
<script src="head.js" type="application/javascript;version=1.8"></script>
<script type="application/javascript;version=1.8">
"use strict";

window.onload = Task.async(function* () {
  let { Rep } = browserRequire("devtools/client/shared/components/reps/rep");
  let { ElementNode } = browserRequire("devtools/client/shared/components/reps/element-node");

  try {
    yield testBodyNode();
    yield testDocumentElement();
    yield testNode();
    yield testNodeWithLeadingAndTrailingSpacesClassName();
    yield testNodeWithoutAttributes();
    yield testLotsOfAttributes();
    yield testSvgNode();
    yield testSvgNodeInXHTML();
  } catch (e) {
    ok(false, "Got an error: " + DevToolsUtils.safeErrorString(e));
  } finally {
    SimpleTest.finish();
  }

  function testBodyNode() {
    const stub = getGripStub("testBodyNode");
    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for body node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent, `<body id="body-id" class="body-class">`,
      "Element node rep has expected text content for body node");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `body#body-id.body-class`,
      "Element node rep has expected text content for body node in tiny mode");
  }

  function testDocumentElement() {
    const stub = getGripStub("testDocumentElement");
    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for document element node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent, `<html dir="ltr" lang="en-US">`,
      "Element node rep has expected text content for document element node");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `html`,
      "Element node rep has expected text content for document element in tiny mode");
  }

  function testNode() {
    const stub = getGripStub("testNode");
    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for element node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent,
      `<input id="newtab-customize-button" class="bar baz" dir="ltr" ` +
      `title="Customize your New Tab page" value="foo" type="button">`,
      "Element node rep has expected text content for element node");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent,
      `input#newtab-customize-button.bar.baz`,
      "Element node rep has expected text content for element node in tiny mode");
  }

  function testNodeWithLeadingAndTrailingSpacesClassName() {
    const stub = getGripStub("testNodeWithLeadingAndTrailingSpacesClassName");
    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for element node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent,
      `<body id="nightly-whatsnew" class="  html-ltr    ">`,
      "Element node rep output element node with the class trailing spaces");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent,
      `body#nightly-whatsnew.html-ltr`,
      "Element node rep does not show leading nor trailing spaces " +
      "on class attribute in tiny mode");
  }

  function testNodeWithoutAttributes() {
    const stub = getGripStub("testNodeWithoutAttributes");

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent, "<p>",
      "Element node rep has expected text content for element node without attributes");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `p`,
      "Element node rep has expected text content for element node without attributes");
  }

  function testLotsOfAttributes() {
    const stub = getGripStub("testLotsOfAttributes");

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent,
      '<p id="lots-of-attributes" a="" b="" c="" d="" e="" f="" g="" ' +
      'h="" i="" j="" k="" l="" m="" n="">',
      "Element node rep has expected text content for node with lots of attributes");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `p#lots-of-attributes`,
      "Element node rep has expected text content for node in tiny mode");
  }

  function testSvgNode() {
    const stub = getGripStub("testSvgNode");

    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for SVG element node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent,
      '<clipPath id="clip" class="svg-element">',
      "Element node rep has expected text content for SVG element node");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `clipPath#clip.svg-element`,
      "Element node rep has expected text content for SVG element node in tiny mode");
  }

  function testSvgNodeInXHTML() {
    const stub = getGripStub("testSvgNodeInXHTML");

    const renderedRep = shallowRenderComponent(Rep, { object: stub });
    is(renderedRep.type, ElementNode.rep,
      `Rep correctly selects ${ElementNode.rep.displayName} for XHTML SVG element node`);

    const renderedComponent = renderComponent(ElementNode.rep, { object: stub });
    is(renderedComponent.textContent,
      '<svg:circle class="svg-element" cx="0" cy="0" r="5">',
      "Element node rep has expected text content for XHTML SVG element node");

    const tinyRenderedComponent = renderComponent(
      ElementNode.rep, { object: stub, mode: "tiny" });
    is(tinyRenderedComponent.textContent, `svg:circle.svg-element`,
      "Element node rep has expected text content for XHTML SVG element in tiny mode");
  }

  function getGripStub(name) {
    switch (name) {
      case "testBodyNode":
        return {
          "type": "object",
          "actor": "server1.conn1.child1/obj30",
          "class": "HTMLBodyElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "body",
            "attributes": {
              "class": "body-class",
              "id": "body-id"
            },
            "attributesLength": 2
          }
        };
      case "testDocumentElement":
        return {
          "type": "object",
          "actor": "server1.conn1.child1/obj40",
          "class": "HTMLHtmlElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "html",
            "attributes": {
              "dir": "ltr",
              "lang": "en-US"
            },
            "attributesLength": 2
          }
        };
      case "testNode":
        return {
          "type": "object",
          "actor": "server1.conn2.child1/obj116",
          "class": "HTMLInputElement",
          "extensible": true,
          "frozen": false,
          "sealed": false,
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "input",
            "attributes": {
              "id": "newtab-customize-button",
              "dir": "ltr",
              "title": "Customize your New Tab page",
              "class": "bar baz",
              "value": "foo",
              "type": "button"
            },
            "attributesLength": 6
          }
        };
      case "testNodeWithLeadingAndTrailingSpacesClassName":
        return {
          "type": "object",
          "actor": "server1.conn3.child1/obj59",
          "class": "HTMLBodyElement",
          "extensible": true,
          "frozen": false,
          "sealed": false,
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "body",
            "attributes": {
              "id": "nightly-whatsnew",
              "class": "  html-ltr    "
            },
            "attributesLength": 2
          }
        };
      case "testNodeWithoutAttributes":
        return {
          "type": "object",
          "actor": "server1.conn1.child1/obj32",
          "class": "HTMLParagraphElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "p",
            "attributes": {},
            "attributesLength": 1
          }
        };
      case "testLotsOfAttributes":
        return {
          "type": "object",
          "actor": "server1.conn2.child1/obj30",
          "class": "HTMLParagraphElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "p",
            "attributes": {
              "id": "lots-of-attributes",
              "a": "",
              "b": "",
              "c": "",
              "d": "",
              "e": "",
              "f": "",
              "g": "",
              "h": "",
              "i": "",
              "j": "",
              "k": "",
              "l": "",
              "m": "",
              "n": ""
            },
            "attributesLength": 15
          }
        };
      case "testSvgNode":
        return {
          "type": "object",
          "actor": "server1.conn1.child1/obj42",
          "class": "SVGClipPathElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "clipPath",
            "attributes": {
              "id": "clip",
              "class": "svg-element"
            },
            "attributesLength": 0
          }
        };
      case "testSvgNodeInXHTML":
        return {
          "type": "object",
          "actor": "server1.conn3.child1/obj34",
          "class": "SVGCircleElement",
          "ownPropertyLength": 0,
          "preview": {
            "kind": "DOMNode",
            "nodeType": 1,
            "nodeName": "svg:circle",
            "attributes": {
              "class": "svg-element",
              "cx": "0",
              "cy": "0",
              "r": "5"
            },
            "attributesLength": 3
          }
        };
    }
    return null;
  }
});
</script>
</pre>
</body>
</html>