require 'spec_helper' describe Restfulness::Resource do class GetResource < Restfulness::Resource def get 'result' end end class GetPostResource < Restfulness::Resource def get 'result' end def post 'post' end end let :app do Class.new(Restfulness::Application) do routes do # empty end end end let :request do Restfulness::Request.new(app) end let :response do Restfulness::Response.new(request) end describe "#initialize" do let :resource do GetResource end it "should assign request and response" do obj = resource.new(request, response) obj.request.should eql(request) obj.response.should eql(response) end end describe "#options" do let :resource do GetPostResource end it "should return list of supported methods" do obj = resource.new(request, response) obj.options.should be_nil response.headers['Allow'].should eql('GET, POST, OPTIONS') end end describe "#call" do let :resource do GetResource end it "should perform action" do request.action = :get obj = resource.new(request, response) obj.should_receive(:get).and_return('res') obj.call.should eql('res') end end describe "#method_allowed?" do let :resource do GetPostResource end it "should be true on valid method" do request.action = :get obj = resource.new(request, response) obj.method_allowed?.should be_true end it "should be false on invalid method" do request.action = :put obj = resource.new(request, response) obj.method_allowed?.should be_false end end describe "basic callback responses" do let :resource do GetPostResource end let :obj do request.action = :get obj = resource.new(request, response) end it "should all be true for questions" do obj.exists?.should be_true obj.authorized?.should be_true obj.allowed?.should be_true end it "should be nil for values" do obj.last_modified.should be_nil obj.etag.should be_nil end end describe "#check_callbacks" do let :resource do Class.new(GetPostResource) do def head; nil; end def put; nil; end def delete; nil; end end end let :obj do request.action = :get obj = resource.new(request, response) end it "should all be good by default" do expect { obj.check_callbacks }.to_not raise_error end it "should raise error on invalid method" do obj.stub(:method_allowed?).and_return(false) expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Method Not Allowed") end [:head, :get, :put, :delete].each do |action| it "should raise error when not exists for #{action.to_s.upcase}" do request.action = action obj.stub(:exists?).and_return(false) expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Resource Not Found") end end [:post].each do |action| it "should not check exists? for #{action.to_s.upcase}" do obj.request.action = action obj.should_not_receive(:exists?) obj.check_callbacks end end it "should raise error when not authorized" do obj.stub(:authorized?).and_return(false) expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Unauthorized") end it "should raise error when not allowed" do obj.stub(:allowed?).and_return(false) expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Forbidden") end describe "with etag" do it "should raise error when equal" do obj.stub(:etag).and_return('sometag') request.headers[:if_none_match] = 'sometag' expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Not Modified") end it "should continue if not equal" do obj.stub(:etag).and_return('sometag') request.headers[:if_none_match] = 'someoldtag' expect { obj.check_callbacks }.to_not raise_error end it "should not be called unless action is :get or :head" do obj.should_not_receive(:etag) request.headers[:if_none_match] = 'sometag' [:post, :put, :delete].each do |action| request.action = action obj.check_callbacks end end end describe "with if modified" do it "should raise error when equal" do time = Time.now obj.stub(:last_modified).and_return(time) request.headers[:if_modified_since] = time.to_s expect { obj.check_callbacks }.to raise_error(Restfulness::HTTPException, "Not Modified") end it "should continue if not equal" do time = Time.now obj.stub(:last_modified).and_return(time) request.headers[:if_modified_since] = (time - 60).to_s expect { obj.check_callbacks }.to_not raise_error end it "should not be called unless action is :get or :head" do obj.should_not_receive(:last_modified) request.headers[:if_modified_since] = 'somedate' [:post, :put, :delete].each do |action| request.action = action obj.check_callbacks end end end end end