summaryrefslogtreecommitdiff
path: root/spec/presenters/web_hook_log_presenter_spec.rb
blob: 188737e0fb6733ce4b72a55da9d6dc71247189e8 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe WebHookLogPresenter do
  include Gitlab::Routing.url_helpers

  describe '#details_path' do
    let(:web_hook_log) { create(:web_hook_log, web_hook: web_hook) }
    let(:project) { create(:project) }

    subject { web_hook_log.present.details_path }

    context 'project hook' do
      let(:web_hook) { create(:project_hook, project: project) }

      it { is_expected.to eq(project_hook_hook_log_path(project, web_hook, web_hook_log)) }
    end

    context 'service hook' do
      let(:web_hook) { create(:service_hook, integration: integration) }
      let(:integration) { create(:drone_ci_integration, project: project) }

      it { is_expected.to eq(project_settings_integration_hook_log_path(project, integration, web_hook_log)) }
    end
  end

  describe '#retry_path' do
    let(:web_hook_log) { create(:web_hook_log, web_hook: web_hook) }
    let(:project) { create(:project) }

    subject { web_hook_log.present.retry_path }

    context 'project hook' do
      let(:web_hook) { create(:project_hook, project: project) }

      it { is_expected.to eq(retry_project_hook_hook_log_path(project, web_hook, web_hook_log)) }
    end

    context 'service hook' do
      let(:web_hook) { create(:service_hook, integration: integration) }
      let(:integration) { create(:drone_ci_integration, project: project) }

      it { is_expected.to eq(retry_project_settings_integration_hook_log_path(project, integration, web_hook_log)) }
    end
  end
end