blob: 18975de8b5a4c51e98dba6c1decae75ecf3e6d77 [file] [log] [blame]
iposva@chromium.org245aa852009-02-10 00:49:54 +00001// 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
29// Get the Debug object exposed from the debug context global object.
30Debug = debug.Debug
31
32var exception = false; // Exception in debug event listener.
33var before_compile_count = 0;
34var after_compile_count = 0;
35var current_source = ''; // Current source compiled.
36var source_count = 0; // Total number of scource sompiled.
37
38
39function compileSource(source) {
40 current_source = source;
41 eval(current_source);
42 source_count++;
43}
44
45
46function listener(event, exec_state, event_data, data) {
47 try {
48 if (event == Debug.DebugEvent.BeforeCompile ||
49 event == Debug.DebugEvent.AfterCompile) {
50 // Count the events.
51 if (event == Debug.DebugEvent.BeforeCompile) {
52 before_compile_count++;
53 } else {
54 after_compile_count++;
55 }
56
57 // If the compiled source contains 'eval' there will be additional compile
58 // events for the source inside eval.
59 if (current_source.indexOf('eval') == 0) {
60 // For source with 'eval' there will be compile events with substrings
61 // as well as with with the exact source.
62 assertTrue(current_source.indexOf(event_data.script().source()) >= 0);
63 } else {
64 // For source without 'eval' there will be a compile events with the
65 // exact source.
66 assertEquals(current_source, event_data.script().source());
67 }
kasperl@chromium.orgb3284ad2009-05-18 06:12:45 +000068 // Check that script context is included into the event message.
69 var json = event_data.toJSONProtocol();
70 var msg = eval('(' + json + ')');
71 assertTrue('context' in msg.body.script);
iposva@chromium.org245aa852009-02-10 00:49:54 +000072 }
73 } catch (e) {
74 exception = e
75 }
76};
77
78
79// Add the debug event listener.
80Debug.setListener(listener);
81
82// Compile different sources.
83compileSource('a=1');
84compileSource('function(){}');
85compileSource('eval("a=2")');
86source_count++; // Using eval causes additional compilation event.
87compileSource('eval("eval(\'function(){return a;}\')")');
88source_count += 2; // Using eval causes additional compilation event.
89
90// Make sure that the debug event listener was invoked.
91assertFalse(exception, "exception in listener")
92
93// Number of before and after compile events should be the same.
94assertEquals(before_compile_count, after_compile_count);
95
96// Check the actual number of events.
97assertEquals(source_count, after_compile_count);
98
99Debug.setListener(null);