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

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

require 'spec_helper'
require Rails.root.join('db', 'migrate', '20200214085940_clean_grafana_url.rb')

RSpec.describe CleanGrafanaUrl do
  let(:application_settings_table) { table(:application_settings) }

  [
    'javascript:alert(window.opener.document.location)',
    '  javascript:alert(window.opener.document.location)'
  ].each do |grafana_url|
    it "sets grafana_url back to its default value when grafana_url is '#{grafana_url}'" do
      application_settings = application_settings_table.create!(grafana_url: grafana_url)

      migrate!

      expect(application_settings.reload.grafana_url).to eq('/-/grafana')
    end
  end

  ['/-/grafana', '/some/relative/url', 'http://localhost:9000'].each do |grafana_url|
    it "does not modify grafana_url when grafana_url is '#{grafana_url}'" do
      application_settings = application_settings_table.create!(grafana_url: grafana_url)

      migrate!

      expect(application_settings.reload.grafana_url).to eq(grafana_url)
    end
  end

  context 'when application_settings table has no rows' do
    it 'does not fail' do
      migrate!
    end
  end
end