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

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

FactoryBot.define do
  factory :abuse_report do
    reporter factory: :user
    user
    message { 'User sends spam' }
    reported_from_url { 'http://gitlab.com' }
    links_to_spam { ['https://gitlab.com/issue1', 'https://gitlab.com/issue2'] }

    trait :closed do
      status { 'closed' }
      resolved_by factory: :user
    end

    trait :with_screenshot do
      screenshot { fixture_file_upload('spec/fixtures/dk.png') }
    end

    trait :with_assignee do
      assignee factory: :user
    end

    trait :with_evidence do
      evidence do
        {
          "user" => {
            "login_count" => rand(0..1000),
            "account_age" => rand(0..1000),
            "spam_score" => rand(0.0..1.0),
            "telesign_score" => rand(0.0..1.0),
            "arkos_score" => rand(0.0..1.0),
            "pvs_score" => rand(0.0..1.0),
            "product_coverage" => rand(0.0..1.0),
            "virus_total_score" => rand(0.0..1.0)
          }
        }
      end
    end
  end
end