Lines Matching refs:response

150         response = await self.debugger_impl.send("Debugger.getPossibleAndSetBreakpointsByUrl",

152 assert response['result']['locations'][0]['id'] == 'id:53:0:' + self.config['file_path']['index']
153 assert response['result']['locations'][1]['id'] == 'id:57:0:' + self.config['file_path']['index']
161 response = await self.debugger_impl.recv("Debugger.paused", main_thread)
162 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
163 assert response['params']['hitBreakpoints'] == ['id:53:16:' + self.config['file_path']['index']]
167 response = await self.debugger_impl.destroy_instance()
168 if response['instanceId'] == worker_thread_1.instance_id:
180 response = await self.debugger_impl.send("Debugger.getPossibleAndSetBreakpointsByUrl",
182 assert response['result']['locations'][0]['id'] == 'id:11:0:' + self.config['file_path']['worker']
188 response = await self.debugger_impl.recv("Debugger.paused", main_thread)
189 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
190 assert response['params']['hitBreakpoints'] == ['id:57:20:' + self.config['file_path']['index']]
209 response = await self.debugger_impl.recv("Debugger.scriptParsed", worker_thread_2)
210 assert response['params']['url'] == self.config['file_path']['worker']
211 assert response['params']['endLine'] == 0
213 response = await self.debugger_impl.recv("Debugger.paused", worker_thread_2)
214 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['worker']
215 assert response['params']['reason'] == 'Break on start'
226 response = await self.debugger_impl.send("Debugger.getPossibleAndSetBreakpointsByUrl",
228 assert response['result']['locations'][0]['id'] == 'id:11:0:' + self.config['file_path']['worker']
238 response = await self.debugger_impl.recv("Debugger.paused", main_thread)
239 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
240 assert response['params']['reason'] == 'other'
241 assert response['params']['hitBreakpoints'] == ['id:57:20:' + self.config['file_path']['index']]
243 response = await self.debugger_impl.recv("Debugger.paused", worker_thread_1)
244 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['worker']
245 assert response['params']['reason'] == 'Break on start'
246 assert response['params']['hitBreakpoints'] == []
252 response = await self.debugger_impl.recv("Debugger.paused", worker_thread_1)
253 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['worker']
254 assert response['params']['reason'] == 'other'
255 assert response['params']['hitBreakpoints'] == ['id:11:4:' + self.config['file_path']['worker']]
269 response = await self.debugger_impl.recv("Debugger.paused", main_thread)
270 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
271 assert response['params']['reason'] == 'other'
272 assert response['params']['hitBreakpoints'] == []
274 response = await self.debugger_impl.recv("Debugger.paused", worker_thread_2)
275 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['worker']
276 assert response['params']['reason'] == 'other'
277 assert response['params']['hitBreakpoints'] == ['id:11:4:' + self.config['file_path']['worker']]
293 response = await self.debugger_impl.destroy_instance()
294 assert response['instanceId'] != self.config['pid']
295 response = await self.debugger_impl.destroy_instance()
296 assert response['instanceId'] != self.config['pid']