ece517-p3/expertiza

View on GitHub

Showing 2,813 of 2,813 total issues

Block has too many lines. [40/25]
Open

  factory :assignment, class: Assignment do
    name 'final2'
    directory_path 'final_test'
    submitter_count 0
    course { Course.first || association(:course) }
Severity: Minor
Found in spec/factories/factories.rb by rubocop

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

Block has too many lines. [40/25]
Open

  describe '#valid_quiz' do
    before(:each) do
      allow(Assignment).to receive_message_chain(:find, :num_quiz_questions).with('1').with(no_args).and_return(1)
    end

This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

Method summarize_reviews_by_reviewees has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def summarize_reviews_by_reviewees(assignment, summary_ws_url)
      # @summary[reviewee][round][question]
      # @reviewers[team][reviewer]
      # @avg_scores_by_reviewee[team]
      # @avg_score_round[reviewee][round]
Severity: Minor
Found in app/helpers/summary_helper.rb - About 1 hr to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    def deploy_survey(start_date, end_date, survey_name)
      login_as('instructor6')
      expect(page).to have_content('Manage content')
      create_assignment_questionnaire survey_name
      survey = Questionnaire.where(name: survey_name)
    Severity: Major
    Found in spec/features/survey_spec.rb and 1 other location - About 1 hr to fix
    spec/features/course_survey_spec.rb on lines 9..21

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 64.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    def deploy_course_survey(start_date, end_date, survey_name)
      login_as('instructor6')
      expect(page).to have_content('Manage content')
      create_course_questionnaire survey_name
      survey = Questionnaire.where(name: survey_name)
    Severity: Major
    Found in spec/features/course_survey_spec.rb and 1 other location - About 1 hr to fix
    spec/features/survey_spec.rb on lines 9..22

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 64.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function getShowHour has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function getShowHour()
    {
        var finalHour;
        if (TimeMode==12)
        {
    Severity: Minor
    Found in app/assets/javascripts/datetimepicker.js - About 1 hr to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

        it 'can deal with comment is not nil, with one comments greater than 10' do
          # @list_of_rows = [VmQuestionResponseRow.new('', 1, 1, 5, 0)]
          allow(Answer).to receive(:where).with(any_args).
            and_return([double("Answer", question_id: 1, response_id: 1, comments: 'one two three four five six seven eight nine ten eleven'),
                        double("Answer", question_id: 1, response_id: 1, comments: '233')])
      Severity: Major
      Found in spec/models/airbrake_expection_errors_unit_tests_spec.rb and 1 other location - About 1 hr to fix
      spec/models/airbrake_expection_errors_unit_tests_spec.rb on lines 28..35

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 63.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

        it 'can deal with comment is not nil, with two comments greater than 10' do
          allow(Answer).to receive(:where).with(any_args).
            and_return([double("Answer", question_id: 1, response_id: 1, comments: 'one two three four five six seven eight nine ten eleven'),
                        double("Answer", question_id: 1, response_id: 1, comments: 'one two three four five six seven eight nine ten eleven')])
          expect { @return_value = @qs.number_of_comments_greater_than_10_words }.not_to raise_error(NoMethodError)
      Severity: Major
      Found in spec/models/airbrake_expection_errors_unit_tests_spec.rb and 1 other location - About 1 hr to fix
      spec/models/airbrake_expection_errors_unit_tests_spec.rb on lines 17..25

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 63.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Block has too many lines. [39/25]
      Open

          topics.each_with_index do |topic, index|
            for i in 1..review_rounds
              @topic_submission_due_date = due_dates[topics[index].id.to_s + '_submission_' + i.to_s + '_due_date']
              @topic_review_due_date = due_dates[topics[index].id.to_s + '_review_' + i.to_s + '_due_date']
              @assignment_submission_due_date = DateTime.parse(@assignment_submission_due_dates[i - 1].due_at.to_s).strftime("%Y-%m-%d %H:%M")

      This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

      Block has too many lines. [39/25]
      Open

        describe '#copy' do
          let(:new_assignment) { build(:assignment, id: 2, name: 'new assignment', directory_path: 'different path') }
          let(:new_assignment2) { build(:assignment, id: 2, name: 'new assignment', directory_path: 'same path') }
      
          context 'when new assignment id fetches successfully' do

      This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

      Block has too many lines. [39/25]
      Open

          context 'when topic cannot be found' do
            context 'when new topic can be saved successfully' do
              it 'sets up a new topic and redirects to assignment#edit page' do
                allow(SignUpTopic).to receive(:where).with(topic_name: 'Hello world!', assignment_id: '1').and_return([nil])
                allow_any_instance_of(SignUpSheetController).to receive(:undo_link)

      This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

      Block has too many lines. [39/25]
      Open

          context 'when params action is edit or update' do
            before(:each) do
              controller.params = {id: '1', action: 'edit'}
              controller.request.session[:user] = instructor
            end

      This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

      Block has too many lines. [39/25]
      Open

        describe '#delete_signup' do
          before(:each) do
            allow(participant).to receive(:team).and_return(team)
          end
      
      

      This cop checks if the length of a block exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable. The cop can be configured to ignore blocks passed to certain methods.

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

            header.map!(&:to_sym)
            body.each do |row|
              h = {}
              if params[:has_reviewee] == "true_first"
                h[header[0]] = row.shift
      Severity: Major
      Found in app/controllers/import_file_controller.rb and 1 other location - About 1 hr to fix
      app/controllers/import_file_controller.rb on lines 208..220

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 61.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

            header.map!(&:to_sym)
            body.each do |row|
              h = {}
              if params[:has_teamname] == "true_first"
                h[header[0]] = row.shift
      Severity: Major
      Found in app/controllers/import_file_controller.rb and 1 other location - About 1 hr to fix
      app/controllers/import_file_controller.rb on lines 224..236

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 61.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Method feedback_response_report has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def self.feedback_response_report(id, _type)
          # Example query
          # SELECT distinct reviewer_id FROM response_maps where type = 'FeedbackResponseMap' and
          # reviewed_object_id in (select id from responses where
          # map_id in (select id from response_maps where reviewed_object_id = 722 and type = 'ReviewResponseMap'))
      Severity: Minor
      Found in app/models/feedback_response_map.rb - About 1 hr to fix

        Method participants_popup has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def participants_popup
            @sum = 0
            @count = 0
            @participantid = params[:id]
            @uid = Participant.find(params[:id]).user_id
        Severity: Minor
        Found in app/controllers/popup_controller.rb - About 1 hr to fix

          Method actions_allowed has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
          Open

            def self.actions_allowed(permission_ids)
              # Hash for faster & easier lookups
              if permission_ids
                perms = {}
                for id in permission_ids do
          Severity: Minor
          Found in app/models/controller_action.rb - About 1 hr 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

          Method get_assessments_round_for has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
          Open

            def get_assessments_round_for(participant, round)
              team = AssignmentTeam.team(participant)
              return nil unless team
          
              team_id = team.id
          Severity: Minor
          Found in app/models/review_questionnaire.rb - About 1 hr 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

          Function collapseObj has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
          Open

            function collapseObj(obj, atag){
              obj.style.display = 'none';
                atag.innerHTML = '<img src="/assets/expand.png">';              
                       
                files = document.getElementById(obj.id+'_files');
          Severity: Minor
          Found in app/assets/javascripts/grading.js - About 1 hr 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

          Severity
          Category
          Status
          Source
          Language