summaryrefslogtreecommitdiff
path: root/spec/support/helpers/metrics_dashboard_url_helpers.rb
blob: 58b3d1e4d1da847fbe0cdf381e600144634cab28 (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

module MetricsDashboardUrlHelpers
  # Using the url_helpers available in the test suite uses
  # the sample host, but the urls generated may need to
  # point to the configured host in the :js trait
  def urls
    ::Gitlab::Routing.url_helpers
  end

  def clear_host_from_memoized_variables
    [:metrics_regex, :grafana_regex, :clusters_regex, :alert_regex].each do |method_name|
      Gitlab::Metrics::Dashboard::Url.clear_memoization(method_name)
    end
  end

  def stub_gitlab_domain
    allow_any_instance_of(Banzai::Filter::InlineEmbedsFilter)
      .to receive(:gitlab_domain)
      .and_return(urls.root_url.chomp('/'))

    allow(Gitlab::Metrics::Dashboard::Url)
      .to receive(:gitlab_domain)
      .and_return(urls.root_url.chomp('/'))
  end
end