1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
require 'spec_helper'
describe 'fdio' do
shared_examples_for 'fdio - default' do
it { should compile }
it { should compile.with_all_deps }
# Confirm presence of classes
it { should contain_class('fdio') }
it { should contain_class('fdio::params') }
it { should contain_class('fdio::install') }
it { should contain_class('fdio::config') }
it { should contain_class('fdio::service') }
# Confirm relationships between classes
it { should contain_class('fdio::install').that_comes_before('Class[fdio::config]') }
it { should contain_class('fdio::config').that_requires('Class[fdio::install]') }
it { should contain_class('fdio::config').that_notifies('Class[fdio::service]') }
it { should contain_class('fdio::service').that_subscribes_to('Class[fdio::config]') }
it { should contain_class('fdio::service').that_comes_before('Class[fdio]') }
it { should contain_class('fdio').that_requires('Class[fdio::service]') }
end
shared_examples_for 'fdio - rpm' do
it {
should contain_yumrepo('fdio-release').with(
'baseurl' => 'https://nexus.fd.io/content/repositories/fd.io.centos7/',
'enabled' => 1,
)
}
it { should contain_package('vpp').that_requires('Yumrepo[fdio-release]') }
context 'with stable 16.09 branch' do
let(:params) {{:repo_branch => 'stable.1609'}}
it {
should contain_yumrepo('fdio-stable.1609').with(
'baseurl' => 'https://nexus.fd.io/content/repositories/fd.io.stable.1609.centos7/',
'enabled' => 1,
)
}
it { should contain_package('vpp').that_requires('Yumrepo[fdio-stable.1609]') }
end
end
shared_examples_for 'fdio - config' do
it {
should contain_file('/etc/vpp/startup.conf').with(
'path' => '/etc/vpp/startup.conf',
)
}
it {
should contain_exec('insert_dpdk_kmod').with(
'command' => 'modprobe uio_pci_generic',
'unless' => 'lsmod | grep uio_pci_generic',
)
}
end
shared_examples_for 'fdio - service' do
it {
should contain_vpp_service('vpp').with(
'ensure' => 'present',
'pci_devs' => [],
'state' => 'up',
)
}
context 'with pci dev' do
let(:params) {{:vpp_dpdk_devs => ['0000:00:07.0']}}
it {
should contain_vpp_service('vpp').with(
'ensure' => 'present',
'pci_devs' => ['0000:00:07.0'],
'state' => 'up',
)
}
end
end
context 'on RedHat platforms' do
let(:facts) {{
:osfamily => 'RedHat',
:operatingsystem => 'CentOS',
:operatingsystemmajrelease => '7',
}}
it_configures 'fdio - default'
it_configures 'fdio - rpm'
it_configures 'fdio - config'
it_configures 'fdio - service'
end
end
|