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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/project_metrics_setting_spec.rb')
-rw-r--r--spec/models/project_metrics_setting_spec.rb63
1 files changed, 0 insertions, 63 deletions
diff --git a/spec/models/project_metrics_setting_spec.rb b/spec/models/project_metrics_setting_spec.rb
deleted file mode 100644
index 6639f9cb208..00000000000
--- a/spec/models/project_metrics_setting_spec.rb
+++ /dev/null
@@ -1,63 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe ProjectMetricsSetting do
- describe 'Associations' do
- it { is_expected.to belong_to(:project) }
- end
-
- describe 'Validations' do
- context 'when external_dashboard_url is over 255 chars' do
- before do
- subject.external_dashboard_url = 'https://' + 'a' * 250
- end
-
- it 'fails validation' do
- expect(subject).not_to be_valid
- expect(subject.errors.messages[:external_dashboard_url])
- .to include('is too long (maximum is 255 characters)')
- end
- end
-
- context 'with unsafe url' do
- before do
- subject.external_dashboard_url = %{https://replaceme.com/'><script>alert(document.cookie)</script>}
- end
-
- it { is_expected.to be_invalid }
- end
-
- context 'non ascii chars in external_dashboard_url' do
- before do
- subject.external_dashboard_url = 'http://gitlab.com/api/0/projects/project1/something€'
- end
-
- it { is_expected.to be_invalid }
- end
-
- context 'internal url in external_dashboard_url' do
- before do
- subject.external_dashboard_url = 'http://192.168.1.1'
- end
-
- it { is_expected.to be_valid }
- end
-
- context 'dashboard_timezone' do
- it { is_expected.to define_enum_for(:dashboard_timezone).with_values({ local: 0, utc: 1 }) }
-
- it 'defaults to local' do
- expect(subject.dashboard_timezone).to eq('local')
- end
- end
- end
-
- describe '#dashboard_timezone=' do
- it 'downcases string' do
- subject.dashboard_timezone = 'UTC'
-
- expect(subject.dashboard_timezone).to eq('utc')
- end
- end
-end