2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ReleaseSerializer do
|
2023-03-04 22:38:38 +05:30
|
|
|
let(:user) { build_stubbed(:user) }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
subject { described_class.new.represent(resource, current_user: user) }
|
|
|
|
|
|
|
|
describe '#represent' do
|
|
|
|
context 'when a single object is being serialized' do
|
2023-03-04 22:38:38 +05:30
|
|
|
let(:resource) { build_stubbed(:release) }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
it 'serializes the label object' do
|
|
|
|
expect(subject[:tag]).to eq resource.tag
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
it 'does not expose git-sha as sensitive information' do
|
|
|
|
expect(subject[:sha]).to be_nil
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when multiple objects are being serialized' do
|
2023-03-04 22:38:38 +05:30
|
|
|
let(:resource) { build_stubbed_list(:release, 3) }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
it 'serializes the array of releases' do
|
|
|
|
expect(subject.size).to eq(3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|