expertiza/expertiza

View on GitHub
app/helpers/answer_helper.rb

Summary

Maintainability
A
55 mins
Test Coverage
F
16%

Assignment Branch Condition size for log_response_info is too high. [17.03/15]
Open

  def self.log_response_info(response_ids)
    user_id_to_answers = {}
    response_ids.uniq.each do |response_id| # For each response id in the array, gather map and info about reviewer
      response_map = Response.find(response_id).response_map
      reviewer_id = response_map.reviewer_id
Severity: Minor
Found in app/helpers/answer_helper.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [12/10]
Open

  def self.review_mailer(email, answers, name, assignment_name)
    # Call the notify_review_rubric_change method in mailer.rb to send an email with given user info
    Mailer.notify_review_rubric_change(
      to: email,
      subject: 'Expertiza Notification: The review rubric has been changed, please re-attempt the review',
Severity: Minor
Found in app/helpers/answer_helper.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Assignment Branch Condition size for in_active_period is too high. [16.61/15]
Open

  def self.in_active_period(questionnaire_id, answer = nil)
    assignment, round_number = AssignmentQuestionnaire.get_latest_assignment(questionnaire_id)
    unless assignment.nil? # If the assignment doesn't exist, return false
      start_dates, end_dates = assignment.find_review_period(round_number)
      time_now = Time.zone.now
Severity: Minor
Found in app/helpers/answer_helper.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [11/10]
Open

  def self.log_response_info(response_ids)
    user_id_to_answers = {}
    response_ids.uniq.each do |response_id| # For each response id in the array, gather map and info about reviewer
      response_map = Response.find(response_id).response_map
      reviewer_id = response_map.reviewer_id
Severity: Minor
Found in app/helpers/answer_helper.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method in_active_period has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def self.in_active_period(questionnaire_id, answer = nil)
    assignment, round_number = AssignmentQuestionnaire.get_latest_assignment(questionnaire_id)
    unless assignment.nil? # If the assignment doesn't exist, return false
      start_dates, end_dates = assignment.find_review_period(round_number)
      time_now = Time.zone.now
Severity: Minor
Found in app/helpers/answer_helper.rb - About 55 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Missing top-level module documentation comment.
Open

module AnswerHelper
Severity: Minor
Found in app/helpers/answer_helper.rb by rubocop

This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

Example:

# bad
class Person
  # ...
end

# good
# Description/Explanation of Person class
class Person
  # ...
end

There are no issues that match your filters.

Category
Status