69 lines
1.6 KiB
Ruby
69 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::Ci::Variables::Builder::Release do
|
|
let_it_be(:project) { create(:project, :public, :repository) }
|
|
let_it_be(:release) { create(:release, project: project) }
|
|
|
|
let(:builder) { described_class.new(release) }
|
|
|
|
describe '#variables' do
|
|
let(:description_variable) do
|
|
{
|
|
key: 'CI_RELEASE_DESCRIPTION',
|
|
value: release.description,
|
|
public: true,
|
|
masked: false,
|
|
raw: true
|
|
}
|
|
end
|
|
|
|
subject do
|
|
builder.variables
|
|
end
|
|
|
|
context 'when the release is present' do
|
|
let(:description_item) { item(description_variable) }
|
|
|
|
it 'contains all the variables' do
|
|
is_expected.to contain_exactly(description_item)
|
|
end
|
|
|
|
context 'for large description' do
|
|
before do
|
|
release.update_attribute(:description, "Test Description ..." * 5000)
|
|
end
|
|
|
|
it 'truncates' do
|
|
expect(subject['CI_RELEASE_DESCRIPTION'].value.length).to eq(1024)
|
|
end
|
|
end
|
|
|
|
context 'when description is nil' do
|
|
before do
|
|
release.update_attribute(:description, nil)
|
|
end
|
|
|
|
it 'returns without error' do
|
|
builder = subject
|
|
|
|
expect(builder).to match_array([])
|
|
expect(builder.errors).to be_nil
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when the release is not present' do
|
|
let(:release) { nil }
|
|
|
|
it 'contains no variables' do
|
|
is_expected.to match_array([])
|
|
end
|
|
end
|
|
end
|
|
|
|
def item(variable)
|
|
::Gitlab::Ci::Variables::Collection::Item.fabricate(variable)
|
|
end
|
|
end
|