use of teammates.common.datatransfer.attributes.StudentAttributes in project teammates by TEAMMATES.
the class BaseActionTest method verifyAccessibleForInstructorsOfTheSameCourse.
protected void verifyAccessibleForInstructorsOfTheSameCourse(String[] submissionParams) {
______TS("course instructor can access");
InstructorAttributes instructor1OfCourse1 = typicalBundle.instructors.get("instructor1OfCourse1");
StudentAttributes student1InCourse1 = typicalBundle.students.get("student1InCourse1");
InstructorAttributes otherInstructor = typicalBundle.instructors.get("instructor1OfCourse2");
gaeSimulation.loginAsInstructor(instructor1OfCourse1.googleId);
verifyCanAccess(submissionParams);
verifyCannotMasquerade(addUserIdToParams(student1InCourse1.googleId, submissionParams));
verifyCannotMasquerade(addUserIdToParams(otherInstructor.googleId, submissionParams));
}
use of teammates.common.datatransfer.attributes.StudentAttributes in project teammates by TEAMMATES.
the class BaseActionTest method verifyUnaccessibleForUnregisteredUsers.
protected void verifyUnaccessibleForUnregisteredUsers(String[] submissionParams) {
______TS("non-registered users cannot access");
String unregUserId = "unreg.user";
InstructorAttributes instructor1OfCourse1 = typicalBundle.instructors.get("instructor1OfCourse1");
StudentAttributes student1InCourse1 = typicalBundle.students.get("student1InCourse1");
gaeSimulation.loginUser(unregUserId);
verifyCannotAccess(submissionParams);
verifyCannotMasquerade(addUserIdToParams(student1InCourse1.googleId, submissionParams));
verifyCannotMasquerade(addUserIdToParams(instructor1OfCourse1.googleId, submissionParams));
}
use of teammates.common.datatransfer.attributes.StudentAttributes in project teammates by TEAMMATES.
the class InstructorCourseEnrollSaveActionTest method testExecuteAndPostProcess.
@Override
@Test
public void testExecuteAndPostProcess() throws Exception {
String enrollString = "";
InstructorAttributes instructor1OfCourse1 = typicalBundle.instructors.get("instructor1OfCourse1");
String instructorId = instructor1OfCourse1.googleId;
String courseId = instructor1OfCourse1.courseId;
gaeSimulation.loginAsInstructor(instructorId);
______TS("Typical case: add and edit students for non-empty course");
enrollString = "Section | Team | Name | Email | Comment" + System.lineSeparator() + // A new student
"Section 3 \t Team 1\tJean Wong\tjean@email.tmt\tExchange student" + System.lineSeparator() + // A new student with extra spaces in the team and name
"Section 3 \t Team 1\tstudent with extra spaces \t" + "studentWithExtraSpaces@gmail.tmt\t" + System.lineSeparator() + // A student to be modified
"Section 2 \t Team 1.3\tstudent1 In Course1</td></div>'\"\tstudent1InCourse1@gmail.tmt\t" + "New comment added" + System.lineSeparator() + // An existing student with no modification
"Section 1 \t Team 1.1</td></div>'\"\tstudent2 In Course1\tstudent2InCourse1@gmail.tmt\t" + System.lineSeparator() + // An existing student, now with extra spaces, should cause no modification
"Section 1 \t Team 1.1</td></div>'\"\tstudent3 In Course1 \tstudent3InCourse1@gmail.tmt\t";
String[] submissionParams = new String[] { Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollString };
InstructorCourseEnrollSaveAction enrollAction = getAction(submissionParams);
ShowPageResult pageResult = getShowPageResult(enrollAction);
assertEquals(getPageResultDestination(Const.ViewURIs.INSTRUCTOR_COURSE_ENROLL_RESULT, false, "idOfInstructor1OfCourse1"), pageResult.getDestinationWithParams());
assertFalse(pageResult.isError);
assertEquals("", pageResult.getStatusMessage());
// there are 6 sessions in this course
verifySpecifiedTasksAdded(enrollAction, Const.TaskQueue.FEEDBACK_RESPONSE_ADJUSTMENT_QUEUE_NAME, 6);
List<TaskWrapper> tasksAdded = enrollAction.getTaskQueuer().getTasksAdded();
for (TaskWrapper task : tasksAdded) {
Map<String, String[]> paramMap = task.getParamMap();
assertEquals(courseId, paramMap.get(ParamsNames.COURSE_ID)[0]);
}
InstructorCourseEnrollResultPageData pageData = (InstructorCourseEnrollResultPageData) pageResult.data;
assertEquals(courseId, pageData.getCourseId());
StudentAttributes newStudent = StudentAttributes.builder(courseId, "Jean Wong", "jean@email.tmt").withSection("Section 3").withTeam("Team 1").withComments("Exchange student").withGoogleId("jean").build();
newStudent.updateStatus = StudentUpdateStatus.NEW;
verifyStudentEnrollmentStatus(newStudent, pageData.getEnrollResultPanelList());
StudentAttributes newStudentWithExtraSpaces = StudentAttributes.builder(courseId, "student with extra spaces", "studentWithExtraSpaces@gmail.tmt").withSection("Section 3").withTeam("Team 1").withComments("").withGoogleId("student").build();
newStudentWithExtraSpaces.updateStatus = StudentUpdateStatus.NEW;
verifyStudentEnrollmentStatus(newStudentWithExtraSpaces, pageData.getEnrollResultPanelList());
StudentAttributes modifiedStudent = typicalBundle.students.get("student1InCourse1");
modifiedStudent.comments = "New comment added";
modifiedStudent.section = "Section 2";
modifiedStudent.team = "Team 1.3";
modifiedStudent.updateStatus = StudentUpdateStatus.MODIFIED;
verifyStudentEnrollmentStatus(modifiedStudent, pageData.getEnrollResultPanelList());
StudentAttributes unmodifiedStudent = typicalBundle.students.get("student2InCourse1");
unmodifiedStudent.updateStatus = StudentUpdateStatus.UNMODIFIED;
verifyStudentEnrollmentStatus(unmodifiedStudent, pageData.getEnrollResultPanelList());
StudentAttributes unmodifiedStudentWithExtraSpaces = typicalBundle.students.get("student3InCourse1");
unmodifiedStudentWithExtraSpaces.updateStatus = StudentUpdateStatus.UNMODIFIED;
verifyStudentEnrollmentStatus(unmodifiedStudentWithExtraSpaces, pageData.getEnrollResultPanelList());
String expectedLogSegment = "Students Enrolled in Course <span class=\"bold\">[" + courseId + "]" + ":</span><br>" + SanitizationHelper.sanitizeForHtml(enrollString).replace("\n", "<br>");
AssertHelper.assertContains(expectedLogSegment, enrollAction.getLogMessage());
______TS("Masquerade mode, enrollment into empty course");
if (CoursesLogic.inst().isCoursePresent("new-course")) {
CoursesLogic.inst().deleteCourseCascade("new-course");
}
courseId = "new-course";
CoursesLogic.inst().createCourseAndInstructor(instructorId, courseId, "New course", "UTC");
gaeSimulation.loginAsAdmin("admin.user");
String headerRow = "Name\tEmail\tTeam\tComment";
String studentsInfo = "Jean Wong\tjean@email.tmt\tTeam 1\tExchange student" + System.lineSeparator() + "James Tan\tjames@email.tmt\tTeam 2\t";
enrollString = headerRow + System.lineSeparator() + studentsInfo;
submissionParams = new String[] { Const.ParamsNames.USER_ID, instructorId, Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollString };
enrollAction = getAction(submissionParams);
pageResult = getShowPageResult(enrollAction);
assertEquals(getPageResultDestination(Const.ViewURIs.INSTRUCTOR_COURSE_ENROLL_RESULT, false, "idOfInstructor1OfCourse1"), pageResult.getDestinationWithParams());
assertFalse(pageResult.isError);
assertEquals("", pageResult.getStatusMessage());
verifyNoTasksAdded(enrollAction);
pageData = (InstructorCourseEnrollResultPageData) pageResult.data;
assertEquals(courseId, pageData.getCourseId());
StudentAttributes student1 = StudentAttributes.builder(courseId, "Jean Wong", "jean@email.tmt").withSection("None").withTeam("Team 1").withComments("Exchange student").withGoogleId("jean").build();
student1.updateStatus = StudentUpdateStatus.NEW;
verifyStudentEnrollmentStatus(student1, pageData.getEnrollResultPanelList());
StudentAttributes student2 = StudentAttributes.builder(courseId, "James Tan", "james@email.tmt").withSection("None").withTeam("Team 2").withComments("").withGoogleId("james").build();
student2.updateStatus = StudentUpdateStatus.NEW;
verifyStudentEnrollmentStatus(student2, pageData.getEnrollResultPanelList());
expectedLogSegment = "Students Enrolled in Course <span class=\"bold\">[" + courseId + "]:</span>" + "<br>" + enrollString.replace("\n", "<br>");
AssertHelper.assertContains(expectedLogSegment, enrollAction.getLogMessage());
______TS("Failure case: enrollment failed due to invalid lines");
gaeSimulation.loginAsInstructor(instructorId);
String studentWithoutEnoughParam = "Team 1\tStudentWithNoEmailInput";
String studentWithInvalidEmail = "Team 2\tBenjamin Tan\tinvalid.email.tmt";
String invalidEmail = "invalid.email.tmt";
enrollString = "Team | Name | Email" + System.lineSeparator() + studentWithoutEnoughParam + System.lineSeparator() + studentWithInvalidEmail;
submissionParams = new String[] { Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollString };
enrollAction = getAction(submissionParams);
pageResult = getShowPageResult(enrollAction);
assertEquals(Const.ViewURIs.INSTRUCTOR_COURSE_ENROLL, pageResult.destination);
assertTrue(pageResult.isError);
String expectedStatusMessage = "<p>" + "<span class=\"bold\">Problem in line : " + "<span class=\"invalidLine\">" + SanitizationHelper.sanitizeForHtml(studentWithoutEnoughParam) + "</span>" + "</span>" + "<br>" + "<span class=\"problemDetail\">• " + StudentAttributesFactory.ERROR_ENROLL_LINE_TOOFEWPARTS + "</span>" + "</p>" + "<br>" + "<p>" + "<span class=\"bold\">Problem in line : " + "<span class=\"invalidLine\">" + SanitizationHelper.sanitizeForHtml(studentWithInvalidEmail) + "</span>" + "</span>" + "<br>" + "<span class=\"problemDetail\">• " + SanitizationHelper.sanitizeForHtml(getPopulatedErrorMessage(FieldValidator.EMAIL_ERROR_MESSAGE, invalidEmail, FieldValidator.EMAIL_FIELD_NAME, FieldValidator.REASON_INCORRECT_FORMAT, FieldValidator.EMAIL_MAX_LENGTH)) + "</span>" + "</p>";
assertEquals(expectedStatusMessage, pageResult.getStatusMessage());
verifyNoTasksAdded(enrollAction);
InstructorCourseEnrollPageData enrollPageData = (InstructorCourseEnrollPageData) pageResult.data;
assertEquals(courseId, enrollPageData.getCourseId());
assertEquals(enrollString, enrollPageData.getEnrollStudents());
expectedLogSegment = expectedStatusMessage + "<br>Enrollment string entered by user:<br>" + enrollString.replace("\n", "<br>");
AssertHelper.assertContains(expectedLogSegment, enrollAction.getLogMessage());
______TS("Boundary test for size limit per enrollment");
// can enroll, if within the size limit
StringBuilder enrollStringBuilder = new StringBuilder(200);
enrollStringBuilder.append("Section\tTeam\tName\tEmail");
for (int i = 0; i < Const.SIZE_LIMIT_PER_ENROLLMENT; i++) {
enrollStringBuilder.append(System.lineSeparator()).append("section" + i + "\tteam" + i + "\tname" + i + "\temail" + i + "@nonexistemail.nonexist");
}
submissionParams = new String[] { Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollStringBuilder.toString() };
enrollAction = getAction(submissionParams);
pageResult = getShowPageResult(enrollAction);
assertFalse(pageResult.isError);
assertEquals("", pageResult.getStatusMessage());
verifyNoTasksAdded(enrollAction);
// fail to enroll, if exceed the range
enrollStringBuilder.append(System.lineSeparator()).append("section" + Const.SIZE_LIMIT_PER_ENROLLMENT + "\tteam" + Const.SIZE_LIMIT_PER_ENROLLMENT + "\tname" + Const.SIZE_LIMIT_PER_ENROLLMENT + "\temail" + Const.SIZE_LIMIT_PER_ENROLLMENT + "@nonexistemail.nonexist");
submissionParams = new String[] { Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollStringBuilder.toString() };
enrollAction = getAction(submissionParams);
pageResult = getShowPageResult(enrollAction);
assertEquals(Const.ViewURIs.INSTRUCTOR_COURSE_ENROLL, pageResult.destination);
assertTrue(pageResult.isError);
assertEquals(Const.StatusMessages.QUOTA_PER_ENROLLMENT_EXCEED, pageResult.getStatusMessage());
verifyNoTasksAdded(enrollAction);
______TS("Failure case: empty input");
enrollString = "";
submissionParams = new String[] { Const.ParamsNames.COURSE_ID, courseId, Const.ParamsNames.STUDENTS_ENROLLMENT_INFO, enrollString };
enrollAction = getAction(submissionParams);
pageResult = getShowPageResult(enrollAction);
assertEquals(getPageResultDestination(Const.ViewURIs.INSTRUCTOR_COURSE_ENROLL, true, "idOfInstructor1OfCourse1"), pageResult.getDestinationWithParams());
assertTrue(pageResult.isError);
assertEquals(Const.StatusMessages.ENROLL_LINE_EMPTY, pageResult.getStatusMessage());
verifyNoTasksAdded(enrollAction);
enrollPageData = (InstructorCourseEnrollPageData) pageResult.data;
assertEquals(courseId, enrollPageData.getCourseId());
assertEquals(enrollString, enrollPageData.getEnrollStudents());
AssertHelper.assertContains(Const.StatusMessages.ENROLL_LINE_EMPTY, enrollAction.getLogMessage());
CoursesLogic.inst().deleteCourseCascade("new-course");
StudentsLogic.inst().deleteStudentsForCourseWithoutDocument(instructor1OfCourse1.courseId);
}
use of teammates.common.datatransfer.attributes.StudentAttributes in project teammates by TEAMMATES.
the class BaseTestCaseWithDatastoreAccess method verifyPresentInDatastore.
protected void verifyPresentInDatastore(DataBundle data) {
Map<String, AccountAttributes> accounts = data.accounts;
for (AccountAttributes account : accounts.values()) {
verifyPresentInDatastore(account);
}
Map<String, InstructorAttributes> instructors = data.instructors;
for (InstructorAttributes instructor : instructors.values()) {
verifyPresentInDatastore(instructor);
}
Map<String, CourseAttributes> courses = data.courses;
for (CourseAttributes course : courses.values()) {
verifyPresentInDatastore(course);
}
Map<String, StudentAttributes> students = data.students;
for (StudentAttributes student : students.values()) {
verifyPresentInDatastore(student);
}
}
use of teammates.common.datatransfer.attributes.StudentAttributes in project teammates by TEAMMATES.
the class AdminSearchPageAction method putStudentHomePageLinkIntoMap.
private AdminSearchPageData putStudentHomePageLinkIntoMap(List<StudentAttributes> students, AdminSearchPageData data) {
for (StudentAttributes student : students) {
if (student.googleId == null) {
continue;
}
String curLink = Url.addParamToUrl(Const.ActionURIs.STUDENT_HOME_PAGE, Const.ParamsNames.USER_ID, student.googleId);
data.studentIdToHomePageLinkMap.put(student.googleId, curLink);
}
return data;
}
Aggregations