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

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

FactoryBot.define do
  factory :alerting_alert, class: 'Gitlab::Alerting::Alert' do
    project
    payload { {} }

    transient do
      metric_id { nil }

      after(:build) do |alert, evaluator|
        unless alert.payload.key?('startsAt')
          alert.payload['startsAt'] = Time.now.rfc3339
        end

        if metric_id = evaluator.metric_id
          alert.payload['labels'] ||= {}
          alert.payload['labels']['gitlab_alert_id'] = metric_id.to_s
        end
      end
    end

    skip_create
  end
end