mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 20:41:24 +08:00
Code to support EmberJS + Discourse Tutorial feature: Admin Reports
This commit is contained in:
65
spec/controllers/admin/reports_controller_spec.rb
Normal file
65
spec/controllers/admin/reports_controller_spec.rb
Normal file
@ -0,0 +1,65 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe Admin::ReportsController do
|
||||
|
||||
it "is a subclass of AdminController" do
|
||||
(Admin::ReportsController < Admin::AdminController).should be_true
|
||||
end
|
||||
|
||||
context 'while logged in as an admin' do
|
||||
let!(:admin) { log_in(:admin) }
|
||||
let(:user) { Fabricate(:user) }
|
||||
|
||||
|
||||
context '.show' do
|
||||
|
||||
context "invalid id form" do
|
||||
let(:invalid_id) { "!!&asdfasdf" }
|
||||
|
||||
it "never calls Report.find" do
|
||||
Report.expects(:find).never
|
||||
xhr :get, :show, type: invalid_id
|
||||
end
|
||||
|
||||
it "returns 404" do
|
||||
xhr :get, :show, type: invalid_id
|
||||
response.status.should == 404
|
||||
end
|
||||
end
|
||||
|
||||
context "valid type form" do
|
||||
|
||||
context 'missing report' do
|
||||
before do
|
||||
Report.expects(:find).with('active').returns(nil)
|
||||
xhr :get, :show, type: 'active'
|
||||
end
|
||||
|
||||
it "renders the report as JSON" do
|
||||
response.status.should == 404
|
||||
end
|
||||
end
|
||||
|
||||
context 'a report is found' do
|
||||
before do
|
||||
Report.expects(:find).with('active').returns(Report.new('active'))
|
||||
xhr :get, :show, type: 'active'
|
||||
end
|
||||
|
||||
it "renders the report as JSON" do
|
||||
response.should be_success
|
||||
end
|
||||
|
||||
it "renders the report as JSON" do
|
||||
::JSON.parse(response.body).should be_present
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user