def test(self): bootstrap = Bootstrap(server='127.0.0.2') bootstrap.start_test() try: self.failUnless(bootstrap.server_connection_failure()) self.assertEquals(cli_log(), []) self.failIf(bootstrap.error) except AssertionError as assertion: print 'Output: %s' % bootstrap.output print 'Error: %s' % bootstrap.error raise assertion finally: bootstrap.end_test()
def test_content_type(self): bootstrap = Bootstrap() bootstrap.ztps.set_config_response(content_type='text/plain') bootstrap.start_test() try: self.failUnless(bootstrap.unexpected_response_failure()) self.assertEquals(cli_log(), []) self.failIf(bootstrap.error) except AssertionError as assertion: print 'Output: %s' % bootstrap.output print 'Error: %s' % bootstrap.error raise assertion finally: bootstrap.end_test()