b9cfc5b1ec
Change-Id: I04f7fdbbb2b7678e398f5ec772eb4e33bdea34fe
86 lines
2.6 KiB
Ruby
86 lines
2.6 KiB
Ruby
#
|
|
# Copyright (C) 2016 Matthew J. Black
|
|
#
|
|
# Author: Matthew J. Black <mjblack@gmail.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Unit tests for neutron::plugins::ml2::arista class
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'neutron::plugins::ml2::arista' do
|
|
let :pre_condition do
|
|
"class { 'neutron::keystone::authtoken':
|
|
password => 'passw0rd',
|
|
}
|
|
class { 'neutron::server': }
|
|
class { 'neutron':
|
|
core_plugin => 'ml2' }"
|
|
end
|
|
|
|
let :default_params do
|
|
{
|
|
:region_name => '<SERVICE DEFAULT>',
|
|
:sync_interval => '<SERVICE DEFAULT>',
|
|
:conn_timeout => '<SERVICE DEFAULT>',
|
|
:use_fqdn => '<SERVICE DEFAULT>'
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{ :eapi_host => '127.0.0.1',
|
|
:eapi_username => 'neutron',
|
|
:eapi_password => 'passw0rd'
|
|
}
|
|
end
|
|
|
|
shared_examples 'neutron plugin ml2 arista' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it 'configures ml2 arista settings' do
|
|
should contain_neutron_plugin_ml2('ml2_arista/eapi_host').with_value(p[:eapi_host])
|
|
should contain_neutron_plugin_ml2('ml2_arista/eapi_username').with_value(p[:eapi_username])
|
|
should contain_neutron_plugin_ml2('ml2_arista/eapi_password').with_value(p[:eapi_password]).with_secret(true)
|
|
should contain_neutron_plugin_ml2('ml2_arista/region_name').with_value(p[:region_name])
|
|
should contain_neutron_plugin_ml2('ml2_arista/sync_interval').with_value(p[:sync_interval])
|
|
should contain_neutron_plugin_ml2('ml2_arista/conn_timeout').with_value(p[:conn_timeout])
|
|
should contain_neutron_plugin_ml2('ml2_arista/use_fqdn').with_value(p[:use_fqdn])
|
|
end
|
|
|
|
it 'installs the plugin package' do
|
|
should contain_package('python-networking-arista').with(
|
|
:ensure => 'present',
|
|
:name => 'python3-networking-arista',
|
|
:tag => ['openstack', 'neutron-plugin-ml2-package'],
|
|
)
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
let(:facts) do
|
|
facts.merge!(OSDefaults.get_facts({
|
|
}))
|
|
end
|
|
|
|
it_behaves_like 'neutron plugin ml2 arista'
|
|
end
|
|
end
|
|
end
|