本文整理汇总了Python中prestoadmin.prestoclient.PrestoClient.run_sql方法的典型用法代码示例。如果您正苦于以下问题:Python PrestoClient.run_sql方法的具体用法?Python PrestoClient.run_sql怎么用?Python PrestoClient.run_sql使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类prestoadmin.prestoclient.PrestoClient
的用法示例。
在下文中一共展示了PrestoClient.run_sql方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_http_call_failed
# 需要导入模块: from prestoadmin.prestoclient import PrestoClient [as 别名]
# 或者: from prestoadmin.prestoclient.PrestoClient import run_sql [as 别名]
def test_http_call_failed(self, mock_conn, mock_presto_config):
client = PrestoClient('any_host', 'any_user')
mock_conn.side_effect = HTTPException("Error")
self.assertFalse(client.run_sql("any_sql"))
mock_conn.side_effect = socket.error("Error")
self.assertFalse(client.run_sql("any_sql"))
示例2: test_default_request_called
# 需要导入模块: from prestoadmin.prestoclient import PrestoClient [as 别名]
# 或者: from prestoadmin.prestoclient.PrestoClient import run_sql [as 别名]
def test_default_request_called(self, mock_conn, mock_presto_config):
client = PrestoClient('any_host', 'any_user')
headers = {"X-Presto-Catalog": "hive", "X-Presto-Schema": "default",
"X-Presto-User": 'any_user', "X-Presto-Source": "presto-admin"}
client.run_sql("any_sql")
mock_conn.assert_called_with('any_host', 8080, False, URL_TIMEOUT_MS)
mock_conn().request.assert_called_with("POST", "/v1/statement",
"any_sql", headers)
self.assertTrue(mock_conn().getresponse.called)
示例3: testrun_sql_get_port
# 需要导入模块: from prestoadmin.prestoclient import PrestoClient [as 别名]
# 或者: from prestoadmin.prestoclient.PrestoClient import run_sql [as 别名]
def testrun_sql_get_port(self, sudo_mock, conn_mock, mock_presto_config):
client = PrestoClient('any_host', 'any_user')
client.rows = ['hello']
client.next_uri = 'hello'
client.response_from_server = {'hello': 'hello'}
sudo_mock.return_value = _AttributeString('http-server.http.port=8080')
sudo_mock.return_value.failed = False
sudo_mock.return_value.return_code = 0
client.run_sql('select * from nation')
self.assertEqual(client.port, 8080)
self.assertEqual(client.rows, [])
self.assertEqual(client.next_uri, '')
self.assertEqual(client.response_from_server, {})
示例4: test_http_answer_valid
# 需要导入模块: from prestoadmin.prestoclient import PrestoClient [as 别名]
# 或者: from prestoadmin.prestoclient.PrestoClient import run_sql [as 别名]
def test_http_answer_valid(self, mock_response, mock_request, mock_presto_config):
client = PrestoClient('any_host', 'any_user')
mock_response.return_value.read.return_value = '{}'
type(mock_response.return_value).status = \
PropertyMock(return_value=200)
self.assertEquals(client.run_sql('any_sql'), [])
示例5: test_connection_failed
# 需要导入模块: from prestoadmin.prestoclient import PrestoClient [as 别名]
# 或者: from prestoadmin.prestoclient.PrestoClient import run_sql [as 别名]
def test_connection_failed(self, mock_conn, mock_presto_config):
client = PrestoClient('any_host', 'any_user')
client.run_sql("any_sql")
self.assertTrue(mock_conn().close.called)
self.assertFalse(client.run_sql("any_sql"))