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/unit/provider | |
parent | d3491b5351183a16d2637c3e10afa5e66ee316ab (diff) | |
parent | eec3bba44b5a7e09dba4d427bd0d3d71a4956a7a (diff) |
Merge "Configure the numvfs for SRIOV interfaces"
Diffstat (limited to 'spec/unit/provider')
-rw-r--r-- | spec/unit/provider/sriov_vf_config/numvfs_spec.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/unit/provider/sriov_vf_config/numvfs_spec.rb b/spec/unit/provider/sriov_vf_config/numvfs_spec.rb new file mode 100644 index 0000000..ac1a398 --- /dev/null +++ b/spec/unit/provider/sriov_vf_config/numvfs_spec.rb @@ -0,0 +1,40 @@ +require 'puppet' +require 'spec_helper' +require 'puppet/provider/sriov_vf_config/numvfs' + +provider_class = Puppet::Type.type(:sriov_vf_config). + provider(:numvfs) + +describe provider_class do + + let(:test_cfg_path) { "/tmp/test-ifup-local.txt" } + let :numvfs_conf do + { + :name => 'eth0:10', + :ensure => 'present', + } + end + + describe 'when setting the attributes' do + let :resource do + Puppet::Type::Sriov_vf_config.new(numvfs_conf) + end + + let :provider do + provider_class.new(resource) + end + + it 'should return the correct interface name' do + expect(provider.sriov_get_interface).to eql('eth0') + end + + it 'should return the correct numvfs value' do + expect(provider.sriov_numvfs_value).to eql(10) + end + + it 'should return path of the file to enable vfs' do + expect(provider.sriov_numvfs_path).to eql('/sys/class/net/eth0/device/sriov_numvfs') + end + end + +end |