Tests for OVS2LNX patchcords

Change-Id: Idb241cab7ad2064f7c2bccf5813d3252d5c701fa
Fuel-CI: disable
Related-bug: #1495534
This commit is contained in:
Sergey Vasilenko 2015-09-14 10:55:52 -05:00
parent ad6d46378b
commit 759e4b0da0
5 changed files with 339 additions and 0 deletions

View File

@ -0,0 +1,124 @@
require 'spec_helper'
describe 'l23network::examples::run_network_scheme', :type => :class do
let(:network_scheme) do
<<eof
---
network_scheme:
version: 1.1
provider: lnx
interfaces:
eth1: {}
transformations:
- action: add-br
name: br-ovs
provider: ovs
- action: add-br
name: br1
provider: lnx
- action: add-patch
bridges:
- br-ovs
- br1
provider: ovs
endpoints:
br1:
IP:
- 192.168.88.2/24
roles: {}
eof
end
context 'Patch between OVS and LNX bridges.' do
let(:title) { 'Centos has delay for port after boot' }
let(:facts) {
{
:osfamily => 'Debian',
:operatingsystem => 'Ubuntu',
:kernel => 'Linux',
:l23_os => 'ubuntu',
:l3_fqdn_hostname => 'stupid_hostname',
}
}
let(:params) do {
:settings_yaml => network_scheme,
} end
before(:each) do
if ENV['SPEC_PUPPET_DEBUG']
Puppet::Util::Log.level = :debug
Puppet::Util::Log.newdestination(:console)
end
end
it do
should compile.with_all_deps
end
it do
should contain_l23_stored_config('br-ovs').with({
'ensure' => 'present',
'provider' => 'ovs_ubuntu'
})
end
it do
should contain_l23_stored_config('br1').with({
'ensure' => 'present',
'ipaddr' => '192.168.88.2/24',
'provider' => 'lnx_ubuntu'
})
end
it do
should contain_l2_bridge('br-ovs').with({
'ensure' => 'present',
'provider' => 'ovs'
})
end
it do
should contain_l2_bridge('br1').with({
'ensure' => 'present',
'provider' => 'lnx'
})
end
it do
should contain_l3_ifconfig('br1').with({
'ensure' => 'present',
'ipaddr' => ['192.168.88.2/24',],
})
end
it do
should contain_l2_patch('patch__br-ovs--br1').with({
'ensure' => 'present',
'bridges' => ['br-ovs', 'br1'],
'vlan_ids' => ['0', '0'],
'provider' => 'ovs'
})
end
it do
# different jacks name here, because decision for using mono-jack patchcord
# made on provider level
should contain_l2_patch('patch__br-ovs--br1').with_jacks(['p_33470efd-0', 'p_33470efd-1'])
end
it do
should contain_l23_stored_config('p_33470efd-0').with({
'ensure' => 'present',
'if_type' => 'ethernet',
'bridge' => ["br-ovs", "br1"],
'jacks' => ['p_33470efd-0', 'p_33470efd-1'],
'provider' => 'ovs_ubuntu'
})
end
end
end
###

View File

@ -0,0 +1,5 @@
auto br-ovs
allow-ovs br-ovs
iface br-ovs inet manual
ovs_type OVSBridge
ovs_ports p_33470efd-0

View File

@ -0,0 +1,4 @@
auto br1
iface br1 inet static
bridge_ports p_33470efd-0
address 192.168.88.2/24

View File

@ -0,0 +1,5 @@
auto p_33470efd-0
allow-br-ovs p_33470efd-0
iface p_33470efd-0 inet manual
ovs_type OVSIntPort
ovs_bridge br-ovs

View File

@ -0,0 +1,201 @@
require 'spec_helper'
resources_map = {
:'br-ovs' => {
:name => "br-ovs",
:onboot => "yes",
:if_type => "bridge",
:bridge_ports => ['p_33470efd-0'], # in real cases this value doesn't pass directly to stored_config,
:provider => "ovs_ubuntu", # but filled in generate() method of type
},
:'br1' => {
:name => "br1",
:onboot => "yes",
:method => "static",
:if_type => "bridge",
:ipaddr => "192.168.88.2/24",
:bridge_ports => ['p_33470efd-0'], # in real cases this value doesn't pass directly to stored_config,
:provider => "lnx_ubuntu", # but filled in generate() method of type
},
:'p_33470efd-0' => {
:name => "p_33470efd-0",
:if_type => "ethernet",
:bridge => ["br-ovs", "br1"],
:jacks => ['p_33470efd-0', 'p_33470efd-1'],
:provider => "ovs_ubuntu",
},
}
# This test is functional continue of .spec/classes/ovs2lnx_patch__spec.rb
describe Puppet::Type.type(:l23_stored_config).provider(:ovs_ubuntu) do
let(:input_data) { resources_map}
let(:resources) do
resources = {}
input_data.each do |name, res|
resources.store name, Puppet::Type.type(:l23_stored_config).new(res)
end
return resources
end
let(:providers) do
providers = {}
resources.each do |name, resource|
provider = resource.provider
if ENV['SPEC_PUPPET_DEBUG']
class << provider
def debug(msg)
puts msg
end
end
end
provider.create
providers.store name, provider
end
return providers
end
before(:each) do
if ENV['SPEC_PUPPET_DEBUG']
Puppet::Util::Log.level = :debug
Puppet::Util::Log.newdestination(:console)
end
end
def fixture_path
File.join(PROJECT_ROOT, 'spec', 'fixtures', 'provider', 'l23_stored_config', 'ovs_ubuntu__ovs2lnx_patch__spec')
end
def fixture_file(file)
File.join(fixture_path, file)
end
def fixture_data(file)
File.read(fixture_file(file))
end
context "when formating config files" do
context 'for OVS bridge br-ovs' do
subject { providers[:'br-ovs'] }
let(:cfg_file) { subject.class.format_file('filepath', [subject]) }
it { expect(cfg_file).to match(/auto\s+br-ovs/) }
it { expect(cfg_file).to match(/allow-ovs\s+br-ovs/) }
it { expect(cfg_file).to match(/iface\s+br-ovs\s+inet\s+manual/) }
it { expect(cfg_file).to match(/ovs_type\s+OVSBridge/) }
it { expect(cfg_file).to match(/ovs_ports\s+p_33470efd-0/) }
it { expect(cfg_file.split(/\n/).reject{|x| x=~/^\s*$/}.length). to eq(5) }
end
context 'for LNX bridge br1' do
subject { providers[:'br1'] }
let(:cfg_file) { subject.class.format_file('filepath', [subject]) }
it { expect(cfg_file).to match(/auto\s+br1/) }
it { expect(cfg_file).to match(/iface\s+br1\s+inet\s+static/) }
it { expect(cfg_file).to match(/bridge_ports\s+p_33470efd-0/) }
it { expect(cfg_file).to match(/address\s+192.168.88.2\/24/) }
it { expect(cfg_file.split(/\n/).reject{|x| x=~/^\s*$/}.length). to eq(4) }
end
context 'for ovs2lnx patchcord p_33470efd-0' do
subject { providers[:'p_33470efd-0'] }
let(:cfg_file) { subject.class.format_file('filepath', [subject]) }
it { expect(cfg_file).to match(/auto\s+p_33470efd-0/) }
it { expect(cfg_file).to match(/allow-br-ovs\s+p_33470efd-0/) }
it { expect(cfg_file).to match(/iface\s+p_33470efd-0\s+inet\s+manual/) }
it { expect(cfg_file).to match(/ovs_type\s+OVSIntPort/) }
it { expect(cfg_file).to match(/ovs_bridge\s+br-ovs/) }
it { expect(cfg_file.split(/\n/).reject{|x| x=~/^\s*$/}.length). to eq(5) }
end
end
context "when parsing config files" do
context 'for OVS bridge br-ovs' do
#let(:res) { subject.class.parse_file('bond_lacp', fixture_data('ifcfg-port'))[0] }
#let(:res) { subject.class.parse_file('br-ovs', fixture_data('ifcfg-br-ovs'))[0] }
let(:res) { subject.class.parse_file('br-ovs', fixture_data('ifcfg-br-ovs'))[0] }
it { expect(res[:method]).to eq :manual }
it { expect(res[:onboot]).to eq true }
it { expect(res[:name]).to eq 'br-ovs' }
it { expect(res[:bridge_ports]).to eq ['p_33470efd-0'] }
it { expect(res[:if_type].to_s).to eq 'bridge' }
it { expect(res[:if_provider].to_s).to eq 'ovs' }
end
#context 'for LNX bridge br1' do
# see below, because lnx_ubuntu provider should be used
#end
context 'for ovs2lnx patchcord p_33470efd-0' do
let(:res) { subject.class.parse_file('p_33470efd-0', fixture_data('ifcfg-p_33470efd-0'))[0] }
it { expect(res[:method]).to eq :manual }
it { expect(res[:onboot]).to eq true }
it { expect(res[:name]).to eq 'p_33470efd-0' }
it { expect(res[:bridge]).to eq "br-ovs" }
it { expect(res[:if_type].to_s).to eq 'ethernet' }
it { expect(res[:if_provider].to_s).to eq 'ovs' }
end
end
end
describe Puppet::Type.type(:l23_stored_config).provider(:lnx_ubuntu) do
let(:input_data) { resources_map}
let(:resources) do
resources = {}
input_data.each do |name, res|
resources.store name, Puppet::Type.type(:l23_stored_config).new(res)
end
return resources
end
let(:providers) do
providers = {}
resources.each do |name, resource|
provider = resource.provider
if ENV['SPEC_PUPPET_DEBUG']
class << provider
def debug(msg)
puts msg
end
end
end
provider.create
providers.store name, provider
end
return providers
end
before(:each) do
if ENV['SPEC_PUPPET_DEBUG']
Puppet::Util::Log.level = :debug
Puppet::Util::Log.newdestination(:console)
end
end
def fixture_path
File.join(PROJECT_ROOT, 'spec', 'fixtures', 'provider', 'l23_stored_config', 'ovs_ubuntu__ovs2lnx_patch__spec')
end
def fixture_file(file)
File.join(fixture_path, file)
end
def fixture_data(file)
File.read(fixture_file(file))
end
context "when parsing config files" do
let(:res) { subject.class.parse_file('br1', fixture_data('ifcfg-br1'))[0] }
it { expect(res[:method]).to eq :static }
it { expect(res[:onboot]).to eq true }
it { expect(res[:name]).to eq 'br1' }
it { expect(res[:bridge_ports]).to eq ['p_33470efd-0'] }
it { expect(res[:if_provider].to_s).to eq 'lnx' }
end
end