Project

General

Profile

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

class HostObserverTest < ActiveSupport::TestCase
test "tokens should be removed based on build state" do
disable_orchestration
h = hosts(:one)
as_admin do
Setting[:token_duration] = 60
assert_difference('Token.count') do
h.build = true
h.save!
end
assert_difference('Token.count', -1) do
h.build = false
h.save!
end
end
end

test "pxe template should have a token when created" do
disable_orchestration
host = as_admin do
Setting[:token_duration] = 30
host = Host.create! :name => "foo", :mac => "aabbeeddccff", :ip => "2.3.4.244", :managed => true,
:build => true, :architecture => architectures(:x86_64), :environment => Environment.first, :puppet_proxy_id => 1,
:domain => Domain.first, :operatingsystem => operatingsystems(:centos5_3), :subnet => subnets(:one),
:request_url => 'http://foreman'
end

assert host.token.try(:value).present?

assert host.send(:generate_pxe_template)["token=#{host.token.value}"]
end

end
(20-20/53)