summaryrefslogtreecommitdiff
path: root/spec/lib/error_tracking/collector/dsn_spec.rb
blob: 3aa8719fe38ed47c1ddc97a8f6735394e3710aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ErrorTracking::Collector::Dsn do
  describe '.build_url' do
    let(:setting) do
      {
        protocol: 'https',
        https: true,
        port: 443,
        host: 'gitlab.example.com',
        relative_url_root: nil
      }
    end

    subject { described_class.build_url('abcdef1234567890', 778) }

    it 'returns a valid URL without explicit port' do
      stub_config_setting(setting)

      is_expected.to eq('https://abcdef1234567890@gitlab.example.com/api/v4/error_tracking/collector/778')
    end

    context 'with non-standard port' do
      it 'returns a valid URL with custom port' do
        setting[:port] = 4567
        stub_config_setting(setting)

        is_expected.to eq('https://abcdef1234567890@gitlab.example.com:4567/api/v4/error_tracking/collector/778')
      end
    end
  end
end