deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / test / mjsunit / debug-references.js
1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 // Flags: --expose-debug-as debug --turbo-deoptimization
29 // Flags: --stack-trace-on-illegal
30
31 // Get the Debug object exposed from the debug context global object.
32 Debug = debug.Debug
33
34 listenerComplete = false;
35 exception = false;
36
37 // The base part of all evaluate requests.
38 var base_request = '"seq":0,"type":"request","command":"references"'
39
40 function safeEval(code) {
41   try {
42     return eval('(' + code + ')');
43   } catch (e) {
44     assertEquals(void 0, e);
45     return undefined;
46   }
47 }
48
49 function testRequest(dcp, arguments, success, count) {
50   // Generate request with the supplied arguments.
51   var request;
52   if (arguments) {
53     request = '{' + base_request + ',"arguments":' + arguments + '}';
54   } else {
55     request = '{' + base_request + '}'
56   }
57
58   // Process the request and check expectation.
59   var response = safeEval(dcp.processDebugJSONRequest(request));
60   if (success) {
61     assertTrue(response.success, request + ' -> ' + response.message);
62     assertTrue(response.body instanceof Array);
63     if (count) {
64       assertEquals(count, response.body.length);
65     } else {
66       assertTrue(response.body.length > 0);
67     }
68   } else {
69     assertFalse(response.success, request + ' -> ' + response.message);
70   }
71   assertEquals(response.running, dcp.isRunning(), request + ' -> expected not running');
72 }
73
74 function listener(event, exec_state, event_data, data) {
75   try {
76   if (event == Debug.DebugEvent.Break) {
77     // Get the debug command processor.
78     var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
79
80     // Test some illegal references requests.
81     testRequest(dcp, void 0, false);
82     testRequest(dcp, '{"handle":"a"}', false);
83     testRequest(dcp, '{"handle":1}', false);
84     testRequest(dcp, '{"type":"referencedBy"}', false);
85     testRequest(dcp, '{"type":"constructedBy"}', false);
86
87     // Evaluate Point.
88     var evaluate_point = '{"seq":0,"type":"request","command":"evaluate",' +
89                          '"arguments":{"expression":"Point"}}';
90     var response = safeEval(dcp.processDebugJSONRequest(evaluate_point));
91     assertTrue(response.success, "Evaluation of Point failed");
92     var handle = response.body.handle;
93
94     // Test some legal references requests.
95     testRequest(dcp, '{"handle":' + handle + ',"type":"referencedBy"}', true);
96     testRequest(dcp, '{"handle":' + handle + ',"type":"constructedBy"}',
97                 true, 2);
98
99     // Indicate that all was processed.
100     listenerComplete = true;
101   }
102   } catch (e) {
103     exception = e;
104     print(e + "\n" + e.stack);
105   };
106 };
107
108 // Add the debug event listener.
109 Debug.setListener(listener);
110
111 // Test constructor and objects.
112 function Point(x, y) { this.x_ = x; this.y_ = y;}
113 p = new Point(0,0);
114 q = new Point(1,2);
115
116 // Enter debugger causing the event listener to be called.
117 debugger;
118
119 // Make sure that the debug event listener was invoked.
120 assertFalse(exception, "exception in listener")
121 assertTrue(listenerComplete, "listener did not run to completion");