summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/test_jsterm_last_result.html
blob: e90ce14ed52b801f7e1ef78a0c287a94b772c2c0 (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
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test for the $_ getter</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 the $_ getter</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;

function evaluateJS(input, callback) {
  return new Promise((resolve, reject) => {
    gState.client.evaluateJSAsync(input, response => {
      if (callback) {
        callback(response);
      }
      resolve(response);
    });
  });
}

function startTest()
{
  removeEventListener("load", startTest);
  attachConsoleToTab([], state => {
    gState = state;
    let tests = [checkUndefinedResult,checkAdditionResult,checkObjectResult];
    runTests(tests, testEnd);
  });
}

let checkUndefinedResult = Task.async(function*() {
  info ("$_ returns undefined if nothing has evaluated yet");
  let response = yield evaluateJS("$_");
  basicResultCheck(response, "$_", undefined);
  nextTest();
});

let checkAdditionResult = Task.async(function*() {
  info ("$_ returns last value and performs basic arithmetic");
  let response = yield evaluateJS("2+2");
  basicResultCheck(response, "2+2", 4);

  response = yield evaluateJS("$_");
  basicResultCheck(response, "$_", 4);

  response = yield evaluateJS("$_ + 2");
  basicResultCheck(response, "$_ + 2", 6);

  response = yield evaluateJS("$_ + 4");
  basicResultCheck(response, "$_ + 4", 10);

  nextTest();
});

let checkObjectResult = Task.async(function*() {
  info ("$_ has correct references to objects");

  let response = yield evaluateJS("var foo = {bar:1}; foo;");
  basicResultCheck(response, "var foo = {bar:1}; foo;", {
    type: "object",
    class: "Object",
    actor: /[a-z]/,
  });
  checkObject(response.result.preview.ownProperties, {
    bar: {
      value: 1
    }
  });

  response = yield evaluateJS("$_");
  basicResultCheck(response, "$_", {
    type: "object",
    class: "Object",
    actor: /[a-z]/,
  });
  checkObject(response.result.preview.ownProperties, {
    bar: {
      value: 1
    }
  });

  top.foo.bar = 2;

  response = yield evaluateJS("$_");
  basicResultCheck(response, "$_", {
    type: "object",
    class: "Object",
    actor: /[a-z]/,
  });
  checkObject(response.result.preview.ownProperties, {
    bar: {
      value: 2
    }
  });

  nextTest();
});

function basicResultCheck(response, input, output) {
  checkObject(response, {
    from: gState.actor,
    input: input,
    result: output,
  });
  ok(!response.exception, "no eval exception");
  ok(!response.helperResult, "no helper result");
}

function testEnd()
{
  closeDebugger(gState, function() {
    gState = null;
    SimpleTest.finish();
  });
}

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