Project

General

Profile

Download (20.1 KB) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

class Api::V2::HostsControllerTest < ActionController::TestCase
def setup
@host = FactoryGirl.create(:host)
@ptable = FactoryGirl.create(:ptable)
@ptable.operatingsystems = [ Operatingsystem.find_by_name('Redhat') ]
end

def basic_attrs
{ :name => 'testhost11',
:environment_id => environments(:production).id,
:domain_id => domains(:mydomain).id,
:ptable_id => @ptable.id,
:medium_id => media(:one).id,
:architecture_id => Architecture.find_by_name('x86_64').id,
:operatingsystem_id => Operatingsystem.find_by_name('Redhat').id,
:puppet_proxy_id => smart_proxies(:one).id,
:compute_resource_id => compute_resources(:one).id,
:root_pass => "xybxa6JUkz63w",
:location_id => taxonomies(:location1).id,
:organization_id => taxonomies(:organization1).id
}
end

def valid_attrs
net_attrs = {
:ip => '10.0.0.20',
:mac => '52:53:00:1e:85:93'
}
basic_attrs.merge(net_attrs)
end

def basic_attrs_with_profile(compute_attrs)
basic_attrs.merge(
:compute_resource_id => compute_attrs.compute_resource_id,
:compute_profile_id => compute_attrs.compute_profile_id
)
end

def nics_attrs
[{
:primary => true,
:ip => '10.0.0.20',
:mac => '00:11:22:33:44:00'
},{
:type => 'bmc',
:provider => 'IPMI',
:mac => '00:11:22:33:44:01'
},{
:mac => '00:11:22:33:44:02',
:_destroy => 1
}]
end

def expected_compute_attributes(compute_attrs, index)
compute_attrs.vm_interfaces[index].update("from_profile" => compute_attrs.compute_profile.name)
end

def last_host
Host.order('id asc').last
end

test "should get index" do
get :index, { }
assert_response :success
assert_not_nil assigns(:hosts)
hosts = ActiveSupport::JSON.decode(@response.body)
assert !hosts.empty?
end

test "should show individual record" do
get :show, { :id => @host.to_param }
assert_response :success
show_response = ActiveSupport::JSON.decode(@response.body)
assert !show_response.empty?
end

test "should create host" do
disable_orchestration
assert_difference('Host.count') do
post :create, { :host => valid_attrs }
end
assert_response :created
end

test "should create interfaces" do
disable_orchestration

post :create, { :host => basic_attrs.merge!(:interfaces_attributes => nics_attrs) }
assert_response :created
assert_equal 2, last_host.interfaces.count

assert last_host.interfaces.find_by_mac('00:11:22:33:44:00').primary?
assert_equal Nic::Managed, last_host.interfaces.find_by_mac('00:11:22:33:44:00').class
assert_equal Nic::BMC, last_host.interfaces.find_by_mac('00:11:22:33:44:01').class
end

test "should create interfaces sent in a hash" do
disable_orchestration
hash_nics_attrs = nics_attrs.inject({}) do |hash, item|
hash.update(item.to_s => item)
end

post :create, { :host => basic_attrs.merge!(:interfaces_attributes => hash_nics_attrs) }
assert_response :created
assert_equal 2, last_host.interfaces.count

assert last_host.interfaces.find_by_mac('00:11:22:33:44:00').primary?
assert_equal Nic::Managed, last_host.interfaces.find_by_mac('00:11:22:33:44:00').class
assert_equal Nic::BMC, last_host.interfaces.find_by_mac('00:11:22:33:44:01').class
end

test "should fail with unknown interface type" do
disable_orchestration

attrs = basic_attrs.merge!(:interfaces_attributes => nics_attrs)
attrs[:interfaces_attributes][0][:type] = "unknown"

post :create, { :host => attrs }
assert_response :unprocessable_entity
assert_match /Unknown interface type/, JSON.parse(response.body)['error']['message']
end

test "should create interfaces from compute profile" do
disable_orchestration

compute_attrs = compute_attributes(:with_interfaces)
post :create, { :host => basic_attrs_with_profile(compute_attrs).merge(:interfaces_attributes => nics_attrs) }
assert_response :created

assert_equal compute_attrs.vm_interfaces.count, last_host.interfaces.count
assert_equal expected_compute_attributes(compute_attrs, 0), last_host.interfaces.find_by_mac('00:11:22:33:44:00').compute_attributes
assert_equal expected_compute_attributes(compute_attrs, 1), last_host.interfaces.find_by_mac('00:11:22:33:44:01').compute_attributes
end

test "should create host with managed is false if parameter is passed" do
disable_orchestration
post :create, { :host => valid_attrs.merge!(:managed => false) }
assert_response :created
assert_equal false, last_host.managed?
end

test "should update host" do
put :update, { :id => @host.to_param, :host => valid_attrs }
assert_response :success
end

test "should update interfaces from compute profile" do
disable_orchestration

compute_attrs = compute_attributes(:with_interfaces)

put :update, { :id => @host.to_param, :host => basic_attrs_with_profile(compute_attrs) }
assert_response :success

@host.interfaces.reload
assert_equal compute_attrs.vm_interfaces.count, @host.interfaces.count
assert_equal expected_compute_attributes(compute_attrs, 0), @host.interfaces.find_by_primary(true).compute_attributes
assert_equal expected_compute_attributes(compute_attrs, 1), @host.interfaces.find_by_primary(false).compute_attributes
end

test "should update host without :host root node and rails wraps it correctly" do
put :update, { :id => @host.to_param, :name => 'newhostname' }
request_parameters = @request.env['action_dispatch.request.request_parameters']
assert request_parameters[:host]
assert_equal 'newhostname', request_parameters[:host][:name]
assert_response :success
end

test "should destroy hosts" do
assert_difference('Host.count', -1) do
delete :destroy, { :id => @host.to_param }
end
assert_response :success
end

test "should show status hosts" do
get :status, { :id => @host.to_param }
assert_response :success
end

test "should show specific status hosts" do
get :get_status, { :id => @host.to_param, :type => 'global' }
assert_response :success
end

test "should be able to create hosts even when restricted" do
disable_orchestration
assert_difference('Host.count') do
post :create, { :host => valid_attrs }
end
assert_response :success
end

test "should allow access to restricted user who owns the host" do
host = FactoryGirl.create(:host, :owner => users(:restricted))
setup_user 'view', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
get :show, { :id => host.to_param }
assert_response :success
end

test "should allow to update for restricted user who owns the host" do
disable_orchestration
host = FactoryGirl.create(:host, :owner => users(:restricted))
setup_user 'edit', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
put :update, { :id => host.to_param, :host => valid_attrs }
assert_response :success
end

test "should allow destroy for restricted user who owns the hosts" do
host = FactoryGirl.create(:host, :owner => users(:restricted))
assert_difference('Host.count', -1) do
setup_user 'destroy', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
delete :destroy, { :id => host.to_param }
end
assert_response :success
end

test "should allow show status for restricted user who owns the hosts" do
host = FactoryGirl.create(:host, :owner => users(:restricted))
setup_user 'view', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
get :status, { :id => host.to_param }
assert_response :success
end

test "should not allow access to a host out of users hosts scope" do
setup_user 'view', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
get :show, { :id => @host.to_param }
assert_response :not_found
end

test "should not list a host out of users hosts scope" do
host = FactoryGirl.create(:host, :owner => users(:restricted))
setup_user 'view', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
get :index, {}
assert_response :success
hosts = ActiveSupport::JSON.decode(@response.body)
ids = hosts['results'].map { |hash| hash['id'] }
refute_includes ids, @host.id
assert_includes ids, host.id
end

test "should not update host out of users hosts scope" do
setup_user 'edit', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
put :update, { :id => @host.to_param }
assert_response :not_found
end

test "should not delete hosts out of users hosts scope" do
setup_user 'destroy', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
delete :destroy, { :id => @host.to_param }
assert_response :not_found
end

test "should not show status of hosts out of users hosts scope" do
setup_user 'view', 'hosts', "owner_type = User and owner_id = #{users(:restricted).id}", :restricted
get :status, { :id => @host.to_param }
assert_response :not_found
end

test "should show hosts vm attributes" do
host = FactoryGirl.create(:host, :compute_resource => compute_resources(:one))
ComputeResource.any_instance.stubs(:vm_compute_attributes_for).returns( :cpus => 4 )
get :vm_compute_attributes, { :id => host.to_param }
assert_response :success
data = JSON.parse(@response.body)
assert_equal data, "cpus" => 4, "memory" => nil
ComputeResource.any_instance.unstub(:vm_compute_attributes_for)
end

def set_remote_user_to(user)
@request.env['REMOTE_USER'] = user.login
end

test "when REMOTE_USER is provided and both authorize_login_delegation{,_api}
are set, authentication should succeed w/o valid session cookies" do
Setting[:authorize_login_delegation] = true
Setting[:authorize_login_delegation_api] = true
set_remote_user_to users(:admin)
User.current = nil # User.current is admin at this point (from initialize_host)
host = Host.first
get :show, {:id => host.to_param, :format => 'json'}
assert_response :success
get :show, {:id => host.to_param}
assert_response :success
end

test "should disassociate host" do
host = FactoryGirl.create(:host, :on_compute_resource)
assert host.compute?
put :disassociate, { :id => host.to_param }
assert_response :success
refute host.reload.compute?
end

def fact_json
@json ||= JSON.parse(Pathname.new("#{Rails.root}/test/fixtures/brslc022.facts.json").read)
end

test "should run puppet for specific host" do
as_admin { @phost = FactoryGirl.create(:host, :with_puppet) }
User.current=nil
ProxyAPI::Puppet.any_instance.stubs(:run).returns(true)
put :puppetrun, { :id => @phost.to_param }
assert_response :success
end

def test_rebuild_config_optimistic
Host.any_instance.expects(:recreate_config).returns({ "TFTP" => true, "DNS" => true, "DHCP" => true })
host = FactoryGirl.create(:host)
post :rebuild_config, { :id => host.to_param }, set_session_user
assert_response :success
end

def test_rebuild_config_pessimistic
Host.any_instance.expects(:recreate_config).returns({ "TFTP" => false, "DNS" => false, "DHCP" => false })
host = FactoryGirl.create(:host)
post :rebuild_config, { :id => host.to_param }, set_session_user
assert_response 422
end

def test_create_valid_node_from_json_facts_object_without_certname
User.current=nil
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}, set_session_user
assert_response :success
end

def test_create_valid_node_from_json_facts_object_with_certname
User.current=nil
hostname = fact_json['name']
certname = fact_json['certname']
facts = fact_json['facts']
post :facts, {:name => hostname, :certname => certname, :facts => facts}, set_session_user
assert_response :success
end

def test_create_invalid
User.current=nil
hostname = fact_json['name']
facts = fact_json['facts'].except('operatingsystem')
post :facts, {:name => hostname, :facts => facts}, set_session_user
assert_response :unprocessable_entity
end

test 'when ":restrict_registered_smart_proxies" is false, HTTP requests should be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = false
SETTINGS[:require_ssl] = false

Resolv.any_instance.stubs(:getnames).returns(['else.where'])
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_nil @controller.detected_proxy
assert_response :success
end

test 'hosts with a registered smart proxy on should import facts successfully' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = false

proxy = smart_proxies(:puppetmaster)
host = URI.parse(proxy.url).host
Resolv.any_instance.stubs(:getnames).returns([host])
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_equal proxy, @controller.detected_proxy
assert_response :success
end

test 'hosts without a registered smart proxy on should not be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = false

Resolv.any_instance.stubs(:getnames).returns(['another.host'])
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :forbidden
end

test 'hosts with a registered smart proxy and SSL cert should import facts successfully' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = true

@request.env['HTTPS'] = 'on'
@request.env['SSL_CLIENT_S_DN'] = 'CN=else.where'
@request.env['SSL_CLIENT_VERIFY'] = 'SUCCESS'
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :success
end

test 'hosts without a registered smart proxy but with an SSL cert should not be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = true

@request.env['HTTPS'] = 'on'
@request.env['SSL_CLIENT_S_DN'] = 'CN=another.host'
@request.env['SSL_CLIENT_VERIFY'] = 'SUCCESS'
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :forbidden
end

test 'hosts with an unverified SSL cert should not be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = true

@request.env['HTTPS'] = 'on'
@request.env['SSL_CLIENT_S_DN'] = 'CN=secure.host'
@request.env['SSL_CLIENT_VERIFY'] = 'FAILED'
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :forbidden
end

test 'when "require_ssl_smart_proxies" and "require_ssl" are true, HTTP requests should not be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = true
SETTINGS[:require_ssl] = true

Resolv.any_instance.stubs(:getnames).returns(['else.where'])
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :forbidden
end

test 'when "require_ssl_smart_proxies" is true and "require_ssl" is false, HTTP requests should be able to import facts' do
User.current = users(:one) #use an unprivileged user, not apiadmin
# since require_ssl_smart_proxies is only applicable to HTTPS connections, both should be set
Setting[:restrict_registered_smart_proxies] = true
Setting[:require_ssl_smart_proxies] = true
SETTINGS[:require_ssl] = false

Resolv.any_instance.stubs(:getnames).returns(['else.where'])
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}
assert_response :success
end

test "when a bad :type is requested, :unprocessable_entity is returned" do
User.current=nil
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts, :type => "Host::Invalid"}, set_session_user
assert_response :unprocessable_entity
assert JSON.parse(response.body)['message'] =~ /ERF42-3624/
end

test "when the imported host failed to save, :unprocessable_entity is returned" do
Host::Managed.any_instance.stubs(:save).returns(false)
Nic::Managed.any_instance.stubs(:save).returns(false)
errors = ActiveModel::Errors.new(Host::Managed.new)
errors.add :foo, 'A stub failure'
Host::Managed.any_instance.stubs(:errors).returns(errors)
User.current=nil
hostname = fact_json['name']
facts = fact_json['facts']
post :facts, {:name => hostname, :facts => facts}, set_session_user
assert_response :unprocessable_entity
assert_equal 'A stub failure', JSON.parse(response.body)['error']['errors']['foo'].first
end

test 'non-admin user with power_host permission can boot a vm' do
@bmchost = FactoryGirl.create(:host, :managed)
FactoryGirl.create(:nic_bmc, :host => @bmchost)
ProxyAPI::BMC.any_instance.stubs(:power).with(:action => 'status').returns("on")
role = FactoryGirl.create(:role, :name => 'power_hosts')
role.add_permissions!(['power_hosts'])
api_user = FactoryGirl.create(:user)
api_user.update_attribute :roles, [role]
as_user(api_user) do
put :power, { :id => @bmchost.to_param, :power_action => 'status' }
end
assert_response :success
assert @response.body =~ /on/
end

context 'BMC proxy operations' do
setup :initialize_proxy_ops

def initialize_proxy_ops
User.current = users(:apiadmin)
@bmchost = FactoryGirl.create(:host, :managed)
FactoryGirl.create(:nic_bmc, :host => @bmchost)
end

test "power call to interface" do
ProxyAPI::BMC.any_instance.stubs(:power).with(:action => 'status').returns("on")
put :power, { :id => @bmchost.to_param, :power_action => 'status' }
assert_response :success
assert @response.body =~ /on/
end

test "wrong power call fails gracefully" do
put :power, { :id => @bmchost.to_param, :power_action => 'wrongmethod' }
assert_response 422
assert @response.body =~ /available methods are/
end

test "boot call to interface" do
ProxyAPI::BMC.any_instance.stubs(:boot).with(:function => 'bootdevice', :device => 'bios').
returns( { "action" => "bios", "result" => true } .to_json)
put :boot, { :id => @bmchost.to_param, :device => 'bios' }
assert_response :success
assert @response.body =~ /true/
end

test "wrong boot call to interface fails gracefully" do
put :boot, { :id => @bmchost.to_param, :device => 'wrongbootdevice' }
assert_response 422
assert @response.body =~ /available devices are/
end

test "should return correct total and subtotal metadata if search param is passed" do
FactoryGirl.create_list(:host, 8)
get :index, {:search => @bmchost.name }
assert_response :success
response = ActiveSupport::JSON.decode(@response.body)
assert_equal 10, response['total'] # one from setup, one from bmc setup, 8 here
assert_equal 1, response['subtotal']
assert_equal @bmchost.name, response['search']
end
end
end
(22-22/50)