Search in sources :

Example 11 with AppUrl

use of teammates.common.util.AppUrl in project teammates by TEAMMATES.

the class SystemErrorEmailReportTest method testNullPointerException.

private void testNullPointerException() {
    ______TS("NullPointerException testing");
    AppUrl url = createUrl(Const.ActionURIs.ADMIN_EXCEPTION_TEST).withParam(Const.ParamsNames.ERROR, NullPointerException.class.getSimpleName());
    page.navigateTo(url);
    print("NullPointerException triggered, please check your crash report at " + Config.SUPPORT_EMAIL);
}
Also used : AppUrl(teammates.common.util.AppUrl)

Example 12 with AppUrl

use of teammates.common.util.AppUrl in project teammates by TEAMMATES.

the class SystemErrorEmailReportTest method testEntityDoesNotExistException.

private void testEntityDoesNotExistException() {
    ______TS("EntityDoesNotExistException testing");
    AppUrl url = createUrl(Const.ActionURIs.ADMIN_EXCEPTION_TEST).withParam(Const.ParamsNames.ERROR, EntityDoesNotExistException.class.getSimpleName());
    page.navigateTo(url);
    print("This exception is handled by system, make sure you don't receive any emails. ");
}
Also used : AppUrl(teammates.common.util.AppUrl) EntityDoesNotExistException(teammates.common.exception.EntityDoesNotExistException)

Example 13 with AppUrl

use of teammates.common.util.AppUrl in project teammates by TEAMMATES.

the class SystemErrorEmailReportTest method testDeadlineExceededException.

private void testDeadlineExceededException() {
    ______TS("Deadline Exceeded testing");
    AppUrl url = createUrl(Const.ActionURIs.ADMIN_EXCEPTION_TEST).withParam(Const.ParamsNames.ERROR, DeadlineExceededException.class.getSimpleName());
    page.navigateTo(url);
    print("DeadlineExceededException triggered, please check your crash report at " + Config.SUPPORT_EMAIL);
}
Also used : AppUrl(teammates.common.util.AppUrl) DeadlineExceededException(com.google.apphosting.api.DeadlineExceededException)

Example 14 with AppUrl

use of teammates.common.util.AppUrl in project teammates by TEAMMATES.

the class AdminHomePageUiTest method testCreateInstructorAction.

private void testCreateInstructorAction() throws Exception {
    InstructorAttributes instructor = new InstructorAttributes();
    instructor.name = "AHPUiT Instrúctör WithPlusInEmail";
    instructor.email = "AHPUiT+++_.instr1!@gmail.tmt";
    String institute = "TEAMMATES Test Institute 1";
    String demoCourseId = "AHPUiT____.instr1_.gma-demo";
    String instructorDetails = instructor.name + " | " + instructor.email + "\n" + instructor.name + " | " + instructor.email + " | " + institute;
    ______TS("action fail & success: add multiple instructors");
    BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    BackDoor.deleteCourse(demoCourseId);
    BackDoor.deleteInstructor(demoCourseId, instructor.email);
    homePage.createInstructorByInstructorDetailsSingleLineForm(instructorDetails);
    InstructorAttributes instructorInBackend = getInstructorWithRetry(demoCourseId, instructor.email);
    assertEquals("Instructor Details must have 3 columns", homePage.getMessageFromResultTable(1));
    String encryptedKey = getKeyForInstructorWithRetry(demoCourseId, instructor.email);
    // use AppUrl from Config because the join link takes its base URL from build.properties
    String expectedjoinUrl = Config.getAppUrl(Const.ActionURIs.INSTRUCTOR_COURSE_JOIN).withRegistrationKey(encryptedKey).withInstructorInstitution(institute).toAbsoluteString();
    assertEquals("Instructor AHPUiT Instrúctör WithPlusInEmail has been successfully created " + Const.JOIN_LINK, homePage.getMessageFromResultTable(2));
    assertEquals(expectedjoinUrl, homePage.getJoinLink(homePage.getMessageFromResultTable(2)));
    assertEquals(instructor.getName(), instructorInBackend.getName());
    assertEquals(instructor.getEmail(), instructorInBackend.getEmail());
    homePage.clearInstructorDetailsSingleLineForm();
    ______TS("action success: displayed instructor details are properly HTML-encoded");
    InstructorAttributes dangerousInstructor = new InstructorAttributes();
    dangerousInstructor.name = "Malicious <script>alert('dangerous');</script>Instrúctör";
    dangerousInstructor.email = "malicious.instr1<>!@gmail.tmt";
    String dangerousInstitute = "TEAMMATES Malicious Institute <!@!@!>";
    String dangerousDemoCourseId = "malicious.instr1___.gma-demo";
    BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    BackDoor.deleteCourse(dangerousDemoCourseId);
    BackDoor.deleteInstructor(dangerousDemoCourseId, dangerousInstructor.email);
    homePage.createInstructor(dangerousInstructor, dangerousInstitute);
    assertEquals(dangerousInstructor.name, homePage.getNameFromResultTable(1));
    assertEquals(dangerousInstructor.email, homePage.getEmailFromResultTable(1));
    assertEquals(dangerousInstitute, homePage.getInstitutionFromResultTable(1));
    ______TS("action success : create instructor account and the account is created successfully " + "after user's verification");
    BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    BackDoor.deleteCourse(demoCourseId);
    BackDoor.deleteInstructor(demoCourseId, instructor.email);
    homePage.createInstructor(instructor, institute);
    encryptedKey = getKeyForInstructorWithRetry(demoCourseId, instructor.email);
    // use AppUrl from Config because the join link takes its base URL from build.properties
    expectedjoinUrl = Config.getAppUrl(Const.ActionURIs.INSTRUCTOR_COURSE_JOIN).withRegistrationKey(encryptedKey).withInstructorInstitution(institute).toAbsoluteString();
    assertEquals("Instructor AHPUiT Instrúctör WithPlusInEmail has been successfully created " + Const.JOIN_LINK, homePage.getMessageFromResultTable(1));
    assertEquals(expectedjoinUrl, homePage.getJoinLink(homePage.getMessageFromResultTable(1)));
    homePage.logout();
    // verify the instructor and the demo course have been created
    assertNotNull(getCourseWithRetry(demoCourseId));
    assertNotNull(getInstructorWithRetry(demoCourseId, instructor.email));
    // get the joinURL which sent to the requester's email
    String regkey = getKeyForInstructorWithRetry(demoCourseId, instructor.email);
    String joinLink = createUrl(Const.ActionURIs.INSTRUCTOR_COURSE_JOIN).withRegistrationKey(regkey).withInstructorInstitution(institute).toAbsoluteString();
    // simulate the user's verification here because it is added by admin
    browser.driver.get(joinLink);
    InstructorCourseJoinConfirmationPage confirmationPage = AppPage.createCorrectLoginPageType(browser).loginAsJoiningInstructor(TestProperties.TEST_INSTRUCTOR_ACCOUNT, TestProperties.TEST_INSTRUCTOR_PASSWORD);
    confirmationPage.clickCancelButton();
    browser.driver.get(joinLink);
    confirmationPage = AppPage.createCorrectLoginPageType(browser).loginAsJoiningInstructor(TestProperties.TEST_INSTRUCTOR_ACCOUNT, TestProperties.TEST_INSTRUCTOR_PASSWORD);
    confirmationPage.clickConfirmButtonWithRetry();
    // check a account has been created for the requester successfully
    assertNotNull(getAccountWithRetry(TestProperties.TEST_INSTRUCTOR_ACCOUNT));
    // verify sample course is accessible for newly joined instructor as an instructor
    ______TS("new instructor can see sample course in homepage");
    InstructorHomePage instructorHomePage = AppPage.getNewPageInstance(browser, InstructorHomePage.class);
    instructorHomePage.verifyHtmlMainContent("/newlyJoinedInstructorHomePage.html");
    ______TS("new instructor can access sample course details page");
    InstructorCourseEnrollPage enrollPage = instructorHomePage.clickCourseEnrollLink(demoCourseId);
    instructorHomePage = enrollPage.goToPreviousPage(InstructorHomePage.class);
    InstructorCourseDetailsPage detailsPage = instructorHomePage.clickCourseViewLink(demoCourseId);
    detailsPage.verifyHtmlMainContent("/newlyJoinedInstructorCourseDetailsPage.html");
    ______TS("new instructor can access sample course edit page");
    instructorHomePage = detailsPage.goToPreviousPage(InstructorHomePage.class);
    InstructorCourseEditPage editPage = instructorHomePage.clickCourseEditLink(demoCourseId);
    editPage.verifyHtmlMainContent("/newlyJoinedInstructorCourseEditPage.html");
    ______TS("new instructor can view feedback sessions of sample course");
    AppUrl url = createUrl(Const.ActionURIs.INSTRUCTOR_COURSES_PAGE).withUserId(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    coursesPage = AppPage.getNewPageInstance(browser, url, InstructorCoursesPage.class);
    coursesPage.waitForAjaxLoadCoursesSuccess();
    verifyCanViewSessionResults(demoCourseId, "First team feedback session", "/newlyJoinedInstructorFirstFeedbackSessionResultsPage.html");
    verifyCanViewSessionResults(demoCourseId, "Second team feedback session", "/newlyJoinedInstructorSecondFeedbackSessionResultsPage.html");
    verifyCanViewSessionResults(demoCourseId, "Session with different question types", "/newlyJoinedInstructorThirdFeedbackSessionResultsPage.html");
    ______TS("action failure : trying to create instructor with an invalid email");
    AppUrl homeUrl = createUrl(Const.ActionURIs.ADMIN_HOME_PAGE);
    homePage = loginAdminToPage(homeUrl, AdminHomePage.class);
    instructor.email = "AHPUiT.email.tmt";
    homePage.createInstructor(instructor, institute);
    assertEquals(getPopulatedErrorMessage(FieldValidator.EMAIL_ERROR_MESSAGE, instructor.email, FieldValidator.EMAIL_FIELD_NAME, FieldValidator.REASON_INCORRECT_FORMAT, FieldValidator.EMAIL_MAX_LENGTH), homePage.getMessageFromResultTable(1));
    ______TS("action success: course is accessible for newly joined instructor as student");
    // in staging server, the student account uses the hardcoded email above, so this can only be test on dev server
    if (!TestProperties.isDevServer()) {
        BackDoor.deleteCourse(demoCourseId);
        BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
        BackDoor.deleteInstructor(demoCourseId, instructor.email);
        return;
    }
    // verify sample course is accessible for newly joined instructor as an student
    StudentHomePage studentHomePage = getHomePage().clickStudentLogin().loginAsStudent(TestProperties.TEST_INSTRUCTOR_ACCOUNT, TestProperties.TEST_INSTRUCTOR_PASSWORD);
    studentHomePage.verifyContains(demoCourseId);
    studentHomePage.clickViewTeam();
    StudentCourseDetailsPage courseDetailsPage = AppPage.getNewPageInstance(browser, StudentCourseDetailsPage.class);
    courseDetailsPage.verifyHtmlMainContent("/newlyJoinedInstructorStudentCourseDetailsPage.html");
    studentHomePage = courseDetailsPage.goToPreviousPage(StudentHomePage.class);
    studentHomePage.clickViewFeedbackButton("First team feedback session");
    StudentFeedbackResultsPage sfrp = AppPage.getNewPageInstance(browser, StudentFeedbackResultsPage.class);
    sfrp.verifyHtmlMainContent("/newlyJoinedInstructorStudentFeedbackResultsPage.html");
    studentHomePage = sfrp.goToPreviousPage(StudentHomePage.class);
    studentHomePage.clickEditFeedbackButton("First team feedback session");
    FeedbackSubmitPage fsp = AppPage.getNewPageInstance(browser, FeedbackSubmitPage.class);
    fsp.verifyHtmlMainContent("/newlyJoinedInstructorStudentFeedbackSubmissionEdit.html");
    studentHomePage = fsp.loadStudentHomeTab();
    StudentProfilePage spp = studentHomePage.loadProfileTab();
    spp.verifyContains("Student Profile");
    spp.verifyContains("AHPUiT Instrúctör WithPlusInEmail");
    studentHomePage.logout();
    // login in as instructor again to test sample course deletion
    instructorHomePage = getHomePage().clickInstructorLogin().loginAsInstructor(TestProperties.TEST_INSTRUCTOR_ACCOUNT, TestProperties.TEST_INSTRUCTOR_PASSWORD);
    instructorHomePage.clickAndConfirm(instructorHomePage.getDeleteCourseLink(demoCourseId));
    assertTrue(instructorHomePage.getTextsForAllStatusMessagesToUser().contains("The course " + demoCourseId + " has been deleted."));
    instructorHomePage.logout();
    BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    BackDoor.deleteCourse(demoCourseId);
    BackDoor.deleteInstructor(demoCourseId, instructor.email);
    BackDoor.deleteAccount(TestProperties.TEST_INSTRUCTOR_ACCOUNT);
    BackDoor.deleteCourse(dangerousDemoCourseId);
    BackDoor.deleteInstructor(dangerousDemoCourseId, dangerousInstructor.email);
}
Also used : StudentFeedbackResultsPage(teammates.test.pageobjects.StudentFeedbackResultsPage) InstructorCourseEnrollPage(teammates.test.pageobjects.InstructorCourseEnrollPage) AppUrl(teammates.common.util.AppUrl) InstructorCoursesPage(teammates.test.pageobjects.InstructorCoursesPage) FeedbackSubmitPage(teammates.test.pageobjects.FeedbackSubmitPage) StudentCourseDetailsPage(teammates.test.pageobjects.StudentCourseDetailsPage) StudentProfilePage(teammates.test.pageobjects.StudentProfilePage) InstructorAttributes(teammates.common.datatransfer.attributes.InstructorAttributes) InstructorCourseEditPage(teammates.test.pageobjects.InstructorCourseEditPage) AdminHomePage(teammates.test.pageobjects.AdminHomePage) InstructorCourseDetailsPage(teammates.test.pageobjects.InstructorCourseDetailsPage) InstructorHomePage(teammates.test.pageobjects.InstructorHomePage) StudentHomePage(teammates.test.pageobjects.StudentHomePage) InstructorCourseJoinConfirmationPage(teammates.test.pageobjects.InstructorCourseJoinConfirmationPage)

Example 15 with AppUrl

use of teammates.common.util.AppUrl in project teammates by TEAMMATES.

the class AllAccessControlUiTests method testPubliclyAccessiblePages.

@Test
public void testPubliclyAccessiblePages() throws Exception {
    ______TS("log out page");
    // has been covered in testUserNotLoggedIn method
    ______TS("unauthorized page");
    AppUrl url = createUrl(Const.ViewURIs.UNAUTHORIZED);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/unauthorized.html");
    ______TS("error page");
    url = createUrl(Const.ViewURIs.ERROR_PAGE);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/errorPage.html");
    ______TS("deadline exceeded error page");
    url = createUrl(Const.ViewURIs.DEADLINE_EXCEEDED_ERROR_PAGE);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/deadlineExceededErrorPage.html");
    ______TS("entity not found page");
    url = createUrl(Const.ViewURIs.ENTITY_NOT_FOUND_PAGE);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/entityNotFoundPage.html");
    ______TS("action not found page");
    url = createUrl(Const.ViewURIs.ACTION_NOT_FOUND_PAGE);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/pageNotFound.html");
    ______TS("enable javascript page");
    url = createUrl(Const.ViewURIs.ENABLE_JS);
    currentPage.navigateTo(url);
    currentPage.verifyHtml("/enableJs.html");
    ______TS("user error report form - submit successfully");
    url = createUrl(Const.ViewURIs.ERROR_PAGE);
    currentPage.navigateTo(url);
    UserErrorReportPage errorReportPage = currentPage.changePageType(UserErrorReportPage.class);
    errorReportPage.verifyErrorReportFormContents();
    errorReportPage.fillFormAndClickSubmit("This is an error report.");
    errorReportPage.waitForTextsForAllStatusMessagesToUserEquals(Const.StatusMessages.ERROR_FEEDBACK_SUBMIT_SUCCESS);
    ______TS("user error report form - submit failed");
    logout();
    url = createUrl(Const.ViewURIs.ERROR_PAGE);
    errorReportPage.navigateTo(url);
    errorReportPage.verifyErrorReportFormContents();
    errorReportPage.fillFormAndClickSubmit("This is an error report.");
    final String failedStatusMessage = "Failed to record the error message. Please email our support team at " + Config.SUPPORT_EMAIL + ".";
    errorReportPage.waitForTextsForAllStatusMessagesToUserEquals(failedStatusMessage);
}
Also used : UserErrorReportPage(teammates.test.pageobjects.UserErrorReportPage) AppUrl(teammates.common.util.AppUrl) Test(org.testng.annotations.Test)

Aggregations

AppUrl (teammates.common.util.AppUrl)52 Test (org.testng.annotations.Test)7 InstructorCourseEnrollPage (teammates.test.pageobjects.InstructorCourseEnrollPage)6 InstructorStudentListPage (teammates.test.pageobjects.InstructorStudentListPage)6 StudentHomePage (teammates.test.pageobjects.StudentHomePage)6 InstructorAttributes (teammates.common.datatransfer.attributes.InstructorAttributes)4 StudentAttributes (teammates.common.datatransfer.attributes.StudentAttributes)3 InstructorCourseDetailsPage (teammates.test.pageobjects.InstructorCourseDetailsPage)3 InstructorCourseStudentDetailsEditPage (teammates.test.pageobjects.InstructorCourseStudentDetailsEditPage)3 InstructorHomePage (teammates.test.pageobjects.InstructorHomePage)3 Stopwatch (teammates.client.scripts.util.Stopwatch)2 AdminHomePage (teammates.test.pageobjects.AdminHomePage)2 InstructorCourseStudentDetailsViewPage (teammates.test.pageobjects.InstructorCourseStudentDetailsViewPage)2 InstructorCoursesPage (teammates.test.pageobjects.InstructorCoursesPage)2 InstructorFeedbackResultsPage (teammates.test.pageobjects.InstructorFeedbackResultsPage)2 InstructorFeedbackSessionsPage (teammates.test.pageobjects.InstructorFeedbackSessionsPage)2 InstructorStudentRecordsPage (teammates.test.pageobjects.InstructorStudentRecordsPage)2 StudentCourseDetailsPage (teammates.test.pageobjects.StudentCourseDetailsPage)2 BlobInfo (com.google.appengine.api.blobstore.BlobInfo)1 BlobKey (com.google.appengine.api.blobstore.BlobKey)1