40 lines
1 KiB
Ruby
40 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ProjectTracingSetting do
|
|
describe '#external_url' do
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let(:tracing_setting) { project.build_tracing_setting }
|
|
|
|
describe 'Validations' do
|
|
describe 'external_url' do
|
|
it 'accepts a valid url' do
|
|
tracing_setting.external_url = 'https://gitlab.com'
|
|
|
|
expect(tracing_setting).to be_valid
|
|
end
|
|
|
|
it 'fails with an invalid url' do
|
|
tracing_setting.external_url = 'gitlab.com'
|
|
|
|
expect(tracing_setting).to be_invalid
|
|
end
|
|
|
|
it 'fails with a blank string' do
|
|
tracing_setting.external_url = nil
|
|
|
|
expect(tracing_setting).to be_invalid
|
|
end
|
|
|
|
it 'sanitizes the url' do
|
|
tracing_setting.external_url = %{https://replaceme.com/'><script>alert(document.cookie)</script>}
|
|
|
|
expect(tracing_setting).to be_valid
|
|
expect(tracing_setting.external_url).to eq(%{https://replaceme.com/'>})
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|