puppet-neutron/spec/functions/validate_tunnel_id_ranges_spec.rb
Tobias Urdin 37bb654424 Use puppet4 functions-api
Change-Id: Id124ec4c598c7b6bcb7c8134d75825fd01d938d2
2018-12-18 10:32:11 +00:00

40 lines
1.0 KiB
Ruby

require 'spec_helper'
describe 'validate_tunnel_id_ranges' do
it 'exists' do
is_expected.not_to eq(nil)
end
it 'fails with invalid input' do
is_expected.to run.with_params('??!!!').and_raise_error(Puppet::Error)
end
it 'fails with invalid range' do
is_expected.to run.with_params('4096').and_raise_error(Puppet::Error)
end
it 'fails with invalid range in array' do
is_expected.to run.with_params(['4096']).and_raise_error(Puppet::Error)
end
it 'fails with invalid range max' do
is_expected.to run.with_params('2048:1024').and_raise_error(Puppet::Error)
end
it 'fails with invalid range max in array' do
is_expected.to run.with_params(['2048:1024']).and_raise_error(Puppet::Error)
end
it 'fails when range is too large' do
is_expected.to run.with_params('10:1100000').and_raise_error(Puppet::Error)
end
it 'works with valid range' do
is_expected.to run.with_params('1024:2048')
end
it 'works with valid array of ranges' do
is_expected.to run.with_params(['1024:2048', '4096:8296'])
end
end