aboutsummaryrefslogtreecommitdiffstats
path: root/spec/classes/fdio_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/classes/fdio_spec.rb')
-rw-r--r--spec/classes/fdio_spec.rb95
1 files changed, 95 insertions, 0 deletions
diff --git a/spec/classes/fdio_spec.rb b/spec/classes/fdio_spec.rb
new file mode 100644
index 0000000..0cc065a
--- /dev/null
+++ b/spec/classes/fdio_spec.rb
@@ -0,0 +1,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 \ No newline at end of file