-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,811 additions
and
0 deletions.
There are no files selected for viewing
262 changes: 262 additions & 0 deletions
262
scenarios/hypertension/hypertension_contactable_overdue_patients.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,262 @@ | ||
Feature: Contactable Overdue Patients | ||
___ | ||
As a tester | ||
Given I have some "overdue" tracked entity instances with contact information in the system | ||
When I export analytics | ||
Then I should see the "HTN - Contactable overdue patients" program indicator data as expected | ||
___ | ||
|
||
Scenario: All patients must have a patient phone number | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
Given I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Callable | | ||
| GEN - Family name | Patient | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Unreachable | | ||
| GEN - Family name | Patient | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients" with period type "Months" should be | ||
| thisMonth | 1 | | ||
| 1_MonthAgo | 1 | | ||
| 2_MonthsAgo | 1 | | ||
| 3_MonthsAgo | 1 | | ||
| 4_MonthsAgo | 1 | | ||
| 5_MonthsAgo | 1 | | ||
| 6_MonthsAgo | 0 | | ||
| 7_MonthsAgo | 0 | | ||
| 8_MonthsAgo | 0 | | ||
| 9_MonthsAgo | 0 | | ||
| 10_MonthsAgo | 0 | | ||
| 11_MonthsAgo | 0 | | ||
| 12_MonthsAgo | 0 | | ||
|
||
Scenario: All overdue patients has to be hypertensive | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
Given I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Priyanka | | ||
| GEN - Family name | Chopra | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Alia | | ||
| GEN - Family name | Bhatt | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | NO | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients" with period type "Months" should be | ||
| thisMonth | 1 | | ||
| 1_MonthAgo | 1 | | ||
| 2_MonthsAgo | 1 | | ||
| 3_MonthsAgo | 1 | | ||
| 4_MonthsAgo | 1 | | ||
| 5_MonthsAgo | 1 | | ||
| 6_MonthsAgo | 0 | | ||
| 7_MonthsAgo | 0 | | ||
| 8_MonthsAgo | 0 | | ||
| 9_MonthsAgo | 0 | | ||
| 10_MonthsAgo | 0 | | ||
| 11_MonthsAgo | 0 | | ||
| 12_MonthsAgo | 0 | | ||
|
||
Scenario: Dead patients should not be included | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Test | | ||
| GEN - Family name | TEST | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Test | | ||
| GEN - Family name | TEST | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo" | ||
And That TEI was updated on "2_MonthsAgo" with the following attributes | ||
| HTN - NCD Patient Status | DIED | | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients" with period type "Months" should be | ||
| thisMonth | 1 | | ||
| 1_MonthAgo | 1 | | ||
| 2_MonthsAgo | 1 | | ||
| 3_MonthsAgo | 1 | | ||
| 4_MonthsAgo | 1 | | ||
| 5_MonthsAgo | 1 | | ||
| 6_MonthsAgo | 0 | | ||
| 7_MonthsAgo | 0 | | ||
| 8_MonthsAgo | 0 | | ||
| 9_MonthsAgo | 0 | | ||
| 10_MonthsAgo | 0 | | ||
| 11_MonthsAgo | 0 | | ||
| 12_MonthsAgo | 0 | | ||
|
||
Scenario: TEI are not marked as overdue anymore if they have visited after the due date. | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Rose | | ||
| GEN - Family name | Mary | | ||
| GEN - Sex | FEMALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo_Minus_1_Day" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Angel | | ||
| GEN - Family name | John | | ||
| GEN - Sex | FEMALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Calling report" event on "5_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | REMOVE_FROM_OVERDUE | | ||
| HTN - Remove from overdue list because: | OTHER | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "3_MonthsAgo" which was scheduled on "5_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Angel | | ||
| GEN - Family name | John | | ||
| GEN - Sex | FEMALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Calling report" event on "5_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | REMOVE_FROM_OVERDUE | | ||
| HTN - Remove from overdue list because: | OTHER | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "3_MonthsAgo" which was scheduled on "5_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients" with period type "Months" should be | ||
| thisMonth | 1 | | ||
| 1_MonthAgo | 1 | | ||
| 2_MonthsAgo | 1 | | ||
| 3_MonthsAgo | 2 | | ||
| 4_MonthsAgo | 2 | | ||
| 5_MonthsAgo | 1 | | ||
| 6_MonthsAgo | 1 | | ||
| 7_MonthsAgo | 0 | | ||
| 8_MonthsAgo | 0 | | ||
| 9_MonthsAgo | 0 | | ||
| 10_MonthsAgo | 0 | | ||
| 11_MonthsAgo | 0 | | ||
| 12_MonthsAgo | 0 | |
124 changes: 124 additions & 0 deletions
124
scenarios/hypertension/hypertension_contactable_overdue_patients_called.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
Feature: Contactable overdue patients called | ||
___ | ||
As a tester | ||
Given I call some contactable patients | ||
When I export the analytics | ||
Then I should should see correct "HTN - Contactable overdue patients called" data | ||
___ | ||
|
||
Scenario: Contactable called overdue patients should be counted | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Rose | | ||
| GEN - Family name | Mary | | ||
| GEN - Sex | FEMALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Hypertension & Diabetes visit" event scheduled for "6_MonthsAgo_Minus_1_Day" | ||
And That TEI has a "Calling report" event on "6_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | REMIND_TO_CALL_LATER | | ||
And That TEI has a "Calling report" event on "3_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | AGREE_TO_VISIT | | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients called" with period type "Months" should be | ||
| 3_MonthsAgo | 1 | | ||
| 4_MonthsAgo | 0 | | ||
| 5_MonthsAgo | 0 | | ||
| 6_MonthsAgo | 1 | | ||
| 7_MonthsAgo | 0 | | ||
|
||
Scenario: Assume calls only happen to overdue patients, and count all patients called | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Frances | | ||
| GEN - Family name | Bourgois | | ||
| GEN - Sex | FEMALE | | ||
| HTN - Does patient have hypertension? | YES | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | Rose Gardens | | ||
| Patient Phone Number | 345672781624 | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 142 | | ||
| Diastole | 95 | | ||
And That TEI has a "Calling report" event on "6_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | AGREE_TO_VISIT | | ||
And That TEI has a "Calling report" event on "3_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | AGREE_TO_VISIT | | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients called" with period type "Months" should be | ||
| 3_MonthsAgo | 1 | | ||
| 4_MonthsAgo | 0 | | ||
| 5_MonthsAgo | 0 | | ||
| 6_MonthsAgo | 1 | | ||
| 7_MonthsAgo | 0 | | ||
|
||
Scenario: Only managed patients should be counted (Hypertensive, alive, and in-facility) | ||
Given I am signed in as a user with role "Superuser" | ||
And I have access to an organisation unit at level 5 | ||
And I register that organisation unit for program "Hypertension & Diabetes" | ||
|
||
# Create the patients | ||
And I create a new TEI on "7_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Nonne | | ||
| GEN - Family name | Hypertensive | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | NO | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | By the beach | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Hypertension & Diabetes visit" event on "7_MonthsAgo" with following data | ||
| Systole | 119 | | ||
| Diastole | 69 | | ||
And That TEI has a "Calling report" event on "6_MonthsAgo_Plus_1_Day" with following data | ||
| Result of call | AGREE_TO_VISIT | | ||
And I create a new TEI on "5_MonthsAgo" for this Facility with the following attributes | ||
| GEN - Given name | Swimming with| | ||
| GEN - Family name | The Fishes | | ||
| GEN - Sex | MALE | | ||
| HTN - Does patient have hypertension? | NO | | ||
| HTN - Does patient have diabetes? | YES | | ||
| GEN - Date of birth | 32 | | ||
| Address (current) | By the beach | | ||
| District | KOLARA | | ||
| HTN - Consent to record data | true | | ||
| HTN - NCD Patient Status | ACTIVE | | ||
And That TEI has a "Calling report" event on "4_MonthsAgo" with following data | ||
| Result of call | AGREE_TO_VISIT | | ||
|
||
When I wait for 1 second | ||
And I export the analytics | ||
|
||
Then The value of "PI":"HTN - Contactable overdue patients called" with period type "Months" should be | ||
| 3_MonthsAgo | 0 | | ||
| 4_MonthsAgo | 0 | | ||
| 5_MonthsAgo | 0 | | ||
| 6_MonthsAgo | 0 | | ||
| 7_MonthsAgo | 0 | |
Oops, something went wrong.