This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a change to branch CAUSEWAY-3676
in repository https://gitbox.apache.org/repos/asf/causeway.git
from 42580678d8 CAUSEWAY-3676: adds support for collection params
new 850db5d5d4 CAUSEWAY-3676: splits out Admin_IntegTest
new 923b3e1e14 CAUSEWAY-3676: splits up tests a little, is all
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../graphql/viewer/test/domain/Calculator.java | 25 ++
.../viewer/test/e2e/Abstract_IntegTest.java | 105 +++++
...min_IntegTest.action_with_disabled_param._.gql} | 0
...gTest.action_with_disabled_param.approved.json} | 0
...Admin_IntegTest.action_with_hidden_param._.gql} | 0
...tegTest.action_with_hidden_param.approved.json} | 0
...on._.gql => Admin_IntegTest.admin_action._.gql} | 0
... => Admin_IntegTest.admin_action.approved.json} | 0
.../graphql/viewer/test/e2e/Admin_IntegTest.java | 98 +++++
...ql => Admin_IntegTest.other_admin_action._.gql} | 0
...min_IntegTest.other_admin_action.approved.json} | 0
.../test/e2e/Calculator_IntegTest.add_int._.gql | 7 +
.../e2e/Calculator_IntegTest.add_int.approved.json | 9 +
...ma_IntegTest.java => Calculator_IntegTest.java} | 38 +-
...> Department_IntegTest.create_department._.gql} | 0
...ment_IntegTest.create_department.approved.json} | 0
...st.create_department_name_param_disabled._.gql} | 0
...e_department_name_param_disabled.approved.json} | 0
...epartment_IntegTest.find_all_departments._.gql} | 0
...t_IntegTest.find_all_departments.approved.json} | 0
...department_and_add_staff_members._.choices.gql} | 0
..._department_and_add_staff_members._.invoke.gql} | 0
...department_and_add_staff_members.approved.json} | 0
..._department_and_change_head_autocomplete._.gql} | 0
...ent_and_change_head_autocomplete.approved.json} | 0
....find_department_and_change_head_default._.gql} | 0
...partment_and_change_head_default.approved.json} | 0
....find_department_and_change_name_invalid._.gql} | 0
...partment_and_change_name_invalid.approved.json} | 0
...nd_department_and_edit_head_autocomplete._.gql} | 0
...tment_and_edit_head_autocomplete.approved.json} | 0
...and_edit_head_autocomplete_none_matching._.gql} | 0
..._head_autocomplete_none_matching.approved.json} | 0
...partment_and_remove_staff_member_choices._.gql} | 0
..._and_remove_staff_member_choices.approved.json} | 0
...rtment_IntegTest.find_department_by_name._.gql} | 0
...ntegTest.find_department_by_name.approved.json} | 0
.../viewer/test/e2e/Department_IntegTest.java | 214 ++++++++++
..._IntegTest.find_depthead_and_change_name._.gql} | 0
...st.find_depthead_and_change_name.approved.json} | 0
...st.find_depthead_and_change_name_invalid._.gql} | 0
...depthead_and_change_name_invalid.approved.json} | 0
..._depthead_and_change_name_invoke_invalid._.gql} | 0
...d_and_change_name_invoke_invalid.approved.json} | 0
...DeptHead_IntegTest.find_depthead_by_name._.gql} | 0
..._IntegTest.find_depthead_by_name.approved.json} | 0
.../viewer/test/e2e/DeptHead_IntegTest.java | 92 +++++
.../graphql/viewer/test/e2e/Domain_IntegTest.java | 434 ---------------------
...Test.create_staff_member_with_department._.gql} | 0
...ate_staff_member_with_department.approved.json} | 0
...gTest.find_staff_member_by_name_and_edit._.gql} | 0
...nd_staff_member_by_name_and_edit.approved.json} | 0
...ff_member_by_name_and_edit_grade_choices._.gql} | 0
...r_by_name_and_edit_grade_choices.approved.json} | 0
.../graphql/viewer/test/e2e/Staff_IntegTest.java | 119 ++++++
...IntegTest.staff_member_name_edit_invalid._.gql} | 0
...t.staff_member_name_edit_invalid.approved.json} | 0
...aff_IntegTest.staff_member_name_validate._.gql} | 0
...gTest.staff_member_name_validate.approved.json} | 0
.../test/{e2e => schema}/Schema_IntegTest.java | 2 +-
.../{e2e => schema}/Schema_IntegTest.schema._.gql | 0
.../Schema_IntegTest.schema.approved.json | 308 +++++++++++++++
.../Schema_IntegTest.schema_types_name._.gql | 0
...chema_IntegTest.schema_types_name.approved.json | 10 +
.../src/test/resources/application-test.properties | 4 +-
.../graphql/test/src/test/resources/schema.gql | 30 ++
66 files changed, 1042 insertions(+), 453 deletions(-)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/domain/Calculator.java
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Abstract_IntegTest.java
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.action_with_disabled_param._.gql
=> Admin_IntegTest.action_with_disabled_param._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.action_with_disabled_param.approved.json
=> Admin_IntegTest.action_with_disabled_param.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.action_with_hidden_param._.gql
=> Admin_IntegTest.action_with_hidden_param._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.action_with_hidden_param.approved.json
=> Admin_IntegTest.action_with_hidden_param.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.admin_action._.gql
=> Admin_IntegTest.admin_action._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.admin_action.approved.json
=> Admin_IntegTest.admin_action.approved.json} (100%)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Admin_IntegTest.java
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.other_admin_action._.gql
=> Admin_IntegTest.other_admin_action._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.other_admin_action.approved.json
=> Admin_IntegTest.other_admin_action.approved.json} (100%)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Calculator_IntegTest.add_int._.gql
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Calculator_IntegTest.add_int.approved.json
copy
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Schema_IntegTest.java
=> Calculator_IntegTest.java} (59%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_department._.gql
=> Department_IntegTest.create_department._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_department.approved.json
=> Department_IntegTest.create_department.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_department_name_param_disabled._.gql
=> Department_IntegTest.create_department_name_param_disabled._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_department_name_param_disabled.approved.json
=> Department_IntegTest.create_department_name_param_disabled.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_all_departments._.gql
=> Department_IntegTest.find_all_departments._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_all_departments.approved.json
=> Department_IntegTest.find_all_departments.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_add_staff_members._.choices.gql
=> Department_IntegTest.find_department_and_add_staff_members._.choices.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_add_staff_members._.invoke.gql
=> Department_IntegTest.find_department_and_add_staff_members._.invoke.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_add_staff_members.approved.json
=> Department_IntegTest.find_department_and_add_staff_members.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_head_autocomplete._.gql
=> Department_IntegTest.find_department_and_change_head_autocomplete._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_head_autocomplete.approved.json
=>
Department_IntegTest.find_department_and_change_head_autocomplete.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_head_default._.gql
=> Department_IntegTest.find_department_and_change_head_default._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_head_default.approved.json
=> Department_IntegTest.find_department_and_change_head_default.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_name_invalid._.gql
=> Department_IntegTest.find_department_and_change_name_invalid._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_change_name_invalid.approved.json
=> Department_IntegTest.find_department_and_change_name_invalid.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_edit_head_autocomplete._.gql
=> Department_IntegTest.find_department_and_edit_head_autocomplete._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_edit_head_autocomplete.approved.json
=>
Department_IntegTest.find_department_and_edit_head_autocomplete.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_edit_head_autocomplete_none_matching._.gql
=>
Department_IntegTest.find_department_and_edit_head_autocomplete_none_matching._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_edit_head_autocomplete_none_matching.approved.json
=>
Department_IntegTest.find_department_and_edit_head_autocomplete_none_matching.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_remove_staff_member_choices._.gql
=> Department_IntegTest.find_department_and_remove_staff_member_choices._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_and_remove_staff_member_choices.approved.json
=>
Department_IntegTest.find_department_and_remove_staff_member_choices.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_by_name._.gql
=> Department_IntegTest.find_department_by_name._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_department_by_name.approved.json
=> Department_IntegTest.find_department_by_name.approved.json} (100%)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Department_IntegTest.java
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name._.gql
=> DeptHead_IntegTest.find_depthead_and_change_name._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name.approved.json
=> DeptHead_IntegTest.find_depthead_and_change_name.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name_invalid._.gql
=> DeptHead_IntegTest.find_depthead_and_change_name_invalid._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name_invalid.approved.json
=> DeptHead_IntegTest.find_depthead_and_change_name_invalid.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name_invoke_invalid._.gql
=> DeptHead_IntegTest.find_depthead_and_change_name_invoke_invalid._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_and_change_name_invoke_invalid.approved.json
=>
DeptHead_IntegTest.find_depthead_and_change_name_invoke_invalid.approved.json}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_by_name._.gql
=> DeptHead_IntegTest.find_depthead_by_name._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_depthead_by_name.approved.json
=> DeptHead_IntegTest.find_depthead_by_name.approved.json} (100%)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/DeptHead_IntegTest.java
delete mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Domain_IntegTest.java
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_staff_member_with_department._.gql
=> Staff_IntegTest.create_staff_member_with_department._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.create_staff_member_with_department.approved.json
=> Staff_IntegTest.create_staff_member_with_department.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_staff_member_by_name_and_edit._.gql
=> Staff_IntegTest.find_staff_member_by_name_and_edit._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_staff_member_by_name_and_edit.approved.json
=> Staff_IntegTest.find_staff_member_by_name_and_edit.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_staff_member_by_name_and_edit_grade_choices._.gql
=> Staff_IntegTest.find_staff_member_by_name_and_edit_grade_choices._.gql}
(100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.find_staff_member_by_name_and_edit_grade_choices.approved.json
=>
Staff_IntegTest.find_staff_member_by_name_and_edit_grade_choices.approved.json}
(100%)
create mode 100644
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/Staff_IntegTest.java
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.staff_member_name_edit_invalid._.gql
=> Staff_IntegTest.staff_member_name_edit_invalid._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.staff_member_name_edit_invalid.approved.json
=> Staff_IntegTest.staff_member_name_edit_invalid.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.staff_member_name_validate._.gql
=> Staff_IntegTest.staff_member_name_validate._.gql} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/e2e/{Domain_IntegTest.staff_member_name_validate.approved.json
=> Staff_IntegTest.staff_member_name_validate.approved.json} (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/{e2e
=> schema}/Schema_IntegTest.java (97%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/{e2e
=> schema}/Schema_IntegTest.schema._.gql (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/{e2e
=> schema}/Schema_IntegTest.schema.approved.json (98%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/{e2e
=> schema}/Schema_IntegTest.schema_types_name._.gql (100%)
rename
incubator/viewers/graphql/test/src/test/java/org/apache/causeway/viewer/graphql/viewer/test/{e2e
=> schema}/Schema_IntegTest.schema_types_name.approved.json (99%)