1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
require 'chef_zero/server'
require 'uri'
describe ChefZero::Server do
context 'with a server bound to port 8889' do
before :each do
@server = ChefZero::Server.new(:port => 8889)
@server.start_background
end
after :each do
@server.stop
end
it 'a second server bound to port 8889 throws EADDRINUSE' do
expect { ChefZero::Server.new(:port => 8889).start }.to raise_error Errno::EADDRINUSE
end
it 'a server bound to range 8889-9999 binds to a port > 8889' do
server = ChefZero::Server.new(:port => 8889.upto(9999))
server.start_background
expect(server.port).to be > 8889
expect(URI(server.url).port).to be > 8889
end
it 'a server bound to range 8889-8889 throws an exception' do
expect { ChefZero::Server.new(:port => 8889.upto(8889)).start_background }.to raise_error Errno::EADDRINUSE
end
context 'accept headers' do
def get_nodes(accepts)
uri = URI(@server.url)
httpcall = Net::HTTP.new(uri.host, uri.port)
httpcall.get('/nodes', 'Accept' => accepts)
end
it 'accepts requests with no accept header' do
request = Net::HTTP::Get.new('/nodes')
request.delete('Accept')
uri = URI(@server.url)
response = Net::HTTP.new(uri.host, uri.port).request(request)
expect(response.code).to eq '200'
end
it 'accepts requests with accept: application/json' do
expect(get_nodes('application/json').code).to eq '200'
end
it 'accepts requests with accept: application/*' do
expect(get_nodes('application/*').code).to eq '200'
end
it 'accepts requests with accept: application/*' do
expect(get_nodes('*/*').code).to eq '200'
end
it 'denies requests with accept: application/blah' do
expect(get_nodes('application/blah').code).to eq '406'
end
it 'denies requests with accept: blah/json' do
expect(get_nodes('blah/json').code).to eq '406'
end
it 'denies requests with accept: blah/*' do
expect(get_nodes('blah/*').code).to eq '406'
end
it 'denies requests with accept: blah/*' do
expect(get_nodes('blah/*').code).to eq '406'
end
it 'denies requests with accept: <empty string>' do
expect(get_nodes('').code).to eq '406'
end
it 'accepts requests with accept: a/b;a=b;c=d, application/json;a=b, application/xml;a=b' do
expect(get_nodes('a/b;a=b;c=d, application/json;a=b, application/xml;a=b').code).to eq '200'
end
end
end
end
|