2019-09-30 05:06:31 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-06 10:09:48 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-12-13 16:14:32 -05:00
|
|
|
RSpec.describe Ci::JobSerializer do
|
2017-03-06 10:09:48 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
let(:serializer) do
|
2017-05-09 00:15:34 -04:00
|
|
|
described_class.new(current_user: user)
|
2017-03-06 10:09:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
subject { serializer.represent(resource) }
|
|
|
|
|
|
|
|
describe '#represent' do
|
2017-03-11 09:30:25 -05:00
|
|
|
context 'when a single object is being serialized' do
|
|
|
|
let(:resource) { create(:ci_build) }
|
|
|
|
|
|
|
|
it 'serializers the pipeline object' do
|
|
|
|
expect(subject[:id]).to eq resource.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when multiple objects are being serialized' do
|
|
|
|
let(:resource) { create_list(:ci_build, 2) }
|
|
|
|
|
|
|
|
it 'serializers the array of pipelines' do
|
|
|
|
expect(subject).not_to be_empty
|
|
|
|
end
|
|
|
|
end
|
2017-03-10 10:16:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#represent_status' do
|
2018-04-05 17:04:42 -04:00
|
|
|
context 'for a failed build' do
|
|
|
|
let(:resource) { create(:ci_build, :failed) }
|
|
|
|
let(:status) { resource.detailed_status(double('user')) }
|
|
|
|
|
|
|
|
subject { serializer.represent_status(resource) }
|
|
|
|
|
|
|
|
it 'serializes only status' do
|
|
|
|
expect(subject[:text]).to eq(status.text)
|
|
|
|
expect(subject[:label]).to eq('failed')
|
2018-08-09 07:05:13 -04:00
|
|
|
expect(subject[:tooltip]).to eq('failed - (unknown failure)')
|
2018-04-05 17:04:42 -04:00
|
|
|
expect(subject[:icon]).to eq(status.icon)
|
2017-12-07 07:15:49 -05:00
|
|
|
expect(subject[:favicon]).to match_asset_path("/assets/ci_favicons/#{status.favicon}.png")
|
2018-04-05 17:04:42 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for any other type of build' do
|
|
|
|
let(:resource) { create(:ci_build, :success) }
|
2017-03-21 09:21:13 -04:00
|
|
|
let(:status) { resource.detailed_status(double('user')) }
|
2017-03-10 10:16:48 -05:00
|
|
|
|
|
|
|
subject { serializer.represent_status(resource) }
|
2017-03-06 10:09:48 -05:00
|
|
|
|
|
|
|
it 'serializes only status' do
|
2017-03-11 09:30:25 -05:00
|
|
|
expect(subject[:text]).to eq(status.text)
|
2018-04-05 17:04:42 -04:00
|
|
|
expect(subject[:label]).to eq('passed')
|
|
|
|
expect(subject[:tooltip]).to eq('passed')
|
2017-03-11 09:30:25 -05:00
|
|
|
expect(subject[:icon]).to eq(status.icon)
|
2017-12-07 07:15:49 -05:00
|
|
|
expect(subject[:favicon]).to match_asset_path("/assets/ci_favicons/#{status.favicon}.png")
|
2017-03-06 10:09:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|