2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-05 09:55:10 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Ci::BuildRunnerSession, model: true do
|
|
|
|
let!(:build) { create(:ci_build, :with_runner_session) }
|
|
|
|
|
|
|
|
subject { build.runner_session }
|
|
|
|
|
|
|
|
it { is_expected.to belong_to(:build) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:build) }
|
|
|
|
it { is_expected.to validate_presence_of(:url).with_message('must be a valid URL') }
|
|
|
|
|
|
|
|
describe '#terminal_specification' do
|
2019-04-04 14:32:02 -04:00
|
|
|
let(:specification) { subject.terminal_specification }
|
|
|
|
|
|
|
|
it 'returns terminal.gitlab.com protocol' do
|
|
|
|
expect(specification[:subprotocols]).to eq ['terminal.gitlab.com']
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a wss url' do
|
|
|
|
expect(specification[:url]).to start_with('wss://')
|
|
|
|
end
|
2018-07-05 09:55:10 -04:00
|
|
|
|
|
|
|
it 'returns empty hash if no url' do
|
|
|
|
subject.url = ''
|
|
|
|
|
2019-04-04 14:32:02 -04:00
|
|
|
expect(specification).to be_empty
|
2018-07-05 09:55:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when url is present' do
|
|
|
|
it 'returns ca_pem nil if empty certificate' do
|
|
|
|
subject.certificate = ''
|
|
|
|
|
2019-04-04 14:32:02 -04:00
|
|
|
expect(specification[:ca_pem]).to be_nil
|
2018-07-05 09:55:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds Authorization header if authorization is present' do
|
|
|
|
subject.authorization = 'whatever'
|
|
|
|
|
2019-04-04 14:32:02 -04:00
|
|
|
expect(specification[:headers]).to include(Authorization: ['whatever'])
|
2018-07-05 09:55:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|