| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 function testRequest(dcp, arguments, success, count) { | 47 function testRequest(dcp, arguments, success, count) { |
| 48 // Generate request with the supplied arguments. | 48 // Generate request with the supplied arguments. |
| 49 var request; | 49 var request; |
| 50 if (arguments) { | 50 if (arguments) { |
| 51 request = '{' + base_request + ',"arguments":' + arguments + '}'; | 51 request = '{' + base_request + ',"arguments":' + arguments + '}'; |
| 52 } else { | 52 } else { |
| 53 request = '{' + base_request + '}' | 53 request = '{' + base_request + '}' |
| 54 } | 54 } |
| 55 | 55 |
| 56 // Process the request and check expectation. | 56 // Process the request and check expectation. |
| 57 var response = safeEval(dcp.processDebugJSONRequest(request)); | 57 var response = safeEval(dcp.processDebugJSONRequest(request)); |
| 58 if (success) { | 58 if (success) { |
| 59 assertTrue(response.success, request + ' -> ' + response.message); | 59 assertTrue(response.success, request + ' -> ' + response.message); |
| 60 assertTrue(response.body instanceof Array); | 60 assertTrue(response.body instanceof Array); |
| 61 if (count) { | 61 if (count) { |
| 62 assertEquals(count, response.body.length); | 62 assertEquals(count, response.body.length); |
| 63 } else { | 63 } else { |
| 64 assertTrue(response.body.length > 0); | 64 assertTrue(response.body.length > 0); |
| 65 } | 65 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 81 testRequest(dcp, '{"handle":1}', false); | 81 testRequest(dcp, '{"handle":1}', false); |
| 82 testRequest(dcp, '{"type":"referencedBy"}', false); | 82 testRequest(dcp, '{"type":"referencedBy"}', false); |
| 83 testRequest(dcp, '{"type":"constructedBy"}', false); | 83 testRequest(dcp, '{"type":"constructedBy"}', false); |
| 84 | 84 |
| 85 // Evaluate Point. | 85 // Evaluate Point. |
| 86 var evaluate_point = '{"seq":0,"type":"request","command":"evaluate",' + | 86 var evaluate_point = '{"seq":0,"type":"request","command":"evaluate",' + |
| 87 '"arguments":{"expression":"Point"}}'; | 87 '"arguments":{"expression":"Point"}}'; |
| 88 var response = safeEval(dcp.processDebugJSONRequest(evaluate_point)); | 88 var response = safeEval(dcp.processDebugJSONRequest(evaluate_point)); |
| 89 assertTrue(response.success, "Evaluation of Point failed"); | 89 assertTrue(response.success, "Evaluation of Point failed"); |
| 90 var handle = response.body.handle; | 90 var handle = response.body.handle; |
| 91 | 91 |
| 92 // Test some legal references requests. | 92 // Test some legal references requests. |
| 93 testRequest(dcp, '{"handle":' + handle + ',"type":"referencedBy"}', true); | 93 testRequest(dcp, '{"handle":' + handle + ',"type":"referencedBy"}', true); |
| 94 testRequest(dcp, '{"handle":' + handle + ',"type":"constructedBy"}', | 94 testRequest(dcp, '{"handle":' + handle + ',"type":"constructedBy"}', |
| 95 true, 2); | 95 true, 2); |
| 96 | 96 |
| 97 // Indicate that all was processed. | 97 // Indicate that all was processed. |
| 98 listenerComplete = true; | 98 listenerComplete = true; |
| 99 } | 99 } |
| 100 } catch (e) { | 100 } catch (e) { |
| 101 exception = e | 101 exception = e |
| 102 }; | 102 }; |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 // Add the debug event listener. | 105 // Add the debug event listener. |
| 106 Debug.setListener(listener); | 106 Debug.setListener(listener); |
| 107 | 107 |
| 108 // Test constructor and objects. | 108 // Test constructor and objects. |
| 109 function Point(x, y) { this.x_ = x; this.y_ = y;} | 109 function Point(x, y) { this.x_ = x; this.y_ = y;} |
| 110 p = new Point(0,0); | 110 p = new Point(0,0); |
| 111 q = new Point(1,2); | 111 q = new Point(1,2); |
| 112 | 112 |
| 113 // Enter debugger causing the event listener to be called. | 113 // Enter debugger causing the event listener to be called. |
| 114 debugger; | 114 debugger; |
| 115 | 115 |
| 116 // Make sure that the debug event listener was invoked. | 116 // Make sure that the debug event listener was invoked. |
| 117 assertFalse(exception, "exception in listener") | 117 assertFalse(exception, "exception in listener") |
| 118 assertTrue(listenerComplete, "listener did not run to completion"); | 118 assertTrue(listenerComplete, "listener did not run to completion"); |
| OLD | NEW |