Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_finder_spec.rb « autocomplete « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7cb2c3bbe2d9fe6dd884a68b24ebdd09ac28b20 (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
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
# frozen_string_literal: true

require 'spec_helper'

describe Autocomplete::GroupFinder do
  let(:user) { create(:user) }

  describe '#execute' do
    context 'with a project' do
      it 'returns nil' do
        project = create(:project)

        expect(described_class.new(user, project).execute).to be_nil
      end
    end

    context 'without a group ID' do
      it 'returns nil' do
        expect(described_class.new(user).execute).to be_nil
      end
    end

    context 'with an empty String as the group ID' do
      it 'returns nil' do
        expect(described_class.new(user, nil, group_id: '').execute).to be_nil
      end
    end

    context 'without a project and with a group ID' do
      it 'raises ActiveRecord::RecordNotFound if the group does not exist' do
        finder = described_class.new(user, nil, group_id: 1)

        expect { finder.execute }.to raise_error(ActiveRecord::RecordNotFound)
      end

      it 'raises ActiveRecord::RecordNotFound if the user can not read the group' do
        group = create(:group, :private)
        finder = described_class.new(user, nil, group_id: group.id)

        expect { finder.execute }.to raise_error(ActiveRecord::RecordNotFound)
      end

      it 'raises ActiveRecord::RecordNotFound if an anonymous user can not read the group' do
        group = create(:group, :private)
        finder = described_class.new(nil, nil, group_id: group.id)

        expect { finder.execute }.to raise_error(ActiveRecord::RecordNotFound)
      end

      it 'returns the group if it exists and is readable' do
        group = create(:group)
        finder = described_class.new(user, nil, group_id: group.id)

        expect(finder.execute).to eq(group)
      end
    end
  end
end