forked from ohcnetwork/care_fe
-
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.
New Cypress Test | Patient consultation file upload | Patient Consult…
…ation Module (ohcnetwork#7554) * patient file upload * flaky test * missed test * deleted existing file upload test
- Loading branch information
Showing
10 changed files
with
127 additions
and
135 deletions.
There are no files selected for viewing
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 was deleted.
Oops, something went wrong.
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,117 @@ | ||
import { afterEach, before, beforeEach, cy, describe, it } from "local-cypress"; | ||
import LoginPage from "../../pageobject/Login/LoginPage"; | ||
import { PatientPage } from "../../pageobject/Patient/PatientCreation"; | ||
import { PatientFileUpload } from "../../pageobject/Patient/PatientFileupload"; | ||
const loginPage = new LoginPage(); | ||
const patientPage = new PatientPage(); | ||
const patientFileUpload = new PatientFileUpload(); | ||
|
||
function runTests(testDescription, visitPatientFileUploadSection) { | ||
describe(testDescription, () => { | ||
const cypressAudioName = "cypress audio"; | ||
const cypressFileName = "cypress name"; | ||
const newFileName = "cypress modified name"; | ||
const patientNameOne = "Dummy Patient 3"; | ||
const patientNameTwo = "Dummy Patient 4"; | ||
const patientNameThree = "Dummy Patient 5"; | ||
before(() => { | ||
loginPage.loginAsDisctrictAdmin(); | ||
cy.saveLocalStorage(); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.restoreLocalStorage(); | ||
cy.clearLocalStorage(/filters--.+/); | ||
cy.awaitUrl("/patients"); | ||
}); | ||
|
||
it("Record an Audio and download the file", () => { | ||
// Record an audio | ||
patientPage.visitPatient(patientNameOne); | ||
visitPatientFileUploadSection.call(patientFileUpload); | ||
patientFileUpload.recordAudio(); | ||
patientFileUpload.typeAudioName(cypressAudioName); | ||
patientFileUpload.clickUploadAudioFile(); | ||
// Verify the audio file is uploaded | ||
cy.verifyNotification("File Uploaded Successfully"); | ||
patientFileUpload.verifyUploadFilePresence(cypressAudioName); | ||
// Verify the download of the audio file | ||
cy.get("button").contains("DOWNLOAD").click(); | ||
cy.verifyNotification("Downloading file..."); | ||
}); | ||
|
||
it("Upload a File and archive it", () => { | ||
// Upload the file | ||
patientPage.visitPatient(patientNameTwo); | ||
visitPatientFileUploadSection.call(patientFileUpload); | ||
patientFileUpload.uploadFile(); | ||
patientFileUpload.typeFileName(cypressFileName); | ||
patientFileUpload.clickUploadFile(); | ||
// Verify the file is uploaded | ||
cy.verifyNotification("File Uploaded Successfully"); | ||
cy.closeNotification(); | ||
patientFileUpload.verifyUploadFilePresence(cypressFileName); | ||
// Archive the file | ||
patientFileUpload.archiveFile(); | ||
patientFileUpload.clickSaveArchiveFile(); | ||
cy.verifyNotification("File archived successfully"); | ||
patientFileUpload.verifyArchiveFile(cypressFileName); | ||
}); | ||
|
||
it("User-level Based Permission for File Modification", () => { | ||
// Login as Nurse 1 | ||
loginPage.login("dummynurse1", "Coronasafe@123"); | ||
cy.reload(); | ||
// Visit the patient details page | ||
patientPage.visitPatient(patientNameThree); | ||
visitPatientFileUploadSection.call(patientFileUpload); | ||
// Upload the file | ||
patientFileUpload.uploadFile(); | ||
patientFileUpload.typeFileName(cypressFileName); | ||
patientFileUpload.clickUploadFile(); | ||
// Verify the file is uploaded | ||
cy.verifyNotification("File Uploaded Successfully"); | ||
cy.closeNotification(); | ||
patientFileUpload.verifyUploadFilePresence(cypressFileName); | ||
// Edit the file name | ||
patientFileUpload.verifyFileRenameOption(true); | ||
patientFileUpload.renameFile(newFileName); | ||
patientFileUpload.clickSaveFileName(); | ||
// Verify the file name is changed | ||
cy.verifyNotification("File name changed successfully"); | ||
cy.closeNotification(); | ||
patientFileUpload.verifyUploadFilePresence(newFileName); | ||
// Login as Nurse 2 | ||
loginPage.login("dummynurse2", "Coronasafe@123"); | ||
cy.reload(); | ||
// Verify the file edit option is not available | ||
patientFileUpload.verifyUploadFilePresence(newFileName); | ||
patientFileUpload.verifyFileRenameOption(false); | ||
// Login as District Admin | ||
loginPage.loginAsDisctrictAdmin(); | ||
cy.reload(); | ||
// Verify the file edit option is available | ||
patientFileUpload.verifyUploadFilePresence(newFileName); | ||
patientFileUpload.verifyFileRenameOption(true); | ||
patientFileUpload.renameFile(cypressFileName); | ||
patientFileUpload.clickSaveFileName(); | ||
// Verify the file name is changed | ||
cy.verifyNotification("File name changed successfully"); | ||
cy.closeNotification(); | ||
patientFileUpload.verifyUploadFilePresence(cypressFileName); | ||
}); | ||
|
||
afterEach(() => { | ||
cy.saveLocalStorage(); | ||
}); | ||
}); | ||
} | ||
|
||
runTests( | ||
"Patient File upload in patient details page", | ||
patientFileUpload.clickFileUploadIcon | ||
); | ||
runTests( | ||
"Patient File upload in patient consultation page", | ||
patientFileUpload.clickFileTab | ||
); |
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
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
File renamed without changes.