mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-10 08:04:36 -06:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2024, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
import json
|
|
|
|
from pgadmin.utils.route import BaseTestGenerator
|
|
from regression.test_setup import config_data
|
|
from regression.python_test_utils import test_utils as utils
|
|
from . import utils as cast_utils
|
|
|
|
|
|
class SgNodeTestCase(BaseTestGenerator):
|
|
"""
|
|
This class will check available server groups in pgAdmin.
|
|
"""
|
|
|
|
scenarios = utils.generate_scenarios('get_server_group',
|
|
cast_utils.test_cases)
|
|
|
|
def runTest(self):
|
|
"""This function will check available server groups."""
|
|
|
|
server_group_id = config_data['server_group']
|
|
response = self.tester.get(self.url + str(server_group_id),
|
|
content_type='html/json')
|
|
self.assertTrue(response.status_code, 200)
|
|
response_data = json.loads(response.data.decode('utf8'))
|
|
self.assertTrue(response_data['id'], server_group_id)
|