common_spec.rb 906 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
require 'spec_helper'

describe Gitlab::Ci::Status::Build::Common do
  let(:user) { create(:user) }
  let(:build) { create(:ci_build) }
  let(:project) { build.project }

  subject do
    Gitlab::Ci::Status::Core
      .new(build, user)
      .extend(described_class)
  end

  describe '#has_action?' do
    it { is_expected.not_to have_action }
  end

  describe '#has_details?' do
    context 'when user has access to read build' do
20 21 22
      before do
        project.team << [user, :developer]
      end
23 24 25 26 27

      it { is_expected.to have_details }
    end

    context 'when user does not have access to read build' do
28 29 30
      before do
        project.update(public_builds: false)
      end
31 32 33 34 35 36 37

      it { is_expected.not_to have_details }
    end
  end

  describe '#details_path' do
    it 'links to the build details page' do
38
      expect(subject.details_path).to include "jobs/#{build.id}"
39 40 41
    end
  end
end