summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/test_jsterm.html
blob: b6eefad4b6e4b4612e752f61b5203f32793eebae (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
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test for JavaScript terminal functionality</title>
  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript;version=1.8" src="common.js"></script>
  <!-- Any copyright is dedicated to the Public Domain.
     - http://creativecommons.org/publicdomain/zero/1.0/ -->
</head>
<body>
<p>Test for JavaScript terminal functionality</p>

<iframe id="content-iframe" src="http://example.com/chrome/devtools/shared/webconsole/test/sandboxed_iframe.html"></iframe>

<script class="testbody" type="text/javascript;version=1.8">
SimpleTest.waitForExplicitFinish();

let gState;

let {MAX_AUTOCOMPLETE_ATTEMPTS,MAX_AUTOCOMPLETIONS} = require("devtools/shared/webconsole/js-property-provider");

// This test runs all of its assertions twice - once with
// evaluateJS and once with evaluateJSAsync.
let evaluatingSync = true;
function evaluateJS(input, options = {}) {
  return new Promise((resolve, reject) => {
    if (evaluatingSync) {
      gState.client.evaluateJS(input, resolve, options);
    } else {
      gState.client.evaluateJSAsync(input, resolve, options);
    }
  });
}

function startTest()
{
  removeEventListener("load", startTest);

  attachConsoleToTab(["PageError"], onAttach);
}

function onAttach(aState, aResponse)
{
  top.foobarObject = Object.create(null);
  top.foobarObject.foo = 1;
  top.foobarObject.foobar = 2;
  top.foobarObject.foobaz = 3;
  top.foobarObject.omg = 4;
  top.foobarObject.omgfoo = 5;
  top.foobarObject.strfoo = "foobarz";
  top.foobarObject.omgstr = "foobarz" +
    (new Array(DebuggerServer.LONG_STRING_LENGTH * 2)).join("abb");

  top.largeObject1 = Object.create(null);
  for (let i = 0; i < MAX_AUTOCOMPLETE_ATTEMPTS + 1; i++) {
    top.largeObject1['a' + i] = i;
  }

  top.largeObject2 = Object.create(null);
  for (let i = 0; i < MAX_AUTOCOMPLETIONS * 2; i++) {
    top.largeObject2['a' + i] = i;
  }

  gState = aState;

  let tests = [doSimpleEval, doWindowEval, doEvalWithException,
               doEvalWithHelper, doEvalString, doEvalLongString,
               doEvalWithBinding, doEvalWithBindingFrame,
               forceLexicalInit].map(t => {
                 return Task.async(t);
               });

  runTests(tests, testEnd);
}

function* doSimpleEval() {
  info("test eval '2+2'");
  let response = yield evaluateJS("2+2");
  checkObject(response, {
    from: gState.actor,
    input: "2+2",
    result: 4,
  });

  ok(!response.exception, "no eval exception");
  ok(!response.helperResult, "no helper result");

  nextTest();
}

function* doWindowEval() {
  info("test eval 'document'");
  let response = yield evaluateJS("document");
  checkObject(response, {
    from: gState.actor,
    input: "document",
    result: {
      type: "object",
      class: "XULDocument",
      actor: /[a-z]/,
    },
  });

  ok(!response.exception, "no eval exception");
  ok(!response.helperResult, "no helper result");

  nextTest();
}

function* doEvalWithException() {
  info("test eval with exception");
  let response = yield evaluateJS("window.doTheImpossible()");
  checkObject(response, {
    from: gState.actor,
    input: "window.doTheImpossible()",
    result: {
      type: "undefined",
    },
    exceptionMessage: /doTheImpossible/,
  });

  ok(response.exception, "js eval exception");
  ok(!response.helperResult, "no helper result");

  nextTest();
}

function* doEvalWithHelper() {
  info("test eval with helper");
  let response = yield evaluateJS("clear()");
  checkObject(response, {
    from: gState.actor,
    input: "clear()",
    result: {
      type: "undefined",
    },
    helperResult: { type: "clearOutput" },
  });

  ok(!response.exception, "no eval exception");

  nextTest();
}

function* doEvalString() {
  let response = yield evaluateJS("window.foobarObject.strfoo");
  checkObject(response, {
    from: gState.actor,
    input: "window.foobarObject.strfoo",
    result: "foobarz",
  });

  nextTest();
}

function* doEvalLongString() {
  let response = yield evaluateJS("window.foobarObject.omgstr");
  let str = top.foobarObject.omgstr;
  let initial = str.substring(0, DebuggerServer.LONG_STRING_INITIAL_LENGTH);

  checkObject(response, {
    from: gState.actor,
    input: "window.foobarObject.omgstr",
    result: {
      type: "longString",
      initial: initial,
      length: str.length,
    },
  });

  nextTest();
}

function* doEvalWithBinding() {
  let response = yield evaluateJS("document;");
  let documentActor = response.result.actor;

  info("running a command with _self as document using bindObjectActor");
  let bindObjectSame = yield evaluateJS("_self === document", {
    bindObjectActor: documentActor
  });
  checkObject(bindObjectSame, {
    result: true
  });

  info("running a command with _self as document using selectedObjectActor");
  let selectedObjectSame = yield evaluateJS("_self === document", {
    selectedObjectActor: documentActor
  });
  checkObject(selectedObjectSame, {
    result: true
  });

  nextTest();
}

function* doEvalWithBindingFrame() {
  let frameWin = top.document.querySelector("iframe").contentWindow;
  frameWin.fooFrame = { bar: 1 };

  let response = yield evaluateJS(
    "document.querySelector('iframe').contentWindow.fooFrame"
  );
  let iframeObjectActor = response.result.actor;
  ok(iframeObjectActor, "There is an actor associated with the response");

  let bindObjectGlobal = yield evaluateJS("this.temp0 = _self;", {
    bindObjectActor: iframeObjectActor
  });
  ok(!top.temp0,
    "Global doesn't match the top global with bindObjectActor");
  ok(frameWin.temp0 && frameWin.temp0.bar === 1,
    "Global matches the object's global with bindObjectActor");

  let selectedObjectGlobal = yield evaluateJS("this.temp1 = _self;", {
    selectedObjectActor: iframeObjectActor
  });
  ok(top.temp1 && top.temp1.bar === 1,
    "Global matches the top global with bindObjectActor");
  ok(!frameWin.temp1,
    "Global doesn't match the object's global with bindObjectActor");

  nextTest()
}

function* forceLexicalInit() {
  info("test that failed let/const bindings are initialized to undefined");

  const testData = [
    {
        stmt: "let foopie = wubbalubadubdub",
        vars: ["foopie"]
    },
    {
        stmt: "let {z, w={n}=null} = {}",
        vars: ["z", "w"]
    },
    {
        stmt: "let [a, b, c] = null",
        vars: ["a", "b", "c"]
    },
    {
        stmt: "const nein1 = rofl, nein2 = copter",
        vars: ["nein1", "nein2"]
    },
    {
        stmt: "const {ha} = null",
        vars: ["ha"]
    },
    {
        stmt: "const [haw=[lame]=null] = []",
        vars: ["haw"]
    },
    {
        stmt: "const [rawr, wat=[lame]=null] = []",
        vars: ["rawr", "haw"]
    },
    {
        stmt: "let {zzz: xyz=99, zwz: wb} = nexistepas()",
        vars: ["xyz", "wb"]
    },
    {
        stmt: "let {c3pdoh=101} = null",
        vars: ["c3pdoh"]
    }
  ];

  for (let data of testData) {
      let response = yield evaluateJS(data.stmt);
      checkObject(response, {
        from: gState.actor,
        input: data.stmt,
        result: undefined,
      });
      ok(response.exception, "expected exception");
      for (let varName of data.vars) {
          let response2 = yield evaluateJS(varName);
          checkObject(response2, {
            from: gState.actor,
            input: varName,
            result: undefined,
          });
          ok(!response2.exception, "unexpected exception");
      }
  }

  nextTest();
}

function testEnd()
{
  // If this is the first run, reload the page and do it again.
  // Otherwise, end the test.
  closeDebugger(gState, function() {
    gState = null;
    if (evaluatingSync) {
      evaluatingSync = false;
      startTest();
    } else {
      SimpleTest.finish();
    }
  });
}

addEventListener("load", startTest);
</script>
</body>
</html>