BigW Consortium Gitlab

pipeline_badge_spec.rb 2.17 KB
Newer Older
1 2
require 'spec_helper'

3 4 5
feature 'Pipeline Badge' do
  set(:project) { create(:project, :repository, :public) }
  let(:ref) { project.default_branch }
6 7 8 9

  # this can't be tested in the controller, as it bypasses the rails router
  # and constructs a route based on the controller being tested
  # Keep around until 10.0, see gitlab-org/gitlab-ce#35307
10 11 12
  context 'when the deprecated badge is requested' do
    it 'displays the badge' do
      visit build_project_badges_path(project, ref: ref, format: :svg)
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
      expect(page.status_code).to eq(200)
    end
  end

  context 'when the project has a pipeline' do
    let!(:pipeline) { create(:ci_empty_pipeline, project: project, ref: ref, sha: project.commit(ref).sha) }
    let!(:job) { create(:ci_build, pipeline: pipeline) }

    context 'when the pipeline was successfull' do
      it 'displays so on the badge' do
        job.success

        visit pipeline_project_badges_path(project, ref: ref, format: :svg)

        expect(page.status_code).to eq(200)
        expect_badge('passed')
      end
    end

    context 'when the pipeline failed' do
      it 'shows displays so on the badge' do
        job.drop

        visit pipeline_project_badges_path(project, ref: ref, format: :svg)

        expect(page.status_code).to eq(200)
        expect_badge('failed')
      end
    end

    context 'when the pipeline is running' do
      it 'shows displays so on the badge' do
        create(:ci_build, pipeline: pipeline, name: 'second build', status_event: 'run')

        visit pipeline_project_badges_path(project, ref: ref, format: :svg)

        expect(page.status_code).to eq(200)
        expect_badge('running')
      end
    end

    context 'when a new pipeline is created' do
      it 'shows a fresh badge' do
        visit pipeline_project_badges_path(project, ref: ref, format: :svg)

        expect(page.status_code).to eq(200)
        expect(page.response_headers['Cache-Control']).to include 'no-cache'
      end
    end

    def expect_badge(status)
      svg = Nokogiri::XML.parse(page.body)
      expect(page.response_headers['Content-Type']).to include('image/svg+xml')
      expect(svg.at(%Q{text:contains("#{status}")})).to be_truthy
    end
69 70
  end
end