Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dsn_spec.rb « collector « error_tracking « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af55e6f20ec7c9dced4d34ba80cb4b020236fd18 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ErrorTracking::Collector::Dsn do
  describe '.build__url' do
    let(:gitlab) do
      double(
        protocol: 'https',
        https: true,
        host: 'gitlab.example.com',
        port: '4567',
        relative_url_root: nil
      )
    end

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

    it 'returns a valid URL' do
      allow(Settings).to receive(:gitlab).and_return(gitlab)
      allow(Settings).to receive(:gitlab_on_standard_port?).and_return(false)

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