docbrown/spec/factories/users.rb
rhymes d6e47a03c7
[deploy] Authentication refactoring - step 1 (#7259)
* Add Authentication providers

* Making strides on refactoring

* New usr from Twitter

* Existing Twitter user

* Existing user Github

* Test skip_confirmation!

* Refactor a bit and add simplecov groups

* Test user already logged in

* Rename to Authentication::Authenticator

* Refactor to a common class

* Add existing user test for twitter login

* Refactor global handler

* Fix spec and comment Twitter provider

* Update comments and strategy TODO

* Move providers loading code to Authentication::Providers

* add SubclassResponsibility error

* Use delegation
2020-04-15 12:13:10 -04:00

140 lines
4 KiB
Ruby

FactoryBot.define do
sequence(:email) { |n| "person#{n}@example.com" }
sequence(:username) { |n| "username#{n}" }
sequence(:twitter_username) { |n| "twitter#{n}" }
sequence(:github_username) { |n| "github#{n}" }
image_path = Rails.root.join("spec/support/fixtures/images/image1.jpeg")
factory :user do
name { Faker::Name.name }
email { generate :email }
username { generate :username }
profile_image { Rack::Test::UploadedFile.new(image_path, "image/jpeg") }
twitter_username { generate :twitter_username }
github_username { generate :github_username }
summary { Faker::Lorem.paragraph[0..rand(190)] }
website_url { Faker::Internet.url }
confirmed_at { Time.current }
saw_onboarding { true }
checked_code_of_conduct { true }
checked_terms_and_conditions { true }
signup_cta_variant { "navbar_basic" }
email_digest_periodic { false }
trait :with_identity do
transient { identities { %i[github twitter] } }
after(:create) do |user, options|
options.identities.each do |provider|
auth = OmniAuth.config.mock_auth.fetch(provider.to_sym)
create(
:identity,
user: user, provider: provider, uid: auth.uid, auth_data_dump: auth,
)
end
end
end
trait :super_admin do
after(:build) { |user| user.add_role(:super_admin) }
end
trait :admin do
after(:build) { |user| user.add_role(:admin) }
end
trait :single_resource_admin do
transient do
resource { nil }
end
after(:build) { |user, options| user.add_role(:single_resource_admin, options.resource) }
end
trait :super_plus_single_resource_admin do
transient do
resource { nil }
end
after(:build) do |user, options|
user.add_role(:super_admin)
user.add_role(:single_resource_admin, options.resource)
end
end
trait :trusted do
after(:build) { |user| user.add_role(:trusted) }
end
trait :banned do
after(:build) { |user| user.add_role(:banned) }
end
trait :video_permission do
after(:build) { |user| user.created_at = 3.weeks.ago }
end
trait :ignore_mailchimp_subscribe_callback do
after(:build) do |user|
user.define_singleton_method(:subscribe_to_mailchimp_newsletter) {}
# user.class.skip_callback(:validates, :after_create)
end
end
trait :pro do
after(:build) { |user| user.add_role :pro }
end
trait :org_member do
after(:create) do |user|
org = create(:organization)
create(:organization_membership, user_id: user.id, organization_id: org.id, type_of_user: "member")
end
end
trait :org_admin do
after(:create) do |user|
org = create(:organization)
create(:organization_membership, user_id: user.id, organization_id: org.id, type_of_user: "admin")
end
end
trait :with_article do
after(:create) do |user|
create(:article, user_id: user.id)
user.update(articles_count: 1)
end
end
trait :with_only_comment do
after(:create) do |user|
other_user = create(:user)
article = create(:article, user_id: other_user.id)
create(:comment, user_id: user.id, commentable: article)
user.update(comments_count: 1)
end
end
trait :with_article_and_comment do
after(:create) do |user|
article = create(:article, user_id: user.id)
create(:comment, user_id: user.id, commentable: article)
user.update(articles_count: 1, comments_count: 1)
end
end
trait :with_pro_membership do
after(:create) do |user|
create(:pro_membership, user: user)
end
end
trait :tag_moderator do
after(:create) do |user|
tag = create(:tag)
user.add_role :tag_moderator, tag
end
end
end
end