summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/group_public_or_visible_to_user_spec.rb
blob: c948ea606b8d24b2f82299486ca8eb6ac7f0fc85 (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
# frozen_string_literal: true

require 'rubocop_spec_helper'
require_relative '../../../rubocop/cop/group_public_or_visible_to_user'

RSpec.describe RuboCop::Cop::GroupPublicOrVisibleToUser do
  let(:msg) do
    "`Group.public_or_visible_to_user` should be used with extreme care. " \
    "Please ensure that you are not using it on its own and that the amount of rows being filtered is reasonable."
  end

  it 'flags the use of Group.public_or_visible_to_user with a constant receiver' do
    expect_offense(<<~CODE)
      Group.public_or_visible_to_user
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
    CODE
  end

  it 'does not flag the use of public_or_visible_to_user with a constant that is not Group' do
    expect_no_offenses('Project.public_or_visible_to_user')
  end

  it 'does not flag the use of Group.public_or_visible_to_user with a send receiver' do
    expect_no_offenses('foo.public_or_visible_to_user')
  end
end