| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 testArguments(dcp, '{"types":2}', true); | 71 testArguments(dcp, '{"types":2}', true); |
| 72 testArguments(dcp, '{"types":4}', true); | 72 testArguments(dcp, '{"types":4}', true); |
| 73 testArguments(dcp, '{"types":7}', true); | 73 testArguments(dcp, '{"types":7}', true); |
| 74 testArguments(dcp, '{"types":255}', true); | 74 testArguments(dcp, '{"types":255}', true); |
| 75 | 75 |
| 76 // Test request for all scripts. | 76 // Test request for all scripts. |
| 77 var request = '{' + base_request + '}' | 77 var request = '{' + base_request + '}' |
| 78 var response = safeEval(dcp.processDebugJSONRequest(request)); | 78 var response = safeEval(dcp.processDebugJSONRequest(request)); |
| 79 assertTrue(response.success); | 79 assertTrue(response.success); |
| 80 | 80 |
| 81 // Test filtering by id. | 81 // Test filtering by id. We have to get at least one script back, but |
| 82 assertEquals(2, response.body.length); | 82 // the exact number depends on the timing of GC. |
| 83 assertTrue(response.body.length >= 1); |
| 84 |
| 83 var script = response.body[0]; | 85 var script = response.body[0]; |
| 84 var request = '{' + base_request + ',"arguments":{"ids":[' + | 86 var request = '{' + base_request + ',"arguments":{"ids":[' + |
| 85 script.id + ']}}'; | 87 script.id + ']}}'; |
| 86 var response = safeEval(dcp.processDebugJSONRequest(request)); | 88 var response = safeEval(dcp.processDebugJSONRequest(request)); |
| 87 assertTrue(response.success); | 89 assertTrue(response.success); |
| 88 assertEquals(1, response.body.length); | 90 assertEquals(1, response.body.length); |
| 89 assertEquals(script.id, response.body[0].id); | 91 assertEquals(script.id, response.body[0].id); |
| 90 | 92 |
| 91 // Indicate that all was processed. | 93 // Indicate that all was processed. |
| 92 listenerComplete = true; | 94 listenerComplete = true; |
| 93 } | 95 } |
| 94 } catch (e) { | 96 } catch (e) { |
| 95 exception = e | 97 exception = e |
| 96 }; | 98 }; |
| 97 }; | 99 }; |
| 98 | 100 |
| 99 // Add the debug event listener. | 101 // Add the debug event listener. |
| 100 Debug.setListener(listener); | 102 Debug.setListener(listener); |
| 101 | 103 |
| 102 // Call debugger to invoke the debug event listener. | 104 // Call debugger to invoke the debug event listener. |
| 103 debugger; | 105 debugger; |
| 104 | 106 |
| 105 // Make sure that the debug event listener vas invoked with no exceptions. | 107 // Make sure that the debug event listener vas invoked with no exceptions. |
| 106 assertTrue(listenerComplete, | 108 assertTrue(listenerComplete, |
| 107 "listener did not run to completion, exception: " + exception); | 109 "listener did not run to completion, exception: " + exception); |
| 108 assertFalse(exception, "exception in listener") | 110 assertFalse(exception, "exception in listener") |
| OLD | NEW |