Home | History | Annotate | Download | only in cros

Lines Matching defs:server

8 device to shill and a DHCP test server on the end that doesn't look like a real
175 raise error.TestFail('Could not start DHCP test server.')
203 server is bound to. The server itself is bound the the broadcast
209 def server(self):
211 Returns a reference to the DHCP test server. Use this to add handlers
237 ipconfig matches the DHCP options provided to the server.
239 @param dhcp_options dict of properties the DHCP server should provide.
240 @param custom_fields dict of custom DHCP parameters to add to server.
249 # Build up the handling rules for the server and start the test.
262 self.server.start_test(rules, DHCP_NEGOTIATION_TIMEOUT_SECONDS)
263 logging.info('Server is negotiating new lease with options: %s',
265 self.server.wait_for_test_to_finish()
266 if not self.server.last_test_passed:
268 'Test failed: active rule is %s' % self.server.current_rule)
288 @param dhcp_options dict of properties the DHCP server provided.
292 # opposed to dhcp_options, which is what the server expected it be
309 'granted by the DHCP server after DHCP '
328 raise error.TestFail('Expected to be configured with DNS server '
374 self.server.wait_for_test_to_finish()
375 if not self.server.last_test_passed:
376 raise error.TestFail('Test server didn\'t get all the messages it '