97 lines
2.7 KiB
Ruby
97 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe CommitPresenter do
|
|
let(:project) { create(:project, :repository) }
|
|
let(:commit) { project.commit }
|
|
let(:user) { create(:user) }
|
|
let(:presenter) { described_class.new(commit, current_user: user) }
|
|
|
|
describe '#web_path' do
|
|
it { expect(presenter.web_path).to eq("/#{project.full_path}/-/commit/#{commit.sha}") }
|
|
end
|
|
|
|
describe '#detailed_status_for' do
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
let(:pipeline) { create(:ci_pipeline, :success, project: project, sha: commit.sha, ref: 'ref') }
|
|
|
|
subject { presenter.detailed_status_for('ref')&.text }
|
|
|
|
where(:read_commit_status, :read_pipeline, :expected_result) do
|
|
true | true | 'passed'
|
|
true | false | nil
|
|
false | true | nil
|
|
false | false | nil
|
|
end
|
|
|
|
with_them do
|
|
before do
|
|
allow(presenter).to receive(:can?).with(user, :read_commit_status, project).and_return(read_commit_status)
|
|
allow(presenter).to receive(:can?).with(user, :read_pipeline, pipeline).and_return(read_pipeline)
|
|
end
|
|
|
|
it { is_expected.to eq expected_result }
|
|
end
|
|
end
|
|
|
|
describe '#status_for' do
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
let(:pipeline) { create(:ci_pipeline, :success, project: project, sha: commit.sha) }
|
|
|
|
subject { presenter.status_for }
|
|
|
|
where(:read_commit_status, :read_pipeline, :expected_result) do
|
|
true | true | 'success'
|
|
true | false | nil
|
|
false | true | nil
|
|
false | false | nil
|
|
end
|
|
|
|
with_them do
|
|
before do
|
|
allow(presenter).to receive(:can?).with(user, :read_commit_status, project).and_return(read_commit_status)
|
|
allow(presenter).to receive(:can?).with(user, :read_pipeline, pipeline).and_return(read_pipeline)
|
|
end
|
|
|
|
it { is_expected.to eq expected_result }
|
|
end
|
|
end
|
|
|
|
describe '#any_pipelines?' do
|
|
subject { presenter.any_pipelines? }
|
|
|
|
context 'when user can read pipeline' do
|
|
before do
|
|
allow(presenter).to receive(:can?).with(user, :read_pipeline, project).and_return(true)
|
|
end
|
|
|
|
it 'returns if there are any pipelines for commit' do
|
|
expect(commit).to receive_message_chain(:pipelines, :any?).and_return(true)
|
|
|
|
expect(subject).to eq(true)
|
|
end
|
|
end
|
|
|
|
context 'when user can not read pipeline' do
|
|
it 'is false' do
|
|
is_expected.to eq(false)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#signature_html' do
|
|
let(:signature) { 'signature' }
|
|
|
|
before do
|
|
expect(commit).to receive(:has_signature?).and_return(true)
|
|
allow(ApplicationController.renderer).to receive(:render).and_return(signature)
|
|
end
|
|
|
|
it 'renders html for displaying signature' do
|
|
expect(presenter.signature_html).to eq(signature)
|
|
end
|
|
end
|
|
end
|