37bb654424
Change-Id: Id124ec4c598c7b6bcb7c8134d75825fd01d938d2
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'validate_vni_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 on first' do
|
|
is_expected.to run.with_params('16777315:10').and_raise_error(Puppet::Error)
|
|
end
|
|
|
|
it 'fails when range is too large on second' do
|
|
is_expected.to run.with_params('10:16777315').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
|