summaryrefslogtreecommitdiff
path: root/spec/finders/metrics/users_starred_dashboards_finder_spec.rb
blob: 4136cf1123ad3e33f6da5a711fdc6b42a66c1697 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Metrics::UsersStarredDashboardsFinder do
  describe '#execute' do
    subject(:starred_dashboards) { described_class.new(user: user, project: project, params: params).execute }

    let_it_be(:user) { create(:user) }

    let(:project) { create(:project) }
    let(:dashboard_path) { 'config/prometheus/common_metrics.yml' }
    let(:params) { {} }

    context 'there are no starred dashboard records' do
      it 'returns empty array' do
        expect(starred_dashboards).to be_empty
      end
    end

    context 'with annotation records' do
      let!(:starred_dashboard_1) { create(:metrics_users_starred_dashboard, user: user, project: project) }
      let!(:starred_dashboard_2) { create(:metrics_users_starred_dashboard, user: user, project: project, dashboard_path: dashboard_path) }
      let!(:other_project_dashboard) { create(:metrics_users_starred_dashboard, user: user, dashboard_path: dashboard_path) }
      let!(:other_user_dashboard) { create(:metrics_users_starred_dashboard, project: project, dashboard_path: dashboard_path) }

      context 'user without read access to project' do
        it 'returns empty relation' do
          expect(starred_dashboards).to be_empty
        end
      end

      context 'user with read access to project' do
        before do
          project.add_reporter(user)
        end

        it 'loads starred dashboards' do
          expect(starred_dashboards).to contain_exactly starred_dashboard_1, starred_dashboard_2
        end

        context 'when the dashboard_path filter is present' do
          let(:params) do
            {
              dashboard_path: dashboard_path
            }
          end

          it 'loads filtered starred dashboards' do
            expect(starred_dashboards).to contain_exactly starred_dashboard_2
          end
        end
      end
    end
  end
end