CSC/ECE 517 Spring 2023 -E2326 Refactor questionnaires controller.rb

From Expertiza_Wiki
Revision as of 18:32, 2 May 2023 by Jtdavis9 (talk | contribs)
Jump to navigation Jump to search

Background

In Expertiza, Questionnaire is the superclass for all kinds of questionnaires and rubrics—rubrics for evaluating submissions and teammate contributions, and taking quizzes and surveys. All of these are subclasses of Questionnaire. questionnaires_controller.rb is charged with creating, displaying, and managing Questionnaires. Because it is used so widely, malfunctions could cause bugs in many parts of the system; hence it is especially important that the code be clear. We can see that a Questionnaire can have multiple Questions. These questionnaires can be used as a part of an assignment. Also we notice that Questionnaire controler has a parent child relationship with the QuizQuestionnaire controller. There are multiple types of questions that can be added to a questionnaire like Criterion, Dropdown, Checkbox and TextArea to name a few.

Project Purpose

In recent years, questionnaires_controller.rb has been refactored repeatedly. It is a lot clearer than it used to be. But rough edges still remain. question.rb contains a large number of constants. It is not clear what they are used for. There is a questionnaires_controller, but no questions_controller which is fully developed. The questionnaires_controller creates Question objects. This is not elegant, because a controller should only create objects of one type, the type of objects it controls. In the present code we see that the questionnaire_controller.rb has multiple non CRUD methods that should have been in the questions_controller.rb. Our priority is to refactor these functions to the questions_controller.rb so that we maintain the Single responsibility in the SOLID principles. We also notice that there are 2 places where there is code that is repeating itself so we extract the common code into a helper function to make the code more DRY. the functions that need refactoring-

  • def delete_questions(questionnaire_id) Move to questions_controller
  • def question_params Move to questions_controller?
  • def save_all_questions Move to questions_controller
  • def save_new_questions(questionnaire_id) Move to questions_controller
  • def save_questions(questionnaire_id) Move to questions_controller

We also noticed that there were many places that used constants like the text file are size or the default min and max scores being hard coded. This makes the code not suitable for extension as any change would need to be refactored in multiple places and break code easily. Thus we plan to modify the models/questions.rb and add the constants there so that all files related to questions can have access to these constants. This would make the refactoring process very easy.

Design Pattern Used

We have decided to used the Factory design pattern where we create a type of Questionnaire based on the type of parameters passed. The earlier code was using multiple if else statements to check the parameter passed and then create the required object.\\ In the current code we give a call to a helper function in the <file name> file and expect it to return the object based on the string parameter passed.

Proposed Design Changes

 #  File/Function Change Proposed Rationale Commit Link
1 method add_new_questions() Store the used default value to some kind of constant in questions.rb, so that they can be changed without refactoring code There are many literals used in the code and can change in future, so it is better to separate them Will be added later
2 File questionnaires_controller.rb Move save_all_questions(), delete_questions(), save_new_questions(), save_questions() To be consistent with SOLID principle, these methods belong in questions_controller.rb Will be added later
3 file questionnaires_controller.rb Refactor following vague method names There are confusing function names like save_all_questions() , save_new_questions() , save_questions() and save() Will be added later
4 method save_questions() Change params[:question].keys.each to params[:question].each_key This will improve the performance and uses a single enumerator Will be added late
5 method create() Remove parenthesis around function call on line 72 Unnecessary parenthesis Will be added later
5 File questionnaires_controller.rb Refactor large methods Create, update, and delete are noticeably larger than most methods Will be added later
6 method save_all_questions() Find a way to refactor the code by using more variables or Procs that can be reused in questions_controller.rb The process of saving all questions with 2 nested do blocks is difficult to understand Will be added later
6 method create Move code related to creation of tree node to different function name create_tree_node() The create method is very big and this would help in readability and code reusability Will be added later
7 method questionnaire_helper() Change if/else to switch case and add default error checking to helper Code will be cleaner and there will needs to be catch all because there are no default else conditions/ error checks in factories as of now. Will be added later
8 method question_helper() Change if/else to switch case and add default error checking to helper Code will be cleaner and there will needs to be catch all because there are no default else conditions/ error checks in factories as of now. Will be added later

Some Code Samples

  • Questionnaire Factory where the object is created with switch case using a HashMap
 #Map type to questionnaire
 QUESTIONNAIRE_MAP = {
   'ReviewQuestionnaire' => ReviewQuestionnaire,
   'MetareviewQuestionnaire' => MetareviewQuestionnaire,
   'AuthorFeedbackQuestionnaire' => AuthorFeedbackQuestionnaire,
   'TeammateReviewQuestionnaire' => TeammateReviewQuestionnaire,
   'AssignmentSurveyQuestionnaire' => AssignmentSurveyQuestionnaire,
   'SurveyQuestionnaire' => SurveyQuestionnaire,
   'GlobalSurveyQuestionnaire' => GlobalSurveyQuestionnaire,
   'CourseSurveyQuestionnaire' => CourseSurveyQuestionnaire,
   'BookmarkRatingQuestionnaire' => BookmarkRatingQuestionnaire,
   'QuizQuestionnaire' => QuizQuestionnaire
 }.freeze
 
 # factory method to create the appropriate questionnaire based on the type
 def questionnaire_factory(type)
   questionnaire = QUESTIONNAIRE_MAP[type]
   if questionnaire.nil?
     flash[:error] = 'Error: Undefined Questionnaire'
   else
     questionnaire.new
   end
 end


  • Question Factory where the questions object is created using a HashMap
module QuestionHelper
  # Maps type to question
  QUESTION_MAP = {
    'Criterion' => Criterion,
    'Scale' => Scale,
    'Cake' => Cake,
    'Dropdown' => Dropdown,
    'Checkbox' => Checkbox,
    'TextArea' => TextArea,
    'TextField' => TextField,
    'UploadFile' => UploadFile,
    'SectionHeader' => SectionHeader,
    'TableHeader' => TableHeader,
    'ColumnHeader' => ColumnHeader
  }.freeze
  
  # factory method to create the appropriate question based on the type
  def question_factory(type, questionnaire_id, seq)
    question_class = QUESTION_MAP[type]
    if question_class.nil?
      flash[:error] = 'Error: Undefined Question'
    else
      question_class.create(txt: , questionnaire_id: questionnaire_id, seq: seq, type: type, break_before: true)
    end
  end
end
  • models/question.rb that shows how the constants are used to store the parameters that would be used for object creation
  • def set_questionnaire_parameters in questionnaires_controller.rb



Important links

Github: https://github.com/Soultrekker21/expertiza Pull Request: https://github.com/expertiza/expertiza/pull/2576

Test Plan

  • Make sure that current proposed changes don't break existing test cases.
  • Add unit test for newly proposed methods.
  • Shift existing test cases for questionnaire_controller_spec.rb to question_controller.rb corresponding to methods that are being shifted