Sha256: ddd65af83a7184d796b5da1811427b7421767a7308dfc5c4fec5f9c33f4b442c
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
shared_context "valid token", :token => :valid do let :token_string do "1A2B3C4D" end let :token do double(Doorkeeper::AccessToken, :accessible? => true) end before :each do Doorkeeper::AccessToken.stub(:authenticate).with(token_string).and_return(token) end end shared_context "invalid token", :token => :invalid do let :token_string do "1A2B3C4D" end let :token do double(Doorkeeper::AccessToken, :accessible? => false) end before :each do Doorkeeper::AccessToken.stub(:authenticate).with(token_string).and_return(token) end end shared_context "authenticated resource owner" do before do user = double(:resource, :id => 1) Doorkeeper.configuration.stub(:authenticate_resource_owner) { proc do user end } end end shared_context "not authenticated resource owner" do before do Doorkeeper.configuration.stub(:authenticate_resource_owner) { proc do redirect_to '/' end } end end shared_context "valid authorization request" do let :authorization do double(:authorization, :valid? => true, :authorize => true, :success_redirect_uri => "http://something.com/cb?code=token") end before do controller.stub(:authorization) { authorization } end end shared_context "invalid authorization request" do let :authorization do double(:authorization, :valid? => false, :authorize => false, :redirect_on_error? => false) end before do controller.stub(:authorization) { authorization } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
couchkeeper-0.6.7 | spec/support/shared/controllers_shared_context.rb |