Project

General

Profile

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

class TFTPOrchestrationTest < ActiveSupport::TestCase
def test_host_should_have_tftp
if unattended?
h = hosts(:one)
assert h.tftp?
assert_not_nil h.tftp
end
end

def test_host_should_not_have_tftp
if unattended?
h = hosts(:minimal)
assert_equal false, h.tftp?
assert_equal nil, h.tftp
end
end

def test_generate_pxe_template_for_build
if unattended?
h = hosts(:one)
h.setBuild
as_admin { h.update_attribute :operatingsystem, operatingsystems(:centos5_3) }
Setting[:foreman_url] = "ahost.com:3000"

template = h.send(:generate_pxe_template).split("~")
expected = File.open(Pathname.new(__FILE__).parent + "pxe_template").readlines.map(&:strip)
assert_equal template,expected
assert h.build
end
end

def test_generate_pxe_template_for_localboot
if unattended?
h = hosts(:one)
as_admin { h.update_attribute :operatingsystem, operatingsystems(:centos5_3) }
assert !h.build

template = h.send(:generate_pxe_template).split("~")
expected = File.open(Pathname.new(__FILE__).parent + "pxe_local_template").readlines.map(&:strip)
assert_equal template,expected
end
end
end
(5-5/5)