turns-00032.parquet:39252
bb1ffb8bda7ef50df0735c3f
turn 1/1gpt-4o-2024-08-06EnglishUnited States406 words
degenerate_repetitionAbsentFinal dense release
USER
Assistant:
User:
Please analyze the following code file and determine whether it belongs to any of the provided modules based on the listed module descriptions.
Note that the provided list of modules may not be exhaustive, and some files may not belong to any of the modules.
If the code belongs to a module, Only output the module name, without any explanation or additional information; otherwise, return 'None' if it does not belong to any module.
Modules : {
"UI": "Handles the front-end user interface, consisting of HTML, CSS, and JavaScript files generated by the Angular framework. It processes user requests and interacts with the server using AJAX for data retrieval and client-side interactions."
"Test Driver": "Facilitates automated regression testing and handles transmission of test data in JSON format. It performs Java testing using TestNG and JavaScript unit-testing with Jest. It also sets up a simulated web server for servlet-level tests and automates end-to-end testing using Selenium Java."
"Logic": "Manages the business logic of TEAMMATES, including handling relationships between entities, managing transactions, input value sanitization, access control rights, and interfacing with GAE-provided or third-party APIs."
"Storage": "Performs CRUD operations on data entities, validation of data, and abstraction of GQL queries, hiding the complexities of datastore from the Logic component."
"Common": "Contains utility classes, custom exceptions, and data transfer objects used across the entire application for easy consolidation and transfer of structured data."
"E2E": "Handles end-to-end testing and load & performance testing, providing helpers, abstractions of browser pages, and test cases for E2E tests and L&P tests."
"Client": "Contains scripts for administrative tasks, such as migrating data to a new schema and calculating statistics. This module connects directly to the application back-end for administrative purposes."
}
Code: package teammates.ui.webapi; /** * SUT: {@link FeedbackSessionUnpublishedEmailWorkerAction}. */ public class FeedbackSessionUnpublishedEmailWorkerActionTest extends BaseActionTest<FeedbackSessionUnpublishedEmailWorkerAction> { @Override protected String getActionUri() { return Const.TaskQueue.FEEDBACK_SESSION_UNPUBLISHED_EMAIL_WORKER_URL; } @Override protected String getRequestMethod() { return POST; } @Override @Test protected void testAccessControl() { verifyOnlyAdminCanAccess(); } @Override @Test public void testExecute() { FeedbackSessionAttributes session1 = typicalBundle.feedbackSessions.get("session1InCourse1"); String[] submissionParams = new String[] { ParamsNames.COURSE_ID, session1.getCourseId(), ParamsNames.FEEDBACK_SESSION_NAME, session1.getFeedbackSessionName(), }; FeedbackSessionUnpublishedEmailWorkerAction action = getAction(submissionParams); action.execute(); // 5 students, 5 instructors, and 3 co-owner instructors in course1 verifySpecifiedTasksAdded(Const.TaskQueue.SEND_EMAIL_QUEUE_NAME, 13); String courseName = logic.getCourse(session1.getCourseId()).getName(); List<TaskWrapper> tasksAdded = mockTaskQueuer.getTasksAdded(); for (TaskWrapper task : tasksAdded) { SendEmailRequest requestBody = (SendEmailRequest) task.getRequestBody(); EmailWrapper email = requestBody.getEmail(); String expectedSubject = (email.getIsCopy() ? EmailWrapper.EMAIL_COPY_SUBJECT_PREFIX : "") + String.format(EmailType.FEEDBACK_UNPUBLISHED.getSubject(), courseName, session1.getFeedbackSessionName()); assertEquals(expectedSubject, email.getSubject()); } } }
Assistant:ASSISTANT
Test Driver