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

_badge.html.haml_spec.rb « status « ci « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65497de1608081471d6f4994491c5c6f981db22b (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 'ci/status/_badge' do
  let(:user) { create(:user) }
  let(:project) { create(:project, :private) }
  let(:pipeline) { create(:ci_pipeline, project: project) }

  context 'when rendering status for build' do
    let(:build) do
      create(:ci_build, :success, pipeline: pipeline)
    end

    context 'when user has ability to see details' do
      before do
        project.add_developer(user)
      end

      it 'has link to build details page' do
        details_path = project_job_path(project, build)

        render_status(build)

        expect(rendered).to have_link 'Passed', href: details_path
      end
    end

    context 'when user do not have ability to see build details' do
      before do
        render_status(build)
      end

      it 'contains build status text' do
        expect(rendered).to have_content 'Passed'
      end

      it 'does not contain links' do
        expect(rendered).not_to have_link 'Passed'
      end
    end
  end

  context 'when rendering status for external job' do
    context 'when user has ability to see commit status details' do
      before do
        project.add_developer(user)
      end

      context 'status has external target url' do
        before do
          external_job = create(
            :generic_commit_status,
            status: :running,
            pipeline: pipeline,
            target_url: 'http://gitlab.com'
          )

          render_status(external_job)
        end

        it 'contains valid commit status text' do
          expect(rendered).to have_content 'Running'
        end

        it 'has link to external status page' do
          expect(rendered).to have_link 'Running', href: 'http://gitlab.com'
        end
      end

      context 'status do not have external target url' do
        before do
          external_job = create(:generic_commit_status, status: :canceled)

          render_status(external_job)
        end

        it 'contains valid commit status text' do
          expect(rendered).to have_content 'Canceled'
        end

        it 'has link to external status page' do
          expect(rendered).not_to have_link 'Canceled'
        end
      end
    end
  end

  def render_status(resource)
    render 'ci/status/badge', status: resource.detailed_status(user)
  end
end