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

factories.rb « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74578cf6ecb341eece1f2ac89e6174ce8c7076c9 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

#For Guidance
#http://github.com/thoughtbot/factory_girl
# http://railscasts.com/episodes/158-factories-not-fixtures

def r_str
  ActiveSupport::SecureRandom.hex(3)
end

Factory.define :profile do |p|
  p.sequence(:first_name) { |n| "Robert#{n}#{r_str}" }
  p.sequence(:last_name)  { |n| "Grimm#{n}#{r_str}" }
  p.birthday Date.today
end

Factory.define :person do |p|
  p.sequence(:diaspora_handle) { |n| "bob-person-#{n}#{r_str}@example.net" }
  p.sequence(:url)  { |n| AppConfig[:pod_url] }
  p.serialized_public_key OpenSSL::PKey::RSA.generate(1024).public_key.export
  p.after_build do |person|
    person.profile = Factory.build(:profile, :person => person) unless person.profile.first_name.present?
  end
  p.after_create do |person|
    person.profile.save
  end
end

Factory.define :searchable_person, :parent => :person do |p|
  p.after_build do |person|
    person.profile = Factory.build(:profile, :person => person, :searchable => true)
  end
end

Factory.define :like do |x|
  x.association :author, :factory => :person
  x.association :target, :factory => :status_message
end

Factory.define :user do |u|
  u.getting_started false
  u.sequence(:username) { |n| "bob#{n}#{r_str}" }
  u.sequence(:email) { |n| "bob#{n}#{r_str}@pivotallabs.com" }
  u.password "bluepin7"
  u.password_confirmation { |u| u.password }
  u.serialized_private_key  OpenSSL::PKey::RSA.generate(1024).export
  u.after_build do |user|
    user.person = Factory.build(:person, :profile => Factory.build(:profile),
                                :owner_id => user.id,
                                :serialized_public_key => user.encryption_key.public_key.export,
                                :diaspora_handle => "#{user.username}@#{AppConfig[:pod_url].gsub(/(https?:|www\.)\/\//, '').chop!}")
  end
  u.after_create do |user|
    user.person.save
    user.person.profile.save
  end
end

Factory.define :user_with_aspect, :parent => :user do |u|
  u.after_create { |user| Factory(:aspect, :user => user) }
end

Factory.define :aspect do |aspect|
  aspect.name "generic"
  aspect.association :user
end

Factory.define(:status_message) do |m|
  m.sequence(:text) { |n| "jimmy's #{n} whales" }
  m.association :author, :factory => :person
  m.after_build do|m|
    m.diaspora_handle = m.author.diaspora_handle
  end
end

Factory.define(:status_message_with_photo, :parent => :status_message) do |m|
  m.sequence(:text) { |n| "There are #{n} ninjas in this photo." }
  m.after_build do |m|
    p = Factory(:photo, :author => m.author, :status_message => m, :pending => false, :public => m.public)
  end
end

Factory.define(:photo) do |p|
  p.sequence(:random_string) {|n| ActiveSupport::SecureRandom.hex(10) }
  p.after_build do |p|
    p.unprocessed_image.store! File.open(File.join(File.dirname(__FILE__), 'fixtures', 'button.png'))
    p.update_remote_path
  end
end

Factory.define :reshare do |r|
  r.association(:root, :public => true, :factory => :status_message)
  r.association(:author, :factory => :person)
end

Factory.define :invitation do |i|
  i.service "email"
  i.identifier "bob.smith@smith.com"
  i.association :sender, :factory => :user_with_aspect
  i.after_build do |i|
    i.aspect = i.sender.aspects.first
  end
end

Factory.define :service do |service|
  service.nickname "sirrobertking"
  service.type "Services::Twitter"

  service.sequence(:uid)           { |token| "00000#{token}" }
  service.sequence(:access_token)  { |token| "12345#{token}" }
  service.sequence(:access_secret) { |token| "98765#{token}" }
end

Factory.define :service_user do |s_user|
  s_user.sequence(:uid) { |id| "a#{id}"}
  s_user.sequence(:name) { |num| "Rob Fergus the #{num.ordinalize}" }
  s_user.association :service
  s_user.photo_url "/images/user/adams.jpg"
end

Factory.define(:comment) do |comment|
  comment.sequence(:text) {|n| "#{n} cats"}
  comment.association(:author, :factory => :person)
  comment.association(:post, :factory => :status_message)
end

Factory.define(:notification) do |n|
  n.association :recipient, :factory => :user
  n.association :target, :factory => :comment
  n.type 'Notifications::AlsoCommented'

  n.after_build do |note|
    note.actors << Factory.build( :person )
  end
end

Factory.define(:activity_streams_photo, :class => ActivityStreams::Photo) do |p|
  p.association(:author, :factory => :person)
  p.image_url "#{AppConfig[:pod_url]}/images/asterisk.png"
  p.image_height 154
  p.image_width 154
  p.object_url "http://example.com/awesome_things.gif"
  p.objectId "http://example.com/awesome_things.gif"
  p.actor_url "http://notcubbi.es/cubber"
  p.provider_display_name "not cubbies"
  p.public true
end

Factory.define(:app, :class => OAuth2::Provider.client_class) do |a|
  a.sequence(:name) { |token| "Chubbies#{token}" }
  a.sequence(:application_base_url) { |token| "http://chubbi#{token}.es/" }

  a.description "The best way to chub on the net."
  a.icon_url "/images/chubbies48.png"
  a.permissions_overview "I will use the permissions this way!"
  a.sequence(:public_key) {|n| OpenSSL::PKey::RSA.new(2048) }
end

Factory.define(:oauth_authorization, :class => OAuth2::Provider.authorization_class) do |a|
  a.association(:client, :factory => :app)
  a.association(:resource_owner, :factory => :user)
end

Factory.define(:oauth_access_token, :class => OAuth2::Provider.access_token_class) do |a|
  a.association(:authorization, :factory => :oauth_authorization)
end