2013-02-28 11:39:42 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Admin::ReportsController do
|
|
|
|
|
|
|
|
it "is a subclass of AdminController" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(Admin::ReportsController < Admin::AdminController).to eq(true)
|
2013-02-28 11:39:42 +08:00
|
|
|
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
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(404)
|
2013-02-28 11:39:42 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "valid type form" do
|
|
|
|
|
|
|
|
context 'missing report' do
|
|
|
|
before do
|
2014-11-06 02:11:23 +08:00
|
|
|
Report.expects(:find).with('active', instance_of(Hash)).returns(nil)
|
2013-02-28 11:39:42 +08:00
|
|
|
xhr :get, :show, type: 'active'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders the report as JSON" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response.status).to eq(404)
|
2013-02-28 11:39:42 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'a report is found' do
|
|
|
|
before do
|
2014-11-06 02:11:23 +08:00
|
|
|
Report.expects(:find).with('active', instance_of(Hash)).returns(Report.new('active'))
|
2013-02-28 11:39:42 +08:00
|
|
|
xhr :get, :show, type: 'active'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders the report as JSON" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2013-02-28 11:39:42 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "renders the report as JSON" do
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(::JSON.parse(response.body)).to be_present
|
2013-02-28 11:39:42 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|