2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
require 'fast_spec_helper'
|
2020-05-24 23:13:21 +05:30
|
|
|
require 'rubocop'
|
|
|
|
require 'rubocop/rspec/support'
|
|
|
|
require_relative '../../../../rubocop/cop/gitlab/json'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe RuboCop::Cop::Gitlab::Json, type: :rubocop do
|
2020-05-24 23:13:21 +05:30
|
|
|
include CopHelper
|
|
|
|
|
|
|
|
subject(:cop) { described_class.new }
|
|
|
|
|
|
|
|
shared_examples('registering call offense') do |options|
|
|
|
|
let(:offending_lines) { options[:offending_lines] }
|
|
|
|
|
|
|
|
it 'registers an offense when the class calls JSON' do
|
|
|
|
inspect_source(source)
|
|
|
|
|
|
|
|
aggregate_failures do
|
|
|
|
expect(cop.offenses.size).to eq(offending_lines.size)
|
|
|
|
expect(cop.offenses.map(&:line)).to eq(offending_lines)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when JSON is called' do
|
|
|
|
it_behaves_like 'registering call offense', offending_lines: [3] do
|
|
|
|
let(:source) do
|
|
|
|
<<~RUBY
|
|
|
|
class Foo
|
|
|
|
def bar
|
|
|
|
JSON.parse('{ "foo": "bar" }')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|