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

httparty_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: fcd18b0eb9b209a52e292283cfcf1fdd26ff6777 (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
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rubocop'
require_relative '../../../../rubocop/cop/gitlab/httparty'

RSpec.describe RuboCop::Cop::Gitlab::HTTParty do # rubocop:disable RSpec/FilePath
  subject(:cop) { described_class.new }

  shared_examples('registering include offense') do
    it 'registers an offense when the class includes HTTParty' do
      expect_offense(source)
    end
  end

  shared_examples('registering call offense') do
    it 'registers an offense when the class calls HTTParty' do
      expect_offense(source)
    end
  end

  context 'when source is a regular module' do
    it_behaves_like 'registering include offense' do
      let(:source) do
        <<~RUBY
          module M
            include HTTParty
            ^^^^^^^^^^^^^^^^ Avoid including `HTTParty` directly. [...]
          end
        RUBY
      end
    end
  end

  context 'when source is a regular class' do
    it_behaves_like 'registering include offense' do
      let(:source) do
        <<~RUBY
          class Foo
            include HTTParty
            ^^^^^^^^^^^^^^^^ Avoid including `HTTParty` directly. [...]
          end
        RUBY
      end
    end
  end

  context 'when HTTParty is called' do
    it_behaves_like 'registering call offense' do
      let(:source) do
        <<~RUBY
          class Foo
            def bar
              HTTParty.get('http://example.com')
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid calling `HTTParty` directly. [...]
            end
          end
        RUBY
      end
    end
  end
end