-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* tests:OH2-326 | Tests | Add cypress e2e tests to cover admin/diseases * chore:Improve cypress indexing
- Loading branch information
Showing
8 changed files
with
146 additions
and
4 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
cypress/integrations/admin_activities/diseases_activities/add_disease_activity.cy.ts
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,55 @@ | ||
/// <reference types="cypress" /> | ||
|
||
const DISEASE_STARTS_PATH = "/admin/diseases"; | ||
|
||
describe("Add Disease Activity specs", () => { | ||
it("should render the ui", () => { | ||
cy.authenticate(DISEASE_STARTS_PATH); | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
|
||
it("should show disease creation form", () => { | ||
cy.dataCy("add-new-disease").click(); | ||
cy.dataCy("activity-title").contains("Add Disease"); | ||
}); | ||
|
||
it("should fail to create a new disease", () => { | ||
cy.byId("code").type("FAIL"); | ||
cy.byId("diseaseType").click(); | ||
cy.get('.MuiAutocomplete-popper li[data-option-index="0"]').click(); | ||
cy.byId("description").type("Children disease"); | ||
cy.get('input[name="opdInclude"]').check(); | ||
cy.get('input[name="ipdInInclude"]').check(); | ||
cy.get('input[name="ipdInInclude"]').uncheck(); | ||
cy.dataCy("submit-form").click(); | ||
cy.dataCy("info-box").contains("Fail"); | ||
}); | ||
|
||
it("should successfully create a new disease", () => { | ||
cy.byId("code").clear().type("22"); | ||
cy.dataCy("submit-form").click(); | ||
cy.dataCy("dialog-info").contains("Disease has been created successfully!"); | ||
cy.dataCy("approve-dialog").click(); | ||
}); | ||
|
||
it("should redirect after disease creation", () => { | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
|
||
it("should cancel the cancellation of the disease creation", () => { | ||
cy.dataCy("add-new-disease").click(); | ||
cy.dataCy("cancel-form").click(); | ||
cy.dataCy("dialog-info").contains( | ||
"Are you sure to Reset the Form? All the unsaved data will be lost." | ||
); | ||
cy.dataCy("close-dialog").click(); | ||
cy.dataCy("dialog-info").should("not.exist"); | ||
}); | ||
|
||
it("should cancel the disease creation", () => { | ||
cy.dataCy("cancel-form").click(); | ||
cy.dataCy("approve-dialog").click(); | ||
cy.dataCy("dialog-info").should("not.exist"); | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
}); |
53 changes: 53 additions & 0 deletions
53
cypress/integrations/admin_activities/diseases_activities/edit_disease_activity.cy.ts
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,53 @@ | ||
/// <reference types="cypress" /> | ||
|
||
const DISEASE_START_PATH = "/admin/diseases"; | ||
|
||
describe("Diseases Edit Activity specs", () => { | ||
it("should render the ui", () => { | ||
cy.authenticate(DISEASE_START_PATH); | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
|
||
it("should show disease edit form", () => { | ||
cy.dataCy("table-edit-action").first().click(); | ||
cy.dataCy("activity-title").contains("Edit Disease"); | ||
}); | ||
|
||
it("should fail to edit the disease", () => { | ||
cy.byId("code").should("be.disabled"); | ||
cy.get('input[name="opdInclude"]').uncheck(); | ||
cy.get('input[name="ipdInInclude"]').check(); | ||
cy.byId("diseaseType").clear(); | ||
cy.dataCy("submit-form").click(); | ||
cy.dataCy("dialog-info").should("not.exist"); | ||
}); | ||
|
||
it("should successfully save disease changes", () => { | ||
cy.byId("diseaseType").click(); | ||
cy.get('.MuiAutocomplete-popper li[data-option-index="0"]').click(); | ||
cy.dataCy("submit-form").click(); | ||
cy.dataCy("dialog-info").contains("has been updated successfully!"); | ||
cy.dataCy("approve-dialog").click(); | ||
}); | ||
|
||
it("should redirect after disease update", () => { | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
|
||
it("should cancel the cancellation of the disease creation", () => { | ||
cy.dataCy("table-edit-action").first().click(); | ||
cy.dataCy("cancel-form").click(); | ||
cy.dataCy("dialog-info").contains( | ||
"Are you sure to Reset the Form? All the unsaved data will be lost." | ||
); | ||
cy.dataCy("close-dialog").click(); | ||
cy.dataCy("dialog-info").should("not.exist"); | ||
}); | ||
|
||
it("should cancel the disease update", () => { | ||
cy.dataCy("cancel-form").click(); | ||
cy.dataCy("approve-dialog").click(); | ||
cy.dataCy("dialog-info").should("not.exist"); | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
}); |
19 changes: 19 additions & 0 deletions
19
cypress/integrations/admin_activities/diseases_activities/manage_diseases_activity.cy.ts
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,19 @@ | ||
/// <reference types="cypress" /> | ||
|
||
const DISEASES_START_PATH = "/admin/diseases"; | ||
|
||
describe("Diseases Activity specs", () => { | ||
it("should render the ui", () => { | ||
cy.authenticate(DISEASES_START_PATH); | ||
cy.dataCy("activity-title").contains("Diseases"); | ||
}); | ||
|
||
it("should present the table with three rows", () => { | ||
cy.dataCy("diseases-table") | ||
.find("table") | ||
.then(($table) => { | ||
const rows = $table.find("tbody tr"); | ||
expect(rows.length).equal(3); | ||
}); | ||
}); | ||
}); |
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
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
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
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
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