Lines Matching refs:response

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

144 assert response['result']['locations'][0]['id'] == 'id:10:0:' + self.config['file_path']['index']
145 assert response['result']['locations'][1]['id'] == 'id:17:0:' + self.config['file_path']['index']
146 assert response['result']['locations'][2]['id'] == 'id:25:0:' + self.config['file_path']['index']
154 response = await self.debugger_impl.recv("Debugger.scriptParsed", worker_thread)
155 assert response['params']['url'] == self.config['file_path']['index']
156 assert response['params']['endLine'] == 0
158 response = await self.debugger_impl.recv("Debugger.paused", worker_thread)
159 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
160 assert response['params']['reason'] == 'Break on start'
173 response = await self.debugger_impl.send("Debugger.getPossibleAndSetBreakpointsByUrl",
175 assert response['result']['locations'][0]['id'] == 'id:10:0:' + self.config['file_path']['index']
176 assert response['result']['locations'][1]['id'] == 'id:17:0:' + self.config['file_path']['index']
177 assert response['result']['locations'][2]['id'] == 'id:25:0:' + self.config['file_path']['index']
183 response = await self.debugger_impl.recv("Debugger.paused", worker_thread)
184 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
185 assert response['params']['reason'] == 'other'
186 assert response['params']['hitBreakpoints'] == ['id:10:14:' + self.config['file_path']['index']]
191 response = await self.runtime_impl.send("Runtime.getProperties", worker_thread, params)
192 assert response['result']['result'][0]['name'] == 'add'
193 assert response['result']['result'][0]['value']['type'] == 'function'
201 response = await self.debugger_impl.recv("Debugger.paused", main_thread)
202 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
203 assert response['params']['hitBreakpoints'] == ['id:25:4:' + self.config['file_path']['index']]
208 response = await self.runtime_impl.send("Runtime.getProperties", main_thread, params)
209 assert response['result']['result'][0]['name'] == 'taskpoolTest'
210 assert response['result']['result'][0]['value']['type'] == 'function'
211 assert response['result']['result'][1]['name'] == 'valueSub'
212 assert response['result']['result'][1]['value']['type'] == 'undefined'
213 assert response['result']['result'][2]['name'] == 'valueAdd'
214 assert response['result']['result'][2]['value']['type'] == 'number'
215 assert response['result']['result'][2]['value']['description'] == '300'
223 response = await self.debugger_impl.recv("Debugger.paused", worker_thread)
224 assert response['params']['callFrames'][0]['url'] == self.config['file_path']['index']
225 assert response['params']['hitBreakpoints'] == ['id:17:14:' + self.config['file_path']['index']]