summaryrefslogtreecommitdiff
path: root/test/factories.rb
blob: f2878425e1017bb5a881cd80c237959b0a53f9c5 (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
ENGINE_FACTORY_FILES = Rails.root.join('engines','*','test','factories.rb')
Dir.glob(ENGINE_FACTORY_FILES) do |factory_file|
  require factory_file
end

FactoryBot.define do

  factory :user do
    # Faker::Internet.user_name alone was sometimes
    # producing duplicate usernames.
    login { Faker::Internet.user_name + '_' + SecureRandom.hex(4) }
    password_verifier "1234ABCD"
    password_salt "4321AB"
    invite_code "testcode"

    factory :user_with_settings do
      email_forward { Faker::Internet.email }
      email_aliases_attributes do
        {:a => Faker::Internet.user_name + '@' + APP_CONFIG[:domain]}
      end
    end

    factory :admin_user do
      after(:build) do |admin|
        admin.stubs(:is_admin?).returns(true)
      end
    end

    factory :test_user do
      login {"test_user_" + Faker::Internet.user_name + '_' + SecureRandom.hex(4)}
    end

    factory :premium_user do
      effective_service_level_code 2
    end

  end

  # Identities can have a lot of different purposes - alias, forward, ...
  # So far this is a blocked handle only.
  factory :identity do
    address {Faker::Internet.user_name + '@' + APP_CONFIG[:domain]}
  end

  factory :token do
    user
  end

  factory :pgp_key do
    keyblock <<-EOPGP
-----BEGIN PGP PUBLIC KEY BLOCK-----
+Dummy+PGP+KEY+++Dummy+PGP+KEY+++Dummy+PGP+KEY+++Dummy+PGP+KEY+
#{SecureRandom.base64(4032)}
-----END PGP PUBLIC KEY BLOCK-----
    EOPGP
  end

  factory :message do
    text Faker::Lorem.paragraph
  end
end