8a134f4c65
We're moving from using terminology related to terminals when we refer to Websockets connections in Workhorse. It's more appropiate a concept like channel.
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
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
|
|
|
|
it 'returns empty hash if no url' do
|
|
subject.url = ''
|
|
|
|
expect(specification).to be_empty
|
|
end
|
|
|
|
context 'when url is present' do
|
|
it 'returns ca_pem nil if empty certificate' do
|
|
subject.certificate = ''
|
|
|
|
expect(specification[:ca_pem]).to be_nil
|
|
end
|
|
|
|
it 'adds Authorization header if authorization is present' do
|
|
subject.authorization = 'whatever'
|
|
|
|
expect(specification[:headers]).to include(Authorization: ['whatever'])
|
|
end
|
|
end
|
|
end
|
|
end
|