aboutsummaryrefslogtreecommitdiffstats
path: root/spec/acceptance/fdio_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/fdio_spec.rb')
-rw-r--r--spec/acceptance/fdio_spec.rb51
1 files changed, 51 insertions, 0 deletions
diff --git a/spec/acceptance/fdio_spec.rb b/spec/acceptance/fdio_spec.rb
new file mode 100644
index 0000000..5c30de1
--- /dev/null
+++ b/spec/acceptance/fdio_spec.rb
@@ -0,0 +1,51 @@
+require 'spec_helper_acceptance'
+
+describe 'fdio' do
+
+ context 'default parameters' do
+
+ it 'should work with no errors' do
+ pp= <<-EOS
+ class { '::fdio': }
+ EOS
+
+ apply_manifest(pp, :catch_failures => true)
+ apply_manifest(pp, :catch_changes => true)
+ end
+
+ describe package('vpp') do
+ it { should be_installed }
+ end
+
+ describe file('/etc/vpp/startup.conf') do
+ it { is_expected.to exist }
+ its(:content) { should match /uio-driver\s+uio_pci_generic/ }
+ its(:content) { should_not match /dev/ }
+ end
+
+ describe service('vpp') do
+ it { should be_running }
+ it { should be_enabled }
+ end
+ end
+
+ context 'pinning' do
+ it 'should work with no errors' do
+ pp= <<-EOS
+ class { '::fdio':
+ vpp_cpu_main_core => '1',
+ vpp_cpu_corelist_workers => '2',
+ }
+ EOS
+
+ apply_manifest(pp, :catch_failures => true)
+ apply_manifest(pp, :catch_changes => true)
+ end
+
+ describe file('/etc/vpp/startup.conf') do
+ its(:content) { should match /main-core\s+1/ }
+ its(:content) { should match /corelist-workers\s+2/ }
+ end
+
+ end
+end