diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-08-29 23:29:27 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-08-29 23:29:27 +0000 |
commit | 1047dba66ea9cadb4bc702eae5c0bc362bbc4ccc (patch) | |
tree | dff81d55c7f89dac4c619d4a56cd4491facea0d8 /spec/defines | |
parent | d3491b5351183a16d2637c3e10afa5e66ee316ab (diff) | |
parent | eec3bba44b5a7e09dba4d427bd0d3d71a4956a7a (diff) |
Merge "Configure the numvfs for SRIOV interfaces"
Diffstat (limited to 'spec/defines')
-rw-r--r-- | spec/defines/tripleo_host_sriov_numvfs_persistence_spec.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/defines/tripleo_host_sriov_numvfs_persistence_spec.rb b/spec/defines/tripleo_host_sriov_numvfs_persistence_spec.rb new file mode 100644 index 0000000..57559a2 --- /dev/null +++ b/spec/defines/tripleo_host_sriov_numvfs_persistence_spec.rb @@ -0,0 +1,40 @@ +require 'spec_helper' + +describe 'tripleo::host::sriov::numvfs_persistence' do + + describe 'confugure numvfs for persistence' do + + let :title do + 'numvfs' + end + + let :params do + { + :name => 'persistence', + :vf_defs => ['eth0:10','eth1:8'], + :content_string => "Hashbang\n" + } + end + + it 'configures persistence' do + is_expected.to contain_file('/etc/sysconfig/allocate_vfs').with( + :ensure => 'file', + :content => "Hashbang\n[ \"eth0\" == \"\$1\" ] && echo 10 > /sys/class/net/eth0/device/sriov_numvfs\n[ \"eth1\" == \"\$1\" ] && echo 8 > /sys/class/net/eth1/device/sriov_numvfs\n", + :group => 'root', + :mode => '0755', + :owner => 'root', + ) + is_expected.to contain_file('/sbin/ifup-local').with( + :group => 'root', + :mode => '0755', + :owner => 'root', + :content => '#!/bin/bash', + :replace => false, + ) + is_expected.to contain_file_line('call_ifup-local').with( + :path => '/sbin/ifup-local', + :line => '/etc/sysconfig/allocate_vfs $1', + ) + end + end +end |