debian-mirror-gitlab/spec/rubocop/cop/gitlab/json_spec.rb
2023-01-12 18:35:48 +00:00

69 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require 'rubocop_spec_helper'
require_relative '../../../../rubocop/cop/gitlab/json'
RSpec.describe RuboCop::Cop::Gitlab::Json do
context 'when ::JSON is called' do
it 'registers an offense and autocorrects' do
expect_offense(<<~RUBY)
class Foo
def bar
JSON.parse('{ "foo": "bar" }')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Prefer `Gitlab::Json` over calling `JSON` directly. [...]
end
end
RUBY
expect_correction(<<~RUBY)
class Foo
def bar
Gitlab::Json.parse('{ "foo": "bar" }')
end
end
RUBY
end
end
context 'when ::JSON is called in EE' do
it 'registers an offense and autocorrects' do
expect_offense(<<~RUBY, '/path/to/ee/foo.rb')
class Foo
def bar
JSON.parse('{ "foo": "bar" }')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Prefer `Gitlab::Json` over calling `JSON` directly. [...]
end
end
RUBY
expect_correction(<<~RUBY)
class Foo
def bar
::Gitlab::Json.parse('{ "foo": "bar" }')
end
end
RUBY
end
end
context 'when ActiveSupport::JSON is called' do
it 'registers an offense and autocorrects' do
expect_offense(<<~RUBY)
class Foo
def bar
ActiveSupport::JSON.parse('{ "foo": "bar" }')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Prefer `Gitlab::Json` over calling `JSON` directly. [...]
end
end
RUBY
expect_correction(<<~RUBY)
class Foo
def bar
Gitlab::Json.parse('{ "foo": "bar" }')
end
end
RUBY
end
end
end