public inbox for [email protected]
help / color / mirror / Atom feedpgAdmin 4 commit: Improve code coverage and API test cases for Tables.
5+ messages / 1 participants
[nested] [flat]
* pgAdmin 4 commit: Improve code coverage and API test cases for Tables.
@ 2020-09-03 07:34 Akshay Joshi <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Akshay Joshi @ 2020-09-03 07:34 UTC (permalink / raw)
To: [email protected]
Improve code coverage and API test cases for Tables. Fixes #5774.
Branch
------
master
Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=3e35dc95e5c633572a24371b49011e306f18...
Author: Yogesh Mahajan <[email protected]>
Modified Files
--------------
docs/en_US/release_notes_4_26.rst | 1 +
.../schemas/tables/tests/table_test_data.json | 1934 ++++++++++++++++++++
.../tables/tests/test_column_privileges_put.py | 96 -
.../schemas/tables/tests/test_table_add.py | 214 +--
.../schemas/tables/tests/test_table_delete.py | 63 +-
.../tests/test_table_dependencies_dependents.py | 75 +
.../schemas/tables/tests/test_table_get.py | 59 +-
.../tests/test_table_get_existing_table_actions.py | 98 +
.../schemas/tables/tests/test_table_get_nodes.py | 98 +
...test_table_get_pre_table_creation_parameters.py | 104 ++
.../tables/tests/test_table_get_script_sql.py | 99 +
.../tables/tests/test_table_get_statistics.py | 95 +
.../schemas/tables/tests/test_table_msql.py | 79 +
.../schemas/tables/tests/test_table_parameters.py | 175 --
.../schemas/tables/tests/test_table_put.py | 143 +-
.../tables/tests/test_table_put_partition.py | 117 ++
..._multiple.py => test_table_reset_statistics.py} | 56 +-
.../schemas/tables/tests/test_table_sql.py | 88 +
.../databases/schemas/tables/tests/utils.py | 89 +-
19 files changed, 3080 insertions(+), 603 deletions(-)
^ permalink raw reply [nested|flat] 5+ messages in thread
* pgAdmin 4 commit: Improve code coverage and API test cases for Function
@ 2020-09-22 11:19 Akshay Joshi <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Akshay Joshi @ 2020-09-22 11:19 UTC (permalink / raw)
To: [email protected]
Improve code coverage and API test cases for Functions. Fixes #5330
Branch
------
master
Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=43d97b0e6f5ea910586092113ec3baf8b74d...
Author: Nikhil Mohite <[email protected]>
Modified Files
--------------
docs/en_US/release_notes_4_27.rst | 1 +
.../databases/schemas/functions/__init__.py | 29 +--
.../schemas/functions/tests/test_function_add.py | 93 ++++++++-
.../functions/tests/test_function_delete.py | 103 +++++++++-
.../schemas/functions/tests/test_function_get.py | 73 ++++++-
.../functions/tests/test_function_get_languages.py | 80 ++++++++
.../functions/tests/test_function_get_msql.py | 224 +++++++++++++++++++++
.../functions/tests/test_function_get_nodes.py | 121 +++++++++++
.../functions/tests/test_function_get_sql.py | 85 ++++++++
.../functions/tests/test_function_get_types.py | 82 ++++++++
.../tests/test_function_get_variable_options.py | 80 ++++++++
.../schemas/functions/tests/test_function_put.py | 159 +++++++++++++--
.../functions/tests/test_get_dependencies.py | 85 ++++++++
.../schemas/functions/tests/test_get_dependents.py | 85 ++++++++
.../tests/test_get_function_statistics.py | 120 +++++++++++
.../schemas/functions/tests/test_get_list.py | 80 ++++++++
.../schemas/functions/tests/test_get_select_sql.py | 122 +++++++++++
.../tests/test_get_supported_functions.py | 85 ++++++++
.../databases/schemas/functions/tests/utils.py | 10 +-
19 files changed, 1659 insertions(+), 58 deletions(-)
^ permalink raw reply [nested|flat] 5+ messages in thread
* pgAdmin 4 commit: Improve code coverage and API test cases for Debugger
@ 2020-12-03 05:16 Akshay Joshi <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Akshay Joshi @ 2020-12-03 05:16 UTC (permalink / raw)
To: [email protected]
Improve code coverage and API test cases for Debugger. Fixes #5343
Branch
------
master
Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=794bd50ed107254b87404e70c665fac6f923...
Author: Nikhil Mohite <[email protected]>
Modified Files
--------------
docs/en_US/release_notes_4_29.rst | 1 +
.../databases/schemas/functions/tests/utils.py | 7 +-
.../schemas/tables/triggers/tests/utils.py | 2 +-
web/pgadmin/tools/debugger/__init__.py | 117 +-
web/pgadmin/tools/debugger/static/js/debugger.js | 8 +-
.../tools/debugger/static/js/debugger_ui.js | 4 +-
web/pgadmin/tools/debugger/tests/__init__.py | 0
.../tools/debugger/tests/debugger_test_data.json | 1703 ++++++++++++++++++++
.../tools/debugger/tests/test_close_debugger.py | 77 +
.../tests/test_debugger_clear_all_breakpoint.py | 92 ++
.../tests/test_debugger_clear_arguments.py | 83 +
.../tools/debugger/tests/test_debugger_direct.py | 84 +
.../debugger/tests/test_debugger_execute_query.py | 86 +
.../debugger/tests/test_debugger_get_arguments.py | 71 +
.../tests/test_debugger_poll_execution_result.py | 86 +
.../debugger/tests/test_debugger_poll_result.py | 83 +
.../debugger/tests/test_debugger_set_arguments.py | 89 +
.../debugger/tests/test_debugger_set_breakpoint.py | 89 +
.../debugger/tests/test_init_debugger_function.py | 113 ++
.../debugger/tests/test_init_debugger_trigger.py | 95 ++
.../tools/debugger/tests/test_init_target.py | 137 ++
.../tools/debugger/tests/test_messages_debugger.py | 80 +
.../tools/debugger/tests/test_restart_debugger.py | 82 +
.../tests/test_start_execution_debugger.py | 85 +
.../debugger/tests/test_start_listener_debugger.py | 89 +
web/pgadmin/tools/debugger/tests/utils.py | 146 ++
26 files changed, 3436 insertions(+), 73 deletions(-)
^ permalink raw reply [nested|flat] 5+ messages in thread
* pgAdmin 4 commit: Improve code coverage and API test cases for pgAgent.
@ 2020-12-31 08:24 Akshay Joshi <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Akshay Joshi @ 2020-12-31 08:24 UTC (permalink / raw)
To: [email protected]
Improve code coverage and API test cases for pgAgent. Fixes #5338
Branch
------
master
Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=d1f5511566c2959f5dac230d196547403488...
Author: Yogesh Mahajan <[email protected]>
Modified Files
--------------
docs/en_US/release_notes_4_30.rst | 1 +
.../servers/pgagent/schedules/tests/__init__.py | 0
.../schedules/tests/schedules_test_data.json | 666 ++++++++++
.../schedules/tests/test_pgagent_add_schedule.py | 81 ++
.../tests/test_pgagent_delete_schedule.py} | 41 +-
.../tests/test_pgagent_get_msql_schedule.py | 68 +
.../tests/test_pgagent_get_nodes_schedule.py | 70 +
.../schedules/tests/test_pgagent_get_schedule.py | 70 +
.../schedules/tests/test_pgagent_put_schedule.py | 94 ++
.../servers/pgagent/schedules/tests/utils.py | 62 +
.../servers/pgagent/steps/tests/__init__.py | 0
.../pgagent/steps/tests/steps_test_data.json | 368 ++++++
.../pgagent/steps/tests/test_pgagent_add_steps.py | 70 +
.../tests/test_pgagent_delete_steps.py} | 40 +-
.../steps/tests/test_pgagent_get_nodes_steps.py | 75 ++
.../pgagent/steps/tests/test_pgagent_get_steps.py | 75 ++
.../steps/tests/test_pgagent_get_steps_stats.py | 62 +
.../tests/test_pgagent_put_steps.py} | 57 +-
.../servers/pgagent/steps/tests/utils.py | 59 +
.../servers/pgagent/tests/pgagent_test_data.json | 1375 ++++++++++++++++++++
.../servers/pgagent/tests/test_pgagent_add.py | 90 --
.../pgagent/tests/test_pgagent_delete_multiple.py | 47 -
.../servers/pgagent/tests/test_pgagent_job_add.py | 74 ++
...gagent_delete.py => test_pgagent_job_delete.py} | 37 +-
.../servers/pgagent/tests/test_pgagent_job_get.py | 73 ++
...pgagent_get.py => test_pgagent_job_get_msql.py} | 37 +-
.../pgagent/tests/test_pgagent_job_get_nodes.py | 73 ++
.../tests/test_pgagent_job_get_statistics.py | 57 +
.../servers/pgagent/tests/test_pgagent_job_put.py | 64 +
.../servers/pgagent/tests/test_pgagent_job_sql.py | 70 +
.../servers/pgagent/tests/test_pgagent_put.py | 120 --
.../pgagent/tests/tests_pgagent_add_schedule.py | 80 --
.../pgagent/tests/tests_pgagent_add_steps.py | 69 -
.../tests_pgagent_delete_multiple_schedules.py | 56 -
.../tests/tests_pgagent_delete_multiple_steps.py | 54 -
.../pgagent/tests/tests_pgagent_put_schedule.py | 131 --
.../servers/pgagent/tests/tests_pgagent_stats.py | 45 -
.../server_groups/servers/pgagent/tests/utils.py | 59 +-
web/regression/runtests.py | 9 +-
39 files changed, 3797 insertions(+), 782 deletions(-)
^ permalink raw reply [nested|flat] 5+ messages in thread
* pgAdmin 4 commit: Improve code coverage and API test cases for Server m
@ 2021-03-30 05:45 Akshay Joshi <[email protected]>
0 siblings, 0 replies; 5+ messages in thread
From: Akshay Joshi @ 2021-03-30 05:45 UTC (permalink / raw)
To: [email protected]
Improve code coverage and API test cases for Server module. Fixes #5319
Branch
------
master
Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=f0c86741a4efacc300bdb7d5c85a07e7ad09...
Author: Rahul Shirsat <[email protected]>
Modified Files
--------------
docs/en_US/release_notes_5_2.rst | 1 +
.../browser/server_groups/servers/__init__.py | 9 +-
.../servers/tests/servers_test_data.json | 384 ++++++++++++++++++++-
.../server_groups/servers/tests/test_add_server.py | 24 ++
.../servers/tests/test_check_connect.py | 88 ++++-
.../servers/tests/test_check_recovery_code.py | 63 ++++
.../servers/tests/test_check_ssh_mock_connect.py | 99 ++++++
.../servers/tests/test_password_change.py | 104 ++++++
.../tests/servers_group_test_data.json | 45 +++
.../tests/test_servers_groups_childrens.py | 84 +++++
.../browser/server_groups/tests/test_sg_get.py | 8 +-
web/pgadmin/browser/server_groups/tests/utils.py | 16 +
12 files changed, 893 insertions(+), 32 deletions(-)
^ permalink raw reply [nested|flat] 5+ messages in thread
end of thread, other threads:[~2021-03-30 05:45 UTC | newest]
Thread overview: 5+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2020-09-03 07:34 pgAdmin 4 commit: Improve code coverage and API test cases for Tables. Akshay Joshi <[email protected]>
2020-09-22 11:19 pgAdmin 4 commit: Improve code coverage and API test cases for Function Akshay Joshi <[email protected]>
2020-12-03 05:16 pgAdmin 4 commit: Improve code coverage and API test cases for Debugger Akshay Joshi <[email protected]>
2020-12-31 08:24 pgAdmin 4 commit: Improve code coverage and API test cases for pgAgent. Akshay Joshi <[email protected]>
2021-03-30 05:45 pgAdmin 4 commit: Improve code coverage and API test cases for Server m Akshay Joshi <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox