CSC/ECE 517 Fall 2023: E2367. Reimplement participants controller.rb, participants.rb and its child classes

From Expertiza_Wiki
Revision as of 14:55, 4 December 2023 by Pmehta5 (talk | contribs)
Jump to navigation Jump to search

This wiki page is for the description of changes made under E2367 OSS assignment for Fall 2023, CSC/ECE 517

Introduction

Expertiza is a prominent open-source project founded on the Ruby on Rails framework, serving as a collaborative effort between the faculty and students of NC State. This web application facilitates instructors in generating customized assignments, including both new and existing tasks. Additionally, instructors can establish a roster of topics for student enrollment. Within Expertiza, students have the ability to form teams for collaborative work on various projects and assignments. An integral aspect of the platform is the provision for students to conduct peer reviews of their peers' submissions.

Distinguished by its support for a diverse array of document types, Expertiza enables submission of various formats such as URLs and wiki pages. Serving as an open-source learning management system developed using Ruby on Rails, Expertiza embodies an extensive suite of functionalities that empower students to submit and engage in peer review processes encompassing various learning objects like articles, codes, and websites. Instructors wield the capability to oversee and assess the submissions made by students through the platform. Expertiza is instrumental in facilitating instructors and teaching assistants in managing assignments for the courses they administer.


Project Objectives

Overall Purpose:

The Expertiza project, built on the Ruby on Rails framework, serves as an open-source learning management system. It facilitates collaborative assignments, peer reviews, and diverse document submissions. The primary aim of this reimplemented project is to strengthen the reliability and functionality of the participant management system within Expertiza.


Overview of the Classes

participants_controller.rb:

The ParticipantsController is responsible for managing participants in an application. Participants can be associated with either "Course" or "Assignment" models. It handles actions related to creating, updating, retrieving, and deleting participants. Inherit copies existing participants from a course down to its assignment while bequeath copies existing participants from an assignment up to its course. It has two private methods namely copy_participants_from_source_to_target which copies participants from source to target and participant_params.

assignment_participant.rb:

The assignment_participant.rb is a model class that has many associations including ‘assignment’. This association signifies that an AssignmentParticipant belongs to a specific assignment. The AssignmentParticipant class includes several attributes such as avg_vol_per_round, overall_avg_vol and handle that are vital for its functionality. There are many methods present which collectively facilitate various actions and operations related to managing participants in assignments, including reviewing, copying, importing, and handling file paths and deadlines. They include review_file_path, current_stage, stage_deadline, current_user_is_reviewer, reviews, dir_path, etc. There are also a couple of methods that use digital signatures such as assign_copyright and verify_digital_signature.

course_participant.rb:

The course_participant model has a class named CourseParticipant that inherits from a class called Participant. It is used to manage participants in courses, allowing for copying participants to assignments and importing new participants into a course. It consists of three methods namely copy, import and path. Copy creates a copy of a course participant for an assignment. Path method returns the path of the course participant while self.import method is used for importing course participants by taking row_hash, session, and id as parameters.


Background of the Project

The Expertiza project involves the reimplementing of the participants_controller.rb and participants.rb files, along with their respective child classes. The previous iteration of the participant model and controller underwent reimplementations in prior semesters, resulting in tests that relied extensively on mocks and stubs due to missing components.

The participants_controller.rb file encapsulates various methods and functionalities vital to managing participants within the system. This includes actions like adding, updating, and deleting participants, inheriting participants from courses to assignments, bequeathing participants from assignments to courses, changing participant handles, viewing copyright grants, and more. The controller makes use of helper functions, associations, and delegate methods to streamline participant operations.

Meanwhile, the course_participants.rb file extends the functionality of the base participant class, focusing on operations specific to course participants. This includes copying participants to assignments, importing course participants, and defining paths for course participants within the project.

The base participant.rb file defines the fundamental structure and behavior for all participants in the system, including shared associations, delegate methods, and validations. The file incorporates methods related to participant handling, user information retrieval, email functionalities, authorization, sorting, and export functionality.

The project's primary objective revolves around enhancing the reliability and functionality of the participant-related components, thereby fortifying the overall system's capabilities and improving the testing process to ensure robustness and stability within the Expertiza platform.

The reimplementation must make sense; when reviewing the original model, we discovered that certain functions were unnecessary for the controller class and model in question and needed to be implemented in a different model. The majority of the adjustments were made to separate methods with a single capability pertinent to certain classes by deleting, combining, and replacing methods.To improve readability, notes are provided to every technique. The discussion of the reimplementations continues below with further details.


Design Decisions

participants_controller.rb:

We have reimplemented participants_controller.rb by making following changes:

1) Changed function name: The function name 'copy_participants_from_source_to_target' has been renamed to 'copy_participants' as original name was too long.

2) Improved Code Comments: The code has detailed comments for each action method, the purpose of the method and the expected parameters. The parameters for each action method are explicitly defined in comments, making it clear which parameters are expected.

3) Improved Error Handling: Exceptions are caught more specifically (e.g., StandardError) to provide better error messages.

4) Refactored delete Method: The destroy method has been refactored to use participant.delete(false) to avoid accidental deletion and provides better error handling.

5) Consistent Status Codes: The code uses consistent HTTP status codes for responses, for example, using status: :not_found for a resource not found.

6) Consistent JSON Response Format: The JSON responses are structured consistently, with keys like "model_object" and "participants," making it easier for clients to consume the API.

assignment_participant.rb:

This is the reimplemented AssignmentParticipant class. It is a subclass of the Participant class and includes additional functionalities and methods specific to participants assigned to an assignment in the system.

In the `assignment_participant.rb` class, several changes and improvements have been made to enhance the readability and maintainability of the code. Here are the specific modifications made:


1. Removed certain comments and obsolete code for better readability and clarity.

2. Introduced the safe navigation operator (`&.`) in several places to avoid nil errors, particularly in cases where object references may be nil.

3. Simplified certain methods, such as `reviewers` and `feedback`, for cleaner and more readable code.

4. Improved string formatting for directory paths and file paths to enhance readability.

5. Enhanced error handling in the `import` method to provide more informative error messages and handle exceptional cases more gracefully.

These changes aim to make the code more maintainable and concise while ensuring that the functionality and integrity of the `AssignmentParticipant` class remain intact.

course_participant.rb:

The following changes were reimplemented in the course_participant.rb

In the CourseParticipant class, several changes and improvements have been made to enhance the readability and maintainability of the code. Here are the specific modifications made:

1] The copy method has been simplified using the find_or_create_by method, which helps to find an existing record or create a new one if it doesn't exist.

2] In the import method, the find_or_create_by method has been used to both find or create a user and find or create a course participant. This helps to streamline the process and handle the cases where the records may or may not exist.

3] The path method has been refactored to use the safe navigation operator (&.) to avoid potential nil errors during the construction of the path. This ensures that the code is more robust and handles potential null references gracefully.

These changes aim to make the code more concise and readable, without compromising the functionality or integrity of the CourseParticipant class.


Testing Plan

assignment_participant_spec.rb:

Reimplementation of assignment_participant_spec.rb is as follows:

1) In the #dir_path method, test doubles are introduced for the assignment object to isolate the test from the actual implementation. This allows you to set expectations on method calls and control the behavior of the test double.

2) Expectations are set using expect and receive to ensure that the directory_path method is called on the test double (assignment) with the expected return values. This is a way to explicitly specify the behavior of the test double in the context of the test.

3) The #assign_quiz method now includes detailed testing scenarios (Test scenario 1 to Test scenario 5) with clear given-when-then comments. Each scenario outlines specific expectations for the method call and the expected outcomes. This provides clarity on the expected behavior of the method under different conditions.

4) The #review_score method is tested in different contexts, including cases where there are no assessments, one assessment, multiple assessments, different maximum possible scores, and the computation of scores as a percentage. This comprehensive testing ensures that the method behaves correctly under various conditions.

5) The #fullname and #name methods are tested in scenarios where the user has or doesn't have the corresponding attribute. This ensures that the methods handle different user attribute states correctly.

6) The #scores method is tested in various contexts, including cases where the participant has completed questionnaires, quiz questionnaires, is part of a microtask, has a grade, and when the total score exceeds 100. This testing provides coverage for the different aspects of score calculation and handling.

7) The new code includes several new test scenarios for the existing #submit_hyperlink method. These scenarios cover cases where the hyperlink is empty or not a valid URL, and they ensure that the method behaves correctly in these situations.

8) A new method grant_publishing_rights has been added. This method appears to handle the granting of publishing rights based on a private key and participant digital signatures. Multiple test scenarios are provided to cover different cases, such as valid private key, empty participant list, and invalid digital signatures.

9) A new method verify_digital_signature has been added, which seems to validate whether the public key matches the private key. Two test scenarios are provided to cover cases where the keys match or do not match.

10) The #set_handle method has been retained with rephrased comments and test descriptions. Test scenarios, particularly for when the user handle is not nil or empty, have been clarified.

11) The #path method has been retained with comments and test descriptions adjusted. Test scenarios for different combinations of assignment path and team directory number have been maintained.

12) A new method review_file_path has been introduced. It appears to generate file paths for review-related information based on response map details. Test scenarios cover cases with valid and invalid response map IDs, as well as cases with valid and invalid reviewee or participant details.

13) The #update_resubmit_times method has been retained, and the comments and test descriptions have been updated.

14) The #current_stage method has been maintained with rephrased comments and test descriptions. Test scenarios for different cases, such as a valid topic_id with and without a current stage, as well as cases with an invalid topic_id, have been updated.

Each test scenario is documented with clear comments outlining the given conditions, the method invocation, and the expected outcomes. This documentation enhances the readability and understanding of the test cases.The new test cases maintain consistency with the existing test structure and naming conventions. This consistency is essential for readability and maintainability.

Overall, the changes introduce more explicit control over the test environment using test doubles and provide detailed scenarios for the #assign_quiz method. These changes can improve the clarity of the tests and make them more robust by isolating them from the actual implementations and focusing on specific behaviors. In summary, the new code enhances the test coverage for the AssignmentParticipant class by introducing tests for additional methods. The detailed scenarios cover various aspects of the methods, ensuring their correctness and robustness under different conditions.


course_participant_spec.rb:

Test Environment:

1] Ruby on Rails environment.

2] RSpec for testing.

3] Factory Bot for test data creation.


Objective:

Ensure that the new methods (copy, import, export, export_fields) in the CourseParticipant class are functioning correctly.


Test Cases:

A. Testing #copy method


Test Case 1: Creating a Copy


Assertion:

The copy method should create a new AssignmentParticipant.


Steps:

1] Mock the AssignmentParticipant.create method to return a new participant.

2] Mock the set_handle method.

3] Call copy with a valid assignment ID.

4] Assert that the returned value is an instance of AssignmentParticipant.


Tests

Test No. Description
1 Tests if a copy of the participant is created
2 Tests if copy exists then return nil
3 Tests if the record is empty then raise an error
4 Tests if the record does not have enough items then raises error
5 Tests if course with id not found
6 Tests to create course participant form record
7 Tests if csv file is created
8 Tests if option is empty if fields is empty
9 Tests if option is not empty if fields is not empty
10 Tests if dir_path method returns the correct directory path
11 Tests if assignment returns nill if it does not have a directory path


Test 1 and 2

Test Case 1: Creates a copy of participant:

This test case ensures that calling the copy method on a CourseParticipant object creates a new instance of AssignmentParticipant.


Test Case 2: Returns nil if copy exists:

This test case checks whether the copy method returns nil if a copy already exists, simulating a scenario where the participant has already been copied.


Test 3, 4, 5 and 6

Test Case 3: Raises error if record is empty:

Verifies that an error is raised when trying to import a course participant with an empty record.


Test Case 4: Raises error if record does not have enough items:

Ensures an error is raised if the record doesn't have enough items for importing a course participant.


Test Case 5: Raises error if course with id not found:

Checks if an error is raised when attempting to import a course participant with a non-existing course ID.


Test Case 6: Creates course participant from record:

Verifies that the import method creates a CourseParticipant instance from a given record.


Test 7

Test Case 7: Checks if CSV file is created:

This test case ensures that calling the export method on a CourseParticipant instance generates a CSV file.


Test 8 and 9

Test Case 8: Option is empty, fields is empty:

Checks if the export fields are empty when no options are provided.


Test Case 9: Option is not empty, fields is not empty:

Verifies that export fields are not empty when specific options are provided.

Test 10 and 11

Test Case 10: Returns the directory path of the assignment:

This test case ensures that the dir_path method returns the correct directory path when the assignment has a directory path.

Test Case 11: Returns nil if assignment does not have a directory path:

This test case ensures that the dir_path method returns nil when the assignment does not have a directory path.

Relevant Links

Github repository: https://github.com/krishna5701/reimplementation-back-end

Pull request: https://github.com/expertiza/reimplementation-back-end/pull/49


Team

Mentor

Devashish Vachhani

Student Team

1] Krishna Patel (kpatel43@ncsu.edu)

2] Janhavi Pendse (jspendse@ncsu.edu)

3] Payal Mehta (pmehta5@ncsu.edu)