Sha256: 7f03e4d9c29ce5cafd774bd3737da9793c0108af9333c0eeda2daafc59bfa196
Contents?: true
Size: 1.87 KB
Versions: 37
Compression:
Stored size: 1.87 KB
Contents
# # Author:: John Keiser (<jkeiser@opscode.com>) # Copyright:: Copyright (c) 2013 Opscode, Inc. # License:: Apache License, Version 2.0 # # 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 'puma' require 'support/shared/integration/integration_helper' require 'chef/knife/list' describe 'redirection' do extend IntegrationSupport include KnifeSupport when_the_chef_server 'has a role' do role 'x', {} context 'and another server redirects to it with 302' do before :each do @real_chef_server_url = Chef::Config.chef_server_url Chef::Config.chef_server_url = "http://127.0.0.1:9018" app = lambda do |env| [302, {'Content-Type' => 'text','Location' => "#{@real_chef_server_url}#{env['PATH_INFO']}" }, ['302 found'] ] end @redirector_server = Puma::Server.new(app, Puma::Events.new(STDERR, STDOUT)) @redirector_server.add_tcp_listener("127.0.0.1", 9018) @redirector_server.run Timeout::timeout(5) do until @redirector_server.running sleep(0.01) end raise @server_error if @server_error end end after :each do Chef::Config.chef_server_url = @real_chef_server_url @redirector_server.stop(true) end it 'knife list /roles returns the role' do knife('list /roles').should_succeed "/roles/x.json\n" end end end end
Version data entries
37 entries across 37 versions & 1 rubygems