debian-mirror-gitlab/spec/rubocop/cop/gitlab/module_with_instance_variables_spec.rb

156 lines
3.2 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2020-07-28 23:09:34 +05:30
require 'fast_spec_helper'
2018-03-17 18:26:18 +05:30
require_relative '../../../../rubocop/cop/gitlab/module_with_instance_variables'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Gitlab::ModuleWithInstanceVariables do
2021-03-11 19:13:27 +05:30
let(:msg) { "Do not use instance variables in a module. [...]" }
2018-03-17 18:26:18 +05:30
subject(:cop) { described_class.new }
2021-03-11 19:13:27 +05:30
shared_examples('registering offense') do
2018-03-17 18:26:18 +05:30
it 'registers an offense when instance variable is used in a module' do
2021-03-11 19:13:27 +05:30
expect_offense(source)
2018-03-17 18:26:18 +05:30
end
end
shared_examples('not registering offense') do
it 'does not register offenses' do
2021-03-11 19:13:27 +05:30
expect_no_offenses(source)
2018-03-17 18:26:18 +05:30
end
end
context 'when source is a regular module' do
2021-03-11 19:13:27 +05:30
it_behaves_like 'registering offense' do
2018-03-17 18:26:18 +05:30
let(:source) do
<<~RUBY
module M
def f
@f = true
2021-03-11 19:13:27 +05:30
^^^^^^^^^ #{msg}
2018-03-17 18:26:18 +05:30
end
end
RUBY
end
end
end
context 'when source is a nested module' do
2021-03-11 19:13:27 +05:30
it_behaves_like 'registering offense' do
2018-03-17 18:26:18 +05:30
let(:source) do
<<~RUBY
module N
module M
def f
@f = true
2021-03-11 19:13:27 +05:30
^^^^^^^^^ #{msg}
2018-03-17 18:26:18 +05:30
end
end
end
RUBY
end
end
end
context 'when source is a nested module with multiple offenses' do
2021-03-11 19:13:27 +05:30
it_behaves_like 'registering offense' do
2018-03-17 18:26:18 +05:30
let(:source) do
<<~RUBY
module N
module M
def f
@f = true
2021-03-11 19:13:27 +05:30
^^^^^^^^^ #{msg}
2018-03-17 18:26:18 +05:30
end
def g
true
end
def h
@h = true
2021-03-11 19:13:27 +05:30
^^^^^^^^^ #{msg}
2018-03-17 18:26:18 +05:30
end
end
end
RUBY
end
end
end
context 'when source is using simple or ivar assignment' do
it_behaves_like 'not registering offense' do
let(:source) do
<<~RUBY
module M
def f
@f ||= true
end
end
RUBY
end
end
end
context 'when source is using simple ivar' do
it_behaves_like 'not registering offense' do
let(:source) do
<<~RUBY
module M
def f?
@f
end
end
RUBY
end
end
end
context 'when source is defining initialize' do
it_behaves_like 'not registering offense' do
let(:source) do
<<~RUBY
module M
def initialize
@a = 1
@b = 2
end
end
RUBY
end
end
end
context 'when source is using simple or ivar assignment with other ivar' do
2021-03-11 19:13:27 +05:30
it_behaves_like 'registering offense' do
2018-03-17 18:26:18 +05:30
let(:source) do
<<~RUBY
module M
def f
@f ||= g(@g)
2021-03-11 19:13:27 +05:30
^^ #{msg}
2018-03-17 18:26:18 +05:30
end
end
RUBY
end
end
end
context 'when source is using or ivar assignment with something else' do
2021-03-11 19:13:27 +05:30
it_behaves_like 'registering offense' do
2018-03-17 18:26:18 +05:30
let(:source) do
<<~RUBY
module M
def f
@f ||= true
2021-03-11 19:13:27 +05:30
^^ #{msg}
2018-03-17 18:26:18 +05:30
@f.to_s
2021-03-11 19:13:27 +05:30
^^ #{msg}
2018-03-17 18:26:18 +05:30
end
end
RUBY
end
end
end
end