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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  | 
require "rubocop"
require "rubocop/rspec/support"
require_relative "../../extend/string"
require_relative "../../rubocops/components_redundancy_cop"
describe RuboCop::Cop::FormulaAuditStrict::ComponentsRedundancy do
  subject(:cop) { described_class.new }
  context "When auditing formula components common errors" do
    it "When url outside stable block" do
      source = <<~EOS
        class Foo < Formula
          url "http://example.com/foo-1.0.tgz"
          stable do
            # stuff
          end
        end
      EOS
      expected_offenses = [{  message: "`url` should be put inside `stable` block",
                              severity: :convention,
                              line: 2,
                              column: 2,
                              source: source }]
      inspect_source(source)
      expected_offenses.zip(cop.offenses).each do |expected, actual|
        expect_offense(expected, actual)
      end
    end
    it "When both `head` and `head do` are present" do
      source = <<~EOS
        class Foo < Formula
          head "http://example.com/foo.git"
          head do
            # stuff
          end
        end
      EOS
      expected_offenses = [{  message: "`head` and `head do` should not be simultaneously present",
                              severity: :convention,
                              line: 3,
                              column: 2,
                              source: source }]
      inspect_source(source)
      expected_offenses.zip(cop.offenses).each do |expected, actual|
        expect_offense(expected, actual)
      end
    end
    it "When both `bottle :modifier` and `bottle do` are present" do
      source = <<~EOS
        class Foo < Formula
          url "http://example.com/foo-1.0.tgz"
          bottle do
            # bottles go here
          end
          bottle :unneeded
        end
      EOS
      expected_offenses = [{  message: "`bottle :modifier` and `bottle do` should not be simultaneously present",
                              severity: :convention,
                              line: 3,
                              column: 2,
                              source: source }]
      inspect_source(source)
      expected_offenses.zip(cop.offenses).each do |expected, actual|
        expect_offense(expected, actual)
      end
    end
    def expect_offense(expected, actual)
      expect(actual.message).to eq(expected[:message])
      expect(actual.severity).to eq(expected[:severity])
      expect(actual.line).to eq(expected[:line])
      expect(actual.column).to eq(expected[:column])
    end
  end
end
  |