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

_push.html.haml_spec.rb « event « events « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe4357d3ad506b6fb7db13c1bece2199ed2bb3a4 (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
90
91
92
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'events/event/_push.html.haml' do
  let(:event) { build_stubbed(:push_event) }
  let(:event_presenter) { event.present }

  context 'with a branch' do
    let(:payload) { build_stubbed(:push_event_payload, event: event) }

    before do
      allow(event).to receive(:push_event_payload).and_return(payload)
    end

    it 'links to the branch' do
      allow(event.project.repository).to receive(:branch_exists?).with(event.ref_name).and_return(true)
      link = project_commits_path(event.project, event.ref_name)

      render partial: 'events/event/push', locals: { event: event_presenter }

      expect(rendered).to have_link(event.ref_name, href: link)
    end

    context 'that has been deleted' do
      it 'does not link to the branch' do
        render partial: 'events/event/push', locals: { event: event_presenter }

        expect(rendered).not_to have_link(event.ref_name)
      end
    end

    context 'ref_count is more than 1' do
      let(:payload) do
        build_stubbed(
          :push_event_payload,
          event: event,
          ref_count: 4,
          ref_type: :branch
        )
      end

      it 'includes the count in the text' do
        render partial: 'events/event/push', locals: { event: event_presenter }

        expect(rendered).to include('4 branches')
      end
    end
  end

  context 'with a tag' do
    let(:payload) { build_stubbed(:push_event_payload, event: event, ref_type: :tag, ref: 'v0.1.0') }

    before do
      allow(event).to receive(:push_event_payload).and_return(payload)
    end

    it 'links to the tag' do
      allow(event.project.repository).to receive(:tag_exists?).with(event.ref_name).and_return(true)
      link = project_commits_path(event.project, event.ref_name)

      render partial: 'events/event/push', locals: { event: event_presenter }

      expect(rendered).to have_link(event.ref_name, href: link)
    end

    context 'that has been deleted' do
      it 'does not link to the tag' do
        render partial: 'events/event/push', locals: { event: event_presenter }

        expect(rendered).not_to have_link(event.ref_name)
      end
    end

    context 'ref_count is more than 1' do
      let(:payload) do
        build_stubbed(
          :push_event_payload,
          event: event,
          ref_count: 4,
          ref_type: :tag
        )
      end

      it 'includes the count in the text' do
        render partial: 'events/event/push', locals: { event: event_presenter }

        expect(rendered).to include('4 tags')
      end
    end
  end
end