pgAdmin 4 commit: Add test cases for tables, types, views and their chi

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: pgAdmin 4 commit: Add test cases for tables, types, views and their chi
Date: 2016-10-14 18:20:56
Message-ID: E1bv76G-0001TX-GX@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Add test cases for tables, types, views and their children.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=404d4efd2efdcffc8a0c6c0bba1d6760db69c381
Author: Navnath Gadakh <navnath(dot)gadakh(at)enterprisedb(dot)com>

Modified Files
--------------
.../servers/databases/schemas/__init__.py | 2 +-
.../databases/schemas/functions/tests/utils.py | 27 +++
.../schemas/tables/column/tests/__init__.py | 15 ++
.../schemas/tables/column/tests/test_column_add.py | 74 +++++++++
.../tables/column/tests/test_column_delete.py | 73 +++++++++
.../schemas/tables/column/tests/test_column_get.py | 69 ++++++++
.../schemas/tables/column/tests/test_column_put.py | 81 +++++++++
.../databases/schemas/tables/column/tests/utils.py | 86 ++++++++++
.../constraints/check_constraint/tests/__init__.py | 14 ++
.../tests/test_check_constraint_add.py | 73 +++++++++
.../tests/test_check_constraint_delete.py | 79 +++++++++
.../tests/test_check_constraint_get.py | 75 +++++++++
.../tests/test_check_constraint_put.py | 82 ++++++++++
.../constraints/check_constraint/tests/utils.py | 89 ++++++++++
.../constraints/foreign_key/tests/__init__.py | 15 ++
.../foreign_key/tests/test_foreign_key_add.py | 79 +++++++++
.../foreign_key/tests/test_foreign_key_delete.py | 83 ++++++++++
.../foreign_key/tests/test_foreign_key_get.py | 78 +++++++++
.../foreign_key/tests/test_foreign_key_put.py | 82 ++++++++++
.../tables/constraints/foreign_key/tests/utils.py | 88 ++++++++++
.../constraints/index_constraint/__init__.py | 1 -
.../constraints/index_constraint/tests/__init__.py | 15 ++
.../tests/test_index_constraint_add.py | 84 ++++++++++
.../tests/test_index_constraint_delete.py | 85 ++++++++++
.../tests/test_index_constraint_get.py | 85 ++++++++++
.../tests/test_index_constraint_put.py | 88 ++++++++++
.../constraints/index_constraint/tests/utils.py | 86 ++++++++++
.../schemas/tables/constraints/tests/__init__.py | 15 ++
.../schemas/tables/indexes/tests/__init__.py | 15 ++
.../tables/indexes/tests/test_indexes_add.py | 68 ++++++++
.../tables/indexes/tests/test_indexes_delete.py | 81 +++++++++
.../tables/indexes/tests/test_indexes_get.py | 76 +++++++++
.../tables/indexes/tests/test_indexes_put.py | 84 ++++++++++
.../schemas/tables/indexes/tests/utils.py | 90 ++++++++++
.../schemas/tables/rules/tests/__init__.py | 15 ++
.../schemas/tables/rules/tests/test_rules_add.py | 69 ++++++++
.../tables/rules/tests/test_rules_delete.py | 72 ++++++++
.../schemas/tables/rules/tests/test_rules_get.py | 68 ++++++++
.../schemas/tables/rules/tests/test_rules_put.py | 76 +++++++++
.../databases/schemas/tables/rules/tests/utils.py | 86 ++++++++++
.../databases/schemas/tables/tests/__init__.py | 16 ++
.../schemas/tables/tests/test_table_add.py | 182 +++++++++++++++++++++
.../schemas/tables/tests/test_table_delete.py | 65 ++++++++
.../schemas/tables/tests/test_table_get.py | 61 +++++++
.../schemas/tables/tests/test_table_put.py | 69 ++++++++
.../databases/schemas/tables/tests/utils.py | 85 ++++++++++
.../schemas/tables/triggers/tests/__init__.py | 15 ++
.../tables/triggers/tests/test_triggers_add.py | 78 +++++++++
.../tables/triggers/tests/test_triggers_delete.py | 81 +++++++++
.../tables/triggers/tests/test_triggers_get.py | 76 +++++++++
.../tables/triggers/tests/test_triggers_put.py | 87 ++++++++++
.../schemas/tables/triggers/tests/utils.py | 90 ++++++++++
.../databases/schemas/types/tests/__init__.py | 16 ++
.../schemas/types/tests/test_types_add.py | 68 ++++++++
.../schemas/types/tests/test_types_delete.py | 65 ++++++++
.../schemas/types/tests/test_types_get.py | 61 +++++++
.../schemas/types/tests/test_types_put.py | 68 ++++++++
.../servers/databases/schemas/types/tests/utils.py | 82 ++++++++++
.../databases/schemas/views/tests/__init__.py | 16 ++
.../schemas/views/tests/test_views_add.py | 95 +++++++++++
.../schemas/views/tests/test_views_delete.py | 79 +++++++++
.../schemas/views/tests/test_views_get.py | 75 +++++++++
.../schemas/views/tests/test_views_put.py | 83 ++++++++++
.../servers/databases/schemas/views/tests/utils.py | 84 ++++++++++
.../server_groups/servers/databases/tests/utils.py | 4 +-
65 files changed, 4220 insertions(+), 4 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2016-10-14 18:21:09 Re: pgAdmin IV: API test cases for Tables, Types and Views
Previous Message Dave Page 2016-10-14 17:59:51 Re: Package and synonyms patch