summaryrefslogtreecommitdiff
path: root/spec/models/concerns/loaded_in_group_list_spec.rb
blob: 7a279547a3a5e88399ea840c9710f59de479797a (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
require 'spec_helper'

describe LoadedInGroupList do
  let(:parent) { create(:group) }
  subject(:found_group) { Group.with_selects_for_list.find_by(id: parent.id) }

  describe '.with_selects_for_list' do
    it 'includes the preloaded counts for groups' do
      create(:group, parent: parent)
      create(:project, namespace: parent)
      parent.add_developer(create(:user))

      found_group = Group.with_selects_for_list.find_by(id: parent.id)

      expect(found_group.preloaded_project_count).to eq(1)
      expect(found_group.preloaded_subgroup_count).to eq(1)
      expect(found_group.preloaded_member_count).to eq(1)
    end

    context 'with archived projects' do
      it 'counts including archived projects when `true` is passed' do
        create(:project, namespace: parent, archived: true)
        create(:project, namespace: parent)

        found_group = Group.with_selects_for_list(archived: 'true').find_by(id: parent.id)

        expect(found_group.preloaded_project_count).to eq(2)
      end

      it 'counts only archived projects when `only` is passed' do
        create_list(:project, 2, namespace: parent, archived: true)
        create(:project, namespace: parent)

        found_group = Group.with_selects_for_list(archived: 'only').find_by(id: parent.id)

        expect(found_group.preloaded_project_count).to eq(2)
      end
    end
  end

  describe '#children_count' do
    it 'counts groups and projects' do
      create(:group, parent: parent)
      create(:project, namespace: parent)

      expect(found_group.children_count).to eq(2)
    end
  end
end