mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix handling of JSON in the Query Tool with NULL elements. Fixes #4263
This commit is contained in:
committed by
Dave Page
parent
f1ef7b0346
commit
ee37be56f9
72
web/pgadmin/tools/sqleditor/tests/test_explain_plan.py
Normal file
72
web/pgadmin/tools/sqleditor/tests/test_explain_plan.py
Normal file
@@ -0,0 +1,72 @@
|
||||
##########################################################################
|
||||
#
|
||||
# pgAdmin 4 - PostgreSQL Tools
|
||||
#
|
||||
# Copyright (C) 2013 - 2019, The pgAdmin Development Team
|
||||
# This software is released under the PostgreSQL Licence
|
||||
#
|
||||
##########################################################################
|
||||
|
||||
import json
|
||||
|
||||
from pgadmin.browser.server_groups.servers.databases.tests import utils as \
|
||||
database_utils
|
||||
from pgadmin.utils.route import BaseTestGenerator
|
||||
from regression import parent_node_dict
|
||||
from regression.python_test_utils import test_utils as utils
|
||||
|
||||
|
||||
class TestExplainPlan(BaseTestGenerator):
|
||||
""" This class will test the explain plan return format. """
|
||||
|
||||
def runTest(self):
|
||||
database_info = parent_node_dict["database"][-1]
|
||||
self.server_id = database_info["server_id"]
|
||||
|
||||
self.db_id = database_info["db_id"]
|
||||
db_con = database_utils.connect_database(self,
|
||||
utils.SERVER_GROUP,
|
||||
self.server_id,
|
||||
self.db_id)
|
||||
if not db_con["info"] == "Database connected.":
|
||||
raise Exception("Could not connect to the database.")
|
||||
|
||||
# Initialize query tool
|
||||
url = '/datagrid/initialize/query_tool/{0}/{1}/{2}'.format(
|
||||
utils.SERVER_GROUP, self.server_id, self.db_id)
|
||||
response = self.tester.post(url)
|
||||
self.assertEquals(response.status_code, 200)
|
||||
|
||||
response_data = json.loads(response.data.decode('utf-8'))
|
||||
self.trans_id = response_data['data']['gridTransId']
|
||||
|
||||
# Start query tool transaction
|
||||
url = '/sqleditor/query_tool/start/{0}'.format(self.trans_id)
|
||||
response = self.tester.post(
|
||||
url, data=json.dumps({
|
||||
"sql": "SELECT 1",
|
||||
"explain_plan": {
|
||||
"format": "json",
|
||||
"analyze": False,
|
||||
"verbose": False,
|
||||
"costs": False,
|
||||
"buffers": False,
|
||||
"timing": False,
|
||||
"verbose": False
|
||||
}
|
||||
}), content_type='html/json')
|
||||
|
||||
self.assertEquals(response.status_code, 200)
|
||||
|
||||
# Query tool polling
|
||||
url = '/sqleditor/poll/{0}'.format(self.trans_id)
|
||||
response = self.tester.get(url)
|
||||
self.assertEquals(response.status_code, 200)
|
||||
response_data = json.loads(response.data.decode('utf-8'))
|
||||
|
||||
# Check the ouput of explain plan
|
||||
self.assertEquals(len(response_data['data']['result']), 1)
|
||||
self.assertEquals(len(response_data['data']['result'][0]), 1)
|
||||
|
||||
# Disconnect the database
|
||||
database_utils.disconnect_database(self, self.server_id, self.db_id)
|
||||
Reference in New Issue
Block a user