6ee1d8cf77
In order to implement https://gitlab.com/gitlab-org/gitlab-ee/issues/10179 we need several modifications on the CI config file. We are adding a new ports section in the default Image object. Each of these ports will accept: number, protocol and name. By default this new configuration will be only enabled in the Web IDE config file.
31 lines
733 B
Ruby
31 lines
733 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe API::Entities::JobRequest::Image do
|
|
let(:ports) { [{ number: 80, protocol: 'http', name: 'name' }]}
|
|
let(:image) { double(name: 'image_name', entrypoint: ['foo'], ports: ports)}
|
|
let(:entity) { described_class.new(image) }
|
|
|
|
subject { entity.as_json }
|
|
|
|
it 'returns the image name' do
|
|
expect(subject[:name]).to eq 'image_name'
|
|
end
|
|
|
|
it 'returns the entrypoint' do
|
|
expect(subject[:entrypoint]).to eq ['foo']
|
|
end
|
|
|
|
it 'returns the ports' do
|
|
expect(subject[:ports]).to eq ports
|
|
end
|
|
|
|
context 'when the ports param is nil' do
|
|
let(:ports) { nil }
|
|
|
|
it 'does not return the ports' do
|
|
expect(subject[:ports]).to be_nil
|
|
end
|
|
end
|
|
end
|