Skip to content
Extraits de code Groupes Projets
factories.rb 4,84 ko
Newer Older
  • Learn to ignore specific revisions
  • Raphael's avatar
    Raphael a validé
    #   Copyright (c) 2010, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    ilya's avatar
    ilya a validé
    #For Guidance
    #http://github.com/thoughtbot/factory_girl
    
    # http://railscasts.com/episodes/158-factories-not-fixtures
    
    #This inclsion, because gpg-agent(not needed) is never run and hence never sets any env. variables on a MAC
    
    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}" }
    
    Factory.define :person do |p|
    
      p.sequence(:diaspora_handle) { |n| "bob-person-#{n}#{r_str}@aol.com" }
      p.sequence(:url)  { |n| "http://google-#{n}#{r_str}.com/" }
    
      p.serialized_public_key OpenSSL::PKey::RSA.generate(1024).public_key.export
    
      p.after_build do |person|
        person.profile ||= Factory.build(:profile, :person => person)
      end
      p.after_create do |person|
        person.profile.save
      end
    
    Factory.define :searchable_person, :parent => :person do |p|
      p.after_build do |person|
        person.profile.searchable = true
      end
    end
    
    
    Factory.define :like do |x|
      x.association :author, :factory => :person
      x.association :post, :factory => :status_message
    end
    
    Factory.define :user do |u|
    
      u.sequence(:username) { |n| "bob#{n}#{r_str}" }
      u.sequence(:email) { |n| "bob#{n}#{r_str}@pivotallabs.com" }
    
      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!}")
    
      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"
    
    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
    
    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)
      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.process
        p.update_remote_path
      end
    end
    
    
    Factory.define :service do |service|
    
      service.sequence(:uid)           { |token| "00000#{token}" }
      service.sequence(:access_token)  { |token| "12345#{token}" }
    
      service.sequence(:access_secret) { |token| "98765#{token}" }
    end
    
    Raphael's avatar
    Raphael a validé
    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'
    
    zhitomirskiyi's avatar
    zhitomirskiyi a validé
    
    
    zhitomirskiyi's avatar
    zhitomirskiyi a validé
        note.actors << Factory.build( :person )
    
    Raphael's avatar
    Raphael a validé
    end
    
    Factory.define(:activity_streams_photo, :class => ActivityStreams::Photo) do |p|
      p.association(:author, :factory => :person)
      p.image_url "http://example.com/awesome.png"
    
      p.image_height 900
      p.image_width 400
    
      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
    
    
    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)