inspec/test/unit/resources/http_test.rb
Christoph Hartmann 976e5d85e4 improve http header handling
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
2017-01-26 17:16:37 +01:00

54 lines
2.1 KiB
Ruby

# encoding: utf-8
# author: Guilhem Lettron
require 'helper'
require 'inspec/resource'
describe 'Inspec::Resources::Http' do
it 'verify simple http' do
stub_request(:get, "www.example.com").to_return(status: 200, body: 'pong')
resource = load_resource('http', 'http://www.example.com')
_(resource.status).must_equal 200
_(resource.body).must_equal 'pong'
end
it 'verify http with basic auth' do
stub_request(:get, "www.example.com").with(basic_auth: ['user', 'pass']).to_return(status: 200, body: 'auth ok')
resource = load_resource('http', 'http://www.example.com', auth: { user: 'user',pass: 'pass'})
_(resource.status).must_equal 200
_(resource.body).must_equal 'auth ok'
end
it 'verify http post with data' do
stub_request(:post, "www.example.com").with(body: {data: {a: '1', b: 'five'}}).to_return(status: 200, body: 'post ok')
resource = load_resource('http', 'http://www.example.com',
method: 'POST',
data: '{"data":{"a":"1","b":"five"}}',
headers: {'content-type' => 'application/json'})
_(resource.status).must_equal 200
_(resource.body).must_equal 'post ok'
end
it 'verify http headers' do
stub_request(:post, "www.example.com").with(headers: {'content-type' => 'application/json'}).to_return(status: 200, body: 'headers ok', headers: {'mock' => 'ok'})
resource = load_resource('http', 'http://www.example.com',
method: 'POST',
data: '{"data":{"a":"1","b":"five"}}',
headers: {'content-type' => 'application/json'})
_(resource.status).must_equal 200
_(resource.body).must_equal 'headers ok'
_(resource.headers.Mock).must_equal 'ok'
end
it 'verify http with params' do
stub_request(:get, "www.example.com").with(query: {a: 'b'}).to_return(status: 200, body: 'params ok')
resource = load_resource('http', 'http://www.example.com', params: {a: 'b'})
_(resource.status).must_equal 200
_(resource.body).must_equal 'params ok'
end
end