# # Author:: John Keiser () # 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 'support/shared/integration/integration_helper' require 'chef/knife/raw' describe 'knife common options', :workstation do include IntegrationSupport include KnifeSupport when_the_repository "has a node" do before { file 'nodes/x.json', {} } context 'When chef_zero.enabled is true' do before(:each) do Chef::Config.chef_zero.enabled = true end it 'knife raw /nodes/x should retrieve the node' do knife('raw /nodes/x').should_succeed( /"name": "x"/ ) end context 'And chef_zero.port is 9999' do before(:each) { Chef::Config.chef_zero.port = 9999 } it 'knife raw /nodes/x should retrieve the node' do knife('raw /nodes/x').should_succeed( /"name": "x"/ ) expect(Chef::Config.chef_server_url).to eq('http://localhost:9999') end end # 0.0.0.0 is not a valid address to bind to on windows. context 'And chef_zero.host is 0.0.0.0', :unix_only do before(:each) { Chef::Config.chef_zero.host = '0.0.0.0' } it 'knife raw /nodes/x should retrieve the role' do knife('raw /nodes/x').should_succeed( /"name": "x"/ ) end end context 'and there is a private key' do before do file 'mykey.pem', < 'localhost', :port => 8889) @server.start_background rescue Errno::EADDRINUSE # OK. Don't care who has it in use, as long as *someone* does. end end after :each do @server.stop if @server end it 'knife raw -z /nodes/x retrieves the node' do knife('raw -z /nodes/x').should_succeed( /"name": "x"/ ) expect(URI(Chef::Config.chef_server_url).port).to be > 8889 end end context 'when port 9999 is already bound' do before :each do begin @server = ChefZero::Server.new(:host => 'localhost', :port => 9999) @server.start_background rescue Errno::EADDRINUSE # OK. Don't care who has it in use, as long as *someone* does. end end after :each do @server.stop if @server end it 'knife raw -z --chef-zero-port=9999-20000 /nodes/x' do knife('raw -z --chef-zero-port=9999-20000 /nodes/x').should_succeed( /"name": "x"/ ) expect(URI(Chef::Config.chef_server_url).port).to be > 9999 end it 'knife raw -z --chef-zero-port=9999-9999,19423' do knife('raw -z --chef-zero-port=9999-9999,19423 /nodes/x').should_succeed( /"name": "x"/ ) expect(URI(Chef::Config.chef_server_url).port).to be == 19423 end end it 'knife raw -z --chef-zero-port=9999 /nodes/x retrieves the node' do knife('raw -z --chef-zero-port=9999 /nodes/x').should_succeed( /"name": "x"/ ) expect(Chef::Config.chef_server_url).to eq('http://localhost:9999') end end end