mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
60 lines
1.8 KiB
Ruby
60 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:notification) do
|
|
transient :post
|
|
notification_type Notification.types[:mentioned]
|
|
user
|
|
topic { |attrs| attrs[:post]&.topic || Fabricate(:topic, user: attrs[:user]) }
|
|
data '{"poison":"ivy","killer":"croc"}'
|
|
end
|
|
|
|
Fabricator(:quote_notification, from: :notification) do
|
|
notification_type Notification.types[:quoted]
|
|
user
|
|
topic { |attrs| Fabricate(:topic, user: attrs[:user]) }
|
|
end
|
|
|
|
Fabricator(:private_message_notification, from: :notification) do
|
|
notification_type Notification.types[:private_message]
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_post_type: post.post_type,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:replied_notification, from: :notification) do
|
|
notification_type Notification.types[:replied]
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:posted_notification, from: :notification) do
|
|
notification_type Notification.types[:posted]
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_post_type: post.post_type,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|