mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:43:49 +08:00
69205cb1e5
This configuration makes it so that a missing translation will raise an error during test execution. Better discover there than after deploy.
55 lines
1.7 KiB
Ruby
55 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Jobs::BulkUserTitleUpdate do
|
|
fab!(:badge) { Fabricate(:badge, name: "Protector of the Realm", allow_title: true) }
|
|
fab!(:user)
|
|
fab!(:other_user) { Fabricate(:user) }
|
|
|
|
describe "update action" do
|
|
before do
|
|
BadgeGranter.grant(badge, user)
|
|
user.update(title: badge.name)
|
|
end
|
|
|
|
it "updates the title of all users with the attached granted title badge id on their profile" do
|
|
execute_update
|
|
expect(user.reload.title).to eq("King of the Forum")
|
|
end
|
|
|
|
it "does not set the title for any other users" do
|
|
execute_update
|
|
expect(other_user.reload.title).not_to eq("King of the Forum")
|
|
end
|
|
|
|
def execute_update
|
|
described_class.new.execute(
|
|
new_title: "King of the Forum",
|
|
granted_badge_id: badge.id,
|
|
action: described_class::UPDATE_ACTION,
|
|
)
|
|
end
|
|
end
|
|
|
|
describe "reset action" do
|
|
let(:customized_badge_name) { "Merit Badge" }
|
|
|
|
before do
|
|
I18n.backend.store_translations(
|
|
:en,
|
|
{ badges: { protector_of_the_realm: { name: "Protector of the Realm" } } },
|
|
)
|
|
TranslationOverride.upsert!(I18n.locale, Badge.i18n_key(badge.name), customized_badge_name)
|
|
BadgeGranter.grant(badge, user)
|
|
user.update(title: customized_badge_name)
|
|
end
|
|
|
|
it "updates the title of all users back to the original badge name" do
|
|
expect(user.reload.title).to eq(customized_badge_name)
|
|
described_class.new.execute(granted_badge_id: badge.id, action: described_class::RESET_ACTION)
|
|
expect(user.reload.title).to eq("Protector of the Realm")
|
|
end
|
|
|
|
after { TranslationOverride.revert!(I18n.locale, Badge.i18n_key(badge.name)) }
|
|
end
|
|
end
|