Welcome to mirror list, hosted at ThFree Co, Russian Federation.

keys_first_and_values_first_spec.rb « gitlab « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 073c78e78c02d2070c22f0279d4959e5879f83f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true

require 'rubocop_spec_helper'

require_relative '../../../../rubocop/cop/gitlab/keys_first_and_values_first'

RSpec.describe RuboCop::Cop::Gitlab::KeysFirstAndValuesFirst do
  let(:msg) { described_class::MSG }

  subject(:cop) { described_class.new }

  shared_examples 'inspect use of keys or values first' do |method, autocorrect|
    describe ".#{method}.first" do
      it 'flags and autocorrects' do
        expect_offense(<<~RUBY, method: method, autocorrect: autocorrect)
          hash.%{method}.first
               _{method} ^^^^^ Prefer `.%{autocorrect}.first` over `.%{method}.first`. [...]
          var = {a: 1}; var.%{method}.first
                            _{method} ^^^^^ Prefer `.%{autocorrect}.first` over `.%{method}.first`. [...]
          {a: 1}.%{method}.first
                 _{method} ^^^^^ Prefer `.%{autocorrect}.first` over `.%{method}.first`. [...]
          CONST.%{method}.first
                _{method} ^^^^^ Prefer `.%{autocorrect}.first` over `.%{method}.first`. [...]
          ::CONST.%{method}.first
                  _{method} ^^^^^ Prefer `.%{autocorrect}.first` over `.%{method}.first`. [...]
        RUBY

        expect_correction(<<~RUBY)
          hash.#{autocorrect}.first
          var = {a: 1}; var.#{autocorrect}.first
          {a: 1}.#{autocorrect}.first
          CONST.#{autocorrect}.first
          ::CONST.#{autocorrect}.first
        RUBY
      end

      it 'does not flag unrelated code' do
        expect_no_offenses(<<~RUBY)
          array.first
          hash.#{method}.last
          hash.#{method}
          #{method}.first
          1.#{method}.first
          'string'.#{method}.first
        RUBY
      end
    end
  end

  it_behaves_like 'inspect use of keys or values first', :keys, :each_key
  it_behaves_like 'inspect use of keys or values first', :values, :each_value
end