Sha256: 3882204aa9f967f21900020f7fcf24d1b3bb8f4dcb2a4e6e9ef9b925c1365bc5

Contents?: true

Size: 1.96 KB

Versions: 9

Compression:

Stored size: 1.96 KB

Contents

#
# Copyright 2011 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'spec_helper'

module Backstage
  describe 'with authentication enabled' do
    before(:each) do
      App.stub(:all).and_return([resource_with_mock_mbean(App)])
      ENV['REQUIRE_AUTHENTICATION'] = 'true'
      @authenticator = mock(:authenticator)
      TorqueBox::Authentication.stub(:default).and_return(@authenticator)
    end
    
    it "allow access with proper credentials" do
      @authenticator.should_receive(:authenticate).with('blah', 'pw').and_return(true)
      authorize 'blah', 'pw'
      get '/apps'
      last_response.should be_ok
    end

    it "should 401 w/o credentials" do
      get '/apps'
      last_response.status.should == 401
    end

    it "should 401 with invalid credentials" do
      @authenticator.should_receive(:authenticate).with('foo', 'bar').and_return(false)
      authorize 'foo', 'bar'
      get '/apps'
      last_response.status.should == 401
    end

    after(:each) do
      ENV['REQUIRE_AUTHENTICATION'] = nil
    end
  end

  describe 'with authentication disabled' do
    before(:each) do
      App.stub(:all).and_return([resource_with_mock_mbean(App)])
      ENV['REQUIRE_AUTHENTICATION'] = nil
    end

    it "should allow access w/o credentials" do
      get '/apps'
      last_response.should be_ok
    end

    it "should allow access with credentials" do
      authorize 'blah', 'pwasfd'
      get '/apps'
      last_response.should be_ok
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
torquebox-backstage-0.4.0 spec/auth_spec.rb
torquebox-backstage-0.3.2 spec/auth_spec.rb
torquebox-backstage-0.3.1 spec/auth_spec.rb
torquebox-backstage-0.3.0 spec/auth_spec.rb
torquebox-backstage-0.2.1 spec/auth_spec.rb
torquebox-backstage-0.2.0 spec/auth_spec.rb
torquebox-backstage-0.1.2 spec/auth_spec.rb
torquebox-backstage-0.1.1 spec/auth_spec.rb
torquebox-backstage-0.1.0 spec/auth_spec.rb