mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:32:26 +08:00
89ad2b5900
This updates tests to use latest rails 5 practice and updates ALL dependencies that could be updated Performance testing shows that performance has not regressed if anything it is marginally faster now.
56 lines
1.7 KiB
Ruby
56 lines
1.7 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::BackupsController do
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
before do
|
|
sign_in(admin)
|
|
end
|
|
|
|
describe "parameters" do
|
|
it "returns 404 without a valid filter" do
|
|
get "/admin/moderation_history.json"
|
|
expect(response).not_to be_successful
|
|
end
|
|
|
|
it "returns 404 without a valid id" do
|
|
get "/admin/moderation_history.json?filter=topic"
|
|
expect(response).not_to be_successful
|
|
end
|
|
end
|
|
|
|
describe "for a post" do
|
|
it "returns an empty array when the post doesn't exist" do
|
|
get "/admin/moderation_history.json?filter=post&post_id=99999999"
|
|
expect(response).to be_successful
|
|
expect(::JSON.parse(response.body)['moderation_history']).to be_blank
|
|
end
|
|
|
|
it "returns a history when the post exists" do
|
|
p = Fabricate(:post)
|
|
p = Fabricate(:post, topic: p.topic)
|
|
PostDestroyer.new(Discourse.system_user, p).destroy
|
|
get "/admin/moderation_history.json?filter=post&post_id=#{p.id}"
|
|
expect(response).to be_successful
|
|
expect(::JSON.parse(response.body)['moderation_history']).to be_present
|
|
end
|
|
|
|
end
|
|
|
|
describe "for a topic" do
|
|
it "returns empty history when the topic doesn't exist" do
|
|
get "/admin/moderation_history.json?filter=topic&topic_id=1234"
|
|
expect(response).to be_successful
|
|
expect(::JSON.parse(response.body)['moderation_history']).to be_blank
|
|
end
|
|
|
|
it "returns a history when the topic exists" do
|
|
p = Fabricate(:post)
|
|
PostDestroyer.new(Discourse.system_user, p).destroy
|
|
get "/admin/moderation_history.json?filter=topic&topic_id=#{p.topic_id}"
|
|
expect(response).to be_successful
|
|
expect(::JSON.parse(response.body)['moderation_history']).to be_present
|
|
end
|
|
end
|
|
end
|