f540ffcef6
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
79 lines
1.9 KiB
Ruby
79 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Gitlab::Ci::Status::SuccessWarning do
|
|
let(:status) { double('status') }
|
|
|
|
subject do
|
|
described_class.new(status)
|
|
end
|
|
|
|
describe '#test' do
|
|
it { expect(subject.text).to eq 'passed' }
|
|
end
|
|
|
|
describe '#label' do
|
|
it { expect(subject.label).to eq 'passed with warnings' }
|
|
end
|
|
|
|
describe '#icon' do
|
|
it { expect(subject.icon).to eq 'status_warning' }
|
|
end
|
|
|
|
describe '#group' do
|
|
it { expect(subject.group).to eq 'success-with-warnings' }
|
|
end
|
|
|
|
describe '.matches?' do
|
|
let(:matchable) { double('matchable') }
|
|
|
|
context 'when matchable subject is successful' do
|
|
before do
|
|
allow(matchable).to receive(:success?).and_return(true)
|
|
end
|
|
|
|
context 'when matchable subject has warnings' do
|
|
before do
|
|
allow(matchable).to receive(:has_warnings?).and_return(true)
|
|
end
|
|
|
|
it 'is a correct match' do
|
|
expect(described_class.matches?(matchable, double)).to eq true
|
|
end
|
|
end
|
|
|
|
context 'when matchable subject does not have warnings' do
|
|
before do
|
|
allow(matchable).to receive(:has_warnings?).and_return(false)
|
|
end
|
|
|
|
it 'does not match' do
|
|
expect(described_class.matches?(matchable, double)).to eq false
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when matchable subject is not successful' do
|
|
before do
|
|
allow(matchable).to receive(:success?).and_return(false)
|
|
end
|
|
|
|
context 'when matchable subject has warnings' do
|
|
before do
|
|
allow(matchable).to receive(:has_warnings?).and_return(true)
|
|
end
|
|
|
|
it 'does not match' do
|
|
expect(described_class.matches?(matchable, double)).to eq false
|
|
end
|
|
end
|
|
|
|
context 'when matchable subject does not have warnings' do
|
|
it 'does not match' do
|
|
expect(described_class.matches?(matchable, double)).to eq false
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|