summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaire McQuin <clairemcquin@d-69-91-159-195.dhcp4.washington.edu>2014-01-07 10:27:13 -0800
committerClaire McQuin <clairemcquin@d-69-91-159-195.dhcp4.washington.edu>2014-01-07 10:27:13 -0800
commit8eb8828bd7f652293bded73c40a48dd61dfa9e3f (patch)
tree8010776b50735a4564cc030390a43146a76b1fe0
parentc7c24d333fd381c509d0f13fba5ca7bde5fee3ab (diff)
downloadohai-8eb8828bd7f652293bded73c40a48dd61dfa9e3f.tar.gz
add kernel kextstat -k -l output to test kernel/modules in darwin/kernel.rb
-rw-r--r--spec/unit/plugins/darwin/kernel_spec.rb24
1 files changed, 23 insertions, 1 deletions
diff --git a/spec/unit/plugins/darwin/kernel_spec.rb b/spec/unit/plugins/darwin/kernel_spec.rb
index d2033a45..2df35d7d 100644
--- a/spec/unit/plugins/darwin/kernel_spec.rb
+++ b/spec/unit/plugins/darwin/kernel_spec.rb
@@ -24,23 +24,45 @@ describe Ohai::System, "Darwin kernel plugin" do
@plugin = get_plugin("kernel")
@plugin.stub(:collect_os).and_return(:darwin)
@plugin.stub(:init_kernel).and_return({})
- @plugin.should_receive(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
+ end
+
+ it "should populate kernel[:modules] from `kextstat -k -l`" do
+ @plugin.stub(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "0", ""))
+ @plugin.stub(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, <<EOF, ""))
+ 8 0 0xffffff7f81aed000 0x41000 0x41000 com.apple.kec.corecrypto (1.0) <7 6 5 4 3 1>
+ 9 22 0xffffff7f807f3000 0x9000 0x9000 com.apple.iokit.IOACPIFamily (1.4) <7 6 4 3>
+ 10 30 0xffffff7f80875000 0x29000 0x29000 com.apple.iokit.IOPCIFamily (2.8) <7 6 5 4 3>
+EOF
+
+ modules = {
+ "com.apple.kec.corecrypto"=>
+ {"version"=>"1.0", "size"=>266240, "index"=>"8", "refcount"=>"0"},
+ "com.apple.iokit.IOACPIFamily"=>
+ {"version"=>"1.4", "size"=>36864, "index"=>"9", "refcount"=>"22"},
+ "com.apple.iokit.IOPCIFamily"=>
+ {"version"=>"2.8", "size"=>167936, "index"=>"10", "refcount"=>"30"}}
+
+ @plugin.run
+ @plugin[:kernel][:modules].should eql(modules)
end
it "should not set kernel_machine to x86_64" do
@plugin.stub(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "0", ""))
+ @plugin.stub(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
@plugin.run
@plugin[:kernel][:machine].should_not == 'x86_64'
end
it "should set kernel_machine to x86_64" do
@plugin.stub(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "1", ""))
+ @plugin.stub(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
@plugin.run
@plugin[:kernel][:machine].should == 'x86_64'
end
it "should set the kernel_os to the kernel_name value" do
@plugin.stub(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "1", ""))
+ @plugin.stub(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
@plugin.run
@plugin[:kernel][:os].should == @plugin[:kernel][:name]
end