56 lines
1.3 KiB
Ruby
56 lines
1.3 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::FlagsController do
|
|
let(:admin) { Fabricate(:admin) }
|
|
let(:post_1) { Fabricate(:post) }
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
before do
|
|
sign_in(admin)
|
|
end
|
|
|
|
context '#index' 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_1, 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 '#agree' do
|
|
it 'should work' do
|
|
SiteSetting.allow_user_locale = true
|
|
post_action = PostAction.act(user, post_1, PostActionType.types[:spam], message: 'bad')
|
|
admin.update!(locale: 'ja')
|
|
|
|
post "/admin/flags/agree/#{post_1.id}.json"
|
|
|
|
expect(response).to be_success
|
|
|
|
post_action.reload
|
|
|
|
expect(post_action.agreed_by_id).to eq(admin.id)
|
|
|
|
post_1 = Post.offset(1).last
|
|
|
|
expect(post_1.raw).to eq(I18n.with_locale(:en) { I18n.t('flags_dispositions.agreed') })
|
|
end
|
|
end
|
|
end
|