summaryrefslogtreecommitdiff
path: root/spec/models/project_metrics_setting_spec.rb
blob: adfbbbc3a45eb54ba115b353c5800e188d2f37bc (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# frozen_string_literal: true

require 'spec_helper'

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