debian-mirror-gitlab/spec/lib/gitlab/ci/parsers_spec.rb

50 lines
1.2 KiB
Ruby
Raw Normal View History

2019-02-13 22:33:31 +05:30
# frozen_string_literal: true
2018-11-18 11:00:15 +05:30
require 'spec_helper'
2019-02-13 22:33:31 +05:30
describe Gitlab::Ci::Parsers do
2018-11-18 11:00:15 +05:30
describe '.fabricate!' do
subject { described_class.fabricate!(file_type) }
2020-04-08 14:13:33 +05:30
context 'when file_type is junit' do
2018-11-18 11:00:15 +05:30
let(:file_type) { 'junit' }
it 'fabricates the class' do
2019-02-13 22:33:31 +05:30
is_expected.to be_a(described_class::Test::Junit)
2018-11-18 11:00:15 +05:30
end
end
2020-04-08 14:13:33 +05:30
context 'when file_type is cobertura' do
let(:file_type) { 'cobertura' }
it 'fabricates the class' do
is_expected.to be_a(described_class::Coverage::Cobertura)
end
end
2020-05-24 23:13:21 +05:30
context 'when file_type is accessibility' do
let(:file_type) { 'accessibility' }
it 'fabricates the class' do
is_expected.to be_a(described_class::Accessibility::Pa11y)
end
end
context 'when file_type is terraform' do
let(:file_type) { 'terraform' }
it 'fabricates the class' do
is_expected.to be_a(described_class::Terraform::Tfplan)
end
end
2018-11-18 11:00:15 +05:30
context 'when file_type does not exist' do
let(:file_type) { 'undefined' }
it 'raises an error' do
2019-02-13 22:33:31 +05:30
expect { subject }.to raise_error(Gitlab::Ci::Parsers::ParserNotFoundError)
2018-11-18 11:00:15 +05:30
end
end
end
end