FIX: Ensure that post action moderation post uses the site's default locale.

https://meta.discourse.org/t/a-post-in-looking-for-someone-to-customize-discourse-to-create-a-forum-site-requires-staff-attention/67468/5?u=tgxworld
This commit is contained in:
Guo Xiang Tan
2017-08-09 18:17:54 +09:00
parent e993d53260
commit 90d7dd1f05
5 changed files with 63 additions and 41 deletions

View File

@@ -0,0 +1,55 @@
require 'rails_helper'
RSpec.describe "Managing flags as an admin" do
let(:admin) { Fabricate(:admin) }
let(:post) { Fabricate(:post) }
let(:user) { Fabricate(:user) }
before do
sign_in(admin)
end
context 'viewing flags' do
it 'should return the right response when nothing is flagged' do
get '/admin/flags.json'
expect(response).to be_success
data = ::JSON.parse(response.body)
expect(data["users"]).to eq([])
expect(data["posts"]).to eq([])
end
it 'should return the right response' do
PostAction.act(user, post, PostActionType.types[:spam])
get '/admin/flags.json'
expect(response).to be_success
data = ::JSON.parse(response.body)
data["users"].length == 2
data["posts"].length == 1
end
end
context 'agreeing with a flag' do
it 'should work' do
SiteSetting.allow_user_locale = true
post_action = PostAction.act(user, post, PostActionType.types[:spam], message: 'bad')
admin.update!(locale: 'ja')
xhr :post, "/admin/flags/agree/#{post.id}"
expect(response).to be_success
post_action.reload
expect(post_action.agreed_by_id).to eq(admin.id)
post = Post.offset(1).last
expect(post.raw).to eq(I18n.with_locale(:en) { I18n.t('flags_dispositions.agreed') })
end
end
end