summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser_webconsole_cd_iframe.js
blob: 480c609408008b750c44510dedb5313e481b2bbe (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Test that the cd() jsterm helper function works as expected. See bug 609872.

"use strict";

function test() {
  let hud;

  const TEST_URI = "http://example.com/browser/devtools/client/webconsole/" +
                   "test/test-bug-609872-cd-iframe-parent.html";

  const parentMessages = [{
    name: "document.title in parent iframe",
    text: "bug 609872 - iframe parent",
    category: CATEGORY_OUTPUT,
  }, {
    name: "paragraph content",
    text: "p: test for bug 609872 - iframe parent",
    category: CATEGORY_OUTPUT,
  }, {
    name: "object content",
    text: "obj: parent!",
    category: CATEGORY_OUTPUT,
  }];

  const childMessages = [{
    name: "document.title in child iframe",
    text: "bug 609872 - iframe child",
    category: CATEGORY_OUTPUT,
  }, {
    name: "paragraph content",
    text: "p: test for bug 609872 - iframe child",
    category: CATEGORY_OUTPUT,
  }, {
    name: "object content",
    text: "obj: child!",
    category: CATEGORY_OUTPUT,
  }];

  Task.spawn(runner).then(finishTest);

  function* runner() {
    const {tab} = yield loadTab(TEST_URI);
    hud = yield openConsole(tab);

    yield executeWindowTest();

    yield waitForMessages({ webconsole: hud, messages: parentMessages });

    info("cd() into the iframe using a selector");
    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd('iframe')");
    yield executeWindowTest();

    yield waitForMessages({ webconsole: hud, messages: childMessages });

    info("cd() out of the iframe, reset to default window");
    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd()");
    yield executeWindowTest();

    yield waitForMessages({ webconsole: hud, messages: parentMessages });

    info("call cd() with unexpected arguments");
    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd(document)");

    yield waitForMessages({
      webconsole: hud,
      messages: [{
        text: "Cannot cd()",
        category: CATEGORY_OUTPUT,
        severity: SEVERITY_ERROR,
      }],
    });

    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd('p')");

    yield waitForMessages({
      webconsole: hud,
      messages: [{
        text: "Cannot cd()",
        category: CATEGORY_OUTPUT,
        severity: SEVERITY_ERROR,
      }],
    });

    info("cd() into the iframe using an iframe DOM element");
    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd($('iframe'))");
    yield executeWindowTest();

    yield waitForMessages({ webconsole: hud, messages: childMessages });

    info("cd(window.parent)");
    hud.jsterm.clearOutput();
    yield hud.jsterm.execute("cd(window.parent)");
    yield executeWindowTest();

    yield waitForMessages({ webconsole: hud, messages: parentMessages });

    yield closeConsole(tab);
  }

  function* executeWindowTest() {
    yield hud.jsterm.execute("document.title");
    yield hud.jsterm.execute("'p: ' + document.querySelector('p').textContent");
    yield hud.jsterm.execute("'obj: ' + window.foobarBug609872");
  }
}