summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/services/error_tracking_service_shared_examples.rb
blob: 83c6d89e56089672325cfa6aed7811e78985dfa9 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# frozen_string_literal: true

shared_examples 'error tracking service data not ready' do |service_call|
  context "when #{service_call} returns nil" do
    before do
      expect(error_tracking_setting)
        .to receive(service_call).and_return(nil)
    end

    it 'result is not ready' do
      expect(result).to eq(
        status: :error, http_status: :no_content, message: 'Not ready. Try again later')
    end
  end
end

shared_examples 'error tracking service sentry error handling' do |service_call|
  context "when #{service_call} returns error" do
    before do
      allow(error_tracking_setting)
        .to receive(service_call)
        .and_return(
          error: 'Sentry response status code: 401',
          error_type: ErrorTracking::ProjectErrorTrackingSetting::SENTRY_API_ERROR_TYPE_NON_20X_RESPONSE
        )
    end

    it 'returns the error' do
      expect(result).to eq(
        status: :error,
        http_status: :bad_request,
        message: 'Sentry response status code: 401'
      )
    end
  end
end

shared_examples 'error tracking service http status handling' do |service_call|
  context "when #{service_call} returns error with http_status" do
    before do
      allow(error_tracking_setting)
        .to receive(service_call)
        .and_return(
          error: 'Sentry API response is missing keys. key not found: "id"',
          error_type: ErrorTracking::ProjectErrorTrackingSetting::SENTRY_API_ERROR_TYPE_MISSING_KEYS
        )
    end

    it 'returns the error with correct http_status' do
      expect(result).to eq(
        status: :error,
        http_status: :internal_server_error,
        message: 'Sentry API response is missing keys. key not found: "id"'
      )
    end
  end
end

shared_examples 'error tracking service unauthorized user' do
  context 'with unauthorized user' do
    let(:unauthorized_user) { create(:user) }

    subject { described_class.new(project, unauthorized_user) }

    it 'returns error' do
      result = subject.execute

      expect(result).to include(
        status: :error,
        message: 'Access denied',
        http_status: :unauthorized
      )
    end
  end
end

shared_examples 'error tracking service disabled' do
  context 'with error tracking disabled' do
    before do
      error_tracking_setting.enabled = false
    end

    it 'raises error' do
      result = subject.execute

      expect(result).to include(status: :error, message: 'Error Tracking is not enabled')
    end
  end
end